Module: Hashly
- Defined in:
- lib/hashly/hashly.rb
Class Method Summary collapse
-
.any?(hash, &block) ⇒ Boolean
Evaluates the block on every key pair recursively.
-
.deep_diff(base, comparison) ⇒ Object
Deep diff two structures For a hash, returns keys found in both hashes where the values don’t match.
-
.deep_diff_by_key(base, comparison, keep_values: false) ⇒ Object
Identifies what keys in the comparison hash are missing from base hash.
-
.deep_merge(base, override, boolean_or: false, left_outer_join_depth: 0) ⇒ Object
Description: Merge two hashes with nested hashes recursively.
-
.deep_reject(hash, &block) ⇒ Object
Reject hash keys however deep they are.
-
.deep_reject_by_hash(base, comparison) ⇒ Object
Deep diff two Hashes Remove any keys in the first hash also contained in the second hash If a key exists in the base, but NOT the comparison, it is kept.
-
.deep_sort(hash, include_arrays: true) ⇒ Object
Sorts by key recursively - optionally include sorting of arrays.
- .reject_keys_with_nil_values(base) ⇒ Object
- .safe_value(hash, *keys) ⇒ Object
- .stringify_all_keys(hash) ⇒ Object
- .symbolize_all_keys(hash) ⇒ Object
Class Method Details
.any?(hash, &block) ⇒ Boolean
Evaluates the block on every key pair recursively. If any block is truthy, the method returns true, otherwise, false.
27 28 29 30 31 32 33 34 35 |
# File 'lib/hashly/hashly.rb', line 27 def any?(hash, &block) raise 'hash is a required argument' if hash.nil? raise 'A block must be provided to this method to evaluate on each key pair. The evaluation occurs recursively. Block arguments: |k, v|' if block.nil? hash.each do |k, v| return true if yield(k, v) return true if v.is_a?(::Hash) && any?(v, &block) # recurse end false end |
.deep_diff(base, comparison) ⇒ Object
Deep diff two structures For a hash, returns keys found in both hashes where the values don’t match. If a key exists in the base, but NOT the comparison, it is NOT considered a difference so that it can be a one way comparison. For an array, returns an array with values found in the comparison array but not in the base array.
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/hashly/hashly.rb', line 105 def deep_diff(base, comparison) if base.nil? # if base is nil, entire comparison object is different return comparison.is_a?(Hash) ? comparison.dup : comparison end case comparison when nil {} when ::Hash differing_values = {} base = base.dup comparison.each do |src_key, src_value| difference = deep_diff(base[src_key], src_value) differing_values[src_key] = difference unless difference == :no_diff end differing_values.reject { |_k, v| v.is_a?(::Hash) && v.empty? } when ::Array difference = comparison - base difference.empty? ? :no_diff : difference else base == comparison ? :no_diff : comparison end end |
.deep_diff_by_key(base, comparison, keep_values: false) ⇒ Object
Identifies what keys in the comparison hash are missing from base hash. Optionally keep the values from the comparison hash, otherwise assigns the missing keys a value of :missing_key
89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/hashly/hashly.rb', line 89 def deep_diff_by_key(base, comparison, keep_values: false) missing_keys = {} if comparison.is_a?(::Hash) compared_keys = base.is_a?(::Hash) ? comparison.keys - base.keys : comparison.keys # Determine what keys the comparison has that the base doesn't compared_keys.each { |k| missing_keys[k] = keep_values ? comparison[k] : :missing_key } # Save the missing keys comparison.each do |k, v| missing_keys[k] = deep_diff_by_key(base[k], v, keep_values: keep_values) if v.is_a?(::Hash) # Recurse to find more missing keys if the hash goes deeper end end missing_keys.reject { |_k, v| v.is_a?(::Hash) && v.empty? } # Remove any empty hashes as there were no missing keys in them end |
.deep_merge(base, override, boolean_or: false, left_outer_join_depth: 0) ⇒ Object
Description:
Merge two hashes with nested hashes recursively.
Returns:
Hash with the merged data.
Parameters:
boolean_or: use a boolean || operator on the base and override if they are not a Hash or Array instead of stomping with the override
left_outer_join_depth: Only merge keys that already exist in the base for the first X levels specified.
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 |
# File 'lib/hashly/hashly.rb', line 59 def deep_merge(base, override, boolean_or: false, left_outer_join_depth: 0) left_outer_join_depth -= 1 # decrement left_outer_join_depth for recursion if base.nil? return nil if left_outer_join_depth >= 0 return override.is_a?(::Hash) ? override.dup : override end case override when nil base = base.dup if base.is_a?(::Hash) # duplicate hash to avoid modification by reference issues base # if override doesn't exist, simply return the existing value when ::Hash base = base.dup override.each do |src_key, src_value| next if base[src_key].nil? && left_outer_join_depth >= 0 # if this is a left outer join and the key does not exist in the base, skip it base[src_key] = base[src_key] ? deep_merge(base[src_key], src_value, boolean_or: boolean_or, left_outer_join_depth: left_outer_join_depth) : src_value # Recurse if both are Hash end base when ::Array base |= override base when ::String, ::Integer, ::Time, ::TrueClass, ::FalseClass boolean_or ? base || override : override else throw "Implementation for deep merge of type #{override.class} is missing." end end |
.deep_reject(hash, &block) ⇒ Object
Reject hash keys however deep they are. Provide a block and if it evaluates to true for a given key/value pair, it will be rejected.
130 131 132 133 134 135 |
# File 'lib/hashly/hashly.rb', line 130 def deep_reject(hash, &block) hash.each_with_object({}) do |(k, v), h| next if yield(k, v) # reject the current key/value pair by skipping it if the block given evaluates to true h[k] = v.is_a?(::Hash) ? deep_reject(v, &block) : v # recursively go up the hash tree or keep the value if it's not a hash. end end |
.deep_reject_by_hash(base, comparison) ⇒ Object
Deep diff two Hashes Remove any keys in the first hash also contained in the second hash If a key exists in the base, but NOT the comparison, it is kept.
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/hashly/hashly.rb', line 140 def deep_reject_by_hash(base, comparison) return nil if base.nil? case comparison when ::Hash return base unless base.is_a?(::Hash) # if base is not a hash but the comparison is, return the base base = base.dup comparison.each do |src_key, src_value| base[src_key] = deep_reject_by_hash(base[src_key], src_value) # recurse to the leaf base[src_key] = nil if base[src_key].is_a?(::Hash) && base[src_key].empty? # set leaves to nil if they are empty hashes end base.reject { |_k, v| v.nil? } # reject any leaves that were set to nil else # rubocop:disable Style/EmptyElse - for clarity nil # drop the value if we have reached a leaf in the comparison hash end end |
.deep_sort(hash, include_arrays: true) ⇒ Object
Sorts by key recursively - optionally include sorting of arrays
38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/hashly/hashly.rb', line 38 def deep_sort(hash, include_arrays: true) raise "argument must be of type Hash - Actual type: #{hash.class}" unless hash.is_a?(::Hash) hash.each_with_object({}) do |(k, v), child_hash| child_hash[k] = case v when ::Hash deep_sort(v) when ::Array include_arrays ? v.sort : v else v end end.sort.to_h end |
.reject_keys_with_nil_values(base) ⇒ Object
157 158 159 |
# File 'lib/hashly/hashly.rb', line 157 def reject_keys_with_nil_values(base) deep_reject(base) { |_k, v| v.nil? } end |
.safe_value(hash, *keys) ⇒ Object
4 5 6 7 8 |
# File 'lib/hashly/hashly.rb', line 4 def safe_value(hash, *keys) return nil if hash.nil? || hash[keys.first].nil? return hash[keys.first] if keys.length == 1 # return the value if we have reached the final key safe_value(hash[keys.shift], *keys) # recurse until we have reached the final key end |
.stringify_all_keys(hash) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/hashly/hashly.rb', line 10 def stringify_all_keys(hash) stringified_hash = {} hash.each do |k, v| stringified_hash[k.to_s] = v.is_a?(::Hash) ? stringify_all_keys(v) : v end stringified_hash end |
.symbolize_all_keys(hash) ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/hashly/hashly.rb', line 18 def symbolize_all_keys(hash) symbolized_hash = {} hash.each do |k, v| symbolized_hash[k.to_sym] = v.is_a?(::Hash) ? symbolize_all_keys(v) : v end symbolized_hash end |