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, #declared_type, #default_guard_interpreter, #elapsed_time, #enclosing_provider, #ignore_failure, #not_if_args, #only_if_args, #params, #recipe_name, #resource_name, #retries, #retry_delay, #run_context, #sensitive, #source_line, #updated
Class Method Summary collapse
-
.actions(*action_names) ⇒ Object
Adds
action_namesto 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.
- .lazy(&block) ⇒ Object
- .node ⇒ Object
-
.resource_name(arg = NULL_ARG) ⇒ Object
(also: resource_name=)
Set the resource name for this LWRP.
- .run_context ⇒ Object
-
.run_context=(run_context) ⇒ Object
Set the run context on the class.
- .valid_actions(*args) ⇒ Object deprecated Deprecated.
Methods included from Mixin::ConvertToClassName
constantize, 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, #custom_exception_message, #customize_exception, #declared_key, #defined_at, #delayed_notifications, dsl_name, #epic_fail, #events, #guard_interpreter, #identity, identity_attr, #immediate_notifications, #inspect, #is, json_create, #load_from, #method_missing, #name, #node, node_map, #noop, #not_if, #notifies, #notifies_delayed, #notifies_immediately, #only_if, #provider, #provider=, provider_base, #provider_for_action, provides, #resolve_notification_references, resource_for_node, resource_matching_short_name, #resources, #run_action, #should_skip?, #state, state_attrs, #subscribes, #supports, #supports=, #to_hash, #to_json, #to_s, #to_text, #updated?, #updated_by_last_action, #updated_by_last_action?, #validate_action, #validate_resource_spec!
Methods included from Mixin::DescendantsTracker
#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited
Methods included from Mixin::Deprecation
Methods included from Mixin::ParamsValidate
#lazy, #set_or_return, #validate
Methods included from DSL::RebootPending
Methods included from DSL::PlatformIntrospection
#platform?, #platform_family?, #value_for_platform, #value_for_platform_family
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::DataQuery
#data_bag, #data_bag_item, #search
Methods included from EncryptedDataBagItem::CheckEncrypted
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 103 104 105 106 107 108 109 110 111 |
# File 'lib/chef/resource/lwrp_base.rb', line 100 def self.actions(*action_names) if action_names.empty? defined?(@actions) ? @actions : from_superclass(:actions, []).dup else # BC-compat way for checking if actions have already been defined if defined?(@actions) @actions.push(*action_names) else @actions = action_names end end end |
.attribute(attr_name, validation_opts = {}) ⇒ Object
Define an attribute on this resource, including optional validation parameters.
75 76 77 78 79 |
# File 'lib/chef/resource/lwrp_base.rb', line 75 def self.attribute(attr_name, validation_opts={}) define_method(attr_name) do |arg=nil| 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 |
# File 'lib/chef/resource/lwrp_base.rb', line 37 def self.build_from_file(cookbook_name, filename, run_context) resource_class = nil rname = filename_to_qualified_string(cookbook_name, filename) class_name = convert_to_class_name(rname) if Resource.const_defined?(class_name, false) Chef::Log.info("#{class_name} light-weight resource is already initialized -- Skipping loading #{filename}!") Chef::Log.debug("Overriding already defined LWRPs is not supported anymore starting with Chef 12.") resource_class = Resource.const_get(class_name) else resource_class = Class.new(self) Chef::Resource.const_set(class_name, resource_class) resource_class.resource_name = rname resource_class.run_context = run_context resource_class.class_from_file(filename) Chef::Log.debug("Loaded contents of #{filename} into a resource named #{rname} defined in Chef::Resource::#{class_name}") end resource_class end |
.default_action(action_name = NULL_ARG) ⇒ Object
Sets the default action
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/chef/resource/lwrp_base.rb', line 82 def self.default_action(action_name=NULL_ARG) unless action_name.equal?(NULL_ARG) @actions ||= [] if action_name.is_a?(Array) action = action_name.map { |arg| arg.to_sym } @actions = actions | action @default_action = action else action = action_name.to_sym @actions.push(action) unless @actions.include?(action) @default_action = action end end @default_action ||= from_superclass(:default_action) end |
.lazy(&block) ⇒ Object
133 134 135 |
# File 'lib/chef/resource/lwrp_base.rb', line 133 def self.lazy(&block) DelayedEvaluator.new(&block) end |
.node ⇒ Object
129 130 131 |
# File 'lib/chef/resource/lwrp_base.rb', line 129 def self.node run_context.node end |
.resource_name(arg = NULL_ARG) ⇒ Object Also known as: resource_name=
Set the resource name for this LWRP
61 62 63 64 65 66 67 |
# File 'lib/chef/resource/lwrp_base.rb', line 61 def self.resource_name(arg = NULL_ARG) if arg.equal?(NULL_ARG) @resource_name else @resource_name = arg end end |
.run_context ⇒ Object
125 126 127 |
# File 'lib/chef/resource/lwrp_base.rb', line 125 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.
121 122 123 |
# File 'lib/chef/resource/lwrp_base.rb', line 121 def self.run_context=(run_context) @run_context = run_context end |
.valid_actions(*args) ⇒ Object
114 115 116 117 |
# File 'lib/chef/resource/lwrp_base.rb', line 114 def self.valid_actions(*args) Chef::Log.warn("`valid_actions' is deprecated, please use actions `instead'!") actions(*args) end |