Class: Vagrant::Plugin::V2::Manager
- Inherits:
-
Object
- Object
- Vagrant::Plugin::V2::Manager
- Defined in:
- lib/vagrant/plugin/v2/manager.rb
Overview
This class maintains a list of all the registered plugins as well as provides methods that allow querying all registered components of those plugins as a single unit.
Instance Attribute Summary collapse
-
#registered ⇒ Object
readonly
Returns the value of attribute registered.
Instance Method Summary collapse
-
#action_hooks(hook_name) ⇒ Array
This returns all the action hooks.
-
#commands ⇒ Hash
This returns all the registered commands.
-
#communicators ⇒ Hash
This returns all the registered communicators.
-
#config ⇒ Hash
This returns all the registered configuration classes.
-
#guests ⇒ Hash
This returns all the registered guests.
-
#hosts ⇒ Hash
This returns all registered host classes.
-
#initialize ⇒ Manager
constructor
A new instance of Manager.
-
#provider_configs ⇒ Hash
This returns all the config classes for the various providers.
-
#providers ⇒ Hash
This returns all registered providers.
-
#provisioner_configs ⇒ Registry
This returns all the config classes for the various provisioners.
-
#provisioners ⇒ Hash
This returns all registered provisioners.
-
#register(plugin) ⇒ Object
This registers a plugin.
-
#reset! ⇒ Object
This clears out all the registered plugins.
-
#unregister(plugin) ⇒ Object
This unregisters a plugin so that its components will no longer be used.
Constructor Details
#initialize ⇒ Manager
Returns a new instance of Manager.
12 13 14 15 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 12 def initialize @logger = Log4r::Logger.new("vagrant::plugin::v2::manager") @registered = [] end |
Instance Attribute Details
#registered ⇒ Object (readonly)
Returns the value of attribute registered.
10 11 12 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 10 def registered @registered end |
Instance Method Details
#action_hooks(hook_name) ⇒ Array
This returns all the action hooks.
20 21 22 23 24 25 26 27 28 29 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 20 def action_hooks(hook_name) result = [] @registered.each do |plugin| result += plugin.components.action_hooks[Plugin::ALL_ACTIONS] result += plugin.components.action_hooks[hook_name] end result end |
#commands ⇒ Hash
This returns all the registered commands.
34 35 36 37 38 39 40 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 34 def commands Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.command) end end end |
#communicators ⇒ Hash
This returns all the registered communicators.
45 46 47 48 49 50 51 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 45 def communicators Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.communicator) end end end |
#config ⇒ Hash
This returns all the registered configuration classes.
56 57 58 59 60 61 62 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 56 def config Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.components.configs[:top]) end end end |
#guests ⇒ Hash
This returns all the registered guests.
67 68 69 70 71 72 73 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 67 def guests Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.guest) end end end |
#hosts ⇒ Hash
This returns all registered host classes.
78 79 80 81 82 83 84 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 78 def hosts Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.host) end end end |
#provider_configs ⇒ Hash
This returns all the config classes for the various providers.
100 101 102 103 104 105 106 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 100 def provider_configs Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.components.configs[:provider]) end end end |
#providers ⇒ Hash
This returns all registered providers.
89 90 91 92 93 94 95 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 89 def providers Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.provider) end end end |
#provisioner_configs ⇒ Registry
This returns all the config classes for the various provisioners.
111 112 113 114 115 116 117 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 111 def provisioner_configs Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.components.configs[:provisioner]) end end end |
#provisioners ⇒ Hash
This returns all registered provisioners.
122 123 124 125 126 127 128 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 122 def provisioners Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.provisioner) end end end |
#register(plugin) ⇒ Object
This registers a plugin. This should NEVER be called by the public and should only be called from within Vagrant. Vagrant will automatically register V2 plugins when a name is set on the plugin.
134 135 136 137 138 139 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 134 def register(plugin) if !@registered.include?(plugin) @logger.info("Registered plugin: #{plugin.name}") @registered << plugin end end |
#reset! ⇒ Object
This clears out all the registered plugins. This is only used by unit tests and should not be called directly.
143 144 145 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 143 def reset! @registered.clear end |
#unregister(plugin) ⇒ Object
This unregisters a plugin so that its components will no longer be used. Note that this should only be used for testing purposes.
149 150 151 152 153 154 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 149 def unregister(plugin) if @registered.include?(plugin) @logger.info("Unregistered: #{plugin.name}") @registered.delete(plugin) end end |