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 PAnyType
#==, #assignable?, #callable?, #callable_args?, #check_self_recursion, #create, #kind_of_callable?, #name, #new_function, #normalize, #really_instance?, #resolve, simple_name, #simple_name, #to_alias_expanded_s, #to_s
_ptype, create_ptype, register_ptypes
#_ptype
Constructor Details
#initialize(size_type_or_value, deprecated_multi_args = EMPTY_ARRAY) ⇒ PStringType
Returns a new instance of PStringType.
1362
1363
1364
1365
1366
1367
1368
1369
1370
|
# File 'lib/puppet/pops/types/types.rb', line 1362
def initialize(size_type_or_value, deprecated_multi_args = EMPTY_ARRAY)
unless deprecated_multi_args.empty?
if Puppet[:strict] != :off
Puppet.warn_once(:deprecatation, "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
1360
1361
1362
|
# File 'lib/puppet/pops/types/types.rb', line 1360
def size_type_or_value
@size_type_or_value
end
|
Class Method Details
.new_function(_, loader) ⇒ Object
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
|
# File 'lib/puppet/pops/types/types.rb', line 1442
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
1352
1353
1354
1355
1356
1357
1358
|
# File 'lib/puppet/pops/types/types.rb', line 1352
def self.register_ptype(loader, ir)
create_ptype(loader, ir, 'ScalarType',
'size_type_or_value' => {
KEY_TYPE => POptionalType.new(PVariantType.new([PStringType::DEFAULT, PType.new(PIntegerType::DEFAULT)])),
KEY_VALUE => nil
})
end
|
Instance Method Details
#accept(visitor, guard) ⇒ Object
1372
1373
1374
1375
|
# File 'lib/puppet/pops/types/types.rb', line 1372
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
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
|
# File 'lib/puppet/pops/types/types.rb', line 1431
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
1393
1394
1395
|
# File 'lib/puppet/pops/types/types.rb', line 1393
def eql?(o)
self.class == o.class && @size_type_or_value == o.size_type_or_value
end
|
#generalize ⇒ Object
1377
1378
1379
|
# File 'lib/puppet/pops/types/types.rb', line 1377
def generalize
DEFAULT
end
|
1381
1382
1383
|
# File 'lib/puppet/pops/types/types.rb', line 1381
def hash
@size_type_or_value.hash
end
|
#instance?(o, guard = nil) ⇒ Boolean
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
|
# File 'lib/puppet/pops/types/types.rb', line 1397
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
1385
1386
1387
|
# File 'lib/puppet/pops/types/types.rb', line 1385
def iterable?(guard = nil)
true
end
|
#iterable_type(guard = nil) ⇒ Object
1389
1390
1391
|
# File 'lib/puppet/pops/types/types.rb', line 1389
def iterable_type(guard = nil)
ITERABLE_TYPE
end
|
#size_type ⇒ Object
1423
1424
1425
|
# File 'lib/puppet/pops/types/types.rb', line 1423
def size_type
@size_type_or_value.is_a?(PIntegerType) ? @size_type_or_value : nil
end
|
1410
1411
1412
|
# File 'lib/puppet/pops/types/types.rb', line 1410
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.
1416
1417
1418
1419
1420
1421
|
# File 'lib/puppet/pops/types/types.rb', line 1416
def values
if Puppet[:strict] != :off
Puppet.warn_once(:deprecatation, "PStringType#values", "Method PStringType#values is deprecated. Use #value instead")
end
@value.is_a?(String) ? [@value] : EMPTY_ARRAY
end
|