Module: Puppet::MetaType::Manager
Constant Summary
Constants included from Util
Util::AbsolutePathPosix, Util::AbsolutePathWindows, Util::DEFAULT_POSIX_MODE, Util::DEFAULT_WINDOWS_MODE
Constants included from Util::POSIX
Util::POSIX::LOCALE_ENV_VARS, Util::POSIX::USER_ENV_VARS
Constants included from Util::SymbolicFileMode
Util::SymbolicFileMode::SetGIDBit, Util::SymbolicFileMode::SetUIDBit, Util::SymbolicFileMode::StickyBit, Util::SymbolicFileMode::SymbolicMode, Util::SymbolicFileMode::SymbolicSpecialToBit
Instance Method Summary collapse
-
#allclear ⇒ Object
private
An implementation specific method that removes all type instances during testing.
-
#eachtype {|t| ... } ⇒ Object
Iterates over all already loaded Type subclasses.
-
#loadall ⇒ void
Loads all types.
-
#newtype(name, options = {}) {|| ... } ⇒ Class<inherits Puppet::Type>
Defines a new type or redefines an existing type with the given name.
-
#rmtype(name) ⇒ Object
private
Removes an existing type.
-
#type(name) ⇒ Puppet::Type?
Returns a Type instance by name.
-
#typeloader ⇒ Puppet::Util::Autoload
private
Creates a loader for Puppet types.
Methods included from Util::ClassGen
#genclass, #genmodule, #rmclass
Methods included from Util
absolute_path?, benchmark, chuser, clear_environment, default_env, deterministic_rand, deterministic_rand_int, exit_on_fail, get_env, get_environment, logmethods, merge_environment, path_to_uri, pretty_backtrace, replace_file, safe_posix_fork, set_env, symbolizehash, thinmark, uri_to_path, which, withenv, withumask
Methods included from Util::POSIX
#get_posix_field, #gid, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid
Methods included from Util::SymbolicFileMode
#normalize_symbolic_mode, #symbolic_mode_to_int, #valid_symbolic_mode?
Methods included from Util::MethodHelper
#requiredopts, #set_options, #symbolize_options
Instance Method Details
#allclear ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Only use this method for testing purposes.
An implementation specific method that removes all type instances during testing.
17 18 19 20 21 |
# File 'lib/puppet/metatype/manager.rb', line 17 def allclear @types.each { |name, type| type.clear } end |
#eachtype {|t| ... } ⇒ Object
Iterates over all already loaded Type subclasses.
28 29 30 31 32 33 34 35 |
# File 'lib/puppet/metatype/manager.rb', line 28 def eachtype @types.each do |name, type| # Only consider types that have names #if ! type.parameters.empty? or ! type.validproperties.empty? yield type #end end end |
#loadall ⇒ void
Should only be used for purposes such as generating documentation as this is potentially a very expensive operation.
This method returns an undefined value.
Loads all types.
42 43 44 |
# File 'lib/puppet/metatype/manager.rb', line 42 def loadall typeloader.loadall end |
#newtype(name, options = {}) {|| ... } ⇒ Class<inherits Puppet::Type>
Defines a new type or redefines an existing type with the given name. A convenience method on the form ‘new<name>` where name is the name of the type is also created. (If this generated method happens to clash with an existing method, a warning is issued and the original method is kept).
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
# File 'lib/puppet/metatype/manager.rb', line 62 def newtype(name, = {}, &block) # Handle backward compatibility unless .is_a?(Hash) Puppet.warning "Puppet::Type.newtype(#{name}) now expects a hash as the second argument, not #{.inspect}" end # First make sure we don't have a method sitting around name = name.intern newmethod = "new#{name}" # Used for method manipulation. selfobj = singleton_class @types ||= {} if @types.include?(name) if self.respond_to?(newmethod) # Remove the old newmethod selfobj.send(:remove_method,newmethod) end end = () # Then create the class. klass = genclass( name, :parent => Puppet::Type, :overwrite => true, :hash => @types, :attributes => , &block ) # Now define a "new<type>" method for convenience. if self.respond_to? newmethod # Refuse to overwrite existing methods like 'newparam' or 'newtype'. Puppet.warning "'new#{name.to_s}' method already exists; skipping" else selfobj.send(:define_method, newmethod) do |*args| klass.new(*args) end end # If they've got all the necessary methods defined and they haven't # already added the property, then do so now. klass.ensurable if klass.ensurable? and ! klass.validproperty?(:ensure) # Now set up autoload any providers that might exist for this type. klass.providerloader = Puppet::Util::Autoload.new(klass, "puppet/provider/#{klass.name.to_s}") # We have to load everything so that we can figure out the default provider. klass.providerloader.loadall Puppet.lookup(:current_environment) klass.providify unless klass.providers.empty? klass end |
#rmtype(name) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Only use this for testing.
Removes an existing type.
125 126 127 128 129 130 131 |
# File 'lib/puppet/metatype/manager.rb', line 125 def rmtype(name) # Then create the class. rmclass(name, :hash => @types) singleton_class.send(:remove_method, "new#{name}") if respond_to?("new#{name}") end |
#type(name) ⇒ Puppet::Type?
Returns a Type instance by name. This will load the type if not already defined.
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/puppet/metatype/manager.rb', line 138 def type(name) # Avoid loading if name obviously is not a type name if name.to_s.include?(':') return nil end @types ||= {} # We are overwhelmingly symbols here, which usually match, so it is worth # having this special-case to return quickly. Like, 25K symbols vs. 300 # strings in this method. --daniel 2012-07-17 return @types[name] if @types[name] # Try mangling the name, if it is a string. if name.is_a? String name = name.downcase.intern return @types[name] if @types[name] end # Try loading the type. if typeloader.load(name, Puppet.lookup(:current_environment)) Puppet.warning "Loaded puppet/type/#{name} but no class was created" unless @types.include? name end # ...and I guess that is that, eh. return @types[name] end |
#typeloader ⇒ Puppet::Util::Autoload
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Creates a loader for Puppet types. Defaults to an instance of Util::Autoload if no other auto loader has been set.
169 170 171 172 173 174 175 |
# File 'lib/puppet/metatype/manager.rb', line 169 def typeloader unless defined?(@typeloader) @typeloader = Puppet::Util::Autoload.new(self, "puppet/type") end @typeloader end |