Class: Hocon::Impl::ConfigDocumentParser::ParseContext

Inherits:
Object
  • Object
show all
Defined in:
lib/hocon/impl/config_document_parser.rb

Instance Method Summary collapse

Constructor Details

#initialize(flavor, origin, tokens) ⇒ ParseContext

Returns a new instance of ParseContext.



48
49
50
51
52
53
54
55
# File 'lib/hocon/impl/config_document_parser.rb', line 48

def initialize(flavor, origin, tokens)
  @line_number = 1
  @buffer = []
  @tokens = tokens
  @flavor = flavor
  @equals_count = 0
  @base_origin = origin
end

Instance Method Details

#add_quote_suggestion(bad_token, message, last_path = nil, inside_equals = nil) ⇒ Object



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
# File 'lib/hocon/impl/config_document_parser.rb', line 213

def add_quote_suggestion(bad_token, message, last_path = nil, inside_equals = nil)
  if inside_equals.nil?
    inside_equals = @equals_count > 0
  end

  previous_field_name = last_path != nil ? last_path.render : nil

  if bad_token == Tokens::EOF.to_s
    # EOF requires special handling for the error to make sense.
    if previous_field_name != nil
      part = "#{message} (if you intended '#{previous_field_name}'" +
          "' to be part of a value, instead of a key, " +
          "try adding double quotes around the whole value"
    else
      return message
    end
  else
    if previous_field_name != nil
      part = "#{message} (if you intended #{bad_token}" +
          " to be part of the value for '#{previous_field_name}', " +
          "try enclosing the value in double quotes"
    else
      part = "#{message} (if you intended #{bad_token}" +
          " to be part of a key or string value, " +
          "try enclosing the key or value in double quotes"
    end
  end

  # Don't have a special case to throw a message about changing the file to .properties, since
  # we don't support that format
  part
end

#check_element_separator(nodes) ⇒ Object

In arrays and objects, comma can be omitted as long as there’s at least one newline instead. this skips any newlines in front of a comma, skips the comma, and returns true if it found either a newline or a comma. The iterator is left just after the comma or the newline.



106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/hocon/impl/config_document_parser.rb', line 106

def check_element_separator(nodes)
  if @flavor.equal?(ConfigSyntax::JSON)
    t = next_token_collecting_whitespace(nodes)
    if t.equal?(Tokens::COMMA)
      nodes.push(ConfigNodeSingleToken.new(t))
      return true
    else
      put_back(t)
      return false
    end
  else
    saw_separator_or_new_line = false
    t = next_token
    while true
      if Tokens.ignored_whitespace?(t) || unquoted_whitespace?(t)
        nodes.push(ConfigNodeSingleToken.new(t))
      elsif Tokens.comment?(t)
        nodes.push(Hocon::Impl::ConfigNodeComment.new(t))
      elsif Tokens.newline?(t)
        saw_separator_or_new_line = true
        @line_number += 1
        nodes.push(ConfigNodeSingleToken.new(t))
        # we want to continue to also eat
        # a comma if there is one.
      elsif t.equal?(Tokens::COMMA)
        nodes.push(ConfigNodeSingleToken.new(t))
        return true
      else
        # non-newline-or-comma
        put_back(t)
        return saw_separator_or_new_line
      end
      t = next_token
    end
  end
end

#consolidate_values(nodes) ⇒ Object

parse a concatenation. If there is no concatenation, return the next value



144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
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
# File 'lib/hocon/impl/config_document_parser.rb', line 144

def consolidate_values(nodes)
  # this trick is not done in JSON
  if @flavor.equal?(ConfigSyntax::JSON)
    return nil
  end

  # create only if we have value tokens
  values = []
  value_count = 0

  # ignore a newline up front
  t = next_token_collecting_whitespace(nodes)
  while true
    v = nil
    if Tokens.ignored_whitespace?(t)
      values.push(ConfigNodeSingleToken.new(t))
      t = next_token
      next
    elsif Tokens.value?(t) || Tokens.unquoted_text?(t) || Tokens.substitution?(t) || t == Tokens::OPEN_CURLY || t == Tokens::OPEN_SQUARE
      # there may be newlines _within_ the objects and arrays
      v = parse_value(t)
      value_count += 1
    else
      break
    end

    if v.nil?
      raise ConfigBugOrBrokenError, "no value"
    end

    values.push(v)
    t = next_token # but don't consolidate across a newline
  end

  put_back(t)

  # No concatenation was seen, but a single value may have been parsed, so return it, and put back
  # all succeeding tokens
  if value_count < 2
    value = nil
    values.each do |node|
      if node.is_a?(Hocon::Impl::AbstractConfigNodeValue)
        value = node
      elsif value.nil?
        nodes.add(node)
      else
        put_back(node.tokens[0])
      end
    end
    return value
  end

  # Put back any trailing whitespace, as the parent object is responsible for tracking
  # any leading/trailing whitespace
  for i in (0..values.size - 1).reverse_each
    if values[i].is_a?(ConfigNodeSingleToken)
      put_back(values[i].token)
      values.delete_at(i)
    else
      break
    end
  end
  Hocon::Impl::ConfigNodeConcatenation.new(values)
end

#include_keyword?(t) ⇒ Boolean

Returns:

  • (Boolean)


291
292
293
# File 'lib/hocon/impl/config_document_parser.rb', line 291

def include_keyword?(t)
  Tokens.unquoted_text?(t) && Tokens.unquoted_text(t) == "include"
end

#key_value_separator?(t) ⇒ Boolean

Returns:

  • (Boolean)


310
311
312
313
314
315
316
# File 'lib/hocon/impl/config_document_parser.rb', line 310

def key_value_separator?(t)
  if @flavor.equal?(ConfigSyntax::JSON)
    t.equal?(Tokens::COLON)
  else
    t.equal?(Tokens::COLON) || t.equal?(Tokens::EQUALS) || t.equal?(Tokens::PLUS_EQUALS)
  end
end

#next_tokenObject



64
65
66
67
68
69
70
71
72
73
74
# File 'lib/hocon/impl/config_document_parser.rb', line 64

def next_token
  t = pop_token
  if @flavor.equal?(ConfigSyntax::JSON)
    if Tokens.unquoted_text?(t) && !unquoted_whitespace?(t)
      raise parse_error("Token not allowed in valid JSON: '#{Tokens.unquoted_text(t)}'")
    elsif Tokens.substitution?(t)
      raise parse_error("Substitutions (${} syntax) not allowed in JSON")
    end
  end
  t
end

#next_token_collecting_whitespace(nodes) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/hocon/impl/config_document_parser.rb', line 76

def next_token_collecting_whitespace(nodes)
  while true
    t = next_token
    if Tokens.ignored_whitespace?(t) || Tokens.newline?(t) || unquoted_whitespace?(t)
      nodes.push(ConfigNodeSingleToken.new(t))
      if Tokens.newline?(t)
        @line_number = t.line_number + 1
      end
    elsif Tokens.comment?(t)
      nodes.push(Hocon::Impl::ConfigNodeComment.new(t))
    else
      new_number = t.line_number
      if new_number >= 0
        @line_number = new_number
      end
      return t
    end
  end
end

#parseObject



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
# File 'lib/hocon/impl/config_document_parser.rb', line 558

def parse
  children = []
  t = next_token
  if t.equal?(Tokens::START)
    # OK
  else
    raise ConfigBugOrBrokenException, "token stream did not begin with START, had #{t}"
  end

  t = next_token_collecting_whitespace(children)
  result = nil
  missing_curly = false
  if t.equal?(Tokens::OPEN_CURLY) || t.equal?(Tokens::OPEN_SQUARE)
    result = parse_value(t)
  else
    if @flavor.equal?(ConfigSyntax::JSON)
      if t.equal?(Tokens::EOF)
        raise parse_error("Empty document")
      else
        raise parse_error("Document must have an object or array at root, unexpected token: #{t}")
      end
    else
      # the root object can omit the surrounding braces.
      # this token should be the first field's key, or part
      # of it, so put it back.
      put_back(t)
      missing_curly = true
      result = parse_object(false)
    end
  end

  # Need to pull the children out of the resulting node so we can keep leading
  # and trailing whitespace if this was a no-brace object. Otherwise, we need to add
  # the result into the list of children.
  if result.is_a?(ConfigNodeObject) && missing_curly
    children += result.children
  else
    children.push(result)
  end
  t = next_token_collecting_whitespace(children)
  if t.equal?(Tokens::EOF)
    if missing_curly
      # If there were no braces, the entire document should be treated as a single object
      ConfigNodeRoot.new([ConfigNodeObject.new(children)], @base_origin)
    else
      ConfigNodeRoot.new(children, @base_origin)
    end
  else
    raise parse_error("Document has trailing tokens after first object or array: #{t}")
  end
end

#parse_arrayObject



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
# File 'lib/hocon/impl/config_document_parser.rb', line 493

def parse_array
  children = []
  children.push(ConfigNodeSingleToken.new(Tokens::OPEN_SQUARE))
  # invoked just after the OPEN_SQUARE
  t = nil

  next_value = consolidate_values(children)
  unless next_value.nil?
    children.push(next_value)
  else
    t = next_token_collecting_whitespace(children)

    # special-case the first element
    if t.equal?(Tokens::CLOSE_SQUARE)
      children.push(ConfigNodeSingleToken.new(t))
      return ConfigNodeArray.new(children)
    elsif Tokens.value?(t) || t.equal?(Tokens::OPEN_CURLY) ||
            t.equal?(Tokens::OPEN_SQUARE) || Tokens.unquoted_text?(t) ||
            Tokens.substitution?(t)
      next_value = parse_value(t)
      children.push(next_value)
    else
      raise parse_error("List should have ] or a first element after the open [, instead had token: #{t}" +
            " (if you want #{t} to be part of a string value, then double-quote it)")
    end
  end

  # now remaining elements
  while true
    # just after a value
    if check_element_separator(children)
      # comma (or newline equivalent) consumed
    else
      t = next_token_collecting_whitespace(children)
      if t.equal?(Tokens::CLOSE_SQUARE)
        children.push(ConfigNodeSingleToken.new(t))
        return ConfigNodeArray.new(children)
      else
        raise parse_error("List should have ended with ] or had a comma, instead had token: #{t}" +
              " (if you want #{t} to be part of a string value, then double-quote it)")
      end
    end

    # now just after a comma
    next_value = consolidate_values(children)
    unless next_value.nil?
      children.push(next_value)
    else
      t = next_token_collecting_whitespace(children)
      if Tokens.value?(t) || t.equal?(Tokens::OPEN_CURLY) ||
          t.equal?(Tokens::OPEN_SQUARE) || Tokens.unquoted_text?(t) ||
          Tokens.substitution?(t)
        next_value = parse_value(t)
        children.push(next_value)
      elsif !@flavor.equal?(ConfigSyntax::JSON) && t.equal?(Tokens::CLOSE_SQUARE)
        # we allow one trailing comma
        put_back(t)
      else
        raise parse_error("List should have had new element after a comma, instead had token: #{t}" +
              " (if you want the comma or #{t} to be part of a string value, then double-quote it)")
      end
    end
  end
end

#parse_error(message, cause = nil) ⇒ Object



209
210
211
# File 'lib/hocon/impl/config_document_parser.rb', line 209

def parse_error(message, cause = nil)
  ConfigParseError.new(@base_origin.with_line_number(@line_number), message, cause)
end

#parse_include(children) ⇒ Object



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
# File 'lib/hocon/impl/config_document_parser.rb', line 318

def parse_include(children)
  t = next_token_collecting_whitespace(children)

  # we either have a quoted string or the "file()" syntax
  if Tokens.unquoted_text?(t)
    # get foo(
    kind_text = Tokens.unquoted_text(t)

    if kind_text == "url("
      kind = ConfigIncludeKind::URL
    elsif kind_text == "file("
      kind = ConfigIncludeKind::FILE
    elsif kind_text == "classpath("
      kind = ConfigIncludeKind::CLASSPATH
    else
      raise parse_error("expecting include parameter to be quoted filename, file(), classpath(), or url(). No spaces are allowed before the open paren. Not expecting: #{t}")
    end

    children.push(ConfigNodeSingleToken.new(t))

    # skip space inside parens
    t = next_token_collecting_whitespace(children)

    # quoted string
    unless Tokens.value_with_type?(t, ConfigValueType::STRING)
      raise parse_error("expecting a quoted string inside file(), classpath(), or url(), rather than: #{t}")
    end
    children.push(ConfigNodeSimpleValue.new(t))
    # skip space after string, inside parens
    t = next_token_collecting_whitespace(children)

    if Tokens.unquoted_text?(t) && Tokens.unquoted_text(t) == ")"
      # OK, close paren
    else
      raise parse_error("expecting a close parentheses ')' here, not: #{t}")
    end
    ConfigNodeInclude.new(children, kind)
  elsif Tokens.value_with_type?(t, ConfigValueType::STRING)
    children.push(ConfigNodeSimpleValue.new(t))
    ConfigNodeInclude.new(children, ConfigIncludeKind::HEURISTIC)
  else
    raise parse_error("include keyword is not followed by a quoted string, but by: #{t}")
  end
end

#parse_key(token) ⇒ Object



267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
# File 'lib/hocon/impl/config_document_parser.rb', line 267

def parse_key(token)
  if @flavor.equal?(ConfigSyntax::JSON)
    if Tokens.value_with_type?(token, ConfigValueType::STRING)
      return PathParser.parse_path_node_expression(Hocon::Impl::ArrayIterator.new([token]), nil)
    else
      raise ConfigParseError, "Expecting close brace } or a field name here, got #{token}"
    end
  else
    expression = []
    t = token
    while Tokens.value?(t) || Tokens.unquoted_text?(t)
      expression.push(t)
      t = next_token # note: don't cross a newline
    end

    if expression.empty?
      raise parse_error("expecting a close brace or a field name here, got #{t}")
    end

    put_back(t) # put back the token we ended with
    PathParser.parse_path_node_expression(ArrayIterator.new(expression), nil)
  end
end

#parse_object(had_open_curly) ⇒ Object



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
# File 'lib/hocon/impl/config_document_parser.rb', line 363

def parse_object(had_open_curly)
  # invoked just after the OPEN_CURLY (or START, if !hadOpenCurly)
  after_comma = false
  last_path = nil
  last_inside_equals = false
  object_nodes = []
  keys = Hash.new
  if had_open_curly
    object_nodes.push(ConfigNodeSingleToken.new(Tokens::OPEN_CURLY))
  end

  while true
    t = next_token_collecting_whitespace(object_nodes)
    if t.equal?(Tokens::CLOSE_CURLY)
      if @flavor.equal?(ConfigSyntax::JSON) && after_comma
        raise parse_error(add_quote_suggestion(t.to_s,
                                               "expecting a field name after a comma, got a close brace } instead"))
      elsif !had_open_curly
        raise parse_error(add_quote_suggestion(t.to_s,
                                               "unbalanced close brace '}' with no open brace"))
      end
      object_nodes.push(ConfigNodeSingleToken.new(Tokens::CLOSE_CURLY))
      break
    elsif t.equal?(Tokens::EOF) && !had_open_curly
      put_back(t)
      break
    elsif !@flavor.equal?(ConfigSyntax::JSON) && include_keyword?(t)
      include_nodes = []
      include_nodes.push(ConfigNodeSingleToken.new(t))
      object_nodes.push(parse_include(include_nodes))
      after_comma = false
    else
      key_value_nodes = []
      key_token = t
      path = parse_key(key_token)
      key_value_nodes.push(path)
      after_key = next_token_collecting_whitespace(key_value_nodes)
      inside_equals = false

      if @flavor.equal?(ConfigSyntax::CONF) && after_key.equal?(Tokens::OPEN_CURLY)
        # can omit the ':' or '=' before an object value
        next_value = parse_value(after_key)
      else
        unless key_value_separator?(after_key)
          raise parse_error(add_quote_suggestion(after_key.to_s,
                                                 "Key '#{path.render()}' may not be followed by token: #{after_key}"))
        end

        key_value_nodes.push(ConfigNodeSingleToken.new(after_key))

        if after_key.equal?(Tokens::EQUALS)
          inside_equals = true
          @equals_count += 1
        end

        next_value = consolidate_values(key_value_nodes)
        if next_value.nil?
          next_value = parse_value(next_token_collecting_whitespace(key_value_nodes))
        end
      end

      key_value_nodes.push(next_value)
      if inside_equals
        @equals_count -= 1
      end
      last_inside_equals = inside_equals

      key = path.value.first
      remaining = path.value.remainder

      if remaining.nil?
        existing = keys[key]
        unless existing.nil?
          # In strict JSON, dups should be an error; while in
          # our custom config language, they should be merged
          # if the value is an object (or substitution that
          # could become an object).

          if @flavor.equal?(ConfigSyntax::JSON)
            raise parse_error("JSON does not allow duplicate fields: '#{key}' was already seen")
          end
        end
        keys[key] = true
      else
        if @flavor.equal?(ConfigSyntax::JSON)
          raise ConfigBugOrBrokenError, "somehow got multi-element path in JSON mode"
        end
        keys[key] = true
      end

      after_comma = false
      object_nodes.push(ConfigNodeField.new(key_value_nodes))
    end

    if check_element_separator(object_nodes)
      # continue looping
      after_comma = true
    else
      t = next_token_collecting_whitespace(object_nodes)
      if t.equal?(Tokens::CLOSE_CURLY)
        unless had_open_curly
          raise parse_error(add_quote_suggestion(t.to_s,
                                                 "unbalanced close brace '}' with no open brace",
                                                 last_path,
                                                 last_inside_equals,))
        end
        object_nodes.push(ConfigNodeSingleToken.new(t))
        break
      elsif had_open_curly
        raise parse_error(add_quote_suggestion(t.to_s,
                                               "Expecting close brace } or a comma, got #{t}",
                                               last_path,
                                               last_inside_equals,))
      else
        if t.equal?(Tokens::EOF)
          put_back(t)
          break
        else
          raise parse_error(add_quote_suggestion(t.to_s,
                                                 "Expecting close brace } or a comma, got #{t}",
                                                 last_path,
                                                 last_inside_equals,))
        end
      end
    end
  end

  ConfigNodeObject.new(object_nodes)
end

#parse_single_valueObject

Parse a given input stream into a single value node. Used when doing a replace inside a ConfigDocument.



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
# File 'lib/hocon/impl/config_document_parser.rb', line 611

def parse_single_value
  t = next_token
  if t.equal?(Tokens::START)
    # OK
  else
    raise ConfigBugOrBrokenError, "token stream did not begin with START, had #{t}"
  end

  t = next_token
  if Tokens.ignored_whitespace?(t) || Tokens.newline?(t) || unquoted_whitespace?(t) || Tokens.comment?(t)
    raise parse_error("The value from setValue cannot have leading or trailing newlines, whitespace, or comments")
  end
  if t.equal?(Tokens::EOF)
    raise parse_error("Empty value")
  end
  if @flavor.equal?(ConfigSyntax::JSON)
    node = parse_value(t)
    t = next_token
    if t.equal?(Tokens::EOF)
      return node
    else
      raise parse_error("Parsing JSON and the value set in setValue was either a concatenation or had trailing whitespace, newlines, or comments")
    end
  else
    put_back(t)
    nodes = []
    node = consolidate_values(nodes)
    t = next_token
    if t.equal?(Tokens::EOF)
      node
    else
      raise parse_error("The value from setValue cannot have leading or trailing newlines, whitespace, or comments")
    end
  end
end

#parse_value(t) ⇒ Object



246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# File 'lib/hocon/impl/config_document_parser.rb', line 246

def parse_value(t)
  v = nil
  starting_equals_count = @equals_count

  if Tokens.value?(t) || Tokens.unquoted_text?(t) || Tokens.substitution?(t)
    v = Hocon::Impl::ConfigNodeSimpleValue.new(t)
  elsif t.equal?(Tokens::OPEN_CURLY)
    v = parse_object(true)
  elsif t.equal?(Tokens::OPEN_SQUARE)
    v = parse_array
  else
    raise parse_error(add_quote_suggestion(t.to_s, "Expecting a value but got wrong token: #{t}"))
  end

  if @equals_count != starting_equals_count
    raise ConfigBugOrBrokenError, "Bug in config parser: unbalanced equals count"
  end

  v
end

#pop_tokenObject



57
58
59
60
61
62
# File 'lib/hocon/impl/config_document_parser.rb', line 57

def pop_token
  if @buffer.empty?
    return @tokens.next
  end
  @buffer.pop
end

#put_back(token) ⇒ Object



96
97
98
# File 'lib/hocon/impl/config_document_parser.rb', line 96

def put_back(token)
  @buffer.push(token)
end

#unquoted_whitespace?(t) ⇒ Boolean

Returns:

  • (Boolean)


295
296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'lib/hocon/impl/config_document_parser.rb', line 295

def unquoted_whitespace?(t)
  unless Tokens.unquoted_text?(t)
    return false
  end

  s = Tokens.unquoted_text(t)

  s.each_char do |c|
    unless ConfigImplUtil.whitespace?(c)
      return false
    end
  end
  true
end