Class: Chef::Resource::LWRPBase
- Inherits:
-
Chef::Resource
- Object
- Chef::Resource
- Chef::Resource::LWRPBase
- Extended by:
- Mixin::ConvertToClassName, Mixin::FromFile
- Defined in:
- lib/chef/resource/lwrp_base.rb
Overview
Chef::Resource::LWRPBase
Base class for LWRP resources. Adds DSL sugar on top of Chef::Resource, so attributes, default action, etc. can be defined with pleasing syntax.
Constant Summary collapse
- NULL_ARG =
Object.new
Constants inherited from Chef::Resource
Instance Attribute Summary
Attributes inherited from Chef::Resource
#allowed_actions, #cookbook_name, #elapsed_time, #enclosing_provider, #not_if_args, #only_if_args, #params, #provider, #recipe_name, #resource_name, #retries, #retry_delay, #run_context, #source_line, #updated
Class Method Summary collapse
-
.actions(*action_names) ⇒ Object
Adds
action_names
to the list of valid actions for this resource. -
.attribute(attr_name, validation_opts = {}) ⇒ Object
Define an attribute on this resource, including optional validation parameters.
-
.build_from_file(cookbook_name, filename, run_context) ⇒ Object
Evaluates the LWRP resource file and instantiates a new Resource class.
-
.default_action(action_name = NULL_ARG) ⇒ Object
Sets the default action.
- .node ⇒ Object
-
.resource_name ⇒ Object
Returns the resource snake_case name.
-
.resource_name=(resource_name) ⇒ Object
Set the resource snake_case name.
- .run_context ⇒ Object
-
.run_context=(run_context) ⇒ Object
Set the run context on the class.
- .valid_actions ⇒ Object
Instance Method Summary collapse
-
#initialize(name, run_context = nil) ⇒ LWRPBase
constructor
Default initializer.
Methods included from Mixin::ConvertToClassName
convert_to_class_name, convert_to_snake_case, filename_to_qualified_string, snake_case_basename
Methods included from Mixin::FromFile
Methods inherited from Chef::Resource
#action, #after_created, #as_json, #cookbook_version, #customize_exception, #defined_at, #delayed_notifications, dsl_name, #epic_fail, #events, find_subclass_by_name, #identity, identity_attr, #ignore_failure, #immediate_notifications, inherited, #inspect, #is, json_create, #load_prior_resource, #method_missing, #name, #node, #noop, #not_if, #notifies, #notifies_delayed, #notifies_immediately, #only_if, platform_map, provider_base, #provider_for_action, provides, #resolve_notification_references, resource_classes, resource_for_node, resource_for_platform, #resources, #run_action, #should_skip?, #state, state_attrs, #subscribes, #supports, #to_hash, #to_json, #to_s, #to_text, #updated?, #updated_by_last_action, #updated_by_last_action?, #validate_action
Methods included from Mixin::Deprecation
Methods included from DSL::RegistryHelper
#registry_data_exists?, #registry_get_subkeys, #registry_get_values, #registry_has_subkeys?, #registry_key_exists?, #registry_value_exists?
Methods included from DSL::PlatformIntrospection
#platform?, #platform_family?, #value_for_platform, #value_for_platform_family
Methods included from Mixin::ParamsValidate
Methods included from DSL::DataQuery
#data_bag, #data_bag_item, #search
Constructor Details
#initialize(name, run_context = nil) ⇒ LWRPBase
Default initializer. Sets the default action and allowed actions.
123 124 125 126 127 128 |
# File 'lib/chef/resource/lwrp_base.rb', line 123 def initialize(name, run_context=nil) super(name, run_context) @resource_name = self.class.resource_name.to_sym @action = self.class.default_action allowed_actions.push(self.class.valid_actions).flatten! end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Chef::Resource
Class Method Details
.actions(*action_names) ⇒ Object
Adds action_names
to the list of valid actions for this resource.
100 101 102 |
# File 'lib/chef/resource/lwrp_base.rb', line 100 def self.actions(*action_names) valid_actions.push(*action_names) end |
.attribute(attr_name, validation_opts = {}) ⇒ Object
Define an attribute on this resource, including optional validation parameters.
75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/chef/resource/lwrp_base.rb', line 75 def self.attribute(attr_name, validation_opts={}) # Ruby 1.8 doesn't support default arguments to blocks, but we have to # use define_method with a block to capture +validation_opts+. # Workaround this by defining two methods :( class_eval(<<-SHIM, __FILE__, __LINE__) def #{attr_name}(arg=nil) _set_or_return_#{attr_name}(arg) end SHIM define_method("_set_or_return_#{attr_name.to_s}".to_sym) do |arg| set_or_return(attr_name.to_sym, arg, validation_opts) end end |
.build_from_file(cookbook_name, filename, run_context) ⇒ Object
Evaluates the LWRP resource file and instantiates a new Resource class.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/chef/resource/lwrp_base.rb', line 37 def self.build_from_file(cookbook_name, filename, run_context) rname = filename_to_qualified_string(cookbook_name, filename) # Add log entry if we override an existing light-weight resource. class_name = convert_to_class_name(rname) if Resource.const_defined?(class_name, false) old_class = Resource.send(:remove_const, class_name) # CHEF-3432 -- Chef::Resource keeps a list of subclasses; need to # remove old ones from the list when replacing. resource_classes.delete(old_class) Chef::Log.info("#{class_name} light-weight resource already initialized -- overriding!") end resource_class = Class.new(self) resource_class.resource_name = rname resource_class.run_context = run_context resource_class.class_from_file(filename) Chef::Resource.const_set(class_name, resource_class) Chef::Log.debug("Loaded contents of #{filename} into a resource named #{rname} defined in Chef::Resource::#{class_name}") resource_class end |
.default_action(action_name = NULL_ARG) ⇒ Object
Sets the default action
91 92 93 94 95 96 97 |
# File 'lib/chef/resource/lwrp_base.rb', line 91 def self.default_action(action_name=NULL_ARG) unless action_name.equal?(NULL_ARG) valid_actions.push(action_name) @default_action = action_name end @default_action end |
.node ⇒ Object
118 119 120 |
# File 'lib/chef/resource/lwrp_base.rb', line 118 def self.node run_context.node end |
.resource_name ⇒ Object
Returns the resource snake_case name
69 70 71 |
# File 'lib/chef/resource/lwrp_base.rb', line 69 def self.resource_name @resource_name end |
.resource_name=(resource_name) ⇒ Object
Set the resource snake_case name. Should only be called via build_from_file.
64 65 66 |
# File 'lib/chef/resource/lwrp_base.rb', line 64 def self.resource_name=(resource_name) @resource_name = resource_name end |
.run_context ⇒ Object
114 115 116 |
# File 'lib/chef/resource/lwrp_base.rb', line 114 def self.run_context @run_context end |
.run_context=(run_context) ⇒ Object
Set the run context on the class. Used to provide access to the node during class definition.
110 111 112 |
# File 'lib/chef/resource/lwrp_base.rb', line 110 def self.run_context=(run_context) @run_context = run_context end |
.valid_actions ⇒ Object
104 105 106 |
# File 'lib/chef/resource/lwrp_base.rb', line 104 def self.valid_actions @valid_actions ||= [] end |