Class: Chef::Property
- Inherits:
-
Object
- Object
- Chef::Property
- Defined in:
- lib/chef/property.rb
Overview
Type and validation information for a property on a resource.
A property named “x” manipulates the “@x” instance variable on a resource. The presence of the variable (‘instance_variable_defined?(@x)`) tells whether the variable is defined; it may have any actual value, constrained only by validation.
Properties may have validation, defaults, and coercion, and have full support for lazy values.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
The options this Property will use for get/set behavior and validation.
Class Method Summary collapse
-
.derive(**options) ⇒ Object
Create a reusable property type that can be used in multiple properties in different resources.
Instance Method Summary collapse
-
#call(resource, value = NOT_PASSED) ⇒ Object
Handle the property being called.
-
#coerce(resource, value) ⇒ Object
Coerce an input value into canonical form for the property.
-
#declared_in ⇒ Class
The class this property was defined in.
-
#default ⇒ Object
The raw default value for this resource.
-
#derive(**modified_options) ⇒ Property
Derive a new Property that is just like this one, except with some added or changed options.
-
#desired_state? ⇒ Boolean
Whether this is part of desired state or not.
-
#emit_dsl ⇒ Object
Emit the DSL for this property into the resource class (‘declared_in`).
-
#explicitly_accepts_nil?(resource) ⇒ Boolean
private
Find out whether this type accepts nil explicitly.
-
#get(resource, nil_set: false) ⇒ Object
Get the property value from the resource, handling lazy values, defaults, and validation.
- #get_value(resource) ⇒ Object private
-
#has_default? ⇒ Boolean
Whether this property has a default value.
-
#identity? ⇒ Boolean
Whether this is part of the resource’s natural identity or not.
-
#initialize(**options) ⇒ Property
constructor
Create a new property.
-
#instance_variable_name ⇒ Symbol
The instance variable associated with this property.
-
#is_set?(resource) ⇒ Boolean
Find out whether this property has been set.
-
#name ⇒ String
The name of this property.
-
#name_property? ⇒ Boolean
Whether this is name_property or not.
-
#required? ⇒ Boolean
Whether this property is required or not.
-
#reset(resource) ⇒ Object
Reset the value of this property so that is_set? will return false and the default will be returned in the future.
- #reset_value(resource) ⇒ Object private
-
#sensitive? ⇒ Boolean
Whether this property is sensitive or not.
-
#set(resource, value) ⇒ Object
Set the value of this property in the given resource.
- #set_value(resource, value) ⇒ Object private
- #to_s ⇒ Object
-
#validate(resource, value) ⇒ Object
Validate a value.
-
#validation_options ⇒ Hash<Symbol,Object>
Validation options.
- #value_is_set?(resource) ⇒ Boolean private
Constructor Details
#initialize(**options) ⇒ Property
Create a new property.
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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# File 'lib/chef/property.rb', line 92 def initialize(**) = .inject({}) { |memo, (key, value)| memo[key.to_sym] = value; memo } = [:name] = [:name].to_sym if [:name] [:instance_variable_name] = [:instance_variable_name].to_sym if [:instance_variable_name] # Replace name_attribute with name_property if .has_key?(:name_attribute) # If we have both name_attribute and name_property and they differ, raise an error if .has_key?(:name_property) raise ArgumentError, "name_attribute and name_property are functionally identical and both cannot be specified on a property at once. Use just one on property #{self}" end # replace name_property with name_attribute in place = Hash[.map { |k, v| k == :name_attribute ? [ :name_property, v ] : [ k, v ] }] = end if .has_key?(:default) && .has_key?(:name_property) raise ArgumentError, "A property cannot be both a name_property/name_attribute and have a default value. Use one or the other on property #{self}" end # Recursively freeze the default if it isn't a lazy value. unless default.is_a?(DelayedEvaluator) visitor = lambda do |obj| case obj when Hash obj.each_value { |value| visitor.call(value) } when Array obj.each { |value| visitor.call(value) } end obj.freeze end visitor.call(default) end # Validate the default early, so the user gets a good error message, and # cache it so we don't do it again if so begin # If we can validate it all the way to output, do it. @stored_default = input_to_stored_value(nil, default, is_default: true) rescue Chef::Exceptions::CannotValidateStaticallyError # If the validation is not static (i.e. has procs), we will have to # coerce and validate the default each time we run end end |
Instance Attribute Details
#options ⇒ Object (readonly)
The options this Property will use for get/set behavior and validation.
539 540 541 |
# File 'lib/chef/property.rb', line 539 def end |
Class Method Details
.derive(**options) ⇒ Object
Create a reusable property type that can be used in multiple properties in different resources.
50 51 52 |
# File 'lib/chef/property.rb', line 50 def self.derive(**) new(**) end |
Instance Method Details
#call(resource, value = NOT_PASSED) ⇒ Object
Handle the property being called.
The base implementation does the property get-or-set:
“‘ruby resource.myprop # get resource.myprop value # set “`
Subclasses may implement this with any arguments they want, as long as the corresponding DSL calls it correctly.
279 280 281 282 283 284 285 |
# File 'lib/chef/property.rb', line 279 def call(resource, value = NOT_PASSED) if value == NOT_PASSED get(resource) else set(resource, value) end end |
#coerce(resource, value) ⇒ Object
Coerce an input value into canonical form for the property.
After coercion, the value is suitable for storage in the resource. You must validate values after coercion, however.
Does no special handling for lazy values.
443 444 445 446 447 448 449 450 451 |
# File 'lib/chef/property.rb', line 443 def coerce(resource, value) if .has_key?(:coerce) # nil is never coerced unless value.nil? value = exec_in_resource(resource, [:coerce], value) end end value end |
#declared_in ⇒ Class
The class this property was defined in.
156 157 158 |
# File 'lib/chef/property.rb', line 156 def declared_in [:declared_in] end |
#default ⇒ Object
The raw default value for this resource.
Does not coerce or validate the default. Does not evaluate lazy values.
Defaults to ‘lazy { name }` if name_property is true; otherwise defaults to `nil`
183 184 185 186 187 |
# File 'lib/chef/property.rb', line 183 def default return [:default] if .has_key?(:default) return Chef::DelayedEvaluator.new { name } if name_property? nil end |
#derive(**modified_options) ⇒ Property
Derive a new Property that is just like this one, except with some added or changed options.
487 488 489 490 491 492 493 494 495 496 497 498 |
# File 'lib/chef/property.rb', line 487 def derive(**) # Since name_property, name_attribute and default override each other, # if you specify one of them in modified_options it overrides anything in # the original options. = self. if .has_key?(:name_property) || .has_key?(:name_attribute) || .has_key?(:default) = .reject { |k, v| k == :name_attribute || k == :name_property || k == :default } end self.class.new(.merge()) end |
#desired_state? ⇒ Boolean
Whether this is part of desired state or not.
Defaults to true.
205 206 207 208 |
# File 'lib/chef/property.rb', line 205 def desired_state? return true if !.has_key?(:desired_state) [:desired_state] end |
#emit_dsl ⇒ Object
Emit the DSL for this property into the resource class (‘declared_in`).
Creates a getter and setter for the property.
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 |
# File 'lib/chef/property.rb', line 505 def emit_dsl # We don't create the getter/setter if it's a custom property; we will # be using the existing getter/setter to manipulate it instead. return if !instance_variable_name # Properties may override existing properties up the inheritance heirarchy, but # properties must not override inherited methods like Object#hash. When the Resource is # placed into the resource collection the ruby Hash object will call the # Object#hash method on the resource, and overriding that with a property will cause # very confusing results. if property_redefines_method? resource_name = declared_in.respond_to?(:resource_name) ? declared_in.resource_name : declared_in raise ArgumentError, "Property `#{name}` of resource `#{resource_name}` overwrites an existing method. A different name should be used for this property." end # We prefer this form because the property name won't show up in the # stack trace if you use `define_method`. declared_in.class_eval " def \#{name}(value=NOT_PASSED)\n raise \"Property `\#{name}` of `\\\#{self}` was incorrectly passed a block. Possible property-resource collision. To call a resource named `\#{name}` either rename the property or else use `declare_resource(:\#{name}, ...)`\" if block_given?\n self.class.properties[\#{name.inspect}].call(self, value)\n end\n def \#{name}=(value)\n raise \"Property `\#{name}` of `\\\#{self}` was incorrectly passed a block. Possible property-resource collision. To call a resource named `\#{name}` either rename the property or else use `declare_resource(:\#{name}, ...)`\" if block_given?\n self.class.properties[\#{name.inspect}].set(self, value)\n end\n EOM\nend\n", __FILE__, __LINE__ + 1 |
#explicitly_accepts_nil?(resource) ⇒ Boolean
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.
Find out whether this type accepts nil explicitly.
A type accepts nil explicitly if “is” allows nil, it validates as nil, and is not simply an empty type.
A type is presumed to accept nil if it does coercion (which must handle nil).
These examples accept nil explicitly: “‘ruby property :a, [ String, nil ] property :a, [ String, NilClass ] property :a, [ String, proc { |v| v.nil? } ] “`
This does not (because the “is” doesn’t exist or doesn’t have nil):
“‘ruby property :x, String “`
These do not, even though nil would validate fine (because they do not have “is”):
“‘ruby property :a property :a, equal_to: [ 1, 2, 3, nil ] property :a, kind_of: [ String, NilClass ] property :a, respond_to: [ ] property :a, callbacks: { “a” => proc { |v| v.nil? } } “`
579 580 581 582 |
# File 'lib/chef/property.rb', line 579 def explicitly_accepts_nil?(resource) .has_key?(:coerce) || (.has_key?(:is) && resource.send(:_pv_is, { name => nil }, name, [:is], raise_error: false)) end |
#get(resource, nil_set: false) ⇒ Object
Get the property value from the resource, handling lazy values, defaults, and validation.
-
If the property’s value is lazy, it is evaluated, coerced and validated.
-
If the property has no value, and is required, raises ValidationFailed.
-
If the property has no value, but has a lazy default, it is evaluated, coerced and validated. If the evaluated value is frozen, the resulting
-
If the property has no value, but has a default, the default value will be returned and frozen. If the default value is lazy, it will be evaluated, coerced and validated, and the result stored in the property.
-
If the property has no value, but is name_property, ‘resource.name` is retrieved, coerced, validated and stored in the property.
-
Otherwise, ‘nil` is returned.
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
# File 'lib/chef/property.rb', line 309 def get(resource, nil_set: false) # If it's set, return it (and evaluate any lazy values) value = nil if is_set?(resource) value = get_value(resource) value = stored_value_to_output(resource, value) else # We are getting the default value. # If the user does something like this: # # ``` # class MyResource < Chef::Resource # property :content # action :create do # file '/x.txt' do # content content # end # end # end # ``` # # It won't do what they expect. This checks whether you try to *read* # `content` while we are compiling the resource. if !nil_set && resource.respond_to?(:resource_initializing) && resource.resource_initializing && resource.respond_to?(:enclosing_provider) && resource.enclosing_provider && resource.enclosing_provider.new_resource && resource.enclosing_provider.new_resource.respond_to?(name) Chef::Log.warn("#{Chef::Log.caller_location}: property #{name} is declared in both #{resource} and #{resource.enclosing_provider}. Use new_resource.#{name} instead. At #{Chef::Log.caller_location}") end if has_default? # If we were able to cache the stored_default, grab it. if defined?(@stored_default) value = @stored_default else # Otherwise, we have to validate it now. value = input_to_stored_value(resource, default, is_default: true) end value = stored_value_to_output(resource, value, is_default: true) # If the value is mutable (non-frozen), we set it on the instance # so that people can mutate it. (All constant default values are # frozen.) if !value.frozen? && !value.nil? set_value(resource, value) end end end if value.nil? && required? raise Chef::Exceptions::ValidationFailed, "#{name} is a required property" else value end end |
#get_value(resource) ⇒ 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.
585 586 587 588 589 590 591 |
# File 'lib/chef/property.rb', line 585 def get_value(resource) if instance_variable_name resource.instance_variable_get(instance_variable_name) else resource.send(name) end end |
#has_default? ⇒ Boolean
Whether this property has a default value.
224 225 226 |
# File 'lib/chef/property.rb', line 224 def has_default? .has_key?(:default) || name_property? end |
#identity? ⇒ Boolean
Whether this is part of the resource’s natural identity or not.
194 195 196 |
# File 'lib/chef/property.rb', line 194 def identity? [:identity] end |
#instance_variable_name ⇒ Symbol
The instance variable associated with this property.
Defaults to ‘@<name>`
167 168 169 170 171 172 173 |
# File 'lib/chef/property.rb', line 167 def instance_variable_name if .has_key?(:instance_variable_name) [:instance_variable_name] elsif name :"@#{name}" end end |
#is_set?(resource) ⇒ Boolean
Find out whether this property has been set.
This will be true if:
-
The user explicitly set the value
-
The property has a default, and the value was retrieved.
From this point of view, it is worth looking at this as “what does the user think this value should be.” In order words, if the user grabbed the value, even if it was a default, they probably based calculations on it. If they based calculations on it and the value changes, the rest of the world gets inconsistent.
412 413 414 |
# File 'lib/chef/property.rb', line 412 def is_set?(resource) value_is_set?(resource) end |
#name ⇒ String
The name of this property.
147 148 149 |
# File 'lib/chef/property.rb', line 147 def name [:name] end |
#name_property? ⇒ Boolean
Whether this is name_property or not.
215 216 217 |
# File 'lib/chef/property.rb', line 215 def name_property? [:name_property] end |
#required? ⇒ Boolean
Whether this property is required or not.
233 234 235 |
# File 'lib/chef/property.rb', line 233 def required? [:required] end |
#reset(resource) ⇒ Object
Reset the value of this property so that is_set? will return false and the default will be returned in the future.
422 423 424 |
# File 'lib/chef/property.rb', line 422 def reset(resource) reset_value(resource) end |
#reset_value(resource) ⇒ 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.
612 613 614 615 616 617 618 619 620 |
# File 'lib/chef/property.rb', line 612 def reset_value(resource) if instance_variable_name if value_is_set?(resource) resource.remove_instance_variable(instance_variable_name) end else raise ArgumentError, "Property #{name} has no instance variable defined and cannot be reset" end end |
#sensitive? ⇒ Boolean
Whether this property is sensitive or not.
Defaults to false.
244 245 246 |
# File 'lib/chef/property.rb', line 244 def sensitive? .fetch(:sensitive, false) end |
#set(resource, value) ⇒ Object
Set the value of this property in the given resource.
Non-lazy values are coerced and validated before being set. Coercion and validation of lazy values is delayed until they are first retrieved.
385 386 387 388 389 390 391 392 393 |
# File 'lib/chef/property.rb', line 385 def set(resource, value) value = set_value(resource, input_to_stored_value(resource, value)) if value.nil? && required? raise Chef::Exceptions::ValidationFailed, "#{name} is a required property" else value end end |
#set_value(resource, value) ⇒ 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.
594 595 596 597 598 599 600 |
# File 'lib/chef/property.rb', line 594 def set_value(resource, value) if instance_variable_name resource.instance_variable_set(instance_variable_name, value) else resource.send(name, value) end end |
#to_s ⇒ Object
138 139 140 |
# File 'lib/chef/property.rb', line 138 def to_s "#{name || "<property type>"}#{declared_in ? " of resource #{declared_in.resource_name}" : ""}" end |
#validate(resource, value) ⇒ Object
Validate a value.
Calls Chef::Mixin::ParamsValidate#validate with #validation_options as options.
466 467 468 469 470 471 472 473 474 475 476 |
# File 'lib/chef/property.rb', line 466 def validate(resource, value) # nils are not validated unless we have an explicit default value if !value.nil? || has_default? if resource resource.validate({ name => value }, { name => }) else name = self.name || :property_type Chef::Mixin::ParamsValidate.validate({ name => value }, { name => }) end end end |
#validation_options ⇒ Hash<Symbol,Object>
Validation options. (See Chef::Mixin::ParamsValidate#validate.)
253 254 255 256 257 |
# File 'lib/chef/property.rb', line 253 def ||= .reject do |k, v| [:declared_in, :name, :instance_variable_name, :desired_state, :identity, :default, :name_property, :coerce, :required, :nillable, :sensitive].include?(k) end end |
#value_is_set?(resource) ⇒ Boolean
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.
603 604 605 606 607 608 609 |
# File 'lib/chef/property.rb', line 603 def value_is_set?(resource) if instance_variable_name resource.instance_variable_defined?(instance_variable_name) else true end end |