Class: SimplyGenius::Atmos::SettingsHash

Inherits:
Hashie::Mash
  • Object
show all
Includes:
GemLogger::LoggerSupport, Hashie::Extensions::DeepFetch, Hashie::Extensions::DeepMerge
Defined in:
lib/simplygenius/atmos/settings_hash.rb

Constant Summary collapse

PATH_PATTERN =
/[\.\[\]]/

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.add_config(yml_file, key, value, additive: true) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/simplygenius/atmos/settings_hash.rb', line 54

def self.add_config(yml_file, key, value, additive: true)
  orig_config_with_comments = File.read(yml_file)

  comment_places = {}
  comment_lines = []
  orig_config_with_comments.each_line do |line|
    line.gsub!(/\s+$/, "\n")
    if line =~ /^\s*(#.*)?$/
      comment_lines << line
    else
      if comment_lines.present?
        comment_places[line.chomp] = comment_lines
        comment_lines = []
      end
    end
  end
  comment_places["<EOF>"] = comment_lines

  orig_config = SettingsHash.new((YAML.load_file(yml_file) rescue {}))
  orig_config.notation_put(key, value, additive: additive)
  new_config_no_comments = YAML.dump(orig_config.to_hash)
  new_config_no_comments.sub!(/\A---\n/, "")

  new_yml = ""
  new_config_no_comments.each_line do |line|
    line.gsub!(/\s+$/, "\n")
    cline = comment_places.keys.find {|k| line =~ /^#{k}/ }
    comments = comment_places[cline]
    comments.each {|comment| new_yml << comment } if comments
    new_yml << line
  end
  comment_places["<EOF>"].each {|comment| new_yml << comment }

  return new_yml
end

Instance Method Details

#notation_get(key) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/simplygenius/atmos/settings_hash.rb', line 14

def notation_get(key)
  path = key.to_s.split(PATH_PATTERN).compact
  path = path.collect {|p| p =~ /^\d+$/ ? p.to_i : p }
  result = nil

  begin
    result = deep_fetch(*path)
  rescue Hashie::Extensions::DeepFetch::UndefinedPathError => e
    logger.debug("Settings missing value for key='#{key}'")
  end

  return result
end

#notation_put(key, value, additive: true) ⇒ Object



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
# File 'lib/simplygenius/atmos/settings_hash.rb', line 28

def notation_put(key, value, additive: true)
  path = key.to_s.split(PATH_PATTERN).compact
  path = path.collect {|p| p =~ /^\d+$/ ? p.to_i : p }
  current_level = self
  path.each_with_index do |p, i|

    if i == path.size - 1
      if additive && current_level[p].is_a?(Array)
        current_level[p] = current_level[p] | Array(value)
      else
        current_level[p] = value
      end
    else
      if current_level[p].nil?
        if path[i+1].is_a?(Integer)
          current_level[p] = []
        else
          current_level[p] = {}
        end
      end
    end

    current_level = current_level[p]
  end
end