Sha256: 545b112ac166b0bd6407f38c6cd763890d14b3ea50880b9a2a54d797e4d70c9a

Contents?: true

Size: 1.42 KB

Versions: 16

Compression:

Stored size: 1.42 KB

Contents

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

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
aws-sdk-core-3.100.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.99.2 lib/aws-sdk-core/util.rb
aws-sdk-core-3.99.1 lib/aws-sdk-core/util.rb
aws-sdk-core-3.99.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.98.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.97.1 lib/aws-sdk-core/util.rb
aws-sdk-core-3.97.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.96.1 lib/aws-sdk-core/util.rb
aws-sdk-core-3.96.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.95.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.94.1 lib/aws-sdk-core/util.rb
aws-sdk-core-3.94.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.93.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.92.0 lib/aws-sdk-core/util.rb
aws-sdk-core-3.91.1 lib/aws-sdk-core/util.rb
aws-sdk-core-3.91.0 lib/aws-sdk-core/util.rb