Class: Puppet::Pops::Types::PStringType
Constant Summary
collapse
- DEFAULT =
PStringType.new(nil)
- NON_EMPTY =
PStringType.new(PCollectionType::NOT_EMPTY_SIZE)
- ITERABLE_TYPE =
Iterates over each character of the string
PIterableType.new(PStringType.new(PIntegerType.new(1,1)))
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, #kind_of_callable?, #name, #new_function, #normalize, #really_instance?, #resolve, #roundtrip_with_string?, simple_name, #simple_name, #to_alias_expanded_s, #to_s
_pcore_type, create_ptype, register_ptypes
#_pcore_all_contents, #_pcore_contents, #_pcore_init_hash, #_pcore_type
Constructor Details
#initialize(size_type_or_value, deprecated_multi_args = EMPTY_ARRAY) ⇒ PStringType
Returns a new instance of PStringType.
1384
1385
1386
1387
1388
1389
1390
1391
1392
|
# File 'lib/puppet/pops/types/types.rb', line 1384
def initialize(size_type_or_value, deprecated_multi_args = EMPTY_ARRAY)
unless deprecated_multi_args.empty?
if Puppet[:strict] != :off
Puppet.warn_once('deprecations', "PStringType#initialize_multi_args", "Passing more than one argument to PStringType#initialize is deprecated")
end
size_type_or_value = deprecated_multi_args[0]
end
@size_type_or_value = size_type_or_value
end
|
Instance Attribute Details
#size_type_or_value ⇒ Object
1382
1383
1384
|
# File 'lib/puppet/pops/types/types.rb', line 1382
def size_type_or_value
@size_type_or_value
end
|
Class Method Details
.new_function(_, loader) ⇒ Object
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
|
# File 'lib/puppet/pops/types/types.rb', line 1464
def self.new_function(_, loader)
@new_function ||= Puppet::Functions.create_loaded_function(:new_string, loader) do
local_types do
type 'Format = Pattern[/^%([\s\+\-#0\[\{<\(\|]*)([1-9][0-9]*)?(?:\.([0-9]+))?([a-zA-Z])/]'
type 'ContainerFormat = Struct[{
Optional[format] => String,
Optional[separator] => String,
Optional[separator2] => String,
Optional[string_formats] => Hash[Type, Format]
}]'
type 'TypeMap = Hash[Type, Variant[Format, ContainerFormat]]'
type 'Convertible = Any'
type 'Formats = Variant[Default, String[1], TypeMap]'
end
dispatch :from_args do
param 'Convertible', :from
optional_param 'Formats', :string_formats
end
def from_args(from, formats = :default)
StringConverter.singleton.convert(from, formats)
end
end
end
|
.register_ptype(loader, ir) ⇒ Object
Instance Method Details
#accept(visitor, guard) ⇒ Object
1394
1395
1396
1397
|
# File 'lib/puppet/pops/types/types.rb', line 1394
def accept(visitor, guard)
super
@size_type_or_value.accept(visitor, guard) if @size_type_or_value.is_a?(PIntegerType)
end
|
#derived_size_type ⇒ Object
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
|
# File 'lib/puppet/pops/types/types.rb', line 1453
def derived_size_type
if @size_type_or_value.is_a?(PIntegerType)
@size_type_or_value
elsif @size_type_or_value.is_a?(String)
sz = @size_type_or_value.size
PIntegerType.new(sz, sz)
else
PCollectionType::DEFAULT_SIZE
end
end
|
#eql?(o) ⇒ Boolean
1415
1416
1417
|
# File 'lib/puppet/pops/types/types.rb', line 1415
def eql?(o)
self.class == o.class && @size_type_or_value == o.size_type_or_value
end
|
#generalize ⇒ Object
1399
1400
1401
|
# File 'lib/puppet/pops/types/types.rb', line 1399
def generalize
DEFAULT
end
|
1403
1404
1405
|
# File 'lib/puppet/pops/types/types.rb', line 1403
def hash
@size_type_or_value.hash
end
|
#instance?(o, guard = nil) ⇒ Boolean
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
|
# File 'lib/puppet/pops/types/types.rb', line 1419
def instance?(o, guard = nil)
if o.is_a?(String)
if @size_type_or_value.is_a?(PIntegerType)
@size_type_or_value.instance?(o.size, guard)
else
@size_type_or_value.nil? ? true : o == value
end
else
false
end
end
|
#iterable?(guard = nil) ⇒ Boolean
1407
1408
1409
|
# File 'lib/puppet/pops/types/types.rb', line 1407
def iterable?(guard = nil)
true
end
|
#iterable_type(guard = nil) ⇒ Object
1411
1412
1413
|
# File 'lib/puppet/pops/types/types.rb', line 1411
def iterable_type(guard = nil)
ITERABLE_TYPE
end
|
#size_type ⇒ Object
1445
1446
1447
|
# File 'lib/puppet/pops/types/types.rb', line 1445
def size_type
@size_type_or_value.is_a?(PIntegerType) ? @size_type_or_value : nil
end
|
1432
1433
1434
|
# File 'lib/puppet/pops/types/types.rb', line 1432
def value
@size_type_or_value.is_a?(PIntegerType) ? nil : @size_type_or_value
end
|
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.
1438
1439
1440
1441
1442
1443
|
# File 'lib/puppet/pops/types/types.rb', line 1438
def values
if Puppet[:strict] != :off
Puppet.warn_once('deprecations', "PStringType#values", "Method PStringType#values is deprecated. Use #value instead")
end
@value.is_a?(String) ? [@value] : EMPTY_ARRAY
end
|