Sha256: 39a2c438977dd910e349e90192654085b68cdbc25f992cb430f9aaabdf7b7b85

Contents?: true

Size: 1.41 KB

Versions: 7

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.

module NewRelic
  module Agent
    module Configuration
      class DottedHash < ::Hash
        def initialize(hash, keep_nesting = false)
          # Add the hash keys to our collection explicitly so they survive the
          # dot flattening.  This is typical for full config source instances,
          # but not for uses of DottedHash serializing for transmission.
          self.merge!(hash) if keep_nesting

          self.merge!(dot_flattened(hash))
          DottedHash.symbolize(self)
        end

        def inspect
          "#<#{self.class.name}:#{object_id} #{super}>"
        end

        def to_hash
          {}.replace(self)
        end

        def self.symbolize(hash)
          hash.keys.each do |key|
            hash[key.to_sym] = hash.delete(key)
          end
        end

        protected

        # turns {'a' => {'b' => 'c'}} into {'a.b' => 'c'}
        def dot_flattened(nested_hash, names = [], result = {})
          nested_hash.each do |key, val|
            next if val == nil
            if val.respond_to?(:has_key?)
              dot_flattened(val, names + [key], result)
            else
              result[(names + [key]).join('.')] = val
            end
          end
          result
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
newrelic_rpm-8.9.0 lib/new_relic/agent/configuration/dotted_hash.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/configuration/dotted_hash.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/configuration/dotted_hash.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/configuration/dotted_hash.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/configuration/dotted_hash.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/configuration/dotted_hash.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/configuration/dotted_hash.rb