Class: Chef::Resource::Notification
- Inherits:
-
Struct
- Object
- Struct
- Chef::Resource::Notification
- Defined in:
- lib/chef/resource/resource_notification.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#notifying_resource ⇒ Object
Returns the value of attribute notifying_resource.
-
#resource ⇒ Object
Returns the value of attribute resource.
Instance Method Summary collapse
- #duplicates?(other_notification) ⇒ Boolean
-
#fix_notifier_reference(resource_collection) ⇒ Object
This will look up the notifying_resource if it is not a Resource Object.
-
#fix_resource_reference(resource_collection) ⇒ Object
This will look up the resource if it is not a Resource Object.
-
#resolve_resource_reference(resource_collection) ⇒ Object
If resource and/or notifying_resource is not a resource object, this will look them up in the resource collection and fix the references from strings to actual Resource objects.
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action
23 24 25 |
# File 'lib/chef/resource/resource_notification.rb', line 23 def action @action end |
#notifying_resource ⇒ Object
Returns the value of attribute notifying_resource
23 24 25 |
# File 'lib/chef/resource/resource_notification.rb', line 23 def end |
#resource ⇒ Object
Returns the value of attribute resource
23 24 25 |
# File 'lib/chef/resource/resource_notification.rb', line 23 def resource @resource end |
Instance Method Details
#duplicates?(other_notification) ⇒ Boolean
25 26 27 28 29 30 31 32 |
# File 'lib/chef/resource/resource_notification.rb', line 25 def duplicates?(other_notification) unless other_notification.respond_to?(:resource) && other_notification.respond_to?(:action) msg = "only duck-types of Chef::Resource::Notification can be checked for duplication "\ "you gave #{other_notification.inspect}" raise ArgumentError, msg end other_notification.resource == resource && other_notification.action == action end |
#fix_notifier_reference(resource_collection) ⇒ Object
This will look up the notifying_resource if it is not a Resource Object. It will complain if it finds multiple resources, can’t find a resource, or gets invalid syntax.
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 |
# File 'lib/chef/resource/resource_notification.rb', line 79 def fix_notifier_reference(resource_collection) matching_notifier = resource_collection.find() if Array(matching_notifier).size > 1 msg = "Notification #{self} from #{notifying_resource} was created with a reference to multiple notifying "\ "resources, but can only originate from one resource. Destination resource was defined "\ "on #{resource.source_line}" raise Chef::Exceptions::InvalidResourceReference, msg end self. = matching_notifier rescue Chef::Exceptions::ResourceNotFound => e err = Chef::Exceptions::ResourceNotFound.new("Resource \#{resource} is configured to receive notifications from \#{notifying_resource} with action \#{action}, \\\nbut \#{notifying_resource} cannot be found in the resource collection. \#{resource} is defined in \\\n\#{resource.source_line}\n FAIL\n err.set_backtrace(e.backtrace)\n raise err\nrescue Chef::Exceptions::InvalidResourceSpecification => e\n err = Chef::Exceptions::InvalidResourceSpecification.new(<<-F)\nResource \#{resource} is configured to receive notifications from \#{notifying_resource} with action \#{action}, \\\nbut \#{notifying_resource.inspect} is not valid syntax to look up a resource in the resource collection. Notification \\\nis defined near \#{resource.source_line}\n F\n err.set_backtrace(e.backtrace)\n raise err\nend\n") |
#fix_resource_reference(resource_collection) ⇒ Object
This will look up the resource if it is not a Resource Object. It will complain if it finds multiple resources, can’t find a resource, or gets invalid syntax.
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/chef/resource/resource_notification.rb', line 50 def fix_resource_reference(resource_collection) matching_resource = resource_collection.find(resource) if Array(matching_resource).size > 1 msg = "Notification #{self} from #{notifying_resource} was created with a reference to multiple resources, "\ "but can only notify one resource. Notifying resource was defined on #{notifying_resource.source_line}" raise Chef::Exceptions::InvalidResourceReference, msg end self.resource = matching_resource rescue Chef::Exceptions::ResourceNotFound => e err = Chef::Exceptions::ResourceNotFound.new("resource \#{notifying_resource} is configured to notify resource \#{resource} with action \#{action}, \\\nbut \#{resource} cannot be found in the resource collection. \#{notifying_resource} is defined in \\\n\#{notifying_resource.source_line}\n FAIL\n err.set_backtrace(e.backtrace)\n raise err\nrescue Chef::Exceptions::InvalidResourceSpecification => e\n err = Chef::Exceptions::InvalidResourceSpecification.new(<<-F)\nResource \#{notifying_resource} is configured to notify resource \#{resource} with action \#{action}, \\\nbut \#{resource.inspect} is not valid syntax to look up a resource in the resource collection. Notification \\\nis defined near \#{notifying_resource.source_line}\n F\n err.set_backtrace(e.backtrace)\n raise err\nend\n") |
#resolve_resource_reference(resource_collection) ⇒ Object
If resource and/or notifying_resource is not a resource object, this will look them up in the resource collection and fix the references from strings to actual Resource objects.
36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/chef/resource/resource_notification.rb', line 36 def resolve_resource_reference(resource_collection) return resource if resource.kind_of?(Chef::Resource) && .kind_of?(Chef::Resource) if not(resource.kind_of?(Chef::Resource)) fix_resource_reference(resource_collection) end if not(.kind_of?(Chef::Resource)) fix_notifier_reference(resource_collection) end end |