#include "ruby.h" #include "ruby/encoding.h" #include "simdjson.h" #include using namespace simdjson; static VALUE rb_eHeapProfilerError, sym_type, sym_class, sym_address, sym_value, sym_memsize, sym_imemo_type, sym_struct, sym_file, sym_line, sym_shared, sym_references, id_uminus; typedef struct { dom::parser *parser; } parser_t; static void Parser_delete(void *ptr) { parser_t *data = (parser_t*) ptr; delete data->parser; } static size_t Parser_memsize(const void *parser) { return sizeof(dom::parser); // TODO: low priority, figure the real size, e.g. internal buffers etc. } static const rb_data_type_t parser_data_type = { "Parser", { 0, Parser_delete, Parser_memsize, }, 0, 0, RUBY_TYPED_FREE_IMMEDIATELY }; static VALUE parser_allocate(VALUE klass) { parser_t *data; VALUE obj = TypedData_Make_Struct(klass, parser_t, &parser_data_type, data); data->parser = new dom::parser; return obj; } static inline dom::parser * get_parser(VALUE self) { parser_t *data; TypedData_Get_Struct(self, parser_t, &parser_data_type, data); return data->parser; } const uint64_t digittoval[256] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; // Inspired by https://lemire.me/blog/2019/04/17/parsing-short-hexadecimal-strings-efficiently/ // Ruby addresses in heap dump are hexadecimal strings "0x000000000000"...0xffffffffffff". // The format being fairly stable allow for faster parsing. It should be equivalent to String#to_i(16). static inline uint64_t parse_address(const char * address, const long size) { assert(address[0] == '0'); assert(address[1] == 'x'); uint64_t value = 0; for (int index = 2; index < size; index++) { value <<= 4; value |= digittoval[address[index]]; } return value; } static inline int64_t parse_address(std::string_view address) { return parse_address(address.data(), address.size()); } static inline int64_t parse_dom_address(dom::element element) { std::string_view address; if (element.get(address)) { return 0; // ROOT object } return parse_address(address); } static inline VALUE make_symbol(std::string_view string) { return ID2SYM(rb_intern2(string.data(), string.size())); } static inline VALUE make_string(std::string_view string) { return rb_utf8_str_new(string.data(), string.size()); } # ifdef HAVE_RB_ENC_INTERNED_STR static inline VALUE dedup_string(std::string_view string) { return rb_enc_interned_str(string.data(), string.size(), rb_utf8_encoding()); } # else static inline VALUE dedup_string(std::string_view string) { return rb_funcall(make_string(string), id_uminus, 0); } # endif static VALUE rb_heap_build_index(VALUE self, VALUE path, VALUE batch_size) { Check_Type(path, T_STRING); Check_Type(batch_size, T_FIXNUM); dom::parser *parser = get_parser(self); VALUE string_index = rb_hash_new(); VALUE class_index = rb_hash_new(); try { auto [objects, error] = parser->load_many(RSTRING_PTR(path), FIX2INT(batch_size)); if (error != SUCCESS) { rb_raise(rb_eHeapProfilerError, "%s", error_message(error)); } for (dom::object object : objects) { std::string_view type; if (object["type"].get(type)) { continue; } if (type == "STRING") { std::string_view value; if (!object["value"].get(value)) { VALUE address = INT2FIX(parse_dom_address(object["address"])); VALUE string = make_string(value); rb_hash_aset(string_index, address, string); } } else if (type == "CLASS" || type == "MODULE") { VALUE address = INT2FIX(parse_dom_address(object["address"])); VALUE class_name = Qfalse; std::string_view name; if (!object["name"].get(name)) { class_name = dedup_string(name); } else { std::string_view file; uint64_t line; if (!object["file"].get(file) && !object["line"].get(line)) { std::string buffer = "load_many(RSTRING_PTR(arg), FIX2INT(batch_size)); if (error != SUCCESS) { rb_raise(rb_eHeapProfilerError, "%s", error_message(error)); } if (RTEST(since)) { Check_Type(since, T_FIXNUM); int64_t generation = FIX2INT(since); for (dom::element object : objects) { int64_t object_generation; if (object["generation"].get(object_generation) || object_generation < generation) { continue; } std::string_view file; if (!object["file"].get(file) && file == "__hprof") { continue; } rb_yield(make_ruby_object(object)); } } else { for (dom::element object : objects) { rb_yield(make_ruby_object(object)); } } return Qnil; } catch (simdjson::simdjson_error error) { rb_raise(rb_eHeapProfilerError, "%s", error.what()); } } extern "C" { void Init_heap_profiler(void) { sym_type = ID2SYM(rb_intern("type")); sym_class = ID2SYM(rb_intern("class")); sym_address = ID2SYM(rb_intern("address")); sym_value = ID2SYM(rb_intern("value")); sym_memsize = ID2SYM(rb_intern("memsize")); sym_struct = ID2SYM(rb_intern("struct")); sym_imemo_type = ID2SYM(rb_intern("imemo_type")); sym_file = ID2SYM(rb_intern("file")); sym_line = ID2SYM(rb_intern("line")); sym_shared = ID2SYM(rb_intern("shared")); sym_references = ID2SYM(rb_intern("references")); id_uminus = rb_intern("-@"); VALUE rb_mHeapProfiler = rb_const_get(rb_cObject, rb_intern("HeapProfiler")); rb_eHeapProfilerError = rb_const_get(rb_mHeapProfiler, rb_intern("Error")); rb_global_variable(&rb_eHeapProfilerError); VALUE rb_mHeapProfilerParserNative = rb_const_get(rb_const_get(rb_mHeapProfiler, rb_intern("Parser")), rb_intern("Native")); rb_define_alloc_func(rb_mHeapProfilerParserNative, parser_allocate); rb_define_method(rb_mHeapProfilerParserNative, "_build_index", reinterpret_cast(rb_heap_build_index), 2); rb_define_method(rb_mHeapProfilerParserNative, "parse_address", reinterpret_cast(rb_heap_parse_address), 1); rb_define_method(rb_mHeapProfilerParserNative, "_load_many", reinterpret_cast(rb_heap_load_many), 3); } }