Module: ActiveSupport::LazyLoadHooks
- Included in:
- ActiveSupport
- Defined in:
- activesupport/lib/active_support/lazy_load_hooks.rb
Overview
Lazy Load Hooks
LazyLoadHooks allows Rails to lazily load a lot of components and thus making the app boot faster. Because of this feature now there is no need to require ActiveRecord::Base
at boot time purely to apply configuration. Instead a hook is registered that applies configuration once ActiveRecord::Base
is loaded. Here ActiveRecord::Base
is used as example but this feature can be applied elsewhere too.
Here is an example where on_load method is called to register a hook.
initializer 'active_record.initialize_timezone' do
ActiveSupport.on_load(:active_record) do
self.time_zone_aware_attributes = true
self.default_timezone = :utc
end
end
When the entirety of ActiveRecord::Base
has been evaluated then run_load_hooks is invoked. The very last line of ActiveRecord::Base
is:
ActiveSupport.run_load_hooks(:active_record, ActiveRecord::Base)
run_load_hooks will then execute all the hooks that were registered with the on_load method. In the case of the above example, it will execute the block of code that is in the initializer
.
Registering a hook that has already run results in that hook executing immediately. This allows hooks to be nested for code that relies on multiple lazily loaded components:
initializer "action_text.renderer" do
ActiveSupport.on_load(:action_controller_base) do
ActiveSupport.on_load(:action_text_content) do
self.default_renderer = Class.new(ActionController::Base).renderer
end
end
end
Class Method Summary collapse
-
.extended(base) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#on_load(name, options = {}, &block) ⇒ Object
Declares a block that will be executed when a Rails component is fully loaded.
-
#run_load_hooks(name, base = Object) ⇒ Object
Executes all blocks registered to
name
via on_load, usingbase
as the evaluation context.
Class Method Details
.extended(base) ⇒ Object
:nodoc:
44 45 46 47 48 49 50 |
# File 'activesupport/lib/active_support/lazy_load_hooks.rb', line 44 def self.extended(base) # :nodoc: base.class_eval do @load_hooks = Hash.new { |h, k| h[k] = [] } @loaded = Hash.new { |h, k| h[k] = [] } @run_once = Hash.new { |h, k| h[k] = [] } end end |
Instance Method Details
#on_load(name, options = {}, &block) ⇒ Object
Declares a block that will be executed when a Rails component is fully loaded. If the component has already loaded, the block is executed immediately.
Options:
-
:yield
- Yields the object that run_load_hooks toblock
. -
:run_once
- Givenblock
will run only once.
60 61 62 63 64 65 66 |
# File 'activesupport/lib/active_support/lazy_load_hooks.rb', line 60 def on_load(name, = {}, &block) @loaded[name].each do |base| execute_hook(name, base, , block) end @load_hooks[name] << [block, ] end |
#run_load_hooks(name, base = Object) ⇒ Object
Executes all blocks registered to name
via on_load, using base
as the evaluation context.
ActiveSupport.run_load_hooks(:active_record, ActiveRecord::Base)
In the case of the above example, it will execute all hooks registered for :active_record
within the class ActiveRecord::Base
.
75 76 77 78 79 80 |
# File 'activesupport/lib/active_support/lazy_load_hooks.rb', line 75 def run_load_hooks(name, base = Object) @loaded[name] << base @load_hooks[name].each do |hook, | execute_hook(name, base, , hook) end end |