Class: Puppet::Pops::Types::PPatternType

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

Overview

Represents a subtype of String that narrows the string to those matching the patterns If specified without a pattern it is basically the same as the String type.

Constant Summary collapse

DEFAULT =
PPatternType.new(EMPTY_ARRAY)

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from PScalarType

#roundtrip_with_string?

Methods inherited from PAnyType

#==, #assignable?, #callable?, #callable_args?, #callable_with?, #check_self_recursion, create, #create, #generalize, #iterable?, #iterable_type, #kind_of_callable?, #loader, #name, #new_function, new_function, #normalize, #really_instance?, #resolve, #roundtrip_with_string?, simple_name, #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_init_hash, #_pcore_type

Constructor Details

#initialize(patterns) ⇒ PPatternType

Returns a new instance of PPatternType.



1715
1716
1717
# File 'lib/puppet/pops/types/types.rb', line 1715

def initialize(patterns)
  @patterns = patterns.freeze
end

Instance Attribute Details

#patternsObject (readonly)



1713
1714
1715
# File 'lib/puppet/pops/types/types.rb', line 1713

def patterns
  @patterns
end

Class Method Details

.register_ptype(loader, ir) ⇒ Object



1709
1710
1711
# File 'lib/puppet/pops/types/types.rb', line 1709

def self.register_ptype(loader, ir)
  create_ptype(loader, ir, 'ScalarDataType', 'patterns' => PArrayType.new(PRegexpType::DEFAULT))
end

Instance Method Details

#accept(visitor, guard) ⇒ Object



1719
1720
1721
1722
# File 'lib/puppet/pops/types/types.rb', line 1719

def accept(visitor, guard)
  super
  @patterns.each { |p| p.accept(visitor, guard) }
end

#eql?(o) ⇒ Boolean

Returns:

  • (Boolean)


1728
1729
1730
# File 'lib/puppet/pops/types/types.rb', line 1728

def eql?(o)
  self.class == o.class && @patterns.size == o.patterns.size && (@patterns - o.patterns).empty?
end

#hashObject



1724
1725
1726
# File 'lib/puppet/pops/types/types.rb', line 1724

def hash
  @patterns.hash
end

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

Returns:

  • (Boolean)


1732
1733
1734
# File 'lib/puppet/pops/types/types.rb', line 1732

def instance?(o, guard = nil)
  o.is_a?(String) && (@patterns.empty? || @patterns.any? { |p| p.regexp.match(o) })
end