aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/ext
diff options
context:
space:
mode:
authorGravatar Chris Fallin <cfallin@c1f.net>2015-01-12 16:09:35 -0800
committerGravatar Chris Fallin <cfallin@c1f.net>2015-01-12 16:09:35 -0800
commitaddd26cbb3e7af05917bfc9bc965b0ada4bc80b0 (patch)
tree7c572501a4b5e27720b1bdd21f4e6965c66b0f75 /ruby/ext
parent97b663a8be6764a3489d7150f77503ecaf40df5f (diff)
Addressed code-review comments.
Diffstat (limited to 'ruby/ext')
-rw-r--r--ruby/ext/google/protobuf_c/encode_decode.c7
-rw-r--r--ruby/ext/google/protobuf_c/map.c30
2 files changed, 14 insertions, 23 deletions
diff --git a/ruby/ext/google/protobuf_c/encode_decode.c b/ruby/ext/google/protobuf_c/encode_decode.c
index 1cff9049..e5e1514b 100644
--- a/ruby/ext/google/protobuf_c/encode_decode.c
+++ b/ruby/ext/google/protobuf_c/encode_decode.c
@@ -253,7 +253,12 @@ static map_handlerdata_t* new_map_handlerdata(
hd->value_field_type = upb_fielddef_type(value_field);
hd->value_field_typeclass = field_type_class(value_field);
- // Ensure that value_field_typeclass is properly GC-rooted.
+ // Ensure that value_field_typeclass is properly GC-rooted. We must do this
+ // because we hold a reference to the Ruby class in the handlerdata, which is
+ // owned by the handlers. The handlers are owned by *this* message's Ruby
+ // object, but each Ruby object is rooted independently at the def -> Ruby
+ // object map. So we have to ensure that the Ruby objects we depend on will
+ // stick around as long as we're around.
if (hd->value_field_typeclass != Qnil) {
rb_ary_push(desc->typeclass_references, hd->value_field_typeclass);
}
diff --git a/ruby/ext/google/protobuf_c/map.c b/ruby/ext/google/protobuf_c/map.c
index 2c2ae240..4ee71d18 100644
--- a/ruby/ext/google/protobuf_c/map.c
+++ b/ruby/ext/google/protobuf_c/map.c
@@ -205,10 +205,13 @@ static bool needs_typeclass(upb_fieldtype_t type) {
*
* The last argument, if present, provides initial content for map. Note that
* this may be an ordinary Ruby hashmap or another Map instance with identical
- * key and value types. Also note that this argument may be rpesent whether or
+ * key and value types. Also note that this argument may be present whether or
* not value_typeclass is present (and it is unambiguously separate from
* value_typeclass because value_typeclass's presence is strictly determined by
- * value_type).
+ * value_type). The contents of this initial hashmap or Map instance are
+ * shallow-copied into the new Map: the original map is unmodified, but
+ * references to underlying objects will be shared if the value type is a
+ * message type.
*/
VALUE Map_init(int argc, VALUE* argv, VALUE _self) {
Map* self = ruby_to_Map(_self);
@@ -385,8 +388,7 @@ VALUE Map_index_set(VALUE _self, VALUE key, VALUE value) {
native_slot_set(self->value_type, self->value_type_class, mem, value);
// Replace any existing value by issuing a 'remove' operation first.
- upb_value oldv;
- upb_strtable_remove2(&self->table, keyval, length, &oldv);
+ upb_strtable_remove2(&self->table, keyval, length, NULL);
if (!upb_strtable_insert2(&self->table, keyval, length, v)) {
rb_raise(rb_eRuntimeError, "Could not insert into table");
}
@@ -410,8 +412,7 @@ VALUE Map_has_key(VALUE _self, VALUE key) {
size_t length = 0;
table_key(self, key, keybuf, &keyval, &length);
- upb_value v;
- if (upb_strtable_lookup2(&self->table, keyval, length, &v)) {
+ if (upb_strtable_lookup2(&self->table, keyval, length, NULL)) {
return Qtrue;
} else {
return Qfalse;
@@ -468,7 +469,7 @@ VALUE Map_clear(VALUE _self) {
*/
VALUE Map_length(VALUE _self) {
Map* self = ruby_to_Map(_self);
- return INT2NUM(upb_strtable_count(&self->table));
+ return ULL2NUM(upb_strtable_count(&self->table));
}
static VALUE Map_new_this_type(VALUE _self) {
@@ -612,21 +613,6 @@ VALUE Map_eq(VALUE _self, VALUE _other) {
}
}
- // For each member of other, check that a member exists at the same key in
- // self. We don't need to compare values here -- if the key exists in both, we
- // compared values above; if not, we already know that the maps are not equal.
- for (upb_strtable_begin(&it, &other->table);
- !upb_strtable_done(&it);
- upb_strtable_next(&it)) {
- upb_value v;
- if (!upb_strtable_lookup2(&self->table,
- upb_strtable_iter_key(&it),
- upb_strtable_iter_keylength(&it),
- &v)) {
- return Qfalse;
- }
- }
-
return Qtrue;
}