Class: MemoryProfiler::Helpers
- Inherits:
-
Object
- Object
- MemoryProfiler::Helpers
- Defined in:
- lib/memory_profiler/helpers.rb
Constant Summary collapse
- KERNEL_CLASS_METHOD =
Kernel.instance_method(:class)
Instance Method Summary collapse
- #guess_gem(path) ⇒ Object
-
#initialize ⇒ Helpers
constructor
A new instance of Helpers.
- #lookup_class_name(klass) ⇒ Object
- #lookup_location(file, line) ⇒ Object
- #lookup_string(obj) ⇒ Object
- #object_class(obj) ⇒ Object
Constructor Details
#initialize ⇒ Helpers
Returns a new instance of Helpers.
6 7 8 9 10 |
# File 'lib/memory_profiler/helpers.rb', line 6 def initialize @gem_guess_cache = Hash.new @location_cache = Hash.new { |h, k| h[k] = Hash.new.compare_by_identity } @string_cache = Hash.new end |
Instance Method Details
#guess_gem(path) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/memory_profiler/helpers.rb', line 12 def guess_gem(path) @gem_guess_cache[path] ||= if /(\/gems\/.*)*\/gems\/(?<gemname>[^\/]+)/ =~ path gemname elsif /\/rubygems[\.\/]/ =~ path "rubygems" elsif /ruby\/\d\.[^\/]+\/(?<stdlib>[^\/\.]+)/ =~ path stdlib elsif /(?<app>[^\/]+\/(bin|app|lib))/ =~ path app else "other" end end |
#lookup_class_name(klass) ⇒ Object
41 42 43 |
# File 'lib/memory_profiler/helpers.rb', line 41 def lookup_class_name(klass) ((klass.is_a?(Class) && klass.name) || '<<Unknown>>').to_s end |
#lookup_location(file, line) ⇒ Object
27 28 29 |
# File 'lib/memory_profiler/helpers.rb', line 27 def lookup_location(file, line) @location_cache[file][line] ||= "#{file}:#{line}" end |
#lookup_string(obj) ⇒ Object
45 46 47 48 49 50 |
# File 'lib/memory_profiler/helpers.rb', line 45 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] ||= String.new << obj[0, 200] end |
#object_class(obj) ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'lib/memory_profiler/helpers.rb', line 32 def object_class(obj) klass = obj.class rescue nil unless Class === klass # attempt to determine the true Class when .class returns something other than a Class klass = KERNEL_CLASS_METHOD.bind_call(obj) end klass end |