Class: Puppet::Pops::Types::TypeParser Private

Inherits:
Object
  • Object
show all
Extended by:
Concurrent::ThreadLocalSingleton
Defined in:
lib/puppet/pops/types/type_parser.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Concurrent::ThreadLocalSingleton

singleton

Constructor Details

#initializeTypeParser

Returns a new instance of TypeParser.



18
19
20
21
# File 'lib/puppet/pops/types/type_parser.rb', line 18

def initialize
  @parser = Parser::Parser.new
  @type_transformer = Visitor.new(nil, 'interpret', 1, 1)
end

Class Method Details

.opt_type_mapObject

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.



213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# File 'lib/puppet/pops/types/type_parser.rb', line 213

def self.opt_type_map
  # Map of common (and simple to optimize) data types in string form
  # (Note that some types are the result of evaluation even if they appear to be simple
  # - for example 'Data' and they cannot be optimized this way since the factory calls
  # back to the parser for evaluation).
  #
  @opt_type_map ||= {
    'Integer' => TypeFactory.integer,
    'Float' => TypeFactory.float,
    'Numeric' => TypeFactory.numeric,

    'String' => TypeFactory.string,
    'String[1]' => TypeFactory.string(TypeFactory.range(1, :default)),

    'Binary' => TypeFactory.binary,

    'Boolean' => TypeFactory.boolean,
    'Boolean[true]' => TypeFactory.boolean(true),
    'Boolean[false]' => TypeFactory.boolean(false),

    'Array' => TypeFactory.array_of_any,
    'Array[1]' => TypeFactory.array_of(TypeFactory.any, TypeFactory.range(1, :default)),

    'Hash' => TypeFactory.hash_of_any,
    'Collection' => TypeFactory.collection,
    'Scalar' => TypeFactory.scalar,

    'Scalardata' => TypeFactory.scalar_data,
    'ScalarData' => TypeFactory.scalar_data,

    'Catalogentry' => TypeFactory.catalog_entry,
    'CatalogEntry' => TypeFactory.catalog_entry,

    'Undef' => TypeFactory.undef,
    'Default' => TypeFactory.default,
    'Any' => TypeFactory.any,
    'Type' => TypeFactory.type_type,
    'Callable' => TypeFactory.all_callables,

    'Semver' => TypeFactory.sem_ver,
    'SemVer' => TypeFactory.sem_ver,

    'Semverrange' => TypeFactory.sem_ver_range,
    'SemVerRange' => TypeFactory.sem_ver_range,

    'Timestamp' => TypeFactory.timestamp,
    'TimeStamp' => TypeFactory.timestamp,

    'Timespan' => TypeFactory.timespan,
    'TimeSpan' => TypeFactory.timespan,

    'Uri' => TypeFactory.uri,
    'URI' => TypeFactory.uri,

    'Optional[Integer]' => TypeFactory.optional(TypeFactory.integer),
    'Optional[String]' => TypeFactory.optional(TypeFactory.string),
    'Optional[String[1]]' => TypeFactory.optional(TypeFactory.string(TypeFactory.range(1, :default))),
    'Optional[Array]' => TypeFactory.optional(TypeFactory.array_of_any),
    'Optional[Hash]' => TypeFactory.optional(TypeFactory.hash_of_any),

  }.freeze
end

.type_mapObject

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.



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'lib/puppet/pops/types/type_parser.rb', line 165

def self.type_map
  @type_map ||= {
    'integer' => TypeFactory.integer,
    'float' => TypeFactory.float,
    'numeric' => TypeFactory.numeric,
    'init' => TypeFactory.init,
    'iterable' => TypeFactory.iterable,
    'iterator' => TypeFactory.iterator,
    'string' => TypeFactory.string,
    'binary' => TypeFactory.binary,
    'sensitive' => TypeFactory.sensitive,
    'enum' => TypeFactory.enum,
    'boolean' => TypeFactory.boolean,
    'pattern' => TypeFactory.pattern,
    'regexp' => TypeFactory.regexp,
    'array' => TypeFactory.array_of_any,
    'hash' => TypeFactory.hash_of_any,
    'class' => TypeFactory.host_class,
    'resource' => TypeFactory.resource,
    'collection' => TypeFactory.collection,
    'scalar' => TypeFactory.scalar,
    'scalardata' => TypeFactory.scalar_data,
    'catalogentry' => TypeFactory.catalog_entry,
    'undef' => TypeFactory.undef,
    'notundef' => TypeFactory.not_undef,
    'default' => TypeFactory.default,
    'any' => TypeFactory.any,
    'variant' => TypeFactory.variant,
    'optional' => TypeFactory.optional,
    'runtime' => TypeFactory.runtime,
    'type' => TypeFactory.type_type,
    'tuple' => TypeFactory.tuple,
    'struct' => TypeFactory.struct,
    'object' => TypeFactory.object,
    'typealias' => TypeFactory.type_alias,
    'typereference' => TypeFactory.type_reference,
    'typeset' => TypeFactory.type_set,
    # A generic callable as opposed to one that does not accept arguments
    'callable' => TypeFactory.all_callables,
    'semver' => TypeFactory.sem_ver,
    'semverrange' => TypeFactory.sem_ver_range,
    'timestamp' => TypeFactory.timestamp,
    'timespan' => TypeFactory.timespan,
    'uri' => TypeFactory.uri,
  }.freeze
end

Instance Method Details

#interpret(ast, context = nil) ⇒ PAnyType

Returns a specialization of the PAnyType representing the type.

Parameters:

Returns:

  • (PAnyType)

    a specialization of the PAnyType representing the type.



59
60
61
62
63
# File 'lib/puppet/pops/types/type_parser.rb', line 59

def interpret(ast, context = nil)
  result = @type_transformer.visit_this_1(self, ast, context)
  raise_invalid_type_specification_error(ast) unless result.is_a?(PAnyType)
  result
end

#interpret_AccessExpression(ast, context) ⇒ 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.



305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
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
# File 'lib/puppet/pops/types/type_parser.rb', line 305

def interpret_AccessExpression(ast, context)
  parameters = ast.keys.collect { |param| interpret_any(param, context) }

  qref = ast.left_expr
  raise_invalid_type_specification_error(ast) unless qref.is_a?(Model::QualifiedReference)

  type_name = qref.value
  case type_name
  when 'array'
    case parameters.size
    when 1
      type = assert_type(ast, parameters[0])
    when 2
      if parameters[0].is_a?(PAnyType)
        type = parameters[0]
        size_type =
          if parameters[1].is_a?(PIntegerType)
            size_type = parameters[1]
          else
            assert_range_parameter(ast, parameters[1])
            TypeFactory.range(parameters[1], :default)
          end
      else
        type = :default
        assert_range_parameter(ast, parameters[0])
        assert_range_parameter(ast, parameters[1])
        size_type = TypeFactory.range(parameters[0], parameters[1])
      end
    when 3
      type = assert_type(ast, parameters[0])
      assert_range_parameter(ast, parameters[1])
      assert_range_parameter(ast, parameters[2])
      size_type = TypeFactory.range(parameters[1], parameters[2])
    else
      raise_invalid_parameters_error('Array', '1 to 3', parameters.size)
    end
    TypeFactory.array_of(type, size_type)

  when 'hash'
    case parameters.size
    when 2
      if parameters[0].is_a?(PAnyType) && parameters[1].is_a?(PAnyType)
        TypeFactory.hash_of(parameters[1], parameters[0])
      else
        assert_range_parameter(ast, parameters[0])
        assert_range_parameter(ast, parameters[1])
        TypeFactory.hash_of(:default, :default, TypeFactory.range(parameters[0], parameters[1]))
      end
    when 3
      size_type =
        if parameters[2].is_a?(PIntegerType)
          parameters[2]
        else
          assert_range_parameter(ast, parameters[2])
          TypeFactory.range(parameters[2], :default)
        end
      assert_type(ast, parameters[0])
      assert_type(ast, parameters[1])
      TypeFactory.hash_of(parameters[1], parameters[0], size_type)
    when 4
      assert_range_parameter(ast, parameters[2])
      assert_range_parameter(ast, parameters[3])
      assert_type(ast, parameters[0])
      assert_type(ast, parameters[1])
      TypeFactory.hash_of(parameters[1], parameters[0], TypeFactory.range(parameters[2], parameters[3]))
    else
      raise_invalid_parameters_error('Hash', '2 to 4', parameters.size)
    end

  when 'collection'
    size_type = case parameters.size
                when 1
                  if parameters[0].is_a?(PIntegerType)
                    parameters[0]
                  else
                    assert_range_parameter(ast, parameters[0])
                    TypeFactory.range(parameters[0], :default)
                  end
                when 2
                  assert_range_parameter(ast, parameters[0])
                  assert_range_parameter(ast, parameters[1])
                  TypeFactory.range(parameters[0], parameters[1])
                else
                  raise_invalid_parameters_error('Collection', '1 to 2',
                                                 parameters.size)
                end
    TypeFactory.collection(size_type)

  when 'class'
    if parameters.size != 1
      raise_invalid_parameters_error('Class', 1, parameters.size)
    end
    TypeFactory.host_class(parameters[0])

  when 'resource'
    type = parameters[0]
    if type.is_a?(PTypeReferenceType)
      type_str = type.type_string
      param_start = type_str.index('[')
      if param_start.nil?
        type = type_str
      else
        tps = interpret_any(@parser.parse_string(type_str[param_start..]).model, context)
        raise_invalid_parameters_error(type.to_s, '1', tps.size) unless tps.size == 1
        type = type_str[0..param_start - 1]
        parameters = [type] + tps
      end
    end
    create_resource(type, parameters)

  when 'regexp'
    # 1 parameter being a string, or regular expression
    raise_invalid_parameters_error('Regexp', '1', parameters.size) unless parameters.size == 1
    TypeFactory.regexp(parameters[0])

  when 'enum'
    # 1..m parameters being string
    last = parameters.last
    case_insensitive = false
    if last == true || last == false
      parameters = parameters[0...-1]
      case_insensitive = last
    end
    raise_invalid_parameters_error('Enum', '1 or more', parameters.size) unless parameters.size >= 1
    parameters.each { |p| raise Puppet::ParseError, _('Enum parameters must be identifiers or strings') unless p.is_a?(String) }
    PEnumType.new(parameters, case_insensitive)

  when 'pattern'
    # 1..m parameters being strings or regular expressions
    raise_invalid_parameters_error('Pattern', '1 or more', parameters.size) unless parameters.size >= 1
    TypeFactory.pattern(*parameters)

  when 'uri'
    # 1 parameter which is a string or a URI
    raise_invalid_parameters_error('URI', '1', parameters.size) unless parameters.size == 1
    TypeFactory.uri(parameters[0])

  when 'variant'
    # 1..m parameters being strings or regular expressions
    raise_invalid_parameters_error('Variant', '1 or more', parameters.size) unless parameters.size >= 1
    parameters.each { |p| assert_type(ast, p) }
    TypeFactory.variant(*parameters)

  when 'tuple'
    # 1..m parameters being types (last two optionally integer or literal default
    raise_invalid_parameters_error('Tuple', '1 or more', parameters.size) unless parameters.size >= 1
    length = parameters.size
    size_type = nil
    if TypeFactory.is_range_parameter?(parameters[-2])
      # min, max specification
      min = parameters[-2]
      min = (min == :default || min == 'default') ? 0 : min
      assert_range_parameter(ast, parameters[-1])
      max = parameters[-1]
      max = max == :default ? nil : max
      parameters = parameters[0, length - 2]
      size_type = TypeFactory.range(min, max)
    elsif TypeFactory.is_range_parameter?(parameters[-1])
      min = parameters[-1]
      min = (min == :default || min == 'default') ? 0 : min
      max = nil
      parameters = parameters[0, length - 1]
      size_type = TypeFactory.range(min, max)
    end
    TypeFactory.tuple(parameters, size_type)

  when 'callable'
    # 1..m parameters being types (last three optionally integer or literal default, and a callable)
    if parameters.size > 1 && parameters[0].is_a?(Array)
      raise_invalid_parameters_error('callable', '2 when first parameter is an array', parameters.size) unless parameters.size == 2
    end
    TypeFactory.callable(*parameters)

  when 'struct'
    # 1..m parameters being types (last two optionally integer or literal default
    raise_invalid_parameters_error('Struct', '1', parameters.size) unless parameters.size == 1
    h = parameters[0]
    raise_invalid_type_specification_error(ast) unless h.is_a?(Hash)
    TypeFactory.struct(h)

  when 'boolean'
    raise_invalid_parameters_error('Boolean', '1', parameters.size) unless parameters.size == 1
    p = parameters[0]
    raise Puppet::ParseError, 'Boolean parameter must be true or false' unless p == true || p == false

    TypeFactory.boolean(p)

  when 'integer'
    if parameters.size == 1
      case parameters[0]
      when Integer
        TypeFactory.range(parameters[0], :default)
      when :default
        TypeFactory.integer # unbound
      end
    elsif parameters.size != 2
      raise_invalid_parameters_error('Integer', '1 or 2', parameters.size)
    else
      TypeFactory.range(parameters[0] == :default ? nil : parameters[0], parameters[1] == :default ? nil : parameters[1])
    end

  when 'object'
    raise_invalid_parameters_error('Object', 1, parameters.size) unless parameters.size == 1
    TypeFactory.object(parameters[0])

  when 'typeset'
    raise_invalid_parameters_error('Object', 1, parameters.size) unless parameters.size == 1
    TypeFactory.type_set(parameters[0])

  when 'init'
    assert_type(ast, parameters[0])
    TypeFactory.init(*parameters)

  when 'iterable'
    if parameters.size != 1
      raise_invalid_parameters_error('Iterable', 1, parameters.size)
    end
    assert_type(ast, parameters[0])
    TypeFactory.iterable(parameters[0])

  when 'iterator'
    if parameters.size != 1
      raise_invalid_parameters_error('Iterator', 1, parameters.size)
    end
    assert_type(ast, parameters[0])
    TypeFactory.iterator(parameters[0])

  when 'float'
    if parameters.size == 1
      case parameters[0]
      when Integer, Float
        TypeFactory.float_range(parameters[0], :default)
      when :default
        TypeFactory.float # unbound
      end
    elsif parameters.size != 2
      raise_invalid_parameters_error('Float', '1 or 2', parameters.size)
    else
      TypeFactory.float_range(parameters[0] == :default ? nil : parameters[0], parameters[1] == :default ? nil : parameters[1])
    end

  when 'string'
    size_type =
      case parameters.size
      when 1
        if parameters[0].is_a?(PIntegerType)
          parameters[0]
        else
          assert_range_parameter(ast, parameters[0])
          TypeFactory.range(parameters[0], :default)
        end
      when 2
        assert_range_parameter(ast, parameters[0])
        assert_range_parameter(ast, parameters[1])
        TypeFactory.range(parameters[0], parameters[1])
      else
        raise_invalid_parameters_error('String', '1 to 2', parameters.size)
      end
    TypeFactory.string(size_type)

  when 'sensitive'
    case parameters.size
    when 0
      TypeFactory.sensitive
    when 1
      param = parameters[0]
      assert_type(ast, param)
      TypeFactory.sensitive(param)
    else
      raise_invalid_parameters_error('Sensitive', '0 to 1', parameters.size)
    end

  when 'optional'
    if parameters.size != 1
      raise_invalid_parameters_error('Optional', 1, parameters.size)
    end
    param = parameters[0]
    assert_type(ast, param) unless param.is_a?(String)
    TypeFactory.optional(param)

  when 'any', 'data', 'catalogentry', 'scalar', 'undef', 'numeric', 'default', 'semverrange'
    raise_unparameterized_type_error(qref)

  when 'notundef'
    case parameters.size
    when 0
      TypeFactory.not_undef
    when 1
      param = parameters[0]
      assert_type(ast, param) unless param.is_a?(String)
      TypeFactory.not_undef(param)
    else
      raise_invalid_parameters_error("NotUndef", "0 to 1", parameters.size)
    end

  when 'type'
    if parameters.size != 1
      raise_invalid_parameters_error('Type', 1, parameters.size)
    end
    assert_type(ast, parameters[0])
    TypeFactory.type_type(parameters[0])

  when 'runtime'
    raise_invalid_parameters_error('Runtime', '2', parameters.size) unless parameters.size == 2
    TypeFactory.runtime(*parameters)

  when 'timespan'
    raise_invalid_parameters_error('Timespan', '0 to 2', parameters.size) unless parameters.size <= 2
    TypeFactory.timespan(*parameters)

  when 'timestamp'
    raise_invalid_parameters_error('Timestamp', '0 to 2', parameters.size) unless parameters.size <= 2
    TypeFactory.timestamp(*parameters)

  when 'semver'
    raise_invalid_parameters_error('SemVer', '1 or more', parameters.size) unless parameters.size >= 1
    TypeFactory.sem_ver(*parameters)

  else
    loader = loader_from_context(qref, context)
    type = nil
    unless loader.nil?
      type = loader.load(:type, type_name)
      type = type.resolve(loader) unless type.nil?
    end

    if type.nil?
      TypeFactory.type_reference(original_text_of(ast))
    elsif type.is_a?(PResourceType)
      raise_invalid_parameters_error(qref.cased_value, 1, parameters.size) unless parameters.size == 1
      TypeFactory.resource(type.type_name, parameters[0])
    elsif type.is_a?(PObjectType)
      PObjectTypeExtension.create(type, parameters)
    else
      # Must be a type alias. They can't use parameters (yet)
      raise_unparameterized_type_error(qref)
    end
  end
end

#interpret_any(ast, context) ⇒ 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.



66
67
68
# File 'lib/puppet/pops/types/type_parser.rb', line 66

def interpret_any(ast, context)
  @type_transformer.visit_this_1(self, ast, context)
end

#interpret_HeredocExpression(o, context) ⇒ 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.



96
97
98
# File 'lib/puppet/pops/types/type_parser.rb', line 96

def interpret_HeredocExpression(o, context)
  interpret_any(o.text_expr, context)
end

#interpret_LambdaExpression(o, context) ⇒ 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.



91
92
93
# File 'lib/puppet/pops/types/type_parser.rb', line 91

def interpret_LambdaExpression(o, context)
  o
end

#interpret_LiteralBoolean(o, context) ⇒ 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.



106
107
108
# File 'lib/puppet/pops/types/type_parser.rb', line 106

def interpret_LiteralBoolean(o, context)
  o.value
end

#interpret_LiteralDefault(o, context) ⇒ 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.



111
112
113
# File 'lib/puppet/pops/types/type_parser.rb', line 111

def interpret_LiteralDefault(o, context)
  :default
end

#interpret_LiteralFloat(o, context) ⇒ 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.



116
117
118
# File 'lib/puppet/pops/types/type_parser.rb', line 116

def interpret_LiteralFloat(o, context)
  o.value
end

#interpret_LiteralHash(o, context) ⇒ 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.



121
122
123
124
125
126
127
# File 'lib/puppet/pops/types/type_parser.rb', line 121

def interpret_LiteralHash(o, context)
  result = {}
  o.entries.each do |entry|
    result[@type_transformer.visit_this_1(self, entry.key, context)] = @type_transformer.visit_this_1(self, entry.value, context)
  end
  result
end

#interpret_LiteralInteger(o, context) ⇒ 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.



130
131
132
# File 'lib/puppet/pops/types/type_parser.rb', line 130

def interpret_LiteralInteger(o, context)
  o.value
end

#interpret_LiteralList(o, context) ⇒ 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.



135
136
137
# File 'lib/puppet/pops/types/type_parser.rb', line 135

def interpret_LiteralList(o, context)
  o.values.map { |value| @type_transformer.visit_this_1(self, value, context) }
end

#interpret_LiteralRegularExpression(o, context) ⇒ 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.



140
141
142
# File 'lib/puppet/pops/types/type_parser.rb', line 140

def interpret_LiteralRegularExpression(o, context)
  o.value
end

#interpret_LiteralString(o, context) ⇒ 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.



145
146
147
# File 'lib/puppet/pops/types/type_parser.rb', line 145

def interpret_LiteralString(o, context)
  o.value
end

#interpret_LiteralUndef(o, context) ⇒ 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.



150
151
152
# File 'lib/puppet/pops/types/type_parser.rb', line 150

def interpret_LiteralUndef(o, context)
  nil
end

#interpret_Object(o, context) ⇒ 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.



71
72
73
# File 'lib/puppet/pops/types/type_parser.rb', line 71

def interpret_Object(o, context)
  raise_invalid_type_specification_error(o)
end

#interpret_Program(o, context) ⇒ 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.



76
77
78
# File 'lib/puppet/pops/types/type_parser.rb', line 76

def interpret_Program(o, context)
  interpret_any(o.body, context)
end

#interpret_QualifiedName(o, context) ⇒ 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.



101
102
103
# File 'lib/puppet/pops/types/type_parser.rb', line 101

def interpret_QualifiedName(o, context)
  o.value
end

#interpret_QualifiedReference(name_ast, context) ⇒ 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.



277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/puppet/pops/types/type_parser.rb', line 277

def interpret_QualifiedReference(name_ast, context)
  name = name_ast.value
  found = self.class.type_map[name]
  if found
    found
  else
    loader = loader_from_context(name_ast, context)
    unless loader.nil?
      type = loader.load(:type, name)
      type = type.resolve(loader) unless type.nil?
    end
    type || TypeFactory.type_reference(name_ast.cased_value)
  end
end

#interpret_String(o, context) ⇒ 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.



155
156
157
# File 'lib/puppet/pops/types/type_parser.rb', line 155

def interpret_String(o, context)
  o
end

#interpret_TypeAlias(o, context) ⇒ 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.



81
82
83
# File 'lib/puppet/pops/types/type_parser.rb', line 81

def interpret_TypeAlias(o, context)
  Loader::TypeDefinitionInstantiator.create_type(o.name, o.type_expr, Pcore::RUNTIME_NAME_AUTHORITY).resolve(loader_from_context(o, context))
end

#interpret_TypeDefinition(o, context) ⇒ 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.



86
87
88
# File 'lib/puppet/pops/types/type_parser.rb', line 86

def interpret_TypeDefinition(o, context)
  Loader::TypeDefinitionInstantiator.create_runtime_type(o)
end

#interpret_UnaryMinusExpression(o, context) ⇒ 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.



160
161
162
# File 'lib/puppet/pops/types/type_parser.rb', line 160

def interpret_UnaryMinusExpression(o, context)
  -@type_transformer.visit_this_1(self, o.expr, context)
end

#loader_from_context(ast, context) ⇒ 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.



293
294
295
296
297
298
299
300
301
302
# File 'lib/puppet/pops/types/type_parser.rb', line 293

def loader_from_context(ast, context)
  model_loader = Adapters::LoaderAdapter.loader_for_model_object(ast, nil, context)
  if context.is_a?(PTypeSetType::TypeSetLoader)
    # Only swap a given TypeSetLoader for another loader when the other loader is different
    # from the one associated with the TypeSet expression
    context.model_loader.equal?(model_loader.parent) ? context : model_loader
  else
    model_loader
  end
end

#parse(string, context = nil) ⇒ PAnyType

Produces a *puppet type* based on the given string.

Examples:

parser.parse('Integer')
parser.parse('Array[String]')
parser.parse('Hash[Integer, Array[String]]')

Parameters:

  • string (String)

    a string with the type expressed in stringified form as produced by the types Puppet::Pops::Types::TypeParser.““#to_s method.

  • context (Loader::Loader) (defaults to: nil)

    optional loader used as no adapted loader is found

Returns:

  • (PAnyType)

    a specialization of the PAnyType representing the type.



37
38
39
40
41
42
43
44
45
46
# File 'lib/puppet/pops/types/type_parser.rb', line 37

def parse(string, context = nil)
  # quick "peephole" optimization of common data types
  t = self.class.opt_type_map[string]
  if t
    return t
  end

  model = @parser.parse_string(string)
  interpret(model.model.body, context)
end

#parse_literal(string, context = nil) ⇒ 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.



49
50
51
52
# File 'lib/puppet/pops/types/type_parser.rb', line 49

def parse_literal(string, context = nil)
  factory = @parser.parse_string(string)
  interpret_any(factory.model.body, context)
end