Module: EasyType::Type::ClassMethods
- Defined in:
- lib/easy_type/type.rb
Instance Method Summary collapse
- #define_os_command_method(method_or_command) ⇒ Object
- #eigenclass ⇒ Object
-
#group(group_name = :default, &block) ⇒ Group
define a group of parameters.
-
#groups ⇒ Group
rubocop:enable Alias.
-
#map_title_to_attributes(*attributes) { ... } ⇒ Object
easy way to map parts of a title to one of the attributes and properties.
-
#on_create(&block) ⇒ Object
retuns the string needed to start the creation of an sql type.
-
#on_destroy(&block) ⇒ Object
retuns the string command needed to remove the specified type.
-
#on_modify(&block) ⇒ Object
retuns the string command needed to alter an sql type.
-
#on_notify(&block) ⇒ Object
retuns the string needed to start the creation of an sql type.
-
#parameter(parameter_name) ⇒ Object
(also: #property)
include’s the parameter declaration.
- #process_group_entry(entry) ⇒ Object
-
#set_command(methods_or_commands) ⇒ Object
set’s the command to be executed.
- #shared_file(parameter_name) ⇒ Object
- #shared_file?(parameter_name) ⇒ Boolean
- #specific_file(parameter_name) ⇒ Object
- #specific_file?(parameter_name) ⇒ Boolean
-
#to_get_raw_resources(&block) ⇒ Object
The code in the block is called to fetch all information of all available resources on the system.
Instance Method Details
#define_os_command_method(method_or_command) ⇒ Object
224 225 226 227 228 229 |
# File 'lib/easy_type/type.rb', line 224 def define_os_command_method(method_or_command) eigenclass.send(:define_method, method_or_command) do | *args| command = args.dup.unshift(method_or_command) Puppet::Util::Execution.execute(command) end end |
#eigenclass ⇒ Object
248 249 250 |
# File 'lib/easy_type/type.rb', line 248 def eigenclass class << self; self; end end |
#group(group_name = :default, &block) ⇒ Group
define a group of parameters. A group means a change in one of it’s members all the information in the group is added tot the command
rubocop:disable Alias
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 |
# File 'lib/easy_type/type.rb', line 81 def group(group_name = :default, &block) include EasyType::FileIncluder @group_name = group_name # make it global @groups ||= EasyType::Group.new alias :orig_parameter :parameter alias :orig_property :property def parameter(parameter_name) process_group_entry(include_file("puppet/type/#{name}/#{parameter_name}")) end def property(property_name) process_group_entry(include_file("puppet/type/#{name}/#{property_name}")) end def process_group_entry(entry) @groups.add(name, entry) end yield if block alias :parameter :orig_parameter alias :property :orig_property end |
#groups ⇒ Group
rubocop:enable Alias
Return the groups the type contains
113 114 115 116 |
# File 'lib/easy_type/type.rb', line 113 def groups @groups ||= EasyType::Group.new @groups end |
#map_title_to_attributes(*attributes) { ... } ⇒ Object
easy way to map parts of a title to one of the attributes and properties.
map_title_to_attributes([:name,:domain, :jmsmodule, :queue_name]) do
/^((.*\/)?(.*):(.*)?)$/)
end
You can also pass a Hash as one of the entries in the array. The key mus be the field to map to and the value mus be a closure (Proc or a Lambda) to manage the value
default_name = lambda {| name| name.nil? ? ‘default’ : name} map_title_to_attributes([:name -> default_name,:domain, :jmsmodule, :queue_name]) do
/^((.*\/)?(.*):(.*)?)$/)
end
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/easy_type/type.rb', line 139 def map_title_to_attributes(*attributes) attribute_array = attributes.map do | attr| case attr when Array then attr when Symbol then [attr, nil] when String then [attr.to_sym, nil] when Hash then attr.to_a.flatten else fail "map_title_to_attribute, doesn\'t support #{attr.class} as attribute" end end regexp = yield eigenclass.send(:define_method,:title_patterns) do [ [ regexp, attribute_array ] ] end end |
#on_create(&block) ⇒ Object
retuns the string needed to start the creation of an sql type
266 267 268 |
# File 'lib/easy_type/type.rb', line 266 def on_create(&block) define_method(:on_create, &block) if block end |
#on_destroy(&block) ⇒ Object
retuns the string command needed to remove the specified type
284 285 286 |
# File 'lib/easy_type/type.rb', line 284 def on_destroy(&block) define_method(:on_destroy, &block) if block end |
#on_modify(&block) ⇒ Object
retuns the string command needed to alter an sql type
302 303 304 |
# File 'lib/easy_type/type.rb', line 302 def on_modify(&block) define_method(:on_modify, &block) if block end |
#on_notify(&block) ⇒ Object
retuns the string needed to start the creation of an sql type
243 244 245 |
# File 'lib/easy_type/type.rb', line 243 def on_notify(&block) define_method(:refresh, &block) if block end |
#parameter(parameter_name) ⇒ Object Also known as: property
include’s the parameter declaration. It searches for the parameter file in the directory ‘puppet/type/type_name/parameter_name, or in the shared directory `puppet/type/shared`
169 170 171 |
# File 'lib/easy_type/type.rb', line 169 def parameter(parameter_name) process_group_entry(include_file("puppet/type/#{name}/#{parameter_name}")) end |
#process_group_entry(entry) ⇒ Object
98 99 100 |
# File 'lib/easy_type/type.rb', line 98 def process_group_entry(entry) @groups.add(name, entry) end |
#set_command(methods_or_commands) ⇒ Object
set’s the command to be executed. If the specified argument translate’s to an existing class method on the type, this method will be identified as the command. When a class method doesn’t exist, the command will be translated to an os command
213 214 215 216 217 218 219 220 221 |
# File 'lib/easy_type/type.rb', line 213 def set_command(methods_or_commands) @commands ||= [] methods_or_commands = Array(methods_or_commands) # ensure Array methods_or_commands.each do | method_or_command| method_or_command = method_or_command.to_s if RUBY_VERSION == '1.8.7' @commands << method_or_command define_os_command_method(method_or_command) unless methods.include?(method_or_command) end end |
#shared_file(parameter_name) ⇒ Object
190 191 192 |
# File 'lib/easy_type/type.rb', line 190 def shared_file(parameter_name) get_ruby_file("puppet/type/shared/#{parameter_name}") end |
#shared_file?(parameter_name) ⇒ Boolean
195 196 197 |
# File 'lib/easy_type/type.rb', line 195 def shared_file?(parameter_name) !shared_file(parameter_name).nil? end |
#specific_file(parameter_name) ⇒ Object
180 181 182 |
# File 'lib/easy_type/type.rb', line 180 def specific_file(parameter_name) get_ruby_file("puppet/type/#{name}/#{parameter_name}") end |
#specific_file?(parameter_name) ⇒ Boolean
185 186 187 |
# File 'lib/easy_type/type.rb', line 185 def specific_file?(parameter_name) !specific_file(parameter_name).nil? end |
#to_get_raw_resources(&block) ⇒ Object
The code in the block is called to fetch all information of all available resources on the system. Although not strictly necessary, it is a convention the return an Array of Hashes
319 320 321 |
# File 'lib/easy_type/type.rb', line 319 def to_get_raw_resources(&block) eigenclass.send(:define_method, :get_raw_resources, &block) end |