google-protobuf 3.7.0 → 3.16.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of google-protobuf might be problematic. Click here for more details.

Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/ext/google/protobuf_c/convert.c +349 -0
  3. data/ext/google/protobuf_c/convert.h +72 -0
  4. data/ext/google/protobuf_c/defs.c +1555 -1228
  5. data/ext/google/protobuf_c/defs.h +107 -0
  6. data/ext/google/protobuf_c/extconf.rb +4 -7
  7. data/ext/google/protobuf_c/map.c +310 -470
  8. data/ext/google/protobuf_c/map.h +66 -0
  9. data/ext/google/protobuf_c/message.c +931 -346
  10. data/ext/google/protobuf_c/message.h +101 -0
  11. data/ext/google/protobuf_c/protobuf.c +384 -51
  12. data/ext/google/protobuf_c/protobuf.h +44 -544
  13. data/ext/google/protobuf_c/repeated_field.c +311 -308
  14. data/ext/google/protobuf_c/repeated_field.h +62 -0
  15. data/ext/google/protobuf_c/ruby-upb.c +8914 -0
  16. data/ext/google/protobuf_c/ruby-upb.h +4452 -0
  17. data/ext/google/protobuf_c/third_party/wyhash/wyhash.h +145 -0
  18. data/lib/google/protobuf/any_pb.rb +1 -1
  19. data/lib/google/protobuf/api_pb.rb +3 -3
  20. data/lib/google/protobuf/duration_pb.rb +1 -1
  21. data/lib/google/protobuf/empty_pb.rb +1 -1
  22. data/lib/google/protobuf/field_mask_pb.rb +1 -1
  23. data/lib/google/protobuf/source_context_pb.rb +1 -1
  24. data/lib/google/protobuf/struct_pb.rb +4 -4
  25. data/lib/google/protobuf/timestamp_pb.rb +1 -1
  26. data/lib/google/protobuf/type_pb.rb +8 -8
  27. data/lib/google/protobuf/well_known_types.rb +8 -2
  28. data/lib/google/protobuf/wrappers_pb.rb +9 -9
  29. data/lib/google/protobuf.rb +70 -0
  30. data/tests/basic.rb +315 -72
  31. data/tests/generated_code_test.rb +0 -0
  32. data/tests/stress.rb +0 -0
  33. metadata +27 -16
  34. data/ext/google/protobuf_c/encode_decode.c +0 -1574
  35. data/ext/google/protobuf_c/storage.c +0 -1019
  36. data/ext/google/protobuf_c/upb.c +0 -17318
  37. data/ext/google/protobuf_c/upb.h +0 -9755
@@ -28,167 +28,231 @@
28
28
  // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
29
  // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
30
 
31
+ #include "convert.h"
32
+ #include "defs.h"
33
+ #include "message.h"
31
34
  #include "protobuf.h"
32
35
 
33
36
  // -----------------------------------------------------------------------------
34
- // Basic map operations on top of upb's strtable.
37
+ // Basic map operations on top of upb_map.
35
38
  //
36
39
  // Note that we roll our own `Map` container here because, as for
37
40
  // `RepeatedField`, we want a strongly-typed container. This is so that any user
38
41
  // errors due to incorrect map key or value types are raised as close as
39
42
  // possible to the error site, rather than at some deferred point (e.g.,
40
43
  // serialization).
41
- //
42
- // We build our `Map` on top of upb_strtable so that we're able to take
43
- // advantage of the native_slot storage abstraction, as RepeatedField does.
44
- // (This is not quite a perfect mapping -- see the key conversions below -- but
45
- // gives us full support and error-checking for all value types for free.)
46
44
  // -----------------------------------------------------------------------------
47
45
 
48
- // Map values are stored using the native_slot abstraction (as with repeated
49
- // field values), but keys are a bit special. Since we use a strtable, we need
50
- // to store keys as sequences of bytes such that equality of those bytes maps
51
- // one-to-one to equality of keys. We store strings directly (i.e., they map to
52
- // their own bytes) and integers as native integers (using the native_slot
53
- // abstraction).
54
-
55
- // Note that there is another tradeoff here in keeping string keys as native
56
- // strings rather than Ruby strings: traversing the Map requires conversion to
57
- // Ruby string values on every traversal, potentially creating more garbage. We
58
- // should consider ways to cache a Ruby version of the key if this becomes an
59
- // issue later.
60
-
61
- // Forms a key to use with the underlying strtable from a Ruby key value. |buf|
62
- // must point to TABLE_KEY_BUF_LENGTH bytes of temporary space, used to
63
- // construct a key byte sequence if needed. |out_key| and |out_length| provide
64
- // the resulting key data/length.
65
- #define TABLE_KEY_BUF_LENGTH 8 // sizeof(uint64_t)
66
- static VALUE table_key(Map* self, VALUE key,
67
- char* buf,
68
- const char** out_key,
69
- size_t* out_length) {
70
- switch (self->key_type) {
71
- case UPB_TYPE_BYTES:
72
- case UPB_TYPE_STRING:
73
- // Strings: use string content directly.
74
- Check_Type(key, T_STRING);
75
- key = native_slot_encode_and_freeze_string(self->key_type, key);
76
- *out_key = RSTRING_PTR(key);
77
- *out_length = RSTRING_LEN(key);
78
- break;
79
-
80
- case UPB_TYPE_BOOL:
81
- case UPB_TYPE_INT32:
82
- case UPB_TYPE_INT64:
83
- case UPB_TYPE_UINT32:
84
- case UPB_TYPE_UINT64:
85
- native_slot_set(self->key_type, Qnil, buf, key);
86
- *out_key = buf;
87
- *out_length = native_slot_size(self->key_type);
88
- break;
89
-
90
- default:
91
- // Map constructor should not allow a Map with another key type to be
92
- // constructed.
93
- assert(false);
94
- break;
95
- }
96
-
97
- return key;
98
- }
99
-
100
- static VALUE table_key_to_ruby(Map* self, const char* buf, size_t length) {
101
- switch (self->key_type) {
102
- case UPB_TYPE_BYTES:
103
- case UPB_TYPE_STRING: {
104
- VALUE ret = rb_str_new(buf, length);
105
- rb_enc_associate(ret,
106
- (self->key_type == UPB_TYPE_BYTES) ?
107
- kRubyString8bitEncoding : kRubyStringUtf8Encoding);
108
- return ret;
109
- }
110
-
111
- case UPB_TYPE_BOOL:
112
- case UPB_TYPE_INT32:
113
- case UPB_TYPE_INT64:
114
- case UPB_TYPE_UINT32:
115
- case UPB_TYPE_UINT64:
116
- return native_slot_get(self->key_type, Qnil, buf);
117
-
118
- default:
119
- assert(false);
120
- return Qnil;
121
- }
122
- }
123
-
124
- static void* value_memory(upb_value* v) {
125
- return (void*)(&v->val);
126
- }
127
-
128
46
  // -----------------------------------------------------------------------------
129
47
  // Map container type.
130
48
  // -----------------------------------------------------------------------------
131
49
 
50
+ typedef struct {
51
+ const upb_map *map; // Can convert to mutable when non-frozen.
52
+ upb_fieldtype_t key_type;
53
+ TypeInfo value_type_info;
54
+ VALUE value_type_class;
55
+ VALUE arena;
56
+ } Map;
57
+
58
+ static void Map_mark(void* _self) {
59
+ Map* self = _self;
60
+ rb_gc_mark(self->value_type_class);
61
+ rb_gc_mark(self->arena);
62
+ }
63
+
132
64
  const rb_data_type_t Map_type = {
133
65
  "Google::Protobuf::Map",
134
- { Map_mark, Map_free, NULL },
66
+ { Map_mark, RUBY_DEFAULT_FREE, NULL },
67
+ .flags = RUBY_TYPED_FREE_IMMEDIATELY,
135
68
  };
136
69
 
137
70
  VALUE cMap;
138
71
 
139
- Map* ruby_to_Map(VALUE _self) {
72
+ static Map* ruby_to_Map(VALUE _self) {
140
73
  Map* self;
141
74
  TypedData_Get_Struct(_self, Map, &Map_type, self);
142
75
  return self;
143
76
  }
144
77
 
145
- void Map_mark(void* _self) {
146
- Map* self = _self;
78
+ static VALUE Map_alloc(VALUE klass) {
79
+ Map* self = ALLOC(Map);
80
+ self->map = NULL;
81
+ self->value_type_class = Qnil;
82
+ self->value_type_info.def.msgdef = NULL;
83
+ self->arena = Qnil;
84
+ return TypedData_Wrap_Struct(klass, &Map_type, self);
85
+ }
147
86
 
148
- rb_gc_mark(self->value_type_class);
149
- rb_gc_mark(self->parse_frame);
150
-
151
- if (self->value_type == UPB_TYPE_STRING ||
152
- self->value_type == UPB_TYPE_BYTES ||
153
- self->value_type == UPB_TYPE_MESSAGE) {
154
- upb_strtable_iter it;
155
- for (upb_strtable_begin(&it, &self->table);
156
- !upb_strtable_done(&it);
157
- upb_strtable_next(&it)) {
158
- upb_value v = upb_strtable_iter_value(&it);
159
- void* mem = value_memory(&v);
160
- native_slot_mark(self->value_type, mem);
87
+ VALUE Map_GetRubyWrapper(upb_map* map, upb_fieldtype_t key_type,
88
+ TypeInfo value_type, VALUE arena) {
89
+ PBRUBY_ASSERT(map);
90
+
91
+ VALUE val = ObjectCache_Get(map);
92
+
93
+ if (val == Qnil) {
94
+ val = Map_alloc(cMap);
95
+ Map* self;
96
+ ObjectCache_Add(map, val);
97
+ TypedData_Get_Struct(val, Map, &Map_type, self);
98
+ self->map = map;
99
+ self->arena = arena;
100
+ self->key_type = key_type;
101
+ self->value_type_info = value_type;
102
+ if (self->value_type_info.type == UPB_TYPE_MESSAGE) {
103
+ const upb_msgdef *val_m = self->value_type_info.def.msgdef;
104
+ self->value_type_class = Descriptor_DefToClass(val_m);
161
105
  }
162
106
  }
107
+
108
+ return val;
163
109
  }
164
110
 
165
- void Map_free(void* _self) {
166
- Map* self = _self;
167
- upb_strtable_uninit(&self->table);
168
- xfree(self);
111
+ static VALUE Map_new_this_type(Map *from) {
112
+ VALUE arena_rb = Arena_new();
113
+ upb_map* map = upb_map_new(Arena_get(arena_rb), from->key_type,
114
+ from->value_type_info.type);
115
+ VALUE ret =
116
+ Map_GetRubyWrapper(map, from->key_type, from->value_type_info, arena_rb);
117
+ PBRUBY_ASSERT(ruby_to_Map(ret)->value_type_class == from->value_type_class);
118
+ return ret;
169
119
  }
170
120
 
171
- VALUE Map_alloc(VALUE klass) {
172
- Map* self = ALLOC(Map);
173
- memset(self, 0, sizeof(Map));
174
- self->value_type_class = Qnil;
175
- return TypedData_Wrap_Struct(klass, &Map_type, self);
121
+ static TypeInfo Map_keyinfo(Map* self) {
122
+ TypeInfo ret;
123
+ ret.type = self->key_type;
124
+ ret.def.msgdef = NULL;
125
+ return ret;
176
126
  }
177
127
 
178
- VALUE Map_set_frame(VALUE map, VALUE val) {
179
- Map* self = ruby_to_Map(map);
180
- self->parse_frame = val;
181
- return val;
128
+ static upb_map *Map_GetMutable(VALUE _self) {
129
+ rb_check_frozen(_self);
130
+ return (upb_map*)ruby_to_Map(_self)->map;
182
131
  }
183
132
 
184
- static bool needs_typeclass(upb_fieldtype_t type) {
185
- switch (type) {
186
- case UPB_TYPE_MESSAGE:
187
- case UPB_TYPE_ENUM:
188
- return true;
189
- default:
190
- return false;
133
+ VALUE Map_CreateHash(const upb_map* map, upb_fieldtype_t key_type,
134
+ TypeInfo val_info) {
135
+ VALUE hash = rb_hash_new();
136
+ size_t iter = UPB_MAP_BEGIN;
137
+ TypeInfo key_info = TypeInfo_from_type(key_type);
138
+
139
+ if (!map) return hash;
140
+
141
+ while (upb_mapiter_next(map, &iter)) {
142
+ upb_msgval key = upb_mapiter_key(map, iter);
143
+ upb_msgval val = upb_mapiter_value(map, iter);
144
+ VALUE key_val = Convert_UpbToRuby(key, key_info, Qnil);
145
+ VALUE val_val = Scalar_CreateHash(val, val_info);
146
+ rb_hash_aset(hash, key_val, val_val);
147
+ }
148
+
149
+ return hash;
150
+ }
151
+
152
+ VALUE Map_deep_copy(VALUE obj) {
153
+ Map* self = ruby_to_Map(obj);
154
+ VALUE new_arena_rb = Arena_new();
155
+ upb_arena *arena = Arena_get(new_arena_rb);
156
+ upb_map* new_map =
157
+ upb_map_new(arena, self->key_type, self->value_type_info.type);
158
+ size_t iter = UPB_MAP_BEGIN;
159
+ while (upb_mapiter_next(self->map, &iter)) {
160
+ upb_msgval key = upb_mapiter_key(self->map, iter);
161
+ upb_msgval val = upb_mapiter_value(self->map, iter);
162
+ upb_msgval val_copy = Msgval_DeepCopy(val, self->value_type_info, arena);
163
+ upb_map_set(new_map, key, val_copy, arena);
164
+ }
165
+
166
+ return Map_GetRubyWrapper(new_map, self->key_type, self->value_type_info,
167
+ new_arena_rb);
168
+ }
169
+
170
+ const upb_map* Map_GetUpbMap(VALUE val, const upb_fielddef *field) {
171
+ const upb_fielddef* key_field = map_field_key(field);
172
+ const upb_fielddef* value_field = map_field_value(field);
173
+ TypeInfo value_type_info = TypeInfo_get(value_field);
174
+ Map* self;
175
+
176
+ if (!RB_TYPE_P(val, T_DATA) || !RTYPEDDATA_P(val) ||
177
+ RTYPEDDATA_TYPE(val) != &Map_type) {
178
+ rb_raise(cTypeError, "Expected Map instance");
179
+ }
180
+
181
+ self = ruby_to_Map(val);
182
+ if (self->key_type != upb_fielddef_type(key_field)) {
183
+ rb_raise(cTypeError, "Map key type does not match field's key type");
184
+ }
185
+ if (self->value_type_info.type != value_type_info.type) {
186
+ rb_raise(cTypeError, "Map value type does not match field's value type");
187
+ }
188
+ if (self->value_type_info.def.msgdef != value_type_info.def.msgdef) {
189
+ rb_raise(cTypeError, "Map value type has wrong message/enum class");
190
+ }
191
+
192
+ return self->map;
193
+ }
194
+
195
+ void Map_Inspect(StringBuilder* b, const upb_map* map, upb_fieldtype_t key_type,
196
+ TypeInfo val_type) {
197
+ bool first = true;
198
+ TypeInfo key_type_info = {key_type};
199
+ StringBuilder_Printf(b, "{");
200
+ if (map) {
201
+ size_t iter = UPB_MAP_BEGIN;
202
+ while (upb_mapiter_next(map, &iter)) {
203
+ upb_msgval key = upb_mapiter_key(map, iter);
204
+ upb_msgval val = upb_mapiter_value(map, iter);
205
+ if (first) {
206
+ first = false;
207
+ } else {
208
+ StringBuilder_Printf(b, ", ");
209
+ }
210
+ StringBuilder_PrintMsgval(b, key, key_type_info);
211
+ StringBuilder_Printf(b, "=>");
212
+ StringBuilder_PrintMsgval(b, val, val_type);
213
+ }
214
+ }
215
+ StringBuilder_Printf(b, "}");
216
+ }
217
+
218
+ static int merge_into_self_callback(VALUE key, VALUE val, VALUE _self) {
219
+ Map* self = ruby_to_Map(_self);
220
+ upb_arena *arena = Arena_get(self->arena);
221
+ upb_msgval key_val = Convert_RubyToUpb(key, "", Map_keyinfo(self), arena);
222
+ upb_msgval val_val = Convert_RubyToUpb(val, "", self->value_type_info, arena);
223
+ upb_map_set(Map_GetMutable(_self), key_val, val_val, arena);
224
+ return ST_CONTINUE;
225
+ }
226
+
227
+ // Used only internally -- shared by #merge and #initialize.
228
+ static VALUE Map_merge_into_self(VALUE _self, VALUE hashmap) {
229
+ if (TYPE(hashmap) == T_HASH) {
230
+ rb_hash_foreach(hashmap, merge_into_self_callback, _self);
231
+ } else if (RB_TYPE_P(hashmap, T_DATA) && RTYPEDDATA_P(hashmap) &&
232
+ RTYPEDDATA_TYPE(hashmap) == &Map_type) {
233
+ Map* self = ruby_to_Map(_self);
234
+ Map* other = ruby_to_Map(hashmap);
235
+ upb_arena *arena = Arena_get(self->arena);
236
+ upb_msg *self_msg = Map_GetMutable(_self);
237
+ size_t iter = UPB_MAP_BEGIN;
238
+
239
+ upb_arena_fuse(arena, Arena_get(other->arena));
240
+
241
+ if (self->key_type != other->key_type ||
242
+ self->value_type_info.type != other->value_type_info.type ||
243
+ self->value_type_class != other->value_type_class) {
244
+ rb_raise(rb_eArgError, "Attempt to merge Map with mismatching types");
245
+ }
246
+
247
+ while (upb_mapiter_next(other->map, &iter)) {
248
+ upb_msgval key = upb_mapiter_key(other->map, iter);
249
+ upb_msgval val = upb_mapiter_value(other->map, iter);
250
+ upb_map_set(self_msg, key, val, arena);
251
+ }
252
+ } else {
253
+ rb_raise(rb_eArgError, "Unknown type merging into Map");
191
254
  }
255
+ return _self;
192
256
  }
193
257
 
194
258
  /*
@@ -221,9 +285,9 @@ static bool needs_typeclass(upb_fieldtype_t type) {
221
285
  * references to underlying objects will be shared if the value type is a
222
286
  * message type.
223
287
  */
224
- VALUE Map_init(int argc, VALUE* argv, VALUE _self) {
288
+ static VALUE Map_init(int argc, VALUE* argv, VALUE _self) {
225
289
  Map* self = ruby_to_Map(_self);
226
- int init_value_arg;
290
+ VALUE init_arg;
227
291
 
228
292
  // We take either two args (:key_type, :value_type), three args (:key_type,
229
293
  // :value_type, "ValueMessageType"), or four args (the above plus an initial
@@ -233,8 +297,9 @@ VALUE Map_init(int argc, VALUE* argv, VALUE _self) {
233
297
  }
234
298
 
235
299
  self->key_type = ruby_to_fieldtype(argv[0]);
236
- self->value_type = ruby_to_fieldtype(argv[1]);
237
- self->parse_frame = Qnil;
300
+ self->value_type_info =
301
+ TypeInfo_FromClass(argc, argv, 1, &self->value_type_class, &init_arg);
302
+ self->arena = Arena_new();
238
303
 
239
304
  // Check that the key type is an allowed type.
240
305
  switch (self->key_type) {
@@ -251,21 +316,12 @@ VALUE Map_init(int argc, VALUE* argv, VALUE _self) {
251
316
  rb_raise(rb_eArgError, "Invalid key type for map.");
252
317
  }
253
318
 
254
- init_value_arg = 2;
255
- if (needs_typeclass(self->value_type) && argc > 2) {
256
- self->value_type_class = argv[2];
257
- validate_type_class(self->value_type, self->value_type_class);
258
- init_value_arg = 3;
259
- }
319
+ self->map = upb_map_new(Arena_get(self->arena), self->key_type,
320
+ self->value_type_info.type);
321
+ ObjectCache_Add(self->map, _self);
260
322
 
261
- // Table value type is always UINT64: this ensures enough space to store the
262
- // native_slot value.
263
- if (!upb_strtable_init(&self->table, UPB_CTYPE_UINT64)) {
264
- rb_raise(rb_eRuntimeError, "Could not allocate table.");
265
- }
266
-
267
- if (argc > init_value_arg) {
268
- Map_merge_into_self(_self, argv[init_value_arg]);
323
+ if (init_arg != Qnil) {
324
+ Map_merge_into_self(_self, init_arg);
269
325
  }
270
326
 
271
327
  return Qnil;
@@ -279,24 +335,16 @@ VALUE Map_init(int argc, VALUE* argv, VALUE _self) {
279
335
  * Note that Map also includes Enumerable; map thus acts like a normal Ruby
280
336
  * sequence.
281
337
  */
282
- VALUE Map_each(VALUE _self) {
338
+ static VALUE Map_each(VALUE _self) {
283
339
  Map* self = ruby_to_Map(_self);
284
-
285
- upb_strtable_iter it;
286
- for (upb_strtable_begin(&it, &self->table);
287
- !upb_strtable_done(&it);
288
- upb_strtable_next(&it)) {
289
-
290
- VALUE key = table_key_to_ruby(
291
- self, upb_strtable_iter_key(&it), upb_strtable_iter_keylength(&it));
292
-
293
- upb_value v = upb_strtable_iter_value(&it);
294
- void* mem = value_memory(&v);
295
- VALUE value = native_slot_get(self->value_type,
296
- self->value_type_class,
297
- mem);
298
-
299
- rb_yield_values(2, key, value);
340
+ size_t iter = UPB_MAP_BEGIN;
341
+
342
+ while (upb_mapiter_next(self->map, &iter)) {
343
+ upb_msgval key = upb_mapiter_key(self->map, iter);
344
+ upb_msgval val = upb_mapiter_value(self->map, iter);
345
+ VALUE key_val = Convert_UpbToRuby(key, Map_keyinfo(self), self->arena);
346
+ VALUE val_val = Convert_UpbToRuby(val, self->value_type_info, self->arena);
347
+ rb_yield_values(2, key_val, val_val);
300
348
  }
301
349
 
302
350
  return Qnil;
@@ -308,19 +356,15 @@ VALUE Map_each(VALUE _self) {
308
356
  *
309
357
  * Returns the list of keys contained in the map, in unspecified order.
310
358
  */
311
- VALUE Map_keys(VALUE _self) {
359
+ static VALUE Map_keys(VALUE _self) {
312
360
  Map* self = ruby_to_Map(_self);
313
-
361
+ size_t iter = UPB_MAP_BEGIN;
314
362
  VALUE ret = rb_ary_new();
315
- upb_strtable_iter it;
316
- for (upb_strtable_begin(&it, &self->table);
317
- !upb_strtable_done(&it);
318
- upb_strtable_next(&it)) {
319
363
 
320
- VALUE key = table_key_to_ruby(
321
- self, upb_strtable_iter_key(&it), upb_strtable_iter_keylength(&it));
322
-
323
- rb_ary_push(ret, key);
364
+ while (upb_mapiter_next(self->map, &iter)) {
365
+ upb_msgval key = upb_mapiter_key(self->map, iter);
366
+ VALUE key_val = Convert_UpbToRuby(key, Map_keyinfo(self), self->arena);
367
+ rb_ary_push(ret, key_val);
324
368
  }
325
369
 
326
370
  return ret;
@@ -332,22 +376,15 @@ VALUE Map_keys(VALUE _self) {
332
376
  *
333
377
  * Returns the list of values contained in the map, in unspecified order.
334
378
  */
335
- VALUE Map_values(VALUE _self) {
379
+ static VALUE Map_values(VALUE _self) {
336
380
  Map* self = ruby_to_Map(_self);
337
-
381
+ size_t iter = UPB_MAP_BEGIN;
338
382
  VALUE ret = rb_ary_new();
339
- upb_strtable_iter it;
340
- for (upb_strtable_begin(&it, &self->table);
341
- !upb_strtable_done(&it);
342
- upb_strtable_next(&it)) {
343
-
344
- upb_value v = upb_strtable_iter_value(&it);
345
- void* mem = value_memory(&v);
346
- VALUE value = native_slot_get(self->value_type,
347
- self->value_type_class,
348
- mem);
349
-
350
- rb_ary_push(ret, value);
383
+
384
+ while (upb_mapiter_next(self->map, &iter)) {
385
+ upb_msgval val = upb_mapiter_value(self->map, iter);
386
+ VALUE val_val = Convert_UpbToRuby(val, self->value_type_info, self->arena);
387
+ rb_ary_push(ret, val_val);
351
388
  }
352
389
 
353
390
  return ret;
@@ -360,18 +397,13 @@ VALUE Map_values(VALUE _self) {
360
397
  * Accesses the element at the given key. Throws an exception if the key type is
361
398
  * incorrect. Returns nil when the key is not present in the map.
362
399
  */
363
- VALUE Map_index(VALUE _self, VALUE key) {
400
+ static VALUE Map_index(VALUE _self, VALUE key) {
364
401
  Map* self = ruby_to_Map(_self);
402
+ upb_msgval key_upb = Convert_RubyToUpb(key, "", Map_keyinfo(self), NULL);
403
+ upb_msgval val;
365
404
 
366
- char keybuf[TABLE_KEY_BUF_LENGTH];
367
- const char* keyval = NULL;
368
- size_t length = 0;
369
- upb_value v;
370
- key = table_key(self, key, keybuf, &keyval, &length);
371
-
372
- if (upb_strtable_lookup2(&self->table, keyval, length, &v)) {
373
- void* mem = value_memory(&v);
374
- return native_slot_get(self->value_type, self->value_type_class, mem);
405
+ if (upb_map_get(self->map, key_upb, &val)) {
406
+ return Convert_UpbToRuby(val, self->value_type_info, self->arena);
375
407
  } else {
376
408
  return Qnil;
377
409
  }
@@ -385,27 +417,15 @@ VALUE Map_index(VALUE _self, VALUE key) {
385
417
  * Throws an exception if the key type is incorrect. Returns the new value that
386
418
  * was just inserted.
387
419
  */
388
- VALUE Map_index_set(VALUE _self, VALUE key, VALUE value) {
420
+ static VALUE Map_index_set(VALUE _self, VALUE key, VALUE val) {
389
421
  Map* self = ruby_to_Map(_self);
422
+ upb_arena *arena = Arena_get(self->arena);
423
+ upb_msgval key_upb = Convert_RubyToUpb(key, "", Map_keyinfo(self), NULL);
424
+ upb_msgval val_upb = Convert_RubyToUpb(val, "", self->value_type_info, arena);
390
425
 
391
- char keybuf[TABLE_KEY_BUF_LENGTH];
392
- const char* keyval = NULL;
393
- size_t length = 0;
394
- upb_value v;
395
- void* mem;
396
- key = table_key(self, key, keybuf, &keyval, &length);
397
-
398
- mem = value_memory(&v);
399
- native_slot_set(self->value_type, self->value_type_class, mem, value);
400
-
401
- // Replace any existing value by issuing a 'remove' operation first.
402
- upb_strtable_remove2(&self->table, keyval, length, NULL);
403
- if (!upb_strtable_insert2(&self->table, keyval, length, v)) {
404
- rb_raise(rb_eRuntimeError, "Could not insert into table");
405
- }
426
+ upb_map_set(Map_GetMutable(_self), key_upb, val_upb, arena);
406
427
 
407
- // Ruby hashmap's :[]= method also returns the inserted value.
408
- return value;
428
+ return val;
409
429
  }
410
430
 
411
431
  /*
@@ -415,15 +435,11 @@ VALUE Map_index_set(VALUE _self, VALUE key, VALUE value) {
415
435
  * Returns true if the given key is present in the map. Throws an exception if
416
436
  * the key has the wrong type.
417
437
  */
418
- VALUE Map_has_key(VALUE _self, VALUE key) {
438
+ static VALUE Map_has_key(VALUE _self, VALUE key) {
419
439
  Map* self = ruby_to_Map(_self);
440
+ upb_msgval key_upb = Convert_RubyToUpb(key, "", Map_keyinfo(self), NULL);
420
441
 
421
- char keybuf[TABLE_KEY_BUF_LENGTH];
422
- const char* keyval = NULL;
423
- size_t length = 0;
424
- key = table_key(self, key, keybuf, &keyval, &length);
425
-
426
- if (upb_strtable_lookup2(&self->table, keyval, length, NULL)) {
442
+ if (upb_map_get(self->map, key_upb, NULL)) {
427
443
  return Qtrue;
428
444
  } else {
429
445
  return Qfalse;
@@ -437,21 +453,25 @@ VALUE Map_has_key(VALUE _self, VALUE key) {
437
453
  * Deletes the value at the given key, if any, returning either the old value or
438
454
  * nil if none was present. Throws an exception if the key is of the wrong type.
439
455
  */
440
- VALUE Map_delete(VALUE _self, VALUE key) {
456
+ static VALUE Map_delete(VALUE _self, VALUE key) {
441
457
  Map* self = ruby_to_Map(_self);
458
+ upb_msgval key_upb = Convert_RubyToUpb(key, "", Map_keyinfo(self), NULL);
459
+ upb_msgval val_upb;
460
+ VALUE ret;
442
461
 
443
- char keybuf[TABLE_KEY_BUF_LENGTH];
444
- const char* keyval = NULL;
445
- size_t length = 0;
446
- upb_value v;
447
- key = table_key(self, key, keybuf, &keyval, &length);
462
+ rb_check_frozen(_self);
448
463
 
449
- if (upb_strtable_remove2(&self->table, keyval, length, &v)) {
450
- void* mem = value_memory(&v);
451
- return native_slot_get(self->value_type, self->value_type_class, mem);
464
+ // TODO(haberman): make upb_map_delete() also capable of returning the deleted
465
+ // value.
466
+ if (upb_map_get(self->map, key_upb, &val_upb)) {
467
+ ret = Convert_UpbToRuby(val_upb, self->value_type_info, self->arena);
452
468
  } else {
453
- return Qnil;
469
+ ret = Qnil;
454
470
  }
471
+
472
+ upb_map_delete(Map_GetMutable(_self), key_upb);
473
+
474
+ return ret;
455
475
  }
456
476
 
457
477
  /*
@@ -460,15 +480,8 @@ VALUE Map_delete(VALUE _self, VALUE key) {
460
480
  *
461
481
  * Removes all entries from the map.
462
482
  */
463
- VALUE Map_clear(VALUE _self) {
464
- Map* self = ruby_to_Map(_self);
465
-
466
- // Uninit and reinit the table -- this is faster than iterating and doing a
467
- // delete-lookup on each key.
468
- upb_strtable_uninit(&self->table);
469
- if (!upb_strtable_init(&self->table, UPB_CTYPE_INT64)) {
470
- rb_raise(rb_eRuntimeError, "Unable to re-initialize table");
471
- }
483
+ static VALUE Map_clear(VALUE _self) {
484
+ upb_map_clear(Map_GetMutable(_self));
472
485
  return Qnil;
473
486
  }
474
487
 
@@ -478,24 +491,9 @@ VALUE Map_clear(VALUE _self) {
478
491
  *
479
492
  * Returns the number of entries (key-value pairs) in the map.
480
493
  */
481
- VALUE Map_length(VALUE _self) {
494
+ static VALUE Map_length(VALUE _self) {
482
495
  Map* self = ruby_to_Map(_self);
483
- return ULL2NUM(upb_strtable_count(&self->table));
484
- }
485
-
486
- static VALUE Map_new_this_type(VALUE _self) {
487
- Map* self = ruby_to_Map(_self);
488
- VALUE new_map = Qnil;
489
- VALUE key_type = fieldtype_to_ruby(self->key_type);
490
- VALUE value_type = fieldtype_to_ruby(self->value_type);
491
- if (self->value_type_class != Qnil) {
492
- new_map = rb_funcall(CLASS_OF(_self), rb_intern("new"), 3,
493
- key_type, value_type, self->value_type_class);
494
- } else {
495
- new_map = rb_funcall(CLASS_OF(_self), rb_intern("new"), 2,
496
- key_type, value_type);
497
- }
498
- return new_map;
496
+ return ULL2NUM(upb_map_size(self->map));
499
497
  }
500
498
 
501
499
  /*
@@ -505,59 +503,23 @@ static VALUE Map_new_this_type(VALUE _self) {
505
503
  * Duplicates this map with a shallow copy. References to all non-primitive
506
504
  * element objects (e.g., submessages) are shared.
507
505
  */
508
- VALUE Map_dup(VALUE _self) {
506
+ static VALUE Map_dup(VALUE _self) {
509
507
  Map* self = ruby_to_Map(_self);
510
- VALUE new_map = Map_new_this_type(_self);
511
- Map* new_self = ruby_to_Map(new_map);
512
-
513
- upb_strtable_iter it;
514
- for (upb_strtable_begin(&it, &self->table);
515
- !upb_strtable_done(&it);
516
- upb_strtable_next(&it)) {
517
-
518
- upb_value v = upb_strtable_iter_value(&it);
519
- void* mem = value_memory(&v);
520
- upb_value dup;
521
- void* dup_mem = value_memory(&dup);
522
- native_slot_dup(self->value_type, dup_mem, mem);
523
-
524
- if (!upb_strtable_insert2(&new_self->table,
525
- upb_strtable_iter_key(&it),
526
- upb_strtable_iter_keylength(&it),
527
- dup)) {
528
- rb_raise(rb_eRuntimeError, "Error inserting value into new table");
529
- }
508
+ VALUE new_map_rb = Map_new_this_type(self);
509
+ Map* new_self = ruby_to_Map(new_map_rb);
510
+ size_t iter = UPB_MAP_BEGIN;
511
+ upb_arena *arena = Arena_get(new_self->arena);
512
+ upb_map *new_map = Map_GetMutable(new_map_rb);
513
+
514
+ upb_arena_fuse(arena, Arena_get(self->arena));
515
+
516
+ while (upb_mapiter_next(self->map, &iter)) {
517
+ upb_msgval key = upb_mapiter_key(self->map, iter);
518
+ upb_msgval val = upb_mapiter_value(self->map, iter);
519
+ upb_map_set(new_map, key, val, arena);
530
520
  }
531
521
 
532
- return new_map;
533
- }
534
-
535
- // Used by Google::Protobuf.deep_copy but not exposed directly.
536
- VALUE Map_deep_copy(VALUE _self) {
537
- Map* self = ruby_to_Map(_self);
538
- VALUE new_map = Map_new_this_type(_self);
539
- Map* new_self = ruby_to_Map(new_map);
540
-
541
- upb_strtable_iter it;
542
- for (upb_strtable_begin(&it, &self->table);
543
- !upb_strtable_done(&it);
544
- upb_strtable_next(&it)) {
545
-
546
- upb_value v = upb_strtable_iter_value(&it);
547
- void* mem = value_memory(&v);
548
- upb_value dup;
549
- void* dup_mem = value_memory(&dup);
550
- native_slot_deep_copy(self->value_type, dup_mem, mem);
551
-
552
- if (!upb_strtable_insert2(&new_self->table,
553
- upb_strtable_iter_key(&it),
554
- upb_strtable_iter_keylength(&it),
555
- dup)) {
556
- rb_raise(rb_eRuntimeError, "Error inserting value into new table");
557
- }
558
- }
559
-
560
- return new_map;
522
+ return new_map_rb;
561
523
  }
562
524
 
563
525
  /*
@@ -576,12 +538,11 @@ VALUE Map_deep_copy(VALUE _self) {
576
538
  VALUE Map_eq(VALUE _self, VALUE _other) {
577
539
  Map* self = ruby_to_Map(_self);
578
540
  Map* other;
579
- upb_strtable_iter it;
580
541
 
581
542
  // Allow comparisons to Ruby hashmaps by converting to a temporary Map
582
543
  // instance. Slow, but workable.
583
544
  if (TYPE(_other) == T_HASH) {
584
- VALUE other_map = Map_new_this_type(_self);
545
+ VALUE other_map = Map_new_this_type(self);
585
546
  Map_merge_into_self(other_map, _other);
586
547
  _other = other_map;
587
548
  }
@@ -592,35 +553,27 @@ VALUE Map_eq(VALUE _self, VALUE _other) {
592
553
  return Qtrue;
593
554
  }
594
555
  if (self->key_type != other->key_type ||
595
- self->value_type != other->value_type ||
556
+ self->value_type_info.type != other->value_type_info.type ||
596
557
  self->value_type_class != other->value_type_class) {
597
558
  return Qfalse;
598
559
  }
599
- if (upb_strtable_count(&self->table) != upb_strtable_count(&other->table)) {
560
+ if (upb_map_size(self->map) != upb_map_size(other->map)) {
600
561
  return Qfalse;
601
562
  }
602
563
 
603
564
  // For each member of self, check that an equal member exists at the same key
604
565
  // in other.
605
- for (upb_strtable_begin(&it, &self->table);
606
- !upb_strtable_done(&it);
607
- upb_strtable_next(&it)) {
608
-
609
- upb_value v = upb_strtable_iter_value(&it);
610
- void* mem = value_memory(&v);
611
- upb_value other_v;
612
- void* other_mem = value_memory(&other_v);
613
-
614
- if (!upb_strtable_lookup2(&other->table,
615
- upb_strtable_iter_key(&it),
616
- upb_strtable_iter_keylength(&it),
617
- &other_v)) {
566
+ size_t iter = UPB_MAP_BEGIN;
567
+ while (upb_mapiter_next(self->map, &iter)) {
568
+ upb_msgval key = upb_mapiter_key(self->map, iter);
569
+ upb_msgval val = upb_mapiter_value(self->map, iter);
570
+ upb_msgval other_val;
571
+ if (!upb_map_get(other->map, key, &other_val)) {
618
572
  // Not present in other map.
619
573
  return Qfalse;
620
574
  }
621
-
622
- if (!native_slot_eq(self->value_type, mem, other_mem)) {
623
- // Present, but value not equal.
575
+ if (!Msgval_IsEqual(val, other_val, self->value_type_info)) {
576
+ // Present but different value.
624
577
  return Qfalse;
625
578
  }
626
579
  }
@@ -628,6 +581,22 @@ VALUE Map_eq(VALUE _self, VALUE _other) {
628
581
  return Qtrue;
629
582
  }
630
583
 
584
+ /*
585
+ * call-seq:
586
+ * Message.freeze => self
587
+ *
588
+ * Freezes the message object. We have to intercept this so we can pin the
589
+ * Ruby object into memory so we don't forget it's frozen.
590
+ */
591
+ static VALUE Map_freeze(VALUE _self) {
592
+ Map* self = ruby_to_Map(_self);
593
+ if (!RB_OBJ_FROZEN(_self)) {
594
+ Arena_Pin(self->arena, _self);
595
+ RB_OBJ_FREEZE(_self);
596
+ }
597
+ return _self;
598
+ }
599
+
631
600
  /*
632
601
  * call-seq:
633
602
  * Map.hash => hash_value
@@ -636,28 +605,18 @@ VALUE Map_eq(VALUE _self, VALUE _other) {
636
605
  */
637
606
  VALUE Map_hash(VALUE _self) {
638
607
  Map* self = ruby_to_Map(_self);
639
-
640
- st_index_t h = rb_hash_start(0);
641
- VALUE hash_sym = rb_intern("hash");
642
-
643
- upb_strtable_iter it;
644
- for (upb_strtable_begin(&it, &self->table);
645
- !upb_strtable_done(&it);
646
- upb_strtable_next(&it)) {
647
- VALUE key = table_key_to_ruby(
648
- self, upb_strtable_iter_key(&it), upb_strtable_iter_keylength(&it));
649
-
650
- upb_value v = upb_strtable_iter_value(&it);
651
- void* mem = value_memory(&v);
652
- VALUE value = native_slot_get(self->value_type,
653
- self->value_type_class,
654
- mem);
655
-
656
- h = rb_hash_uint(h, NUM2LONG(rb_funcall(key, hash_sym, 0)));
657
- h = rb_hash_uint(h, NUM2LONG(rb_funcall(value, hash_sym, 0)));
608
+ uint64_t hash = 0;
609
+
610
+ size_t iter = UPB_MAP_BEGIN;
611
+ TypeInfo key_info = {self->key_type};
612
+ while (upb_mapiter_next(self->map, &iter)) {
613
+ upb_msgval key = upb_mapiter_key(self->map, iter);
614
+ upb_msgval val = upb_mapiter_value(self->map, iter);
615
+ hash = Msgval_GetHash(key, key_info, hash);
616
+ hash = Msgval_GetHash(val, self->value_type_info, hash);
658
617
  }
659
618
 
660
- return INT2FIX(h);
619
+ return LL2NUM(hash);
661
620
  }
662
621
 
663
622
  /*
@@ -668,25 +627,7 @@ VALUE Map_hash(VALUE _self) {
668
627
  */
669
628
  VALUE Map_to_h(VALUE _self) {
670
629
  Map* self = ruby_to_Map(_self);
671
- VALUE hash = rb_hash_new();
672
- upb_strtable_iter it;
673
- for (upb_strtable_begin(&it, &self->table);
674
- !upb_strtable_done(&it);
675
- upb_strtable_next(&it)) {
676
- VALUE key = table_key_to_ruby(
677
- self, upb_strtable_iter_key(&it), upb_strtable_iter_keylength(&it));
678
- upb_value v = upb_strtable_iter_value(&it);
679
- void* mem = value_memory(&v);
680
- VALUE value = native_slot_get(self->value_type,
681
- self->value_type_class,
682
- mem);
683
-
684
- if (self->value_type == UPB_TYPE_MESSAGE) {
685
- value = Message_to_h(value);
686
- }
687
- rb_hash_aset(hash, key, value);
688
- }
689
- return hash;
630
+ return Map_CreateHash(self->map, self->key_type, self->value_type_info);
690
631
  }
691
632
 
692
633
  /*
@@ -700,36 +641,11 @@ VALUE Map_to_h(VALUE _self) {
700
641
  VALUE Map_inspect(VALUE _self) {
701
642
  Map* self = ruby_to_Map(_self);
702
643
 
703
- VALUE str = rb_str_new2("{");
704
-
705
- bool first = true;
706
- VALUE inspect_sym = rb_intern("inspect");
707
-
708
- upb_strtable_iter it;
709
- for (upb_strtable_begin(&it, &self->table);
710
- !upb_strtable_done(&it);
711
- upb_strtable_next(&it)) {
712
- VALUE key = table_key_to_ruby(
713
- self, upb_strtable_iter_key(&it), upb_strtable_iter_keylength(&it));
714
-
715
- upb_value v = upb_strtable_iter_value(&it);
716
- void* mem = value_memory(&v);
717
- VALUE value = native_slot_get(self->value_type,
718
- self->value_type_class,
719
- mem);
720
-
721
- if (!first) {
722
- str = rb_str_cat2(str, ", ");
723
- } else {
724
- first = false;
725
- }
726
- str = rb_str_append(str, rb_funcall(key, inspect_sym, 0));
727
- str = rb_str_cat2(str, "=>");
728
- str = rb_str_append(str, rb_funcall(value, inspect_sym, 0));
729
- }
730
-
731
- str = rb_str_cat2(str, "}");
732
- return str;
644
+ StringBuilder* builder = StringBuilder_New();
645
+ Map_Inspect(builder, self->map, self->key_type, self->value_type_info);
646
+ VALUE ret = StringBuilder_ToRubyString(builder);
647
+ StringBuilder_Free(builder);
648
+ return ret;
733
649
  }
734
650
 
735
651
  /*
@@ -741,87 +657,11 @@ VALUE Map_inspect(VALUE _self) {
741
657
  * in the new copy of this map. Returns the new copy of this map with merged
742
658
  * contents.
743
659
  */
744
- VALUE Map_merge(VALUE _self, VALUE hashmap) {
660
+ static VALUE Map_merge(VALUE _self, VALUE hashmap) {
745
661
  VALUE dupped = Map_dup(_self);
746
662
  return Map_merge_into_self(dupped, hashmap);
747
663
  }
748
664
 
749
- static int merge_into_self_callback(VALUE key, VALUE value, VALUE self) {
750
- Map_index_set(self, key, value);
751
- return ST_CONTINUE;
752
- }
753
-
754
- // Used only internally -- shared by #merge and #initialize.
755
- VALUE Map_merge_into_self(VALUE _self, VALUE hashmap) {
756
- if (TYPE(hashmap) == T_HASH) {
757
- rb_hash_foreach(hashmap, merge_into_self_callback, _self);
758
- } else if (RB_TYPE_P(hashmap, T_DATA) && RTYPEDDATA_P(hashmap) &&
759
- RTYPEDDATA_TYPE(hashmap) == &Map_type) {
760
-
761
- Map* self = ruby_to_Map(_self);
762
- Map* other = ruby_to_Map(hashmap);
763
- upb_strtable_iter it;
764
-
765
- if (self->key_type != other->key_type ||
766
- self->value_type != other->value_type ||
767
- self->value_type_class != other->value_type_class) {
768
- rb_raise(rb_eArgError, "Attempt to merge Map with mismatching types");
769
- }
770
-
771
- for (upb_strtable_begin(&it, &other->table);
772
- !upb_strtable_done(&it);
773
- upb_strtable_next(&it)) {
774
-
775
- // Replace any existing value by issuing a 'remove' operation first.
776
- upb_value v;
777
- upb_value oldv;
778
- upb_strtable_remove2(&self->table,
779
- upb_strtable_iter_key(&it),
780
- upb_strtable_iter_keylength(&it),
781
- &oldv);
782
-
783
- v = upb_strtable_iter_value(&it);
784
- upb_strtable_insert2(&self->table,
785
- upb_strtable_iter_key(&it),
786
- upb_strtable_iter_keylength(&it),
787
- v);
788
- }
789
- } else {
790
- rb_raise(rb_eArgError, "Unknown type merging into Map");
791
- }
792
- return _self;
793
- }
794
-
795
- // Internal method: map iterator initialization (used for serialization).
796
- void Map_begin(VALUE _self, Map_iter* iter) {
797
- Map* self = ruby_to_Map(_self);
798
- iter->self = self;
799
- upb_strtable_begin(&iter->it, &self->table);
800
- }
801
-
802
- void Map_next(Map_iter* iter) {
803
- upb_strtable_next(&iter->it);
804
- }
805
-
806
- bool Map_done(Map_iter* iter) {
807
- return upb_strtable_done(&iter->it);
808
- }
809
-
810
- VALUE Map_iter_key(Map_iter* iter) {
811
- return table_key_to_ruby(
812
- iter->self,
813
- upb_strtable_iter_key(&iter->it),
814
- upb_strtable_iter_keylength(&iter->it));
815
- }
816
-
817
- VALUE Map_iter_value(Map_iter* iter) {
818
- upb_value v = upb_strtable_iter_value(&iter->it);
819
- void* mem = value_memory(&v);
820
- return native_slot_get(iter->self->value_type,
821
- iter->self->value_type_class,
822
- mem);
823
- }
824
-
825
665
  void Map_register(VALUE module) {
826
666
  VALUE klass = rb_define_class_under(module, "Map", rb_cObject);
827
667
  rb_define_alloc_func(klass, Map_alloc);
@@ -840,8 +680,8 @@ void Map_register(VALUE module) {
840
680
  rb_define_method(klass, "length", Map_length, 0);
841
681
  rb_define_method(klass, "dup", Map_dup, 0);
842
682
  rb_define_method(klass, "==", Map_eq, 1);
683
+ rb_define_method(klass, "freeze", Map_freeze, 0);
843
684
  rb_define_method(klass, "hash", Map_hash, 0);
844
- rb_define_method(klass, "to_hash", Map_to_h, 0);
845
685
  rb_define_method(klass, "to_h", Map_to_h, 0);
846
686
  rb_define_method(klass, "inspect", Map_inspect, 0);
847
687
  rb_define_method(klass, "merge", Map_merge, 1);