Sha256: bc983fbfb349f69d273267e967468a34e0b3a04ae6dd7b917bdca5a5862bad1e

Contents?: true

Size: 1.46 KB

Versions: 25

Compression:

Stored size: 1.46 KB

Contents

module Elastics
  module Struct
    module Prunable

      extend self

      VALUES = [ nil, '', {}, [], false ]

      class Value
        class << self
          def to_s; '' end
          alias_method :===, :==
        end
      end

      def prune_blanks(obj)
        prune(obj, *VALUES) || {}
      end

      # prunes the branch when the leaf is Prunable
      # and compact.flatten the Array values
      # values are the prunable values, like VALUES or Prunable::Value,
      # or any arbitrary value
      def prune(obj, *values)
        case
        when values.include?(obj)
          obj
        when obj.is_a?(::Array)
          return obj if obj.empty?
          ar = []
          obj.each do |i|
            pruned = prune(i, *values)
            next if values.include?(pruned)
            ar << pruned
          end
          a = ar.compact.flatten
          a.empty? ? values.first : a
        when obj.is_a?(::Hash)
          return obj if obj.empty?
          h = {}
          obj.each do |k, v|
            pruned = prune(v, *values)
            next if values.include?(pruned)
            # when a key is prunable merges the value if it is a hash (allows merging of partials)
            if VALUES.include?(k)
              h.merge!(pruned) if pruned.is_a?(::Hash)
            else
              h[k] = pruned
            end
          end
          h.empty? ? values.first : h
        else
          obj
        end
      end

    end
  end
  Prunable = Struct::Prunable
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
elastics-client-1.0.8 lib/elastics/struct/prunable.rb
elastics-client-1.0.7 lib/elastics/struct/prunable.rb
elastics-client-1.0.6 lib/elastics/struct/prunable.rb
elastics-client-1.0.5 lib/elastics/struct/prunable.rb
elastics-client-1.0.4 lib/elastics/struct/prunable.rb