1
0
mirror of https://github.com/meineerde/rackstash.git synced 2026-02-01 01:37:12 +00:00

Display native-size object IDs in AbstractCollection#inspect

This commit is contained in:
Holger Just 2017-04-06 23:00:34 +02:00
parent d9c7a2ad33
commit dc9d553509

View File

@ -12,6 +12,10 @@ require 'concurrent'
module Rackstash
module Fields
class AbstractCollection
# @!visibility private
# we want to look "native", 7 for 32-bit, 14 for 64-bit
DEFAULT_OBJ_ID_STR_WIDTH = 0.size == 4 ? 7 : 14
# Equality -- Two collections are equal if they are of exactly the same
# class and contain the same raw data according to `Object#==`.
#
@ -38,7 +42,8 @@ module Rackstash
#
# @return [String] human-redable details about the object.
def inspect
"#<#{self.class}:#{format '0x%014x', object_id << 1} #{self}>"
id_str = (object_id << 1).to_s(16).rjust(DEFAULT_OBJ_ID_STR_WIDTH, '0')
"#<#{self.class.name}:0x#{id_str} #{self}>"
end
# Provide a copy of the wrapped {#raw} data in a format allowing direct