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.
-
#guest_capabilities ⇒ Hash
This returns all the registered guest capabilities.
-
#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 |
#guest_capabilities ⇒ Hash
This returns all the registered guest capabilities.
78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 78 def guest_capabilities results = Hash.new { |h, k| h[k] = Registry.new } @registered.each do |plugin| plugin.components.guest_capabilities.each do |guest, caps| results[guest].merge!(caps) end end results 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.components.guests) end end end |
#hosts ⇒ Hash
This returns all registered host classes.
93 94 95 96 97 98 99 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 93 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.
115 116 117 118 119 120 121 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 115 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.
104 105 106 107 108 109 110 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 104 def providers Registry.new.tap do |result| @registered.each do |plugin| result.merge!(plugin.components.providers) end end end |
#provisioner_configs ⇒ Registry
This returns all the config classes for the various provisioners.
126 127 128 129 130 131 132 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 126 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.
137 138 139 140 141 142 143 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 137 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.
149 150 151 152 153 154 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 149 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.
158 159 160 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 158 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.
164 165 166 167 168 169 |
# File 'lib/vagrant/plugin/v2/manager.rb', line 164 def unregister(plugin) if @registered.include?(plugin) @logger.info("Unregistered: #{plugin.name}") @registered.delete(plugin) end end |