2013-05-27 06:01:45 -04:00
|
|
|
/**********************************************************************
|
|
|
|
|
2013-05-28 16:57:14 -04:00
|
|
|
object_tracing.c - Object Tracing mechanism/ObjectSpace extender for MRI.
|
2013-05-27 06:01:45 -04:00
|
|
|
|
2013-05-27 22:23:52 -04:00
|
|
|
$Author$
|
2013-05-27 06:01:45 -04:00
|
|
|
created at: Mon May 27 16:27:44 2013
|
|
|
|
|
|
|
|
NOTE: This extension library is not expected to exist except C Ruby.
|
|
|
|
NOTE: This feature is an example usage of internal event tracing APIs.
|
|
|
|
|
|
|
|
All the files in this distribution are covered under the Ruby's
|
|
|
|
license (see the file COPYING).
|
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#include "ruby/ruby.h"
|
|
|
|
#include "ruby/debug.h"
|
|
|
|
|
|
|
|
size_t rb_gc_count(void); /* from gc.c */
|
|
|
|
|
|
|
|
struct traceobj_arg {
|
|
|
|
VALUE newobj_trace;
|
|
|
|
VALUE freeobj_trace;
|
|
|
|
st_table *object_table;
|
2013-05-27 23:36:34 -04:00
|
|
|
st_table *str_table;
|
2013-05-27 06:01:45 -04:00
|
|
|
struct traceobj_arg *prev_traceobj_arg;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct traceobj_arg *traceobj_arg; /* TODO: do not use GLOBAL VARIABLE!!! */
|
|
|
|
|
|
|
|
struct allocation_info {
|
2013-05-27 23:36:34 -04:00
|
|
|
const char *path;
|
2013-05-27 06:01:45 -04:00
|
|
|
unsigned long line;
|
2013-05-27 23:36:34 -04:00
|
|
|
const char *class_path;
|
|
|
|
VALUE mid;
|
2013-05-27 06:01:45 -04:00
|
|
|
size_t generation;
|
|
|
|
};
|
|
|
|
|
2013-05-27 23:36:34 -04:00
|
|
|
static const char *
|
2013-05-28 00:52:07 -04:00
|
|
|
make_unique_str(st_table *tbl, const char *str, long len)
|
2013-05-27 23:36:34 -04:00
|
|
|
{
|
|
|
|
if (!str) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
st_data_t n;
|
|
|
|
char *result;
|
|
|
|
|
|
|
|
if (st_lookup(tbl, (st_data_t)str, &n)) {
|
|
|
|
st_insert(tbl, (st_data_t)str, n+1);
|
|
|
|
st_get_key(tbl, (st_data_t)str, (st_data_t *)&result);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result = (char *)ruby_xmalloc(len+1);
|
|
|
|
strncpy(result, str, len);
|
|
|
|
result[len] = 0;
|
|
|
|
st_add_direct(tbl, (st_data_t)result, 1);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
delete_unique_str(st_table *tbl, const char *str)
|
|
|
|
{
|
|
|
|
if (str) {
|
|
|
|
st_data_t n;
|
|
|
|
|
|
|
|
st_lookup(tbl, (st_data_t)str, &n);
|
|
|
|
if (n == 1) {
|
|
|
|
st_delete(tbl, (st_data_t *)&str, 0);
|
|
|
|
ruby_xfree((char *)str);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
st_insert(tbl, (st_data_t)str, n-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-27 06:01:45 -04:00
|
|
|
static void
|
|
|
|
newobj_i(VALUE tpval, void *data)
|
|
|
|
{
|
|
|
|
struct traceobj_arg *arg = (struct traceobj_arg *)data;
|
|
|
|
rb_trace_arg_t *tparg = rb_tracearg_from_tracepoint(tpval);
|
|
|
|
VALUE obj = rb_tracearg_object(tparg);
|
|
|
|
VALUE path = rb_tracearg_path(tparg);
|
|
|
|
VALUE line = rb_tracearg_lineno(tparg);
|
2013-05-27 23:36:34 -04:00
|
|
|
VALUE mid = rb_tracearg_method_id(tparg);
|
|
|
|
VALUE klass = rb_tracearg_defined_class(tparg);
|
2013-05-27 06:01:45 -04:00
|
|
|
struct allocation_info *info = (struct allocation_info *)ruby_xmalloc(sizeof(struct allocation_info));
|
2013-05-27 23:36:34 -04:00
|
|
|
const char *path_cstr = RTEST(path) ? make_unique_str(arg->str_table, RSTRING_PTR(path), RSTRING_LEN(path)) : 0;
|
|
|
|
VALUE class_path = RTEST(klass) ? rb_class_path(klass) : Qnil;
|
|
|
|
const char *class_path_cstr = RTEST(class_path) ? make_unique_str(arg->str_table, RSTRING_PTR(class_path), RSTRING_LEN(class_path)) : 0;
|
2013-05-27 06:01:45 -04:00
|
|
|
|
|
|
|
info->path = path_cstr;
|
|
|
|
info->line = NUM2INT(line);
|
2013-05-27 23:36:34 -04:00
|
|
|
info->mid = mid;
|
|
|
|
info->class_path = class_path_cstr;
|
2013-05-27 06:01:45 -04:00
|
|
|
info->generation = rb_gc_count();
|
|
|
|
st_insert(arg->object_table, (st_data_t)obj, (st_data_t)info);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
freeobj_i(VALUE tpval, void *data)
|
|
|
|
{
|
|
|
|
struct traceobj_arg *arg = (struct traceobj_arg *)data;
|
|
|
|
rb_trace_arg_t *tparg = rb_tracearg_from_tracepoint(tpval);
|
|
|
|
VALUE obj = rb_tracearg_object(tparg);
|
|
|
|
struct allocation_info *info;
|
|
|
|
|
2013-05-27 23:36:34 -04:00
|
|
|
if (st_delete(arg->object_table, (st_data_t *)&obj, (st_data_t *)&info)) {
|
|
|
|
delete_unique_str(arg->str_table, info->path);
|
|
|
|
delete_unique_str(arg->str_table, info->class_path);
|
2013-05-27 06:01:45 -04:00
|
|
|
ruby_xfree(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
free_keys_i(st_data_t key, st_data_t value, void *data)
|
|
|
|
{
|
|
|
|
ruby_xfree((void *)key);
|
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
free_values_i(st_data_t key, st_data_t value, void *data)
|
|
|
|
{
|
|
|
|
ruby_xfree((void *)value);
|
|
|
|
return ST_CONTINUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
stop_trace_object_allocations(void *data)
|
|
|
|
{
|
|
|
|
struct traceobj_arg *arg = (struct traceobj_arg *)data;
|
|
|
|
rb_tracepoint_disable(arg->newobj_trace);
|
|
|
|
rb_tracepoint_disable(arg->freeobj_trace);
|
|
|
|
st_foreach(arg->object_table, free_values_i, 0);
|
2013-05-27 23:36:34 -04:00
|
|
|
st_foreach(arg->str_table, free_keys_i, 0);
|
2013-05-27 06:01:45 -04:00
|
|
|
st_free_table(arg->object_table);
|
2013-05-27 23:36:34 -04:00
|
|
|
st_free_table(arg->str_table);
|
2013-05-27 06:01:45 -04:00
|
|
|
traceobj_arg = arg->prev_traceobj_arg;
|
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2013-06-18 09:05:32 -04:00
|
|
|
/*
|
|
|
|
* call-seq: trace_object_allocations { block }
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* "<code>ObjectSpace::trace_object_allocations</code>" notation.
|
|
|
|
*/
|
2013-05-27 06:01:45 -04:00
|
|
|
static VALUE
|
|
|
|
trace_object_allocations(VALUE objspace)
|
|
|
|
{
|
|
|
|
struct traceobj_arg arg;
|
|
|
|
|
|
|
|
arg.newobj_trace = rb_tracepoint_new(0, RUBY_INTERNAL_EVENT_NEWOBJ, newobj_i, &arg);
|
2013-05-27 06:28:25 -04:00
|
|
|
arg.freeobj_trace = rb_tracepoint_new(0, RUBY_INTERNAL_EVENT_FREEOBJ, freeobj_i, &arg);
|
2013-05-27 06:01:45 -04:00
|
|
|
arg.object_table = st_init_numtable();
|
2013-05-27 23:36:34 -04:00
|
|
|
arg.str_table = st_init_strtable();
|
2013-05-27 06:01:45 -04:00
|
|
|
|
|
|
|
arg.prev_traceobj_arg = traceobj_arg;
|
|
|
|
traceobj_arg = &arg;
|
|
|
|
|
|
|
|
rb_tracepoint_enable(arg.newobj_trace);
|
|
|
|
rb_tracepoint_enable(arg.freeobj_trace);
|
|
|
|
|
|
|
|
return rb_ensure(rb_yield, Qnil, stop_trace_object_allocations, (VALUE)&arg);
|
|
|
|
}
|
|
|
|
|
2013-06-06 01:10:31 -04:00
|
|
|
static struct allocation_info *
|
2013-06-06 01:18:40 -04:00
|
|
|
lookup_allocation_info(VALUE obj)
|
2013-05-27 06:01:45 -04:00
|
|
|
{
|
|
|
|
if (traceobj_arg) {
|
|
|
|
struct allocation_info *info;
|
|
|
|
if (st_lookup(traceobj_arg->object_table, obj, (st_data_t *)&info)) {
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-06-18 09:05:32 -04:00
|
|
|
/*
|
|
|
|
* call-seq: allocation_sourcefile(object) -> string
|
|
|
|
*
|
|
|
|
* Returns the source file origin from the given +object+.
|
|
|
|
*
|
|
|
|
* See ::trace_object_allocations for more information and examples.
|
|
|
|
*/
|
2013-05-27 06:01:45 -04:00
|
|
|
static VALUE
|
|
|
|
allocation_sourcefile(VALUE objspace, VALUE obj)
|
|
|
|
{
|
2013-06-06 01:18:40 -04:00
|
|
|
struct allocation_info *info = lookup_allocation_info(obj);
|
2013-05-27 06:01:45 -04:00
|
|
|
if (info) {
|
2013-05-27 23:36:34 -04:00
|
|
|
return info->path ? rb_str_new2(info->path) : Qnil;
|
2013-05-27 06:01:45 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-18 09:05:32 -04:00
|
|
|
/*
|
|
|
|
* call-seq: allocation_sourceline(object) -> string
|
|
|
|
*
|
|
|
|
* Returns the original line from source for from the given +object+.
|
|
|
|
*
|
|
|
|
* See ::trace_object_allocations for more information and examples.
|
|
|
|
*/
|
2013-05-27 06:01:45 -04:00
|
|
|
static VALUE
|
|
|
|
allocation_sourceline(VALUE objspace, VALUE obj)
|
|
|
|
{
|
2013-06-06 01:18:40 -04:00
|
|
|
struct allocation_info *info = lookup_allocation_info(obj);
|
2013-05-27 06:01:45 -04:00
|
|
|
if (info) {
|
|
|
|
return INT2FIX(info->line);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-18 09:05:32 -04:00
|
|
|
/*
|
|
|
|
* call-seq: allocation_class_path(object) -> 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.
|
|
|
|
*/
|
2013-05-27 23:36:34 -04:00
|
|
|
static VALUE
|
|
|
|
allocation_class_path(VALUE objspace, VALUE obj)
|
|
|
|
{
|
2013-06-06 01:18:40 -04:00
|
|
|
struct allocation_info *info = lookup_allocation_info(obj);
|
2013-05-27 23:36:34 -04:00
|
|
|
if (info) {
|
|
|
|
return info->class_path ? rb_str_new2(info->class_path) : Qnil;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-18 09:05:32 -04:00
|
|
|
/*
|
|
|
|
* call-seq: allocation_method_id(object) -> string
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-05-27 23:36:34 -04:00
|
|
|
static VALUE
|
|
|
|
allocation_method_id(VALUE objspace, VALUE obj)
|
|
|
|
{
|
2013-06-06 01:18:40 -04:00
|
|
|
struct allocation_info *info = lookup_allocation_info(obj);
|
2013-05-27 23:36:34 -04:00
|
|
|
if (info) {
|
|
|
|
return info->mid;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-18 09:05:32 -04:00
|
|
|
/*
|
2013-06-18 09:10:25 -04:00
|
|
|
* call-seq: allocation_generation(object) -> Fixnum
|
2013-06-18 09:05:32 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-05-27 06:01:45 -04:00
|
|
|
static VALUE
|
|
|
|
allocation_generation(VALUE objspace, VALUE obj)
|
|
|
|
{
|
2013-06-06 01:18:40 -04:00
|
|
|
struct allocation_info *info = lookup_allocation_info(obj);
|
2013-05-27 06:01:45 -04:00
|
|
|
if (info) {
|
|
|
|
return SIZET2NUM(info->generation);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Init_object_tracing(VALUE rb_mObjSpace)
|
|
|
|
{
|
2013-06-18 07:41:28 -04:00
|
|
|
#if 0
|
|
|
|
rb_mObjSpace = rb_define_module("ObjectSpace"); /* let rdoc know */
|
|
|
|
#endif
|
|
|
|
|
2013-05-27 06:01:45 -04:00
|
|
|
rb_define_module_function(rb_mObjSpace, "trace_object_allocations", trace_object_allocations, 0);
|
|
|
|
rb_define_module_function(rb_mObjSpace, "allocation_sourcefile", allocation_sourcefile, 1);
|
|
|
|
rb_define_module_function(rb_mObjSpace, "allocation_sourceline", allocation_sourceline, 1);
|
2013-05-27 23:36:34 -04:00
|
|
|
rb_define_module_function(rb_mObjSpace, "allocation_class_path", allocation_class_path, 1);
|
|
|
|
rb_define_module_function(rb_mObjSpace, "allocation_method_id", allocation_method_id, 1);
|
2013-05-27 06:01:45 -04:00
|
|
|
rb_define_module_function(rb_mObjSpace, "allocation_generation", allocation_generation, 1);
|
|
|
|
}
|