File: config_node_root.rb

package info (click to toggle)
ruby-hocon 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 768 kB
  • sloc: ruby: 7,903; makefile: 4
file content (60 lines) | stat: -rw-r--r-- 2,230 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# encoding: utf-8

require_relative '../../hocon/impl'
require_relative '../../hocon/impl/config_node_array'
require_relative '../../hocon/impl/config_node_complex_value'
require_relative '../../hocon/impl/config_node_object'

class Hocon::Impl::ConfigNodeRoot
  include Hocon::Impl::ConfigNodeComplexValue
  def initialize(children, origin)
    super(children)
    @origin = origin
  end

  def new_node(nodes)
    raise Hocon::ConfigError::ConfigBugOrBrokenError, "Tried to indent the root object"
  end

  def value
    @children.each do |node|
      if node.is_a?(Hocon::Impl::ConfigNodeComplexValue)
        return node
      end
    end
    raise Hocon::ConfigError::ConfigBugOrBrokenError, "ConfigNodeRoot did not contain a value"
  end

  def set_value(desired_path, value, flavor)
    children_copy = @children.clone
    children_copy.each_with_index do |node, index|
      if node.is_a?(Hocon::Impl::ConfigNodeComplexValue)
        if node.is_a?(Hocon::Impl::ConfigNodeArray)
          raise Hocon::ConfigError::ConfigBugOrBrokenError, "The ConfigDocument had an array at the root level, and values cannot be modified inside an array."
        elsif node.is_a?(Hocon::Impl::ConfigNodeObject)
          if value.nil?
            children_copy[index] = node.remove_value_on_path(desired_path, flavor)
          else
            children_copy[index] = node.set_value_on_path(desired_path, value, flavor)
          end
          return self.class.new(children_copy, @origin)
        end
      end
    end
    raise Hocon::ConfigError::ConfigBugOrBrokenError, "ConfigNodeRoot did not contain a value"
  end

  def has_value(desired_path)
    path = Hocon::Impl::PathParser.parse_path(desired_path)
    @children.each do |node|
      if node.is_a?(Hocon::Impl::ConfigNodeComplexValue)
        if node.is_a?(Hocon::Impl::ConfigNodeArray)
          raise Hocon::ConfigError::ConfigBugOrBrokenError, "The ConfigDocument had an array at the root level, and values cannot be modified inside an array."
        elsif node.is_a?(Hocon::Impl::ConfigNodeObject)
          return node.has_value(path)
        end
      end
    end
    raise Hocon::ConfigError::ConfigBugOrBrokenError, "ConfigNodeRoot did not contain a value"
  end
end