module ObjectSpace
The ObjectSpace module contains a number of routines that interact with the garbage collection facility and allow you to traverse all living objects with an iterator.
ObjectSpace also provides support for object finalizers, procs that will be called after a specific object was destroyed by garbage collection. See the documentation for ObjectSpace.define_finalizer for important information on how to use this method correctly.
a = "A" b = "B" ObjectSpace.define_finalizer(a, proc {|id| puts "Finalizer one on #{id}" }) ObjectSpace.define_finalizer(b, proc {|id| puts "Finalizer two on #{id}" }) a = nil b = nil
produces:
Finalizer two on 537763470 Finalizer one on 537763480
The objspace library extends the ObjectSpace module and adds several methods to get internal statistic information about object/memory management.
You need to require 'objspace' to use this extension module.
Generally, you SHOULD NOT use this library if you do not know about the MRI implementation. Mainly, this library is for (memory) profiler developers and MRI developers who need to know about MRI memory usage.
Public Class Methods
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/object_space.rbs, line 33
def self._id2ref: (Integer id) -> untyped
(untyped) → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 32
def self?.allocation_class_path: (untyped) -> String
Returns the class for the given object.
class A def foo ObjectSpace::trace_object_allocations do obj = Object.new p "#{ObjectSpace::allocation_class_path(obj)}" end end end A.new.foo #=> "Class"
See ::trace_object_allocations for more information and examples.
(untyped) → (Integer | nil)
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 55
def self?.allocation_generation: (untyped) -> (Integer | nil)
Returns garbage collector generation for the given object.
class B include ObjectSpace def foo trace_object_allocations do obj = Object.new p "Generation is #{allocation_generation(obj)}" end end end B.new.foo #=> "Generation is 3"
See ::trace_object_allocations for more information and examples.
(untyped) → Symbol
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 78
def self?.allocation_method_id: (untyped) -> Symbol
Returns the method identifier for the given object.
class A include ObjectSpace def foo trace_object_allocations do obj = Object.new p "#{allocation_class_path(obj)}##{allocation_method_id(obj)}" end end end A.new.foo #=> "Class#new"
See ::trace_object_allocations for more information and examples.
(untyped) → String
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 88
def self?.allocation_sourcefile: (untyped) -> String
Returns the source file origin from the given object.
See ::trace_object_allocations for more information and examples.
(untyped) → Integer
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 98
def self?.allocation_sourceline: (untyped) -> Integer
Returns the original line from source for from the given object.
See ::trace_object_allocations for more information and examples.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 127
def self?.count_imemo_objects: (?Hash[Symbol, Integer] result_hash) -> Hash[Symbol, Integer]
Counts objects for each T_IMEMO type.
This method is only for MRI developers interested in performance and memory usage of Ruby programs.
It returns a hash as:
{:imemo_ifunc=>8,
:imemo_svar=>7,
:imemo_cref=>509,
:imemo_memo=>1,
:imemo_throw_data=>1}
If the optional argument, result_hash, is given, it is overwritten and returned. This is intended to avoid probe effect.
The contents of the returned hash is implementation specific and may change in the future.
In this version, keys are symbol objects.
This method is only expected to work with C Ruby.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/object_space.rbs, line 67
def self.count_objects: (?Hash[Symbol, Integer] result_hash) -> Hash[Symbol, Integer]
Counts all objects grouped by type.
It returns a hash, such as: { :TOTAL=>10000, :FREE=>3011, :T_OBJECT=>6, :T_CLASS=>404, # … }
The contents of the returned hash are implementation specific. It may be changed in future.
The keys starting with :T_ means live objects. For example, :T_ARRAY is the number of arrays. :FREE means object slots which is not used now. :TOTAL means sum of above.
If the optional argument result_hash is given, it is overwritten and returned. This is intended to avoid probe effect.
h = {} ObjectSpace.count_objects(h) puts h # => { :TOTAL=>10000, :T_CLASS=>158280, :T_MODULE=>20672, :T_STRING=>527249 }
This method is only expected to work on C Ruby.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 150
def self?.count_objects_size: (?Hash[Symbol, Integer] result_hash) -> Hash[Symbol, Integer]
Counts objects size (in bytes) for each type.
Note that this information is incomplete. You need to deal with this information as only a HINT. Especially, total size of T_DATA may be wrong.
It returns a hash as: {:TOTAL=>1461154, :T_CLASS=>158280, :T_MODULE=>20672, :T_STRING=>527249, …}
If the optional argument, result_hash, is given, it is overwritten and returned. This is intended to avoid probe effect.
The contents of the returned hash is implementation defined. It may be changed in future.
This method is only expected to work with C Ruby.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 176
def self?.count_symbols: (?Hash[Symbol, Integer] result_hash) -> Hash[Symbol, Integer]
Counts symbols for each Symbol type.
This method is only for MRI developers interested in performance and memory usage of Ruby programs.
If the optional argument, result_hash, is given, it is overwritten and returned. This is intended to avoid probe effect.
Note: The contents of the returned hash is implementation defined. It may be changed in future.
This method is only expected to work with C Ruby.
On this version of MRI, they have 3 types of Symbols (and 1 total counts).
* mortal_dynamic_symbol: GC target symbols (collected by GC) * immortal_dynamic_symbol: Immortal symbols promoted from dynamic symbols (do not collected by GC) * immortal_static_symbol: Immortal symbols (do not collected by GC) * immortal_symbol: total immortal symbols (immortal_dynamic_symbol+immortal_static_symbol)
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 209
def self?.count_tdata_objects: (?Hash[untyped, Integer] result_hash) -> Hash[untyped, Integer]
Counts objects for each T_DATA type.
This method is only for MRI developers interested in performance and memory usage of Ruby programs.
It returns a hash as:
{RubyVM::InstructionSequence=>504, :parser=>5, :barrier=>6,
:mutex=>6, Proc=>60, RubyVM::Env=>57, Mutex=>1, Encoding=>99,
ThreadGroup=>1, Binding=>1, Thread=>1, RubyVM=>1, :iseq=>1,
Random=>1, ARGF.class=>1, Data=>1, :autoload=>3, Time=>2}
# T_DATA objects existing at startup on r32276.
If the optional argument, result_hash, is given, it is overwritten and returned. This is intended to avoid probe effect.
The contents of the returned hash is implementation specific and may change in the future.
In this version, keys are Class object or Symbol object.
If object is kind of normal (accessible) object, the key is Class object. If object is not a kind of normal (internal) object, the key is symbol name, registered by rb_data_type_struct.
This method is only expected to work with C Ruby.
(untyped obj, ^(Integer id) → void aProc) → [ Integer, Proc ]
(untyped obj) { (Integer id) → void } → [ Integer, Proc ]
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/object_space.rbs, line 129
def self.define_finalizer: (untyped obj, ^(Integer id) -> void aProc) -> [ Integer, Proc ]
| (untyped obj) { (Integer id) -> void } -> [ Integer, Proc ]
Adds aProc as a finalizer, to be called after obj was destroyed. The object ID of the obj will be passed as an argument to aProc. If aProc is a lambda or method, make sure it can be called with a single argument.
The return value is an array [0, aProc].
The two recommended patterns are to either create the finaliser proc in a non-instance method where it can safely capture the needed state, or to use a custom callable object that stores the needed state explicitly as instance variables.
class Foo def initialize(data_needed_for_finalization) ObjectSpace.define_finalizer(self, self.class.create_finalizer(data_needed_for_finalization)) end def self.create_finalizer(data_needed_for_finalization) proc { puts "finalizing #{data_needed_for_finalization}" } end end class Bar class Remover def initialize(data_needed_for_finalization) @data_needed_for_finalization = data_needed_for_finalization end def call(id) puts "finalizing #{@data_needed_for_finalization}" end end def initialize(data_needed_for_finalization) ObjectSpace.define_finalizer(self, Remover.new(data_needed_for_finalization)) end end
Note that if your finalizer references the object to be finalized it will never be run on GC, although it will still be run at exit. You will get a warning if you capture the object to be finalized as the receiver of the finalizer.
class CapturesSelf def initialize(name) ObjectSpace.define_finalizer(self, proc { # this finalizer will only be run on exit puts "finalizing #{name}" }) end end
Also note that finalization can be unpredictable and is never guaranteed to be run except on exit.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 231
def self?.dump: (untyped obj, ?output: Symbol) -> (String | File | nil)
Dump the contents of a ruby object as JSON.
output can be one of: :stdout, :file, :string, or IO object.
-
:filemeans dumping to a tempfile and returning correspondingFileobject; -
:stdoutmeans printing the dump and returningnil; -
:stringmeans returning a string with the dump; -
if an instance of
IOobject is provided, the output goes there, and the object is returned.
This method is only expected to work with C Ruby. This is an experimental method and is subject to change. In particular, the function signature and output format are not guaranteed to be compatible in future versions of ruby.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 275
def self?.dump_all: (?since: Integer | nil, ?full: boolish, ?output: Symbol) -> (String | File | nil)
Dump the contents of the ruby heap as JSON.
output argument is the same as for #dump.
full must be a boolean. If true, all heap slots are dumped including the empty ones (T_NONE).
since must be a non-negative integer or nil.
If since is a positive integer, only objects of that generation and newer generations are dumped. The current generation can be accessed using GC::count. Objects that were allocated without object allocation tracing enabled are ignored. See ::trace_object_allocations for more information and examples.
If since is omitted or is nil, all objects are dumped.
shapes must be a boolean or a non-negative integer.
If shapes is a positive integer, only shapes newer than the provided shape id are dumped. The current shape_id can be accessed using RubyVM.stat(:next_shape_id).
If shapes is false, no shapes are dumped.
To only dump objects allocated past a certain point you can combine since and shapes: ObjectSpace.trace_object_allocations GC.start gc_generation = GC.count shape_generation = RubyVM.stat(:next_shape_id) call_method_to_instrument ObjectSpace.dump_all(since: gc_generation, shapes: shape_generation)
This method is only expected to work with C Ruby. This is an experimental method and is subject to change. In particular, the function signature and output format are not guaranteed to be compatible in future versions of ruby.
(?Module module) → Enumerator[untyped, Integer]
(?Module module) { (untyped obj) → void } → Integer
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/object_space.rbs, line 169
def self.each_object: (?Module `module`) -> Enumerator[untyped, Integer]
| (?Module `module`) { (untyped obj) -> void } -> Integer
Calls the block once for each living, nonimmediate object in this Ruby process. If module is specified, calls the block for only those classes or modules that match (or are a subclass of) module. Returns the number of objects found. Immediate objects (such as Fixnums, static Symbols true, false and nil) are never returned.
If no block is given, an enumerator is returned instead.
Job = Class.new jobs = [Job.new, Job.new] count = ObjectSpace.each_object(Job) {|x| p x } puts "Total count: #{count}"
produces:
#<Job:0x000000011d6cbbf0> #<Job:0x000000011d6cbc68> Total count: 2
Due to a current Ractor implementation issue, this method does not yield Ractor-unshareable objects when the process is in multi-Ractor mode. Multi-ractor mode is enabled when Ractor.new has been called for the first time. See bugs.ruby-lang.org/issues/19387 for more information.
a = 12345678987654321 # shareable b = [].freeze # shareable c = {} # not shareable ObjectSpace.each_object {|x| x } # yields a, b, and c Ractor.new {} # enter multi-Ractor mode ObjectSpace.each_object {|x| x } # does not yield c
(?full_mark: bool, ?immediate_mark: bool, ?immediate_sweep: bool) → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/object_space.rbs, line 178
def self.garbage_collect: (?full_mark: bool, ?immediate_mark: bool, ?immediate_sweep: bool) -> void
Alias of GC.start
(untyped) → Class
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 288
def self?.internal_class_of: (untyped) -> Class
MRI specific feature : Return internal class of obj.
obj can be an instance of InternalObjectWrapper.
Note that you should not use this method in your application.
(untyped) → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 301
def self?.internal_super_of: (untyped) -> untyped
(untyped) → Integer
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 319
def self?.memsize_of: (untyped) -> Integer
Return consuming memory size of obj in bytes.
Note that the return size is incomplete. You need to deal with this information as only a HINT. Especially, the size of T_DATA may not be correct.
This method is only expected to work with CRuby.
From Ruby 3.2 with Variable Width Allocation, it returns the actual slot size used plus any additional memory allocated outside the slot (such as external strings, arrays, or hash tables).
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 348
def self?.memsize_of_all: (?Class) -> Integer
Return consuming memory size of all living objects in bytes.
If klass (should be Class object) is given, return the total memory size of instances of the given class.
Note that the returned size is incomplete. You need to deal with this information as only a HINT. Especially, the size of T_DATA may not be correct.
Note that this method does NOT return total malloc’ed memory size.
This method can be defined by the following Ruby code:
def memsize_of_all klass = false total = 0 ObjectSpace.each_object{|e| total += ObjectSpace.memsize_of(e) if klass == false || e.kind_of?(klass) } total end
This method is only expected to work with C Ruby.
(untyped) → (Array[untyped] | nil)
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 392
def self?.reachable_objects_from: (untyped) -> (Array[untyped] | nil)
MRI specific feature : Return all reachable objects from ‘obj’.
This method returns all reachable objects from ‘obj’.
If obj' has two or more references to the same object x’, then returned array only includes one ‘x’ object.
If ‘obj’ is a non-markable (non-heap management) object such as true, false, nil, symbols and Fixnums (and Flonum) then it simply returns nil.
If obj' has references to an internal object, then it returns instances of ObjectSpace::InternalObjectWrapper class. This object contains a reference to an internal object and you can check the type of internal object with type’ method.
If obj' is instance of ObjectSpace::InternalObjectWrapper class, then this method returns all reachable object from an internal object, which is pointed by obj’.
With this method, you can find memory leaks.
This method is only expected to work with C Ruby.
Example: ObjectSpace.reachable_objects_from([‘a’, ‘b’, ‘c’]) #=> [Array, ‘a’, ‘b’, ‘c’]
ObjectSpace.reachable_objects_from(['a', 'a', 'a']) #=> [Array, 'a', 'a', 'a'] # all 'a' strings have different object id ObjectSpace.reachable_objects_from([v = 'a', v, v]) #=> [Array, 'a'] ObjectSpace.reachable_objects_from(1) #=> nil # 1 is not markable (heap managed) object
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 401
def self?.reachable_objects_from_root: () -> Hash[String, untyped]
MRI specific feature : Return all reachable objects from root.
() { (untyped) → untyped } → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 432
def self.trace_object_allocations: () { (untyped) -> untyped } -> untyped
Starts tracing object allocations from the ObjectSpace extension module.
For example:
require 'objspace' class C include ObjectSpace def foo trace_object_allocations do obj = Object.new p "#{allocation_sourcefile(obj)}:#{allocation_sourceline(obj)}" end end end C.new.foo #=> "objtrace.rb:8"
This example has included the ObjectSpace module to make it easier to read, but you can also use the ::trace_object_allocations notation (recommended).
Note that this feature introduces a huge performance decrease and huge memory consumption.
() → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 440
def self?.trace_object_allocations_clear: () -> void
Clear recorded tracing information.
() → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 450
def self?.trace_object_allocations_debug_start: () -> void
Starts tracing object allocations for GC debugging. If you encounter the BUG “… is T_NONE” (and so on) on your application, please try this method at the beginning of your app.
() → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 458
def self?.trace_object_allocations_start: () -> void
Starts tracing object allocations.
() → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/stdlib/objspace/0/objspace.rbs, line 469
def self?.trace_object_allocations_stop: () -> void
Stop tracing object allocations.
Note that if ::trace_object_allocations_start is called n-times, then tracing will stop after calling ::trace_object_allocations_stop n-times.
[X] (X obj) → X
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/object_space.rbs, line 186
def self.undefine_finalizer: [X] (X obj) -> X
Removes all finalizers for obj.
Public Instance Methods
(?full_mark: bool, ?immediate_mark: bool, ?immediate_sweep: bool) → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/object_space.rbs, line 196
def garbage_collect: (?full_mark: bool, ?immediate_mark: bool, ?immediate_sweep: bool) -> void
Alias of GC.start