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 61 62 63 64 65 66 67 68 69 70 71 72
|
# frozen_string_literal: true
require 'cgi'
module Aws
# @api private
module Util
class << self
def deep_merge(left, right)
case left
when Hash then left.merge(right) { |key, v1, v2| deep_merge(v1, v2) }
when Array then right + left
else right
end
end
def copy_hash(hash)
if Hash === hash
deep_copy(hash)
else
raise ArgumentError, "expected hash, got `#{hash.class}`"
end
end
def deep_copy(obj)
case obj
when nil then nil
when true then true
when false then false
when Hash
obj.inject({}) do |h, (k,v)|
h[k] = deep_copy(v)
h
end
when Array
obj.map { |v| deep_copy(v) }
else
if obj.respond_to?(:dup)
obj.dup
elsif obj.respond_to?(:clone)
obj.clone
else
obj
end
end
end
def monotonic_milliseconds
if defined?(Process::CLOCK_MONOTONIC)
Process.clock_gettime(Process::CLOCK_MONOTONIC, :millisecond)
else
DateTime.now.strftime('%Q').to_i
end
end
def monotonic_seconds
monotonic_milliseconds / 1000.0
end
def str_2_bool(str)
case str.to_s
when "true" then true
when "false" then false
else
nil
end
end
end
end
end
|