将方法混合到当前类中特征类

发布于 2024-11-28 17:15:07 字数 592 浏览 1 评论 0原文

我正在通过重构现有的 Ruby 类(例如 A,它扩展了 ActiveRecord)来实现半重复的 Rails 管道,以拥有一个具有通用功能的模块(例如 M),然后将其混合到两个类似的 AR 类(现在是浅包装器)中。

当提取 A 的精华并将其切碎到 M 中时,A 的实例方法只是成为 M 中的方法,并且 A 的类方法进入 M 的 ClassMethods 子模块,并在类级别通过 self.included 钩子混合回 A 中。 M 和扩展,通过众所周知的习语。

然而,A 并不是一个普通的类——我们使用了 DelayedJob 中的一些类方法,而 DelayedJob 本身并不理解类方法;因此,我们将 A 的一些原始类方法移至 A 的特征类中,将它们定义为

class A
  ...
  def old_plain_vanilla_class_method
    ...
  end
  class << self 
    def new_eigenclassed_class_method
      ...
    end
    ...
  end
  ...
end

现在的问题是,我们如何在 M 中表示它,以便它立即混合回 A 的特征类中?

I'm implementing a semi-duplicate Rails pipeline by refactoring an existing Ruby class, say A, which extends ActiveRecord, to have a module, say M, with common functionality, then to be mixed into two similar AR classes, now shallow wrappers.

When taking the meat of A and mincing it into M, A's instance methods simply become methods in M, and A's class methods go into a ClassMethods submodule of M, to be mixed back into A at class-level with a self.included hook of M and extend, via the well-known idiom.

However, A is not just any class -- we use some of its class methods from DelayedJob, which does not naturally understand class methods; hence we moved some of the original class methods of A into A's eigenclass, defining them as

class A
  ...
  def old_plain_vanilla_class_method
    ...
  end
  class << self 
    def new_eigenclassed_class_method
      ...
    end
    ...
  end
  ...
end

The question now is, how do we represent that in M, so it mixes right back into A's eigenclass?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

扭转时空 2024-12-05 17:15:07

不确定我是否理解你(请提供更多代码),但是你不能做这样的事情吗:

module M
  def M.included(c)
    class << c.class
      def foo
        "foo"
      end
    end
  end
end

Not sure that I understand you well (more code please), but can't you do something like this:

module M
  def M.included(c)
    class << c.class
      def foo
        "foo"
      end
    end
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文