Sha256: ca941676f5f81f465b7069a4d87d65b612255eb505726bb1e4c9bf69d622f6f7

Contents?: true

Size: 1.67 KB

Versions: 22

Compression:

Stored size: 1.67 KB

Contents

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


module NewRelic
  # A singleton for shared generic helper methods
  module Helper
    extend self

    # confirm a string is correctly encoded (in >= 1.9)
    # If not force the encoding to ASCII-8BIT (binary)
    if NewRelic::LanguageSupport.supports_string_encodings?
      def correctly_encoded(string)
        return string unless string.is_a? String
        # The .dup here is intentional, since force_encoding mutates the target,
        # and we don't know who is going to use this string downstream of us.
        string.valid_encoding? ? string : string.dup.force_encoding("ASCII-8BIT")
      end
    else
      #noop
      def correctly_encoded(string)
        string
      end
    end

    def instance_method_visibility(klass, method_name)
      if klass.private_instance_methods.map{|s|s.to_sym}.include? method_name.to_sym
        :private
      elsif klass.protected_instance_methods.map{|s|s.to_sym}.include? method_name.to_sym
        :protected
      else
        :public
      end
    end

    def instance_methods_include?(klass, method_name)
      method_name_sym = method_name.to_sym
      (
        klass.instance_methods.map{ |s| s.to_sym }.include?(method_name_sym)          ||
        klass.protected_instance_methods.map{ |s|s.to_sym }.include?(method_name_sym) ||
        klass.private_instance_methods.map{ |s|s.to_sym }.include?(method_name_sym)
      )
    end

    def time_to_millis(time)
      (time.to_f * 1000).round
    end

    def milliseconds_to_seconds(milliseconds)
      milliseconds / 1000.0
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
newrelic_rpm-3.12.0.288 lib/new_relic/helper.rb
newrelic_rpm-3.11.2.286 lib/new_relic/helper.rb
newrelic_rpm-3.11.1.284 lib/new_relic/helper.rb
newrelic_rpm-3.11.0.283 lib/new_relic/helper.rb
newrelic_rpm-3.10.0.279 lib/new_relic/helper.rb
newrelic_rpm-3.9.9.275 lib/new_relic/helper.rb
newrelic_rpm-3.9.8.273 lib/new_relic/helper.rb
newrelic_rpm-3.9.7.266 lib/new_relic/helper.rb
newrelic_rpm-3.9.6.257 lib/new_relic/helper.rb
newrelic_rpm-3.9.5.251 lib/new_relic/helper.rb
newrelic_rpm-3.9.4.245 lib/new_relic/helper.rb
newrelic_rpm-3.9.3.241 lib/new_relic/helper.rb
newrelic_rpm-3.9.2.239 lib/new_relic/helper.rb
newrelic_rpm-3.9.1.236 lib/new_relic/helper.rb
newrelic_rpm-3.9.0.229 lib/new_relic/helper.rb
newrelic_rpm-3.8.1.221 lib/new_relic/helper.rb
newrelic_rpm-3.8.0.218 lib/new_relic/helper.rb
newrelic_rpm-3.7.3.204 lib/new_relic/helper.rb
newrelic_rpm-3.7.3.199 lib/new_relic/helper.rb
newrelic_rpm-3.7.2.195 lib/new_relic/helper.rb