lazy_load_hooks.rb 1.9 KB
Newer Older
1
module ActiveSupport
P
Prathamesh Sonpatki 已提交
2
  # lazy_load_hooks allows Rails to lazily load a lot of components and thus
F
Francesco Rodriguez 已提交
3 4 5 6 7
  # making the app boot faster. Because of this feature now there is no need to
  # require <tt>ActiveRecord::Base</tt> at boot time purely to apply
  # configuration. Instead a hook is registered that applies configuration once
  # <tt>ActiveRecord::Base</tt> is loaded. Here <tt>ActiveRecord::Base</tt> is
  # used as example but this feature can be applied elsewhere too.
V
Vijay Dev 已提交
8 9 10
  #
  # Here is an example where +on_load+ method is called to register a hook.
  #
F
Francesco Rodriguez 已提交
11
  #   initializer 'active_record.initialize_timezone' do
V
Vijay Dev 已提交
12 13 14 15 16 17
  #     ActiveSupport.on_load(:active_record) do
  #       self.time_zone_aware_attributes = true
  #       self.default_timezone = :utc
  #     end
  #   end
  #
F
Francesco Rodriguez 已提交
18 19 20
  # When the entirety of +activerecord/lib/active_record/base.rb+ has been
  # evaluated then +run_load_hooks+ is invoked. The very last line of
  # +activerecord/lib/active_record/base.rb+ is:
V
Vijay Dev 已提交
21 22
  #
  #   ActiveSupport.run_load_hooks(:active_record, ActiveRecord::Base)
M
mrageh 已提交
23 24 25 26 27 28
  module LazyLoadHooks
    def self.extended(base) # :nodoc:
      base.class_eval do
        @load_hooks = Hash.new { |h,k| h[k] = [] }
        @loaded     = Hash.new { |h,k| h[k] = [] }
      end
29
    end
30

31 32
    # Declares a block that will be executed when a Rails component is fully
    # loaded.
M
mrageh 已提交
33 34 35 36
    def on_load(name, options = {}, &block)
      @loaded[name].each do |base|
        execute_hook(base, options, block)
      end
37

M
mrageh 已提交
38
      @load_hooks[name] << [block, options]
39 40
    end

M
mrageh 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53
    def execute_hook(base, options, block)
      if options[:yield]
        block.call(base)
      else
        base.instance_eval(&block)
      end
    end

    def run_load_hooks(name, base = Object)
      @loaded[name] << base
      @load_hooks[name].each do |hook, options|
        execute_hook(base, options, hook)
      end
54
    end
55
  end
M
mrageh 已提交
56 57

  extend LazyLoadHooks
58
end