Sha256: ad07ea6d7dc70e71a3024c6547347e49e52ce38c26832f2c7e1a6a9acd800035
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
module MemoryProfiler class Helpers def initialize @gem_guess_cache = Hash.new @location_cache = Hash.new { |h,k| h[k] = Hash.new.compare_by_identity } @class_name_cache = Hash.new.compare_by_identity @string_cache = Hash.new end def guess_gem(path) @gem_guess_cache[path] ||= if /(\/gems\/.*)*\/gems\/(?<gemname>[^\/]+)/ =~ path gemname elsif /\/rubygems[\.\/]/ =~ path "rubygems".freeze elsif /ruby\/2\.[^\/]+\/(?<stdlib>[^\/\.]+)/ =~ path stdlib elsif /(?<app>[^\/]+\/(bin|app|lib))/ =~ path app else "other".freeze end end def lookup_location(file, line) @location_cache[file][line] ||= "#{file}:#{line}" end def lookup_class_name(klass) @class_name_cache[klass] ||= ((klass.is_a?(Class) && klass.name) || '<<Unknown>>').to_s end def lookup_string(obj) # This string is shortened to 200 characters which is what the string report shows # The string report can still list unique strings longer than 200 characters # separately because the object_id of the shortened string will be different @string_cache[obj] ||= obj[0,200] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
memory_profiler-0.9.11 | lib/memory_profiler/helpers.rb |