Class: Puppet::Pops::Types::PObjectType::PAnnotatedMember Abstract
- Includes:
- Annotatable
- Defined in:
- lib/puppet/pops/types/p_object_type.rb
Overview
Encapsulates behavior common to PAttribute and PFunction
Direct Known Subclasses
Constant Summary
Constants included from Annotatable
Instance Attribute Summary collapse
-
#container ⇒ PObjectType
readonly
The object type containing this member.
-
#name ⇒ String
readonly
The name of this member.
-
#type ⇒ PAnyType
readonly
The type of this member.
Class Method Summary collapse
Instance Method Summary collapse
- #==(o) ⇒ Object
-
#_pcore_init_hash ⇒ Hash{String=>Object}
private
Returns the member as a hash suitable as an argument for constructor.
-
#accept(visitor, guard) ⇒ Object
Delegates to the contained type.
-
#assert_can_be_overridden(member) ⇒ PAnnotatedMember
private
Checks if the given member can override this member.
-
#assert_override(parent_members) ⇒ PAnnotatedMember
private
Checks if the this member overrides an inherited member, and if so, that this member is declared with override = true and that the inherited member accepts to be overridden by this member.
- #constant? ⇒ Boolean
- #create_dispatch(instance) ⇒ Object private
- #eql?(o) ⇒ Boolean
- #feature_type ⇒ Object private
-
#final? ⇒ Boolean
‘true` if this feature cannot be overridden.
- #hash ⇒ Object
-
#initialize(name, container, init_hash) ⇒ PAnnotatedMember
constructor
A new instance of PAnnotatedMember.
-
#invoke(receiver, scope, args, &block) ⇒ Object
private
Performs type checking of arguments and invokes the method that corresponds to this method.
- #label ⇒ Object private
-
#override? ⇒ Boolean
‘true` if this feature must override an inherited feature.
Methods included from Annotatable
#annotatable_accept, #annotations, #init_annotatable
Constructor Details
#initialize(name, container, init_hash) ⇒ PAnnotatedMember
Returns a new instance of PAnnotatedMember.
105 106 107 108 109 110 111 112 113 114 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 105 def initialize(name, container, init_hash) @name = name @container = container @type = init_hash[KEY_TYPE] @override = init_hash[KEY_OVERRIDE] @override = false if @override.nil? @final = init_hash[KEY_FINAL] @final = false if @final.nil? init_annotatable(init_hash) end |
Instance Attribute Details
#container ⇒ PObjectType (readonly)
Returns the object type containing this member.
87 88 89 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 87 def container @container end |
#name ⇒ String (readonly)
Returns the name of this member.
91 92 93 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 91 def name @name end |
#type ⇒ PAnyType (readonly)
Returns the type of this member.
95 96 97 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 95 def type @type end |
Class Method Details
.feature_type ⇒ 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.
239 240 241 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 239 def self.feature_type raise NotImplementedError, "'#{self.class.name}' should implement #feature_type" end |
.label(container, name) ⇒ Object
243 244 245 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 243 def self.label(container, name) "#{feature_type} #{container.label}[#{name}]" end |
Instance Method Details
#==(o) ⇒ Object
183 184 185 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 183 def ==(o) eql?(o) end |
#_pcore_init_hash ⇒ Hash{String=>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.
Returns the member as a hash suitable as an argument for constructor. Name is excluded
190 191 192 193 194 195 196 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 190 def _pcore_init_hash hash = { KEY_TYPE => @type } hash[KEY_FINAL] = true if @final hash[KEY_OVERRIDE] = true if @override hash[KEY_ANNOTATIONS] = @annotations unless @annotations.nil? hash end |
#accept(visitor, guard) ⇒ Object
Delegates to the contained type
120 121 122 123 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 120 def accept(visitor, guard) annotatable_accept(visitor, guard) @type.accept(visitor, guard) end |
#assert_can_be_overridden(member) ⇒ PAnnotatedMember
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.
Checks if the given member can override this member.
148 149 150 151 152 153 154 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 148 def assert_can_be_overridden(member) raise Puppet::ParseError, "#{member.label} attempts to override #{label}" unless self.class == member.class raise Puppet::ParseError, "#{member.label} attempts to override final #{label}" if @final && !(constant? && member.constant?) raise Puppet::ParseError, "#{member.label} attempts to override #{label} without having override => true" unless member.override? raise Puppet::ParseError, "#{member.label} attempts to override #{label} with a type that does not match" unless @type.assignable?(member.type) member end |
#assert_override(parent_members) ⇒ PAnnotatedMember
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.
Checks if the this member overrides an inherited member, and if so, that this member is declared with override = true and that the inherited member accepts to be overridden by this member.
132 133 134 135 136 137 138 139 140 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 132 def assert_override(parent_members) parent_member = parent_members[@name] if parent_member.nil? raise Puppet::ParseError, "expected #{label} to override an inherited #{feature_type}, but no such #{feature_type} was found" if @override self else parent_member.assert_can_be_overridden(self) end end |
#constant? ⇒ Boolean
156 157 158 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 156 def constant? false end |
#create_dispatch(instance) ⇒ 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.
227 228 229 230 231 232 233 234 235 236 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 227 def create_dispatch(instance) # TODO: Assumes Ruby implementation for now if(callable_type.is_a?(PVariantType)) callable_type.types.map do |ct| Functions::Dispatch.new(ct, name, [], false, ct.block_type.nil? ? nil : 'block') end else [Functions::Dispatch.new(callable_type, name, [], false, callable_type.block_type.nil? ? nil : 'block')] end end |
#eql?(o) ⇒ Boolean
178 179 180 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 178 def eql?(o) self.class == o.class && @name == o.name && @type == o.type && @override == o.override? && @final == o.final? end |
#feature_type ⇒ 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.
199 200 201 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 199 def feature_type self.class.feature_type end |
#final? ⇒ Boolean
Returns ‘true` if this feature cannot be overridden.
162 163 164 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 162 def final? @final end |
#hash ⇒ Object
173 174 175 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 173 def hash @name.hash ^ @type.hash end |
#invoke(receiver, scope, args, &block) ⇒ 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.
Performs type checking of arguments and invokes the method that corresponds to this method. The result of the invocation is returned
217 218 219 220 221 222 223 224 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 217 def invoke(receiver, scope, args, &block) @dispatch ||= create_dispatch(receiver) args_type = TypeCalculator.infer_set(block_given? ? args + [block] : args) found = @dispatch.find { |d| d.type.callable?(args_type) } raise ArgumentError, TypeMismatchDescriber.describe_signatures(label, @dispatch, args_type) if found.nil? found.invoke(receiver, scope, args, &block) end |
#label ⇒ 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.
204 205 206 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 204 def label self.class.label(@container, @name) end |
#override? ⇒ Boolean
Returns ‘true` if this feature must override an inherited feature.
168 169 170 |
# File 'lib/puppet/pops/types/p_object_type.rb', line 168 def override? @override end |