Class: Puppet::Pops::Types::PObjectType

Inherits:
PMetaType show all
Defined in:
lib/puppet/pops/types/p_object_type.rb

Overview

API:

  • public

Defined Under Namespace

Classes: PAnnotatedMember, PAttribute, PFunction

Constant Summary collapse

ATTRIBUTE_KIND_CONSTANT =

API:

  • public

'constant'.freeze
ATTRIBUTE_KIND_DERIVED =

API:

  • public

'derived'.freeze
ATTRIBUTE_KIND_GIVEN_OR_DERIVED =

API:

  • public

'given_or_derived'.freeze
ATTRIBUTE_KIND_REFERENCE =

API:

  • public

'reference'.freeze
TYPE_ATTRIBUTE_KIND =

API:

  • public

TypeFactory.enum(ATTRIBUTE_KIND_CONSTANT, ATTRIBUTE_KIND_DERIVED, ATTRIBUTE_KIND_GIVEN_OR_DERIVED, ATTRIBUTE_KIND_REFERENCE)
TYPE_OBJECT_NAME =

API:

  • public

Pcore::TYPE_QUALIFIED_REFERENCE
TYPE_ATTRIBUTE =

API:

  • public

TypeFactory.struct({
  KEY_TYPE => PType::DEFAULT,
  TypeFactory.optional(KEY_FINAL) => PBooleanType::DEFAULT,
  TypeFactory.optional(KEY_OVERRIDE) => PBooleanType::DEFAULT,
  TypeFactory.optional(KEY_KIND) => TYPE_ATTRIBUTE_KIND,
  KEY_VALUE => PAnyType::DEFAULT,
  TypeFactory.optional(KEY_ANNOTATIONS) => TYPE_ANNOTATIONS
})
TYPE_ATTRIBUTES =

API:

  • public

TypeFactory.hash_kv(Pcore::TYPE_MEMBER_NAME, TypeFactory.not_undef)
TYPE_ATTRIBUTE_CALLABLE =

API:

  • public

TypeFactory.callable(0,0)
TYPE_FUNCTION_TYPE =

API:

  • public

PType.new(PCallableType::DEFAULT)
TYPE_FUNCTION =

API:

  • public

TypeFactory.struct({
  KEY_TYPE => TYPE_FUNCTION_TYPE,
  TypeFactory.optional(KEY_FINAL) => PBooleanType::DEFAULT,
  TypeFactory.optional(KEY_OVERRIDE) => PBooleanType::DEFAULT,
  TypeFactory.optional(KEY_ANNOTATIONS) => TYPE_ANNOTATIONS
})
TYPE_FUNCTIONS =

API:

  • public

TypeFactory.hash_kv(Pcore::TYPE_MEMBER_NAME, TypeFactory.not_undef)
TYPE_EQUALITY =

API:

  • public

TypeFactory.variant(Pcore::TYPE_MEMBER_NAME, TypeFactory.array_of(Pcore::TYPE_MEMBER_NAME))
TYPE_CHECKS =

TBD

API:

  • public

PAnyType::DEFAULT
TYPE_OBJECT_I12N =

API:

  • public

TypeFactory.struct({
  TypeFactory.optional(KEY_NAME) => TYPE_OBJECT_NAME,
  TypeFactory.optional(KEY_PARENT) => PType::DEFAULT,
  TypeFactory.optional(KEY_ATTRIBUTES) => TYPE_ATTRIBUTES,
  TypeFactory.optional(KEY_FUNCTIONS) => TYPE_FUNCTIONS,
  TypeFactory.optional(KEY_EQUALITY) => TYPE_EQUALITY,
  TypeFactory.optional(KEY_EQUALITY_INCLUDE_TYPE) => PBooleanType::DEFAULT,
  TypeFactory.optional(KEY_CHECKS) =>  TYPE_CHECKS,
  TypeFactory.optional(KEY_ANNOTATIONS) => TYPE_ANNOTATIONS
})
DEFAULT =

API:

  • public

PObjectType.new(EMPTY_HASH)

Constants included from Annotatable

Annotatable::TYPE_ANNOTATIONS

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from PMetaType

#resolve, #resolve_hash, #resolve_literal_hash, #resolve_type_refs, #to_s

Methods included from Annotatable

#annotatable_accept, #init_annotatable

Methods inherited from PAnyType

#==, #assignable?, #callable?, #callable_with?, create, #generalize, new_function, #normalize, #really_instance?, #resolve, #roundtrip_with_string?, simple_name, #to_alias_expanded_s, #to_s

Methods inherited from TypedModelObject

_pcore_type, create_ptype, register_ptypes

Methods included from PuppetObject

#_pcore_all_contents, #_pcore_contents, #_pcore_type

Constructor Details

#initialize(name, init_hash_expression) ⇒ PObjectType #initialize(init_hash) ⇒ PObjectType

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.

Initialize an Object Type instance. The initialization will use either a name and an initialization hash expression, or a fully resolved initialization hash.

Overloads:

  • #initialize(name, init_hash_expression) ⇒ PObjectType

    Used when the Object type is loaded using a type alias expression. When that happens, it is important that the actual resolution of the expression is deferred until all definitions have been made known to the current loader. The object will then be resolved when it is loaded by the TypeParser. “resolved” here, means that the hash expression is fully resolved, and then passed to the #_pcore_init_from_hash method.

    Parameters:

    • The name of the object

    • The hash describing the Object features

  • #initialize(init_hash) ⇒ PObjectType

    Used when the object is created by the TypeFactory. The init_hash must be fully resolved.

    Parameters:

    • The hash describing the Object features

API:

  • private



372
373
374
375
376
377
378
379
380
381
# File 'lib/puppet/pops/types/p_object_type.rb', line 372

def initialize(_pcore_init_hash, init_hash_expression = nil)
  if _pcore_init_hash.is_a?(Hash)
    _pcore_init_from_hash(_pcore_init_hash)
  else
    @attributes = EMPTY_HASH
    @functions = EMPTY_HASH
    @name = TypeAsserter.assert_instance_of('object name', TYPE_OBJECT_NAME, _pcore_init_hash)
    @init_hash_expression = init_hash_expression
  end
end

Instance Attribute Details

#annotationsObject (readonly)

API:

  • public



354
355
356
# File 'lib/puppet/pops/types/p_object_type.rb', line 354

def annotations
  @annotations
end

#attributes(include_parent = false) ⇒ Hash{String=>PAttribute} (readonly)

Returns the attributes of this ‘Object` type. If include_parent is `true`, then all inherited attributes will be included in the returned `Hash`.

Parameters:

  • (defaults to: false)

    ‘true` if inherited attributes should be included

Returns:

  • a hash with the attributes

API:

  • public



779
780
781
# File 'lib/puppet/pops/types/p_object_type.rb', line 779

def attributes
  @attributes
end

#checksObject (readonly)

API:

  • public



353
354
355
# File 'lib/puppet/pops/types/p_object_type.rb', line 353

def checks
  @checks
end

#equalityObject (readonly)

API:

  • public



352
353
354
# File 'lib/puppet/pops/types/p_object_type.rb', line 352

def equality
  @equality
end

#functions(include_parent = false) ⇒ Hash{String=>PFunction} (readonly)

Returns the functions of this ‘Object` type. If include_parent is `true`, then all inherited functions will be included in the returned `Hash`.

Parameters:

  • (defaults to: false)

    ‘true` if inherited functions should be included

Returns:

  • a hash with the functions

API:

  • public



805
806
807
# File 'lib/puppet/pops/types/p_object_type.rb', line 805

def functions
  @functions
end

#nameObject (readonly)

API:

  • public



348
349
350
# File 'lib/puppet/pops/types/p_object_type.rb', line 348

def name
  @name
end

#parentObject (readonly)

API:

  • public



349
350
351
# File 'lib/puppet/pops/types/p_object_type.rb', line 349

def parent
  @parent
end

Class Method Details

.from_hash(hash) ⇒ Object

API:

  • public



570
571
572
# File 'lib/puppet/pops/types/p_object_type.rb', line 570

def self.from_hash(hash)
  new(hash, nil)
end

.register_ptype(loader, ir) ⇒ Object

API:

  • public



63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/puppet/pops/types/p_object_type.rb', line 63

def self.register_ptype(loader, ir)
  type = create_ptype(loader, ir, 'AnyType', '_pcore_init_hash' => TYPE_OBJECT_I12N)

  # Now, when the Object type exists, add annotations with keys derived from Annotation and freeze the types.
  annotations = TypeFactory.optional(PHashType.new(PType.new(Annotation._pcore_type), TypeFactory.hash_kv(Pcore::TYPE_MEMBER_NAME, PAnyType::DEFAULT)))
  TYPE_ATTRIBUTE.hashed_elements[KEY_ANNOTATIONS].replace_value_type(annotations)
  TYPE_FUNCTION.hashed_elements[KEY_ANNOTATIONS].replace_value_type(annotations)
  TYPE_OBJECT_I12N.hashed_elements[KEY_ANNOTATIONS].replace_value_type(annotations)
  PTypeSetType::TYPE_TYPESET_I12N.hashed_elements[KEY_ANNOTATIONS].replace_value_type(annotations)
  PTypeSetType::TYPE_TYPE_REFERENCE_I12N.hashed_elements[KEY_ANNOTATIONS].replace_value_type(annotations)
  type
end

Instance Method Details

#[](name) ⇒ Object

API:

  • public



661
662
663
664
665
666
667
668
# File 'lib/puppet/pops/types/p_object_type.rb', line 661

def [](name)
  member = @attributes[name] || @functions[name]
  if member.nil?
    rp = resolved_parent
    member = rp[name] if rp.is_a?(PObjectType)
  end
  member
end

#_pcore_init_from_hash(init_hash) ⇒ 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.

API:

  • private



575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
# File 'lib/puppet/pops/types/p_object_type.rb', line 575

def _pcore_init_from_hash(init_hash)
  TypeAsserter.assert_instance_of('object initializer', TYPE_OBJECT_I12N, init_hash)
  @attributes = EMPTY_HASH
  @functions = EMPTY_HASH

  # Name given to the loader have higher precedence than a name declared in the type
  @name ||= init_hash[KEY_NAME]
  @name.freeze unless @name.nil?

  @parent = init_hash[KEY_PARENT]

  parent_members = EMPTY_HASH
  parent_object_type = nil
  unless @parent.nil?
    check_self_recursion(self)
    rp = resolved_parent
    if rp.is_a?(PObjectType)
      parent_object_type = rp
      parent_members = rp.members(true)
    end
  end

  attr_specs = init_hash[KEY_ATTRIBUTES]
  unless attr_specs.nil? || attr_specs.empty?
    @attributes = Hash[attr_specs.map do |key, attr_spec|
      unless attr_spec.is_a?(Hash)
        attr_type = TypeAsserter.assert_instance_of(nil, PType::DEFAULT, attr_spec) { "attribute #{label}[#{key}]" }
        attr_spec = { KEY_TYPE => attr_type }
        attr_spec[KEY_VALUE] = nil if attr_type.is_a?(POptionalType)
      end
      attr = PAttribute.new(key, self, attr_spec)
      [attr.name, attr.assert_override(parent_members)]
    end].freeze
  end

  func_specs = init_hash[KEY_FUNCTIONS]
  unless func_specs.nil? || func_specs.empty?
    @functions = Hash[func_specs.map do |key, func_spec|
      func_spec = { KEY_TYPE => TypeAsserter.assert_instance_of(nil, TYPE_FUNCTION_TYPE, func_spec) { "function #{label}[#{key}]" } } unless func_spec.is_a?(Hash)
      func = PFunction.new(key, self, func_spec)
      name = func.name
      raise Puppet::ParseError, "#{func.label} conflicts with attribute with the same name" if @attributes.include?(name)
      [name, func.assert_override(parent_members)]
    end].freeze
  end

  @equality_include_type = init_hash[KEY_EQUALITY_INCLUDE_TYPE]
  @equality_include_type = true if @equality_include_type.nil?

  equality = init_hash[KEY_EQUALITY]
  equality = [equality] if equality.is_a?(String)
  if equality.is_a?(Array)
    unless equality.empty?
      raise Puppet::ParseError, 'equality_include_type = false cannot be combined with non empty equality specification' unless @equality_include_type
      parent_eq_attrs = nil
      equality.each do |attr_name|

        attr = parent_members[attr_name]
        if attr.nil?
          attr = @attributes[attr_name] || @functions[attr_name]
        elsif attr.is_a?(PAttribute)
          # Assert that attribute is not already include by parent equality
          parent_eq_attrs ||= parent_object_type.equality_attributes
          if parent_eq_attrs.include?(attr_name)
            including_parent = find_equality_definer_of(attr)
            raise Puppet::ParseError, "#{label} equality is referencing #{attr.label} which is included in equality of #{including_parent.label}"
          end
        end

        unless attr.is_a?(PAttribute)
          raise Puppet::ParseError, "#{label} equality is referencing non existent attribute '#{attr_name}'" if attr.nil?
          raise Puppet::ParseError, "#{label} equality is referencing #{attr.label}. Only attribute references are allowed"
        end
        if attr.kind == ATTRIBUTE_KIND_CONSTANT
          raise Puppet::ParseError, "#{label} equality is referencing constant #{attr.label}. Reference to constant is not allowed in equality"
        end
      end
    end
    equality.freeze
  end
  @equality = equality

  @checks = init_hash[KEY_CHECKS]
  init_annotatable(init_hash)
end

#_pcore_init_hash(include_name = true) ⇒ Hash{String=>Object}

The init_hash is primarily intended for serialization and string representation purposes. It creates a hash suitable for passing to PObjectType#new(init_hash)

Returns:

  • the features hash

API:

  • public



726
727
728
729
730
731
732
733
734
735
# File 'lib/puppet/pops/types/p_object_type.rb', line 726

def _pcore_init_hash(include_name = true)
  result = super()
  result[KEY_NAME] = @name if include_name && !@name.nil?
  result[KEY_PARENT] = @parent unless @parent.nil?
  result[KEY_ATTRIBUTES] = compressed_members_hash(@attributes) unless @attributes.empty?
  result[KEY_FUNCTIONS] = compressed_members_hash(@functions) unless @functions.empty?
  result[KEY_EQUALITY] = @equality unless @equality.nil?
  result[KEY_CHECKS] = @checks unless @checks.nil?
  result
end

#accept(visitor, guard) ⇒ Object

API:

  • public



670
671
672
673
674
675
676
677
# File 'lib/puppet/pops/types/p_object_type.rb', line 670

def accept(visitor, guard)
  guarded_recursion(guard, nil) do |g|
    super(visitor, g)
    @parent.accept(visitor, g) unless parent.nil?
    @attributes.values.each { |a| a.accept(visitor, g) }
    @functions.values.each { |f| f.accept(visitor, g) }
  end
end

#allocateObject

API:

  • public



691
692
693
# File 'lib/puppet/pops/types/p_object_type.rb', line 691

def allocate
  implementation_class.allocate
end

#attr_reader_name(se) ⇒ 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.

API:

  • private



562
563
564
565
566
567
568
# File 'lib/puppet/pops/types/p_object_type.rb', line 562

def attr_reader_name(se)
  if se.value_type.is_a?(PBooleanType) || se.value_type.is_a?(POptionalType) && se.value_type.type.is_a?(PBooleanType)
    "#{se.name}?"
  else
    se.name
  end
end

#callable_args?(callable, guard) ⇒ Boolean

Returns:

API:

  • public



679
680
681
# File 'lib/puppet/pops/types/p_object_type.rb', line 679

def callable_args?(callable, guard)
  @parent.nil? ? false : @parent.callable_args?(callable, guard)
end

#check_self_recursion(originator) ⇒ 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.

Assert that this type does not inherit from itself

API:

  • private



812
813
814
815
816
817
# File 'lib/puppet/pops/types/p_object_type.rb', line 812

def check_self_recursion(originator)
  unless @parent.nil?
    raise Puppet::Error, "The Object type '#{originator.label}' inherits from itself" if @parent.equal?(originator)
    @parent.check_self_recursion(originator)
  end
end

#create(*args) ⇒ Object

API:

  • public



695
696
697
# File 'lib/puppet/pops/types/p_object_type.rb', line 695

def create(*args)
  implementation_class.create(*args)
end

#create_i12n_typePStructType

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.

Creates the type that a initialization hash used for creating instances of this type must conform to.

Returns:

  • the initialization hash type

API:

  • private



707
708
709
710
711
712
713
714
715
716
717
718
719
# File 'lib/puppet/pops/types/p_object_type.rb', line 707

def create_i12n_type
  struct_elems = {}
  attributes(true).values.each do |attr|
    unless attr.kind == ATTRIBUTE_KIND_CONSTANT || attr.kind == ATTRIBUTE_KIND_DERIVED
      if attr.value?
        struct_elems[TypeFactory.optional(attr.name)] = attr.type
      else
        struct_elems[attr.name] = attr.type
      end
    end
  end
  TypeFactory.struct(struct_elems)
end

#create_new_function(loader) ⇒ 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.

API:

  • private



431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
# File 'lib/puppet/pops/types/p_object_type.rb', line 431

def create_new_function(loader)
  impl_class = implementation_class
  class_name = impl_class.name || "Anonymous Ruby class for #{name}"

  (param_names, param_types, required_param_count) = parameter_info(impl_class)

  # Create the callable with a size that reflects the required and optional parameters
  param_types << required_param_count
  param_types << param_names.size

  create_type = TypeFactory.callable(*param_types)
  from_hash_type = TypeFactory.callable(i12n_type, 1, 1)

  # Create and return a #new_XXX function where the dispatchers are added programmatically.
  Puppet::Functions.create_loaded_function(:"new_#{name}", loader) do

    # The class that creates new instances must be available to the constructor methods
    # and is therefore declared as a variable and accessor on the class that represents
    # this added function.
    @impl_class = impl_class

    def self.impl_class
      @impl_class
    end

    # It's recommended that an implementor of an Object type provides the method #from_asserted_hash.
    # This method should accept a hash and assume that type assertion has been made already (it is made
    # by the dispatch added here).
    if impl_class.respond_to?(:from_asserted_hash)
      dispatcher.add(Functions::Dispatch.new(from_hash_type, :from_hash, ['hash']))
      def from_hash(hash)
        self.class.impl_class.from_asserted_hash(hash)
      end
    end

    # Add the dispatch that uses the standard #from_asserted_args or #new method on the class. It's assumed that the
    # method performs no assertions.
    dispatcher.add(Functions::Dispatch.new(create_type, :create, param_names))
    if impl_class.respond_to?(:from_asserted_args)
      def create(*args)
        self.class.impl_class.from_asserted_args(*args)
      end
    else
      def create(*args)
        self.class.impl_class.new(*args)
      end
    end
  end
end

#eql?(o) ⇒ Boolean

Returns:

API:

  • public



737
738
739
740
741
742
743
744
745
# File 'lib/puppet/pops/types/p_object_type.rb', line 737

def eql?(o)
  self.class == o.class &&
    @name == o.name &&
    @parent == o.parent &&
    @attributes == o.attributes &&
    @functions == o.functions &&
    @equality == o.equality &&
    @checks == o.checks
end

#equality_attributesHash{String=>PAttribute}

Returns the attributes that participate in equality comparison. Inherited equality attributes are included.

Returns:

  • a hash of attributes

API:

  • public



787
788
789
790
791
# File 'lib/puppet/pops/types/p_object_type.rb', line 787

def equality_attributes
  all = {}
  collect_equality_attributes(all)
  all
end

#equality_include_type?Boolean

Returns ‘true` if this type is included when comparing instances.

Returns:

  • ‘true` if this type is included when comparing instances

API:

  • public



795
796
797
# File 'lib/puppet/pops/types/p_object_type.rb', line 795

def equality_include_type?
  @equality_include_type
end

#from_hash(hash) ⇒ Object

API:

  • public



699
700
701
# File 'lib/puppet/pops/types/p_object_type.rb', line 699

def from_hash(hash)
  implementation_class.from_hash(hash)
end

#hashObject

API:

  • public



747
748
749
# File 'lib/puppet/pops/types/p_object_type.rb', line 747

def hash
  @name.nil? ? [@parent, @attributes, @functions].hash : @name.hash
end

#i12n_typePStructType

Returns the type that a initialization hash used for creating instances of this type must conform to.

Returns:

  • the initialization hash type

API:

  • public



687
688
689
# File 'lib/puppet/pops/types/p_object_type.rb', line 687

def i12n_type
  @i12n_type ||= create_i12n_type
end

#implementation_class(create = true) ⇒ 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.

API:

  • private



482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
# File 'lib/puppet/pops/types/p_object_type.rb', line 482

def implementation_class(create = true)
  if @implementation_class.nil? && create
    ir = Loaders.implementation_registry
    impl_name = ir.nil? ? nil : ir.module_name_for_type(self)
    if impl_name.nil?
      # Use generator to create a default implementation
      @implementation_class = RubyGenerator.new.create_class(self)
    else
      # Can the mapping be loaded?
      class_name = impl_name[0]
      @implementation_class = ClassLoader.provide(class_name)

      raise Puppet::Error, "Unable to load class #{class_name}" if @implementation_class.nil?
      unless @implementation_class < PuppetObject || @implementation_class.respond_to?(:ecore)
        raise Puppet::Error, "Unable to create an instance of #{name}. #{class_name} does not include module #{PuppetObject.name}"
      end
    end
  end
  @implementation_class
end

#implementation_class=(cls) ⇒ 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.

Raises:

API:

  • private



504
505
506
507
# File 'lib/puppet/pops/types/p_object_type.rb', line 504

def implementation_class=(cls)
  raise ArgumentError, "attempt to redefine implementation class for #{label}" unless @implementation_class.nil?
  @implementation_class = cls
end

#instance?(o, guard = nil) ⇒ Boolean

Returns:

API:

  • public



383
384
385
386
387
388
389
390
391
392
# File 'lib/puppet/pops/types/p_object_type.rb', line 383

def instance?(o, guard = nil)
  if o.is_a?(PuppetObject)
    assignable?(o._pcore_type, guard)
  else
    name = o.class.name
    ir = Loaders.implementation_registry
    type = ir.nil? ? nil : ir.type_for_module(name)
    !type.nil? && assignable?(type, guard)
  end
end

#iterable?(guard = nil) ⇒ Boolean

Returns:

API:

  • public



755
756
757
# File 'lib/puppet/pops/types/p_object_type.rb', line 755

def iterable?(guard = nil)
  @parent.nil? ? false : @parent.iterable?(guard)
end

#iterable_type(guard = nil) ⇒ Object

API:

  • public



759
760
761
# File 'lib/puppet/pops/types/p_object_type.rb', line 759

def iterable_type(guard = nil)
  @parent.nil? ? false : @parent.iterable_type(guard)
end

#kind_of_callable?(optional = true, guard = nil) ⇒ Boolean

Returns:

API:

  • public



751
752
753
# File 'lib/puppet/pops/types/p_object_type.rb', line 751

def kind_of_callable?(optional=true, guard = nil)
  @parent.nil? ? false : @parent.kind_of_callable?(optional, guard)
end

#labelObject

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.

API:

  • private



820
821
822
# File 'lib/puppet/pops/types/p_object_type.rb', line 820

def label
  @name || '<anonymous object type>'
end

#members(include_parent = false) ⇒ Hash{String=>PAnnotatedMember}

Returns the members (attributes and functions) of this ‘Object` type. If include_parent is `true`, then all inherited members will be included in the returned `Hash`.

Parameters:

  • (defaults to: false)

    ‘true` if inherited members should be included

Returns:

  • a hash with the members

API:

  • public



769
770
771
# File 'lib/puppet/pops/types/p_object_type.rb', line 769

def members(include_parent = false)
  get_members(include_parent, :both)
end

#new_function(loader) ⇒ 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.

API:

  • private



395
396
397
# File 'lib/puppet/pops/types/p_object_type.rb', line 395

def new_function(loader)
  @new_function ||= create_new_function(loader)
end

#parameter_info(impl_class) ⇒ (Array<String>, Array<PAnyType>, Integer)

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 array of parameter names, array of parameter types, and a count reflecting the required number of parameters.

Returns:

  • array of parameter names, array of parameter types, and a count reflecting the required number of parameters

API:

  • private



511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
# File 'lib/puppet/pops/types/p_object_type.rb', line 511

def parameter_info(impl_class)
  # Create a types and a names array where optional entries ends up last
  opt_types = []
  opt_names = []
  non_opt_types = []
  non_opt_names = []
  i12n_type.elements.each do |se|
    if se.key_type.is_a?(POptionalType)
      opt_names << se.name
      opt_types << se.value_type
    else
      non_opt_names << se.name
      non_opt_types << se.value_type
    end
  end
  param_names = non_opt_names + opt_names
  param_types = non_opt_types + opt_types
  param_count = param_names.size

  init = impl_class.respond_to?(:from_asserted_args) ? impl_class.method(:from_asserted_args) : impl_class.instance_method(:initialize)
  init_non_opt_count = 0
  init_param_names = init.parameters.map do |p|
    init_non_opt_count += 1 if :req == p[0]
    p[1].to_s
  end

  if init_param_names != param_names
    if init_param_names.size < param_count || init_non_opt_count > param_count
      raise Serialization::SerializationError, "Initializer for class #{impl_class.name} does not match the attributes of #{name}"
    end
    init_param_names = init_param_names[0, param_count] if init_param_names.size > param_count
    unless init_param_names == param_names
      # Reorder needed to match initialize method arguments
      new_param_types = []
      init_param_names.each do |ip|
        index = param_names.index(ip)
        if index.nil?
          raise Serialization::SerializationError,
            "Initializer for class #{impl_class.name} parameter '#{ip}' does not match any of the the attributes of type #{name}"
        end
        new_param_types << param_types[index]
      end
      param_names = init_param_names
      param_types = new_param_types
    end
  end

  [param_names, param_types, non_opt_types.size]
end

#read(value_count, deserializer) ⇒ 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.

Read an instance of this type from a deserializer

Parameters:

  • the number attributes needed to create the instance

  • the deserializer to read from

Returns:

  • the created instance

API:

  • private



418
419
420
# File 'lib/puppet/pops/types/p_object_type.rb', line 418

def read(value_count, deserializer)
  reader.read(implementation_class, value_count, deserializer)
end

#reader=(reader) ⇒ 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.

Assign a new instance reader to this type

Parameters:

  • the reader to assign

API:

  • private



402
403
404
# File 'lib/puppet/pops/types/p_object_type.rb', line 402

def reader=(reader)
  @reader = reader
end

#resolved_parentObject

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.

API:

  • private



825
826
827
828
829
830
831
# File 'lib/puppet/pops/types/p_object_type.rb', line 825

def resolved_parent
  parent = @parent
  while parent.is_a?(PTypeAliasType)
    parent = parent.resolved_type
  end
  parent
end

#simple_nameObject

API:

  • public



833
834
835
# File 'lib/puppet/pops/types/p_object_type.rb', line 833

def simple_name
  label.split(DOUBLE_COLON).last
end

#write(value, serializer) ⇒ 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.

Write an instance of this type using a serializer

Parameters:

  • the instance to write

  • serializer to write to

API:

  • private



426
427
428
# File 'lib/puppet/pops/types/p_object_type.rb', line 426

def write(value, serializer)
  writer.write(self, value, serializer)
end

#writer=(writer) ⇒ 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.

Assign a new instance write to this type

Parameters:

  • writer to assign

API:

  • private



409
410
411
# File 'lib/puppet/pops/types/p_object_type.rb', line 409

def writer=(writer)
  @writer = writer
end