google-protobuf 3.14.0 → 3.15.0.rc.1
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.
- checksums.yaml +4 -4
- data/ext/google/protobuf_c/convert.c +349 -0
- data/ext/google/protobuf_c/convert.h +72 -0
- data/ext/google/protobuf_c/defs.c +924 -731
- data/ext/google/protobuf_c/defs.h +107 -0
- data/ext/google/protobuf_c/extconf.rb +4 -5
- data/ext/google/protobuf_c/map.c +308 -456
- data/ext/google/protobuf_c/map.h +66 -0
- data/ext/google/protobuf_c/message.c +889 -433
- data/ext/google/protobuf_c/message.h +98 -0
- data/ext/google/protobuf_c/protobuf.c +325 -65
- data/ext/google/protobuf_c/protobuf.h +42 -597
- data/ext/google/protobuf_c/repeated_field.c +291 -321
- data/ext/google/protobuf_c/repeated_field.h +62 -0
- data/ext/google/protobuf_c/ruby-upb.c +8915 -0
- data/ext/google/protobuf_c/{upb.h → ruby-upb.h} +1362 -3687
- data/ext/google/protobuf_c/third_party/wyhash/wyhash.h +145 -0
- data/tests/basic.rb +35 -6
- metadata +17 -12
- data/ext/google/protobuf_c/encode_decode.c +0 -1795
- data/ext/google/protobuf_c/storage.c +0 -1198
- data/ext/google/protobuf_c/upb.c +0 -13817
@@ -0,0 +1,66 @@
|
|
1
|
+
// Protocol Buffers - Google's data interchange format
|
2
|
+
// Copyright 2008 Google Inc. All rights reserved.
|
3
|
+
// https://developers.google.com/protocol-buffers/
|
4
|
+
//
|
5
|
+
// Redistribution and use in source and binary forms, with or without
|
6
|
+
// modification, are permitted provided that the following conditions are
|
7
|
+
// met:
|
8
|
+
//
|
9
|
+
// * Redistributions of source code must retain the above copyright
|
10
|
+
// notice, this list of conditions and the following disclaimer.
|
11
|
+
// * Redistributions in binary form must reproduce the above
|
12
|
+
// copyright notice, this list of conditions and the following disclaimer
|
13
|
+
// in the documentation and/or other materials provided with the
|
14
|
+
// distribution.
|
15
|
+
// * Neither the name of Google Inc. nor the names of its
|
16
|
+
// contributors may be used to endorse or promote products derived from
|
17
|
+
// this software without specific prior written permission.
|
18
|
+
//
|
19
|
+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
20
|
+
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
21
|
+
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
22
|
+
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
23
|
+
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
24
|
+
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
25
|
+
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
26
|
+
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
27
|
+
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
28
|
+
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
|
+
|
31
|
+
#ifndef RUBY_PROTOBUF_MAP_H_
|
32
|
+
#define RUBY_PROTOBUF_MAP_H_
|
33
|
+
|
34
|
+
#include <ruby/ruby.h>
|
35
|
+
|
36
|
+
#include "protobuf.h"
|
37
|
+
#include "ruby-upb.h"
|
38
|
+
|
39
|
+
// Returns a Ruby wrapper object for the given map, which will be created if
|
40
|
+
// one does not exist already.
|
41
|
+
VALUE Map_GetRubyWrapper(upb_map *map, upb_fieldtype_t key_type,
|
42
|
+
TypeInfo value_type, VALUE arena);
|
43
|
+
|
44
|
+
// Gets the underlying upb_map for this Ruby map object, which must have
|
45
|
+
// key/value type that match |field|. If this is not a map or the type doesn't
|
46
|
+
// match, raises an exception.
|
47
|
+
const upb_map *Map_GetUpbMap(VALUE val, const upb_fielddef *field);
|
48
|
+
|
49
|
+
// Implements #inspect for this map by appending its contents to |b|.
|
50
|
+
void Map_Inspect(StringBuilder *b, const upb_map *map, upb_fieldtype_t key_type,
|
51
|
+
TypeInfo val_type);
|
52
|
+
|
53
|
+
// Returns a new Hash object containing the contents of this Map.
|
54
|
+
VALUE Map_CreateHash(const upb_map* map, upb_fieldtype_t key_type,
|
55
|
+
TypeInfo val_info);
|
56
|
+
|
57
|
+
// Returns a deep copy of this Map object.
|
58
|
+
VALUE Map_deep_copy(VALUE obj);
|
59
|
+
|
60
|
+
// Ruby class of Google::Protobuf::Map.
|
61
|
+
extern VALUE cMap;
|
62
|
+
|
63
|
+
// Call at startup to register all types in this module.
|
64
|
+
void Map_register(VALUE module);
|
65
|
+
|
66
|
+
#endif // RUBY_PROTOBUF_MAP_H_
|
@@ -28,49 +28,61 @@
|
|
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 "message.h"
|
32
|
+
|
33
|
+
#include "convert.h"
|
34
|
+
#include "defs.h"
|
35
|
+
#include "map.h"
|
31
36
|
#include "protobuf.h"
|
37
|
+
#include "repeated_field.h"
|
38
|
+
#include "third_party/wyhash/wyhash.h"
|
32
39
|
|
33
|
-
|
34
|
-
|
35
|
-
// -----------------------------------------------------------------------------
|
40
|
+
static VALUE cParseError = Qnil;
|
41
|
+
static ID descriptor_instancevar_interned;
|
36
42
|
|
37
|
-
|
38
|
-
|
43
|
+
static VALUE initialize_rb_class_with_no_args(VALUE klass) {
|
44
|
+
return rb_funcall(klass, rb_intern("new"), 0);
|
39
45
|
}
|
40
46
|
|
41
|
-
|
42
|
-
|
43
|
-
layout_mark(self->descriptor->layout, Message_data(self));
|
47
|
+
VALUE MessageOrEnum_GetDescriptor(VALUE klass) {
|
48
|
+
return rb_ivar_get(klass, descriptor_instancevar_interned);
|
44
49
|
}
|
45
50
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
51
|
+
// -----------------------------------------------------------------------------
|
52
|
+
// Class/module creation from msgdefs and enumdefs, respectively.
|
53
|
+
// -----------------------------------------------------------------------------
|
54
|
+
|
55
|
+
typedef struct {
|
56
|
+
VALUE arena;
|
57
|
+
const upb_msg* msg; // Can get as mutable when non-frozen.
|
58
|
+
const upb_msgdef* msgdef; // kept alive by self.class.descriptor reference.
|
59
|
+
} Message;
|
60
|
+
|
61
|
+
static void Message_mark(void* _self) {
|
62
|
+
Message* self = (Message *)_self;
|
63
|
+
rb_gc_mark(self->arena);
|
53
64
|
}
|
54
65
|
|
55
|
-
rb_data_type_t Message_type = {
|
66
|
+
static rb_data_type_t Message_type = {
|
56
67
|
"Message",
|
57
|
-
{ Message_mark,
|
68
|
+
{ Message_mark, RUBY_DEFAULT_FREE, NULL },
|
69
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY,
|
58
70
|
};
|
59
71
|
|
60
|
-
|
72
|
+
static Message* ruby_to_Message(VALUE msg_rb) {
|
73
|
+
Message* msg;
|
74
|
+
TypedData_Get_Struct(msg_rb, Message, &Message_type, msg);
|
75
|
+
return msg;
|
76
|
+
}
|
77
|
+
|
78
|
+
static VALUE Message_alloc(VALUE klass) {
|
61
79
|
VALUE descriptor = rb_ivar_get(klass, descriptor_instancevar_interned);
|
62
|
-
|
63
|
-
MessageHeader* msg;
|
80
|
+
Message* msg = ALLOC(Message);
|
64
81
|
VALUE ret;
|
65
82
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
msg = (void*)ALLOC_N(uint8_t, sizeof(MessageHeader) + desc->layout->size);
|
71
|
-
msg->descriptor = desc;
|
72
|
-
msg->unknown_fields = NULL;
|
73
|
-
memcpy(Message_data(msg), desc->layout->empty_template, desc->layout->size);
|
83
|
+
msg->msgdef = Descriptor_GetMsgDef(descriptor);
|
84
|
+
msg->arena = Qnil;
|
85
|
+
msg->msg = NULL;
|
74
86
|
|
75
87
|
ret = TypedData_Wrap_Struct(klass, &Message_type, msg);
|
76
88
|
rb_ivar_set(ret, descriptor_instancevar_interned, descriptor);
|
@@ -78,24 +90,92 @@ VALUE Message_alloc(VALUE klass) {
|
|
78
90
|
return ret;
|
79
91
|
}
|
80
92
|
|
81
|
-
|
82
|
-
|
83
|
-
|
93
|
+
const upb_msg *Message_Get(VALUE msg_rb, const upb_msgdef **m) {
|
94
|
+
Message* msg = ruby_to_Message(msg_rb);
|
95
|
+
if (m) *m = msg->msgdef;
|
96
|
+
return msg->msg;
|
97
|
+
}
|
98
|
+
|
99
|
+
upb_msg *Message_GetMutable(VALUE msg_rb, const upb_msgdef **m) {
|
100
|
+
rb_check_frozen(msg_rb);
|
101
|
+
return (upb_msg*)Message_Get(msg_rb, m);
|
102
|
+
}
|
103
|
+
|
104
|
+
void Message_InitPtr(VALUE self_, upb_msg *msg, VALUE arena) {
|
105
|
+
Message* self = ruby_to_Message(self_);
|
106
|
+
self->msg = msg;
|
107
|
+
self->arena = arena;
|
108
|
+
ObjectCache_Add(msg, self_, Arena_get(arena));
|
109
|
+
}
|
110
|
+
|
111
|
+
VALUE Message_GetArena(VALUE msg_rb) {
|
112
|
+
Message* msg = ruby_to_Message(msg_rb);
|
113
|
+
return msg->arena;
|
114
|
+
}
|
115
|
+
|
116
|
+
void Message_CheckClass(VALUE klass) {
|
117
|
+
if (rb_get_alloc_func(klass) != &Message_alloc) {
|
118
|
+
rb_raise(rb_eArgError,
|
119
|
+
"Message class was not returned by the DescriptorPool.");
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
VALUE Message_GetRubyWrapper(upb_msg* msg, const upb_msgdef* m, VALUE arena) {
|
124
|
+
if (msg == NULL) return Qnil;
|
84
125
|
|
85
|
-
|
86
|
-
slot_read_oneof_case(self->descriptor->layout, Message_data(self), o);
|
126
|
+
VALUE val = ObjectCache_Get(msg);
|
87
127
|
|
88
|
-
if (
|
89
|
-
|
128
|
+
if (val == Qnil) {
|
129
|
+
VALUE klass = Descriptor_DefToClass(m);
|
130
|
+
val = Message_alloc(klass);
|
131
|
+
Message_InitPtr(val, msg, arena);
|
90
132
|
}
|
91
133
|
|
92
|
-
|
93
|
-
|
94
|
-
|
134
|
+
return val;
|
135
|
+
}
|
136
|
+
|
137
|
+
void Message_PrintMessage(StringBuilder* b, const upb_msg* msg,
|
138
|
+
const upb_msgdef* m) {
|
139
|
+
bool first = true;
|
140
|
+
int n = upb_msgdef_fieldcount(m);
|
141
|
+
VALUE klass = Descriptor_DefToClass(m);
|
142
|
+
StringBuilder_Printf(b, "<%s: ", rb_class2name(klass));
|
143
|
+
|
144
|
+
for (int i = 0; i < n; i++) {
|
145
|
+
const upb_fielddef* field = upb_msgdef_field(m, i);
|
146
|
+
|
147
|
+
if (upb_fielddef_haspresence(field) && !upb_msg_has(msg, field)) {
|
148
|
+
continue;
|
149
|
+
}
|
150
|
+
|
151
|
+
if (!first) {
|
152
|
+
StringBuilder_Printf(b, ", ");
|
153
|
+
} else {
|
154
|
+
first = false;
|
155
|
+
}
|
156
|
+
|
157
|
+
upb_msgval msgval = upb_msg_get(msg, field);
|
158
|
+
|
159
|
+
StringBuilder_Printf(b, "%s: ", upb_fielddef_name(field));
|
160
|
+
|
161
|
+
if (upb_fielddef_ismap(field)) {
|
162
|
+
const upb_msgdef* entry_m = upb_fielddef_msgsubdef(field);
|
163
|
+
const upb_fielddef* key_f = upb_msgdef_itof(entry_m, 1);
|
164
|
+
const upb_fielddef* val_f = upb_msgdef_itof(entry_m, 2);
|
165
|
+
TypeInfo val_info = TypeInfo_get(val_f);
|
166
|
+
Map_Inspect(b, msgval.map_val, upb_fielddef_type(key_f), val_info);
|
167
|
+
} else if (upb_fielddef_isseq(field)) {
|
168
|
+
RepeatedField_Inspect(b, msgval.array_val, TypeInfo_get(field));
|
169
|
+
} else {
|
170
|
+
StringBuilder_PrintMsgval(b, msgval, TypeInfo_get(field));
|
171
|
+
}
|
172
|
+
}
|
95
173
|
|
96
|
-
|
174
|
+
StringBuilder_Printf(b, ">");
|
97
175
|
}
|
98
176
|
|
177
|
+
// Helper functions for #method_missing ////////////////////////////////////////
|
178
|
+
|
99
179
|
enum {
|
100
180
|
METHOD_UNKNOWN = 0,
|
101
181
|
METHOD_GETTER = 1,
|
@@ -108,153 +188,199 @@ enum {
|
|
108
188
|
};
|
109
189
|
|
110
190
|
// Check if the field is a well known wrapper type
|
111
|
-
bool
|
112
|
-
|
113
|
-
|
191
|
+
static bool IsWrapper(const upb_fielddef* f) {
|
192
|
+
return upb_fielddef_issubmsg(f) &&
|
193
|
+
upb_msgdef_iswrapper(upb_fielddef_msgsubdef(f));
|
194
|
+
}
|
195
|
+
|
196
|
+
static bool Match(const upb_msgdef* m, const char* name, const upb_fielddef** f,
|
197
|
+
const upb_oneofdef** o, const char* prefix,
|
198
|
+
const char* suffix) {
|
199
|
+
size_t sp = strlen(prefix);
|
200
|
+
size_t ss = strlen(suffix);
|
201
|
+
size_t sn = strlen(name);
|
202
|
+
|
203
|
+
if (sn <= sp + ss) return false;
|
204
|
+
|
205
|
+
if (memcmp(name, prefix, sp) != 0 ||
|
206
|
+
memcmp(name + sn - ss, suffix, ss) != 0) {
|
114
207
|
return false;
|
115
208
|
}
|
116
|
-
|
117
|
-
|
118
|
-
case UPB_WELLKNOWN_DOUBLEVALUE:
|
119
|
-
case UPB_WELLKNOWN_FLOATVALUE:
|
120
|
-
case UPB_WELLKNOWN_INT64VALUE:
|
121
|
-
case UPB_WELLKNOWN_UINT64VALUE:
|
122
|
-
case UPB_WELLKNOWN_INT32VALUE:
|
123
|
-
case UPB_WELLKNOWN_UINT32VALUE:
|
124
|
-
case UPB_WELLKNOWN_STRINGVALUE:
|
125
|
-
case UPB_WELLKNOWN_BYTESVALUE:
|
126
|
-
case UPB_WELLKNOWN_BOOLVALUE:
|
127
|
-
return true;
|
128
|
-
default:
|
129
|
-
return false;
|
130
|
-
}
|
209
|
+
|
210
|
+
return upb_msgdef_lookupname(m, name + sp, sn - sp - ss, f, o);
|
131
211
|
}
|
132
212
|
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
213
|
+
static int extract_method_call(VALUE method_name, Message* self,
|
214
|
+
const upb_fielddef** f, const upb_oneofdef** o) {
|
215
|
+
const upb_msgdef* m = self->msgdef;
|
216
|
+
const char* name;
|
217
|
+
|
218
|
+
Check_Type(method_name, T_SYMBOL);
|
219
|
+
name = rb_id2name(SYM2ID(method_name));
|
220
|
+
|
221
|
+
if (Match(m, name, f, o, "", "")) return METHOD_GETTER;
|
222
|
+
if (Match(m, name, f, o, "", "=")) return METHOD_SETTER;
|
223
|
+
if (Match(m, name, f, o, "clear_", "")) return METHOD_CLEAR;
|
224
|
+
if (Match(m, name, f, o, "has_", "?") &&
|
225
|
+
(*o || (*f && upb_fielddef_haspresence(*f)))) {
|
226
|
+
// Disallow oneof hazzers for proto3.
|
227
|
+
// TODO(haberman): remove this test when we are enabling oneof hazzers for
|
228
|
+
// proto3.
|
229
|
+
if (*f && !upb_fielddef_issubmsg(*f) &&
|
230
|
+
upb_fielddef_realcontainingoneof(*f) &&
|
231
|
+
upb_msgdef_syntax(upb_fielddef_containingtype(*f)) !=
|
232
|
+
UPB_SYNTAX_PROTO2) {
|
233
|
+
return METHOD_UNKNOWN;
|
141
234
|
}
|
235
|
+
return METHOD_PRESENCE;
|
236
|
+
}
|
237
|
+
if (Match(m, name, f, o, "", "_as_value") && *f && !upb_fielddef_isseq(*f) &&
|
238
|
+
IsWrapper(*f)) {
|
239
|
+
return METHOD_WRAPPER_GETTER;
|
240
|
+
}
|
241
|
+
if (Match(m, name, f, o, "", "_as_value=") && *f && !upb_fielddef_isseq(*f) &&
|
242
|
+
IsWrapper(*f)) {
|
243
|
+
return METHOD_WRAPPER_SETTER;
|
244
|
+
}
|
245
|
+
if (Match(m, name, f, o, "", "_const") && *f &&
|
246
|
+
upb_fielddef_type(*f) == UPB_TYPE_ENUM) {
|
247
|
+
return METHOD_ENUM_GETTER;
|
142
248
|
}
|
143
|
-
return Qnil;
|
144
|
-
}
|
145
249
|
|
146
|
-
|
147
|
-
|
148
|
-
VALUE method_str;
|
149
|
-
char* name;
|
150
|
-
size_t name_len;
|
151
|
-
int accessor_type;
|
152
|
-
const upb_oneofdef* test_o;
|
153
|
-
const upb_fielddef* test_f;
|
154
|
-
bool has_field;
|
250
|
+
return METHOD_UNKNOWN;
|
251
|
+
}
|
155
252
|
|
156
|
-
|
253
|
+
static VALUE Message_oneof_accessor(VALUE _self, const upb_oneofdef* o,
|
254
|
+
int accessor_type) {
|
255
|
+
Message* self = ruby_to_Message(_self);
|
256
|
+
const upb_fielddef* oneof_field = upb_msg_whichoneof(self->msg, o);
|
157
257
|
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
name_len--;
|
165
|
-
// We want to ensure if the proto has something named clear_foo or has_foo?,
|
166
|
-
// we don't strip the prefix.
|
167
|
-
} else if (strncmp("clear_", name, 6) == 0 &&
|
168
|
-
!upb_msgdef_lookupname(self->descriptor->msgdef, name, name_len,
|
169
|
-
&test_f, &test_o)) {
|
170
|
-
accessor_type = METHOD_CLEAR;
|
171
|
-
name = name + 6;
|
172
|
-
name_len = name_len - 6;
|
173
|
-
} else if (strncmp("has_", name, 4) == 0 && name[name_len - 1] == '?' &&
|
174
|
-
!upb_msgdef_lookupname(self->descriptor->msgdef, name, name_len,
|
175
|
-
&test_f, &test_o)) {
|
176
|
-
accessor_type = METHOD_PRESENCE;
|
177
|
-
name = name + 4;
|
178
|
-
name_len = name_len - 5;
|
179
|
-
} else {
|
180
|
-
accessor_type = METHOD_GETTER;
|
181
|
-
}
|
182
|
-
|
183
|
-
has_field = upb_msgdef_lookupname(self->descriptor->msgdef, name, name_len,
|
184
|
-
&test_f, &test_o);
|
185
|
-
|
186
|
-
// Look for wrapper type accessor of the form <field_name>_as_value
|
187
|
-
if (!has_field &&
|
188
|
-
(accessor_type == METHOD_GETTER || accessor_type == METHOD_SETTER) &&
|
189
|
-
name_len > 9 && strncmp(name + name_len - 9, "_as_value", 9) == 0) {
|
190
|
-
const upb_oneofdef* test_o_wrapper;
|
191
|
-
const upb_fielddef* test_f_wrapper;
|
192
|
-
char wrapper_field_name[name_len - 8];
|
193
|
-
|
194
|
-
// Find the field name
|
195
|
-
strncpy(wrapper_field_name, name, name_len - 9);
|
196
|
-
wrapper_field_name[name_len - 9] = '\0';
|
197
|
-
|
198
|
-
// Check if field exists and is a wrapper type
|
199
|
-
if (upb_msgdef_lookupname(self->descriptor->msgdef, wrapper_field_name,
|
200
|
-
name_len - 9, &test_f_wrapper, &test_o_wrapper) &&
|
201
|
-
is_wrapper_type_field(test_f_wrapper)) {
|
202
|
-
// It does exist!
|
203
|
-
has_field = true;
|
204
|
-
if (accessor_type == METHOD_SETTER) {
|
205
|
-
accessor_type = METHOD_WRAPPER_SETTER;
|
206
|
-
} else {
|
207
|
-
accessor_type = METHOD_WRAPPER_GETTER;
|
258
|
+
switch (accessor_type) {
|
259
|
+
case METHOD_PRESENCE:
|
260
|
+
return oneof_field == NULL ? Qfalse : Qtrue;
|
261
|
+
case METHOD_CLEAR:
|
262
|
+
if (oneof_field != NULL) {
|
263
|
+
upb_msg_clearfield(Message_GetMutable(_self, NULL), oneof_field);
|
208
264
|
}
|
209
|
-
|
210
|
-
|
211
|
-
|
265
|
+
return Qnil;
|
266
|
+
case METHOD_GETTER:
|
267
|
+
return oneof_field == NULL
|
268
|
+
? Qnil
|
269
|
+
: ID2SYM(rb_intern(upb_fielddef_name(oneof_field)));
|
270
|
+
case METHOD_SETTER:
|
271
|
+
rb_raise(rb_eRuntimeError, "Oneof accessors are read-only.");
|
212
272
|
}
|
273
|
+
rb_raise(rb_eRuntimeError, "Invalid access of oneof field.");
|
274
|
+
}
|
213
275
|
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
if (upb_msgdef_lookupname(self->descriptor->msgdef, enum_name, name_len - 6,
|
227
|
-
&test_f_enum, &test_o_enum) &&
|
228
|
-
upb_fielddef_type(test_f_enum) == UPB_TYPE_ENUM) {
|
229
|
-
// It does exist!
|
230
|
-
has_field = true;
|
231
|
-
accessor_type = METHOD_ENUM_GETTER;
|
232
|
-
test_o = test_o_enum;
|
233
|
-
test_f = test_f_enum;
|
276
|
+
static void Message_setfield(upb_msg* msg, const upb_fielddef* f, VALUE val,
|
277
|
+
upb_arena* arena) {
|
278
|
+
upb_msgval msgval;
|
279
|
+
if (upb_fielddef_ismap(f)) {
|
280
|
+
msgval.map_val = Map_GetUpbMap(val, f);
|
281
|
+
} else if (upb_fielddef_isseq(f)) {
|
282
|
+
msgval.array_val = RepeatedField_GetUpbArray(val, f);
|
283
|
+
} else {
|
284
|
+
if (val == Qnil &&
|
285
|
+
(upb_fielddef_issubmsg(f) || upb_fielddef_realcontainingoneof(f))) {
|
286
|
+
upb_msg_clearfield(msg, f);
|
287
|
+
return;
|
234
288
|
}
|
289
|
+
msgval =
|
290
|
+
Convert_RubyToUpb(val, upb_fielddef_name(f), TypeInfo_get(f), arena);
|
235
291
|
}
|
292
|
+
upb_msg_set(msg, f, msgval, arena);
|
293
|
+
}
|
236
294
|
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
}
|
241
|
-
|
242
|
-
// Method calls like 'has_foo?' are not allowed if field "foo" does not have
|
243
|
-
// a hasbit (e.g. repeated fields or non-message type fields for proto3
|
244
|
-
// syntax).
|
245
|
-
if (accessor_type == METHOD_PRESENCE && test_f != NULL) {
|
246
|
-
if (!upb_fielddef_haspresence(test_f)) return METHOD_UNKNOWN;
|
295
|
+
static VALUE Message_field_accessor(VALUE _self, const upb_fielddef* f,
|
296
|
+
int accessor_type, int argc, VALUE* argv) {
|
297
|
+
upb_arena *arena = Arena_get(Message_GetArena(_self));
|
247
298
|
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
return
|
299
|
+
switch (accessor_type) {
|
300
|
+
case METHOD_SETTER:
|
301
|
+
Message_setfield(Message_GetMutable(_self, NULL), f, argv[1], arena);
|
302
|
+
return Qnil;
|
303
|
+
case METHOD_CLEAR:
|
304
|
+
upb_msg_clearfield(Message_GetMutable(_self, NULL), f);
|
305
|
+
return Qnil;
|
306
|
+
case METHOD_PRESENCE:
|
307
|
+
if (!upb_fielddef_haspresence(f)) {
|
308
|
+
rb_raise(rb_eRuntimeError, "Field does not have presence.");
|
309
|
+
}
|
310
|
+
return upb_msg_has(Message_Get(_self, NULL), f);
|
311
|
+
case METHOD_WRAPPER_GETTER: {
|
312
|
+
Message* self = ruby_to_Message(_self);
|
313
|
+
if (upb_msg_has(self->msg, f)) {
|
314
|
+
PBRUBY_ASSERT(upb_fielddef_issubmsg(f) && !upb_fielddef_isseq(f));
|
315
|
+
upb_msgval wrapper = upb_msg_get(self->msg, f);
|
316
|
+
const upb_msgdef *wrapper_m = upb_fielddef_msgsubdef(f);
|
317
|
+
const upb_fielddef *value_f = upb_msgdef_itof(wrapper_m, 1);
|
318
|
+
upb_msgval value = upb_msg_get(wrapper.msg_val, value_f);
|
319
|
+
return Convert_UpbToRuby(value, TypeInfo_get(value_f), self->arena);
|
320
|
+
} else {
|
321
|
+
return Qnil;
|
322
|
+
}
|
323
|
+
}
|
324
|
+
case METHOD_WRAPPER_SETTER: {
|
325
|
+
upb_msg *msg = Message_GetMutable(_self, NULL);
|
326
|
+
if (argv[1] == Qnil) {
|
327
|
+
upb_msg_clearfield(msg, f);
|
328
|
+
} else {
|
329
|
+
const upb_fielddef *val_f = upb_msgdef_itof(upb_fielddef_msgsubdef(f), 1);
|
330
|
+
upb_msgval msgval = Convert_RubyToUpb(argv[1], upb_fielddef_name(f),
|
331
|
+
TypeInfo_get(val_f), arena);
|
332
|
+
upb_msg *wrapper = upb_msg_mutable(msg, f, arena).msg;
|
333
|
+
upb_msg_set(wrapper, val_f, msgval, arena);
|
334
|
+
}
|
335
|
+
return Qnil;
|
336
|
+
}
|
337
|
+
case METHOD_ENUM_GETTER: {
|
338
|
+
upb_msgval msgval = upb_msg_get(Message_Get(_self, NULL), f);
|
339
|
+
|
340
|
+
if (upb_fielddef_label(f) == UPB_LABEL_REPEATED) {
|
341
|
+
// Map repeated fields to a new type with ints
|
342
|
+
VALUE arr = rb_ary_new();
|
343
|
+
size_t i, n = upb_array_size(msgval.array_val);
|
344
|
+
for (i = 0; i < n; i++) {
|
345
|
+
upb_msgval elem = upb_array_get(msgval.array_val, i);
|
346
|
+
rb_ary_push(arr, INT2NUM(elem.int32_val));
|
347
|
+
}
|
348
|
+
return arr;
|
349
|
+
} else {
|
350
|
+
return INT2NUM(msgval.int32_val);
|
351
|
+
}
|
352
|
+
}
|
353
|
+
case METHOD_GETTER: {
|
354
|
+
Message* self = ruby_to_Message(_self);
|
355
|
+
// This is a special-case: upb_msg_mutable() for map & array are logically
|
356
|
+
// const (they will not change what is serialized) but physically
|
357
|
+
// non-const, as they do allocate a repeated field or map. The logical
|
358
|
+
// constness means it's ok to do even if the message is frozen.
|
359
|
+
upb_msg *msg = (upb_msg*)self->msg;
|
360
|
+
if (upb_fielddef_ismap(f)) {
|
361
|
+
upb_map *map = upb_msg_mutable(msg, f, arena).map;
|
362
|
+
const upb_fielddef *key_f = map_field_key(f);
|
363
|
+
const upb_fielddef *val_f = map_field_value(f);
|
364
|
+
upb_fieldtype_t key_type = upb_fielddef_type(key_f);
|
365
|
+
TypeInfo value_type_info = TypeInfo_get(val_f);
|
366
|
+
return Map_GetRubyWrapper(map, key_type, value_type_info, self->arena);
|
367
|
+
} else if (upb_fielddef_isseq(f)) {
|
368
|
+
upb_array *arr = upb_msg_mutable(msg, f, arena).array;
|
369
|
+
return RepeatedField_GetRubyWrapper(arr, TypeInfo_get(f), self->arena);
|
370
|
+
} else if (upb_fielddef_issubmsg(f)) {
|
371
|
+
if (!upb_msg_has(self->msg, f)) return Qnil;
|
372
|
+
upb_msg *submsg = upb_msg_mutable(msg, f, arena).msg;
|
373
|
+
const upb_msgdef *m = upb_fielddef_msgsubdef(f);
|
374
|
+
return Message_GetRubyWrapper(submsg, m, self->arena);
|
375
|
+
} else {
|
376
|
+
upb_msgval msgval = upb_msg_get(self->msg, f);
|
377
|
+
return Convert_UpbToRuby(msgval, TypeInfo_get(f), self->arena);
|
378
|
+
}
|
379
|
+
default:
|
380
|
+
rb_raise(rb_eRuntimeError, "Internal error, no such accessor: %d",
|
381
|
+
accessor_type);
|
252
382
|
}
|
253
383
|
}
|
254
|
-
|
255
|
-
*o = test_o;
|
256
|
-
*f = test_f;
|
257
|
-
return accessor_type;
|
258
384
|
}
|
259
385
|
|
260
386
|
/*
|
@@ -284,111 +410,56 @@ static int extract_method_call(VALUE method_name, MessageHeader* self,
|
|
284
410
|
* true if the field 'fieldname' is set in the message object, else false. For
|
285
411
|
* 'proto3' syntax, calling this for a basic type field will result in an error.
|
286
412
|
*/
|
287
|
-
VALUE Message_method_missing(int argc, VALUE* argv, VALUE _self) {
|
288
|
-
|
413
|
+
static VALUE Message_method_missing(int argc, VALUE* argv, VALUE _self) {
|
414
|
+
Message* self = ruby_to_Message(_self);
|
289
415
|
const upb_oneofdef* o;
|
290
416
|
const upb_fielddef* f;
|
291
417
|
int accessor_type;
|
292
418
|
|
293
|
-
TypedData_Get_Struct(_self, MessageHeader, &Message_type, self);
|
294
419
|
if (argc < 1) {
|
295
420
|
rb_raise(rb_eArgError, "Expected method name as first argument.");
|
296
421
|
}
|
297
422
|
|
298
423
|
accessor_type = extract_method_call(argv[0], self, &f, &o);
|
299
|
-
if (accessor_type == METHOD_UNKNOWN || (o == NULL && f == NULL) ) {
|
300
|
-
return rb_call_super(argc, argv);
|
301
|
-
} else if (accessor_type == METHOD_SETTER || accessor_type == METHOD_WRAPPER_SETTER) {
|
302
|
-
if (argc != 2) {
|
303
|
-
rb_raise(rb_eArgError, "Expected 2 arguments, received %d", argc);
|
304
|
-
}
|
305
|
-
rb_check_frozen(_self);
|
306
|
-
} else if (argc != 1) {
|
307
|
-
rb_raise(rb_eArgError, "Expected 1 argument, received %d", argc);
|
308
|
-
}
|
309
424
|
|
310
|
-
|
311
|
-
if (o != NULL) {
|
312
|
-
const upb_fielddef* oneof_field = which_oneof_field(self, o);
|
313
|
-
|
314
|
-
if (accessor_type == METHOD_SETTER) {
|
315
|
-
rb_raise(rb_eRuntimeError, "Oneof accessors are read-only.");
|
316
|
-
}
|
425
|
+
if (accessor_type == METHOD_UNKNOWN) return rb_call_super(argc, argv);
|
317
426
|
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
427
|
+
// Validate argument count.
|
428
|
+
switch (accessor_type) {
|
429
|
+
case METHOD_SETTER:
|
430
|
+
case METHOD_WRAPPER_SETTER:
|
431
|
+
if (argc != 2) {
|
432
|
+
rb_raise(rb_eArgError, "Expected 2 arguments, received %d", argc);
|
323
433
|
}
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
}
|
330
|
-
// Otherwise we're operating on a single proto field
|
331
|
-
} else if (accessor_type == METHOD_SETTER) {
|
332
|
-
layout_set(self->descriptor->layout, Message_data(self), f, argv[1]);
|
333
|
-
return Qnil;
|
334
|
-
} else if (accessor_type == METHOD_CLEAR) {
|
335
|
-
layout_clear(self->descriptor->layout, Message_data(self), f);
|
336
|
-
return Qnil;
|
337
|
-
} else if (accessor_type == METHOD_PRESENCE) {
|
338
|
-
return layout_has(self->descriptor->layout, Message_data(self), f);
|
339
|
-
} else if (accessor_type == METHOD_WRAPPER_GETTER) {
|
340
|
-
VALUE value = layout_get(self->descriptor->layout, Message_data(self), f);
|
341
|
-
switch (TYPE(value)) {
|
342
|
-
case T_DATA:
|
343
|
-
return rb_funcall(value, rb_intern("value"), 0);
|
344
|
-
case T_NIL:
|
345
|
-
return Qnil;
|
346
|
-
default:
|
347
|
-
return value;
|
348
|
-
}
|
349
|
-
} else if (accessor_type == METHOD_WRAPPER_SETTER) {
|
350
|
-
VALUE wrapper = ruby_wrapper_type(
|
351
|
-
field_type_class(self->descriptor->layout, f), argv[1]);
|
352
|
-
layout_set(self->descriptor->layout, Message_data(self), f, wrapper);
|
353
|
-
return Qnil;
|
354
|
-
} else if (accessor_type == METHOD_ENUM_GETTER) {
|
355
|
-
VALUE enum_type = field_type_class(self->descriptor->layout, f);
|
356
|
-
VALUE method = rb_intern("const_get");
|
357
|
-
VALUE raw_value = layout_get(self->descriptor->layout, Message_data(self), f);
|
358
|
-
|
359
|
-
// Map repeated fields to a new type with ints
|
360
|
-
if (upb_fielddef_label(f) == UPB_LABEL_REPEATED) {
|
361
|
-
int array_size = FIX2INT(rb_funcall(raw_value, rb_intern("length"), 0));
|
362
|
-
int i;
|
363
|
-
VALUE array_args[1] = { ID2SYM(rb_intern("int64")) };
|
364
|
-
VALUE array = rb_class_new_instance(1, array_args, CLASS_OF(raw_value));
|
365
|
-
for (i = 0; i < array_size; i++) {
|
366
|
-
VALUE entry = rb_funcall(enum_type, method, 1, rb_funcall(raw_value,
|
367
|
-
rb_intern("at"), 1, INT2NUM(i)));
|
368
|
-
rb_funcall(array, rb_intern("push"), 1, entry);
|
434
|
+
rb_check_frozen(_self);
|
435
|
+
break;
|
436
|
+
default:
|
437
|
+
if (argc != 1) {
|
438
|
+
rb_raise(rb_eArgError, "Expected 1 argument, received %d", argc);
|
369
439
|
}
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
440
|
+
break;
|
441
|
+
}
|
442
|
+
|
443
|
+
// Dispatch accessor.
|
444
|
+
if (o != NULL) {
|
445
|
+
return Message_oneof_accessor(_self, o, accessor_type);
|
374
446
|
} else {
|
375
|
-
return
|
447
|
+
return Message_field_accessor(_self, f, accessor_type, argc, argv);
|
376
448
|
}
|
377
449
|
}
|
378
450
|
|
379
|
-
|
380
|
-
|
381
|
-
MessageHeader* self;
|
451
|
+
static VALUE Message_respond_to_missing(int argc, VALUE* argv, VALUE _self) {
|
452
|
+
Message* self = ruby_to_Message(_self);
|
382
453
|
const upb_oneofdef* o;
|
383
454
|
const upb_fielddef* f;
|
384
455
|
int accessor_type;
|
385
456
|
|
386
|
-
TypedData_Get_Struct(_self, MessageHeader, &Message_type, self);
|
387
457
|
if (argc < 1) {
|
388
458
|
rb_raise(rb_eArgError, "Expected method name as first argument.");
|
389
459
|
}
|
390
460
|
|
391
461
|
accessor_type = extract_method_call(argv[0], self, &f, &o);
|
462
|
+
|
392
463
|
if (accessor_type == METHOD_UNKNOWN) {
|
393
464
|
return rb_call_super(argc, argv);
|
394
465
|
} else if (o != NULL) {
|
@@ -398,17 +469,116 @@ VALUE Message_respond_to_missing(int argc, VALUE* argv, VALUE _self) {
|
|
398
469
|
}
|
399
470
|
}
|
400
471
|
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
472
|
+
void Message_InitFromValue(upb_msg* msg, const upb_msgdef* m, VALUE val,
|
473
|
+
upb_arena* arena);
|
474
|
+
|
475
|
+
typedef struct {
|
476
|
+
upb_map *map;
|
477
|
+
TypeInfo key_type;
|
478
|
+
TypeInfo val_type;
|
479
|
+
upb_arena *arena;
|
480
|
+
} MapInit;
|
481
|
+
|
482
|
+
static int Map_initialize_kwarg(VALUE key, VALUE val, VALUE _self) {
|
483
|
+
MapInit *map_init = (MapInit*)_self;
|
484
|
+
upb_msgval k, v;
|
485
|
+
k = Convert_RubyToUpb(key, "", map_init->key_type, NULL);
|
486
|
+
|
487
|
+
if (map_init->val_type.type == UPB_TYPE_MESSAGE && TYPE(val) == T_HASH) {
|
488
|
+
upb_msg *msg = upb_msg_new(map_init->val_type.def.msgdef, map_init->arena);
|
489
|
+
Message_InitFromValue(msg, map_init->val_type.def.msgdef, val,
|
490
|
+
map_init->arena);
|
491
|
+
v.msg_val = msg;
|
492
|
+
} else {
|
493
|
+
v = Convert_RubyToUpb(val, "", map_init->val_type, map_init->arena);
|
494
|
+
}
|
495
|
+
upb_map_set(map_init->map, k, v, map_init->arena);
|
496
|
+
return ST_CONTINUE;
|
405
497
|
}
|
406
498
|
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
const upb_fielddef*
|
411
|
-
|
499
|
+
static void Map_InitFromValue(upb_map* map, const upb_fielddef* f, VALUE val,
|
500
|
+
upb_arena* arena) {
|
501
|
+
const upb_msgdef* entry_m = upb_fielddef_msgsubdef(f);
|
502
|
+
const upb_fielddef* key_f = upb_msgdef_itof(entry_m, 1);
|
503
|
+
const upb_fielddef* val_f = upb_msgdef_itof(entry_m, 2);
|
504
|
+
if (TYPE(val) != T_HASH) {
|
505
|
+
rb_raise(rb_eArgError,
|
506
|
+
"Expected Hash object as initializer value for map field '%s' "
|
507
|
+
"(given %s).",
|
508
|
+
upb_fielddef_name(f), rb_class2name(CLASS_OF(val)));
|
509
|
+
}
|
510
|
+
MapInit map_init = {map, TypeInfo_get(key_f), TypeInfo_get(val_f), arena};
|
511
|
+
rb_hash_foreach(val, Map_initialize_kwarg, (VALUE)&map_init);
|
512
|
+
}
|
513
|
+
|
514
|
+
static upb_msgval MessageValue_FromValue(VALUE val, TypeInfo info,
|
515
|
+
upb_arena* arena) {
|
516
|
+
if (info.type == UPB_TYPE_MESSAGE) {
|
517
|
+
upb_msgval msgval;
|
518
|
+
upb_msg* msg = upb_msg_new(info.def.msgdef, arena);
|
519
|
+
Message_InitFromValue(msg, info.def.msgdef, val, arena);
|
520
|
+
msgval.msg_val = msg;
|
521
|
+
return msgval;
|
522
|
+
} else {
|
523
|
+
return Convert_RubyToUpb(val, "", info, arena);
|
524
|
+
}
|
525
|
+
}
|
526
|
+
|
527
|
+
static void RepeatedField_InitFromValue(upb_array* arr, const upb_fielddef* f,
|
528
|
+
VALUE val, upb_arena* arena) {
|
529
|
+
TypeInfo type_info = TypeInfo_get(f);
|
530
|
+
|
531
|
+
if (TYPE(val) != T_ARRAY) {
|
532
|
+
rb_raise(rb_eArgError,
|
533
|
+
"Expected array as initializer value for repeated field '%s' (given %s).",
|
534
|
+
upb_fielddef_name(f), rb_class2name(CLASS_OF(val)));
|
535
|
+
}
|
536
|
+
|
537
|
+
for (int i = 0; i < RARRAY_LEN(val); i++) {
|
538
|
+
VALUE entry = rb_ary_entry(val, i);
|
539
|
+
upb_msgval msgval;
|
540
|
+
if (upb_fielddef_issubmsg(f) && TYPE(entry) == T_HASH) {
|
541
|
+
msgval = MessageValue_FromValue(entry, type_info, arena);
|
542
|
+
} else {
|
543
|
+
msgval = Convert_RubyToUpb(entry, upb_fielddef_name(f), type_info, arena);
|
544
|
+
}
|
545
|
+
upb_array_append(arr, msgval, arena);
|
546
|
+
}
|
547
|
+
}
|
548
|
+
|
549
|
+
static void Message_InitFieldFromValue(upb_msg* msg, const upb_fielddef* f,
|
550
|
+
VALUE val, upb_arena* arena) {
|
551
|
+
if (TYPE(val) == T_NIL) return;
|
552
|
+
|
553
|
+
if (upb_fielddef_ismap(f)) {
|
554
|
+
upb_map *map = upb_msg_mutable(msg, f, arena).map;
|
555
|
+
Map_InitFromValue(map, f, val, arena);
|
556
|
+
} else if (upb_fielddef_label(f) == UPB_LABEL_REPEATED) {
|
557
|
+
upb_array *arr = upb_msg_mutable(msg, f, arena).array;
|
558
|
+
RepeatedField_InitFromValue(arr, f, val, arena);
|
559
|
+
} else if (upb_fielddef_issubmsg(f)) {
|
560
|
+
if (TYPE(val) == T_HASH) {
|
561
|
+
upb_msg *submsg = upb_msg_mutable(msg, f, arena).msg;
|
562
|
+
Message_InitFromValue(submsg, upb_fielddef_msgsubdef(f), val, arena);
|
563
|
+
} else {
|
564
|
+
Message_setfield(msg, f, val, arena);
|
565
|
+
}
|
566
|
+
} else {
|
567
|
+
upb_msgval msgval =
|
568
|
+
Convert_RubyToUpb(val, upb_fielddef_name(f), TypeInfo_get(f), arena);
|
569
|
+
upb_msg_set(msg, f, msgval, arena);
|
570
|
+
}
|
571
|
+
}
|
572
|
+
|
573
|
+
typedef struct {
|
574
|
+
upb_msg *msg;
|
575
|
+
const upb_msgdef *msgdef;
|
576
|
+
upb_arena *arena;
|
577
|
+
} MsgInit;
|
578
|
+
|
579
|
+
static int Message_initialize_kwarg(VALUE key, VALUE val, VALUE _self) {
|
580
|
+
MsgInit *msg_init = (MsgInit*)_self;
|
581
|
+
const char *name;
|
412
582
|
|
413
583
|
if (TYPE(key) == T_STRING) {
|
414
584
|
name = RSTRING_PTR(key);
|
@@ -419,52 +589,26 @@ int Message_initialize_kwarg(VALUE key, VALUE val, VALUE _self) {
|
|
419
589
|
"Expected string or symbols as hash keys when initializing proto from hash.");
|
420
590
|
}
|
421
591
|
|
422
|
-
f = upb_msgdef_ntofz(
|
592
|
+
const upb_fielddef* f = upb_msgdef_ntofz(msg_init->msgdef, name);
|
593
|
+
|
423
594
|
if (f == NULL) {
|
424
595
|
rb_raise(rb_eArgError,
|
425
596
|
"Unknown field name '%s' in initialization map entry.", name);
|
426
597
|
}
|
427
598
|
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
if (is_map_field(f)) {
|
433
|
-
VALUE map;
|
434
|
-
|
435
|
-
if (TYPE(val) != T_HASH) {
|
436
|
-
rb_raise(rb_eArgError,
|
437
|
-
"Expected Hash object as initializer value for map field '%s' (given %s).",
|
438
|
-
name, rb_class2name(CLASS_OF(val)));
|
439
|
-
}
|
440
|
-
map = layout_get(self->descriptor->layout, Message_data(self), f);
|
441
|
-
Map_merge_into_self(map, val);
|
442
|
-
} else if (upb_fielddef_label(f) == UPB_LABEL_REPEATED) {
|
443
|
-
VALUE ary;
|
444
|
-
int i;
|
445
|
-
|
446
|
-
if (TYPE(val) != T_ARRAY) {
|
447
|
-
rb_raise(rb_eArgError,
|
448
|
-
"Expected array as initializer value for repeated field '%s' (given %s).",
|
449
|
-
name, rb_class2name(CLASS_OF(val)));
|
450
|
-
}
|
451
|
-
ary = layout_get(self->descriptor->layout, Message_data(self), f);
|
452
|
-
for (i = 0; i < RARRAY_LEN(val); i++) {
|
453
|
-
VALUE entry = rb_ary_entry(val, i);
|
454
|
-
if (TYPE(entry) == T_HASH && upb_fielddef_issubmsg(f)) {
|
455
|
-
entry = create_submsg_from_hash(self->descriptor->layout, f, entry);
|
456
|
-
}
|
599
|
+
Message_InitFieldFromValue(msg_init->msg, f, val, msg_init->arena);
|
600
|
+
return ST_CONTINUE;
|
601
|
+
}
|
457
602
|
|
458
|
-
|
459
|
-
|
603
|
+
void Message_InitFromValue(upb_msg* msg, const upb_msgdef* m, VALUE val,
|
604
|
+
upb_arena* arena) {
|
605
|
+
MsgInit msg_init = {msg, m, arena};
|
606
|
+
if (TYPE(val) == T_HASH) {
|
607
|
+
rb_hash_foreach(val, Message_initialize_kwarg, (VALUE)&msg_init);
|
460
608
|
} else {
|
461
|
-
|
462
|
-
|
463
|
-
}
|
464
|
-
|
465
|
-
layout_set(self->descriptor->layout, Message_data(self), f, val);
|
609
|
+
rb_raise(rb_eArgError, "Expected hash arguments or message, not %s",
|
610
|
+
rb_class2name(CLASS_OF(val)));
|
466
611
|
}
|
467
|
-
return 0;
|
468
612
|
}
|
469
613
|
|
470
614
|
/*
|
@@ -479,12 +623,13 @@ int Message_initialize_kwarg(VALUE key, VALUE val, VALUE _self) {
|
|
479
623
|
* have been added to a pool. The method definitions described here on the
|
480
624
|
* Message class are provided on each concrete message class.
|
481
625
|
*/
|
482
|
-
VALUE Message_initialize(int argc, VALUE* argv, VALUE _self) {
|
483
|
-
|
484
|
-
VALUE
|
485
|
-
|
626
|
+
static VALUE Message_initialize(int argc, VALUE* argv, VALUE _self) {
|
627
|
+
Message* self = ruby_to_Message(_self);
|
628
|
+
VALUE arena_rb = Arena_new();
|
629
|
+
upb_arena *arena = Arena_get(arena_rb);
|
630
|
+
upb_msg *msg = upb_msg_new(self->msgdef, arena);
|
486
631
|
|
487
|
-
|
632
|
+
Message_InitPtr(_self, msg, arena_rb);
|
488
633
|
|
489
634
|
if (argc == 0) {
|
490
635
|
return Qnil;
|
@@ -492,12 +637,7 @@ VALUE Message_initialize(int argc, VALUE* argv, VALUE _self) {
|
|
492
637
|
if (argc != 1) {
|
493
638
|
rb_raise(rb_eArgError, "Expected 0 or 1 arguments.");
|
494
639
|
}
|
495
|
-
|
496
|
-
if (TYPE(hash_args) != T_HASH) {
|
497
|
-
rb_raise(rb_eArgError, "Expected hash arguments.");
|
498
|
-
}
|
499
|
-
|
500
|
-
rb_hash_foreach(hash_args, Message_initialize_kwarg, _self);
|
640
|
+
Message_InitFromValue((upb_msg*)self->msg, self->msgdef, argv[0], arena);
|
501
641
|
return Qnil;
|
502
642
|
}
|
503
643
|
|
@@ -507,37 +647,40 @@ VALUE Message_initialize(int argc, VALUE* argv, VALUE _self) {
|
|
507
647
|
*
|
508
648
|
* Performs a shallow copy of this message and returns the new copy.
|
509
649
|
*/
|
510
|
-
VALUE Message_dup(VALUE _self) {
|
511
|
-
|
512
|
-
VALUE new_msg;
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
Message_data(new_msg_self),
|
521
|
-
Message_data(self));
|
522
|
-
|
650
|
+
static VALUE Message_dup(VALUE _self) {
|
651
|
+
Message* self = ruby_to_Message(_self);
|
652
|
+
VALUE new_msg = rb_class_new_instance(0, NULL, CLASS_OF(_self));
|
653
|
+
Message* new_msg_self = ruby_to_Message(new_msg);
|
654
|
+
size_t size = upb_msgdef_layout(self->msgdef)->size;
|
655
|
+
|
656
|
+
// TODO(copy unknown fields?)
|
657
|
+
// TODO(use official upb msg copy function)
|
658
|
+
memcpy((upb_msg*)new_msg_self->msg, self->msg, size);
|
659
|
+
upb_arena_fuse(Arena_get(new_msg_self->arena), Arena_get(self->arena));
|
523
660
|
return new_msg;
|
524
661
|
}
|
525
662
|
|
526
|
-
//
|
527
|
-
|
528
|
-
|
529
|
-
MessageHeader* new_msg_self;
|
530
|
-
VALUE new_msg;
|
531
|
-
TypedData_Get_Struct(_self, MessageHeader, &Message_type, self);
|
663
|
+
// Support function for Message_eq, and also used by other #eq functions.
|
664
|
+
bool Message_Equal(const upb_msg *m1, const upb_msg *m2, const upb_msgdef *m) {
|
665
|
+
if (m1 == m2) return true;
|
532
666
|
|
533
|
-
|
534
|
-
|
667
|
+
size_t size1, size2;
|
668
|
+
int encode_opts = UPB_ENCODE_SKIPUNKNOWN | UPB_ENCODE_DETERMINISTIC;
|
669
|
+
upb_arena *arena_tmp = upb_arena_new();
|
670
|
+
const upb_msglayout *layout = upb_msgdef_layout(m);
|
535
671
|
|
536
|
-
|
537
|
-
|
538
|
-
|
672
|
+
// Compare deterministically serialized payloads with no unknown fields.
|
673
|
+
char *data1 = upb_encode_ex(m1, layout, encode_opts, arena_tmp, &size1);
|
674
|
+
char *data2 = upb_encode_ex(m2, layout, encode_opts, arena_tmp, &size2);
|
539
675
|
|
540
|
-
|
676
|
+
if (data1 && data2) {
|
677
|
+
bool ret = (size1 == size2) && (memcmp(data1, data2, size1) == 0);
|
678
|
+
upb_arena_free(arena_tmp);
|
679
|
+
return ret;
|
680
|
+
} else {
|
681
|
+
upb_arena_free(arena_tmp);
|
682
|
+
rb_raise(cParseError, "Error comparing messages");
|
683
|
+
}
|
541
684
|
}
|
542
685
|
|
543
686
|
/*
|
@@ -549,22 +692,37 @@ VALUE Message_deep_copy(VALUE _self) {
|
|
549
692
|
* method's semantics (a more efficient comparison may actually be done if the
|
550
693
|
* field is of a primitive type).
|
551
694
|
*/
|
552
|
-
VALUE Message_eq(VALUE _self, VALUE _other) {
|
553
|
-
MessageHeader* self;
|
554
|
-
MessageHeader* other;
|
695
|
+
static VALUE Message_eq(VALUE _self, VALUE _other) {
|
555
696
|
if (TYPE(_self) != TYPE(_other)) {
|
556
697
|
return Qfalse;
|
557
698
|
}
|
558
|
-
TypedData_Get_Struct(_self, MessageHeader, &Message_type, self);
|
559
|
-
TypedData_Get_Struct(_other, MessageHeader, &Message_type, other);
|
560
699
|
|
561
|
-
|
562
|
-
|
563
|
-
|
700
|
+
Message* self = ruby_to_Message(_self);
|
701
|
+
Message* other = ruby_to_Message(_other);
|
702
|
+
|
703
|
+
return Message_Equal(self->msg, other->msg, self->msgdef)
|
704
|
+
? Qtrue
|
705
|
+
: Qfalse;
|
706
|
+
}
|
707
|
+
|
708
|
+
uint64_t Message_Hash(const upb_msg* msg, const upb_msgdef* m, uint64_t seed) {
|
709
|
+
upb_arena *arena = upb_arena_new();
|
710
|
+
const char *data;
|
711
|
+
size_t size;
|
712
|
+
|
713
|
+
// Hash a deterministically serialized payloads with no unknown fields.
|
714
|
+
data = upb_encode_ex(msg, upb_msgdef_layout(m),
|
715
|
+
UPB_ENCODE_SKIPUNKNOWN | UPB_ENCODE_DETERMINISTIC, arena,
|
716
|
+
&size);
|
564
717
|
|
565
|
-
|
566
|
-
|
567
|
-
|
718
|
+
if (data) {
|
719
|
+
uint64_t ret = wyhash(data, size, seed, _wyp);
|
720
|
+
upb_arena_free(arena);
|
721
|
+
return ret;
|
722
|
+
} else {
|
723
|
+
upb_arena_free(arena);
|
724
|
+
rb_raise(cParseError, "Error calculating hash");
|
725
|
+
}
|
568
726
|
}
|
569
727
|
|
570
728
|
/*
|
@@ -573,11 +731,9 @@ VALUE Message_eq(VALUE _self, VALUE _other) {
|
|
573
731
|
*
|
574
732
|
* Returns a hash value that represents this message's field values.
|
575
733
|
*/
|
576
|
-
VALUE Message_hash(VALUE _self) {
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
return layout_hash(self->descriptor->layout, Message_data(self));
|
734
|
+
static VALUE Message_hash(VALUE _self) {
|
735
|
+
Message* self = ruby_to_Message(_self);
|
736
|
+
return INT2FIX(Message_Hash(self->msg, self->msgdef, 0));
|
581
737
|
}
|
582
738
|
|
583
739
|
/*
|
@@ -588,81 +744,117 @@ VALUE Message_hash(VALUE _self) {
|
|
588
744
|
* formatted as "<MessageType: field1: value1, field2: value2, ...>". Each
|
589
745
|
* field's value is represented according to its own #inspect method.
|
590
746
|
*/
|
591
|
-
VALUE Message_inspect(VALUE _self) {
|
592
|
-
|
593
|
-
VALUE str;
|
594
|
-
TypedData_Get_Struct(_self, MessageHeader, &Message_type, self);
|
747
|
+
static VALUE Message_inspect(VALUE _self) {
|
748
|
+
Message* self = ruby_to_Message(_self);
|
595
749
|
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
str = rb_str_cat2(str, ">");
|
602
|
-
return str;
|
750
|
+
StringBuilder* builder = StringBuilder_New();
|
751
|
+
Message_PrintMessage(builder, self->msg, self->msgdef);
|
752
|
+
VALUE ret = StringBuilder_ToRubyString(builder);
|
753
|
+
StringBuilder_Free(builder);
|
754
|
+
return ret;
|
603
755
|
}
|
604
756
|
|
605
|
-
|
606
|
-
|
607
|
-
*
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
757
|
+
// Support functions for Message_to_h //////////////////////////////////////////
|
758
|
+
|
759
|
+
static VALUE RepeatedField_CreateArray(const upb_array* arr,
|
760
|
+
TypeInfo type_info) {
|
761
|
+
int size = arr ? upb_array_size(arr) : 0;
|
762
|
+
VALUE ary = rb_ary_new2(size);
|
763
|
+
|
764
|
+
for (int i = 0; i < size; i++) {
|
765
|
+
upb_msgval msgval = upb_array_get(arr, i);
|
766
|
+
VALUE val = Scalar_CreateHash(msgval, type_info);
|
767
|
+
rb_ary_push(ary, val);
|
768
|
+
}
|
769
|
+
|
770
|
+
return ary;
|
771
|
+
}
|
772
|
+
|
773
|
+
static VALUE Message_CreateHash(const upb_msg *msg, const upb_msgdef *m) {
|
774
|
+
if (!msg) return Qnil;
|
775
|
+
|
613
776
|
VALUE hash = rb_hash_new();
|
614
|
-
|
777
|
+
int n = upb_msgdef_fieldcount(m);
|
615
778
|
bool is_proto2;
|
616
|
-
TypedData_Get_Struct(_self, MessageHeader, &Message_type, self);
|
617
779
|
|
618
780
|
// We currently have a few behaviors that are specific to proto2.
|
619
781
|
// This is unfortunate, we should key behaviors off field attributes (like
|
620
782
|
// whether a field has presence), not proto2 vs. proto3. We should see if we
|
621
783
|
// can change this without breaking users.
|
622
|
-
is_proto2 =
|
623
|
-
upb_msgdef_syntax(self->descriptor->msgdef) == UPB_SYNTAX_PROTO2;
|
784
|
+
is_proto2 = upb_msgdef_syntax(m) == UPB_SYNTAX_PROTO2;
|
624
785
|
|
625
|
-
for (
|
626
|
-
|
627
|
-
|
628
|
-
|
786
|
+
for (int i = 0; i < n; i++) {
|
787
|
+
const upb_fielddef* field = upb_msgdef_field(m, i);
|
788
|
+
TypeInfo type_info = TypeInfo_get(field);
|
789
|
+
upb_msgval msgval;
|
629
790
|
VALUE msg_value;
|
630
791
|
VALUE msg_key;
|
631
792
|
|
632
793
|
// Do not include fields that are not present (oneof or optional fields).
|
633
794
|
if (is_proto2 && upb_fielddef_haspresence(field) &&
|
634
|
-
!
|
795
|
+
!upb_msg_has(msg, field)) {
|
635
796
|
continue;
|
636
797
|
}
|
637
798
|
|
638
|
-
msg_value = layout_get(self->descriptor->layout, Message_data(self), field);
|
639
799
|
msg_key = ID2SYM(rb_intern(upb_fielddef_name(field)));
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
800
|
+
msgval = upb_msg_get(msg, field);
|
801
|
+
|
802
|
+
// Proto2 omits empty map/repeated filds also.
|
803
|
+
|
804
|
+
if (upb_fielddef_ismap(field)) {
|
805
|
+
const upb_msgdef *entry_m = upb_fielddef_msgsubdef(field);
|
806
|
+
const upb_fielddef *key_f = upb_msgdef_itof(entry_m, 1);
|
807
|
+
const upb_fielddef *val_f = upb_msgdef_itof(entry_m, 2);
|
808
|
+
upb_fieldtype_t key_type = upb_fielddef_type(key_f);
|
809
|
+
msg_value = Map_CreateHash(msgval.map_val, key_type, TypeInfo_get(val_f));
|
810
|
+
} else if (upb_fielddef_isseq(field)) {
|
811
|
+
if (is_proto2 &&
|
812
|
+
(!msgval.array_val || upb_array_size(msgval.array_val) == 0)) {
|
645
813
|
continue;
|
646
814
|
}
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
for (i = 0; i < RARRAY_LEN(msg_value); i++) {
|
651
|
-
VALUE elem = rb_ary_entry(msg_value, i);
|
652
|
-
rb_ary_store(msg_value, i, Message_to_h(elem));
|
653
|
-
}
|
654
|
-
}
|
655
|
-
|
656
|
-
} else if (msg_value != Qnil &&
|
657
|
-
upb_fielddef_type(field) == UPB_TYPE_MESSAGE) {
|
658
|
-
msg_value = Message_to_h(msg_value);
|
815
|
+
msg_value = RepeatedField_CreateArray(msgval.array_val, type_info);
|
816
|
+
} else {
|
817
|
+
msg_value = Scalar_CreateHash(msgval, type_info);
|
659
818
|
}
|
819
|
+
|
660
820
|
rb_hash_aset(hash, msg_key, msg_value);
|
661
821
|
}
|
822
|
+
|
662
823
|
return hash;
|
663
824
|
}
|
664
825
|
|
826
|
+
VALUE Scalar_CreateHash(upb_msgval msgval, TypeInfo type_info) {
|
827
|
+
if (type_info.type == UPB_TYPE_MESSAGE) {
|
828
|
+
return Message_CreateHash(msgval.msg_val, type_info.def.msgdef);
|
829
|
+
} else {
|
830
|
+
return Convert_UpbToRuby(msgval, type_info, Qnil);
|
831
|
+
}
|
832
|
+
}
|
833
|
+
|
834
|
+
/*
|
835
|
+
* call-seq:
|
836
|
+
* Message.to_h => {}
|
837
|
+
*
|
838
|
+
* Returns the message as a Ruby Hash object, with keys as symbols.
|
839
|
+
*/
|
840
|
+
static VALUE Message_to_h(VALUE _self) {
|
841
|
+
Message* self = ruby_to_Message(_self);
|
842
|
+
return Message_CreateHash(self->msg, self->msgdef);
|
843
|
+
}
|
665
844
|
|
845
|
+
/*
|
846
|
+
* call-seq:
|
847
|
+
* Message.freeze => self
|
848
|
+
*
|
849
|
+
* Freezes the message object. We have to intercept this so we can pin the
|
850
|
+
* Ruby object into memory so we don't forget it's frozen.
|
851
|
+
*/
|
852
|
+
static VALUE Message_freeze(VALUE _self) {
|
853
|
+
Message* self = ruby_to_Message(_self);
|
854
|
+
ObjectCache_Pin(self->msg, _self, Arena_get(self->arena));
|
855
|
+
RB_OBJ_FREEZE(_self);
|
856
|
+
return _self;
|
857
|
+
}
|
666
858
|
|
667
859
|
/*
|
668
860
|
* call-seq:
|
@@ -671,16 +863,20 @@ VALUE Message_to_h(VALUE _self) {
|
|
671
863
|
* Accesses a field's value by field name. The provided field name should be a
|
672
864
|
* string.
|
673
865
|
*/
|
674
|
-
VALUE Message_index(VALUE _self, VALUE field_name) {
|
675
|
-
|
866
|
+
static VALUE Message_index(VALUE _self, VALUE field_name) {
|
867
|
+
Message* self = ruby_to_Message(_self);
|
676
868
|
const upb_fielddef* field;
|
677
|
-
|
869
|
+
upb_msgval val;
|
870
|
+
|
678
871
|
Check_Type(field_name, T_STRING);
|
679
|
-
field = upb_msgdef_ntofz(self->
|
872
|
+
field = upb_msgdef_ntofz(self->msgdef, RSTRING_PTR(field_name));
|
873
|
+
|
680
874
|
if (field == NULL) {
|
681
875
|
return Qnil;
|
682
876
|
}
|
683
|
-
|
877
|
+
|
878
|
+
val = upb_msg_get(self->msg, field);
|
879
|
+
return Convert_UpbToRuby(val, TypeInfo_get(field), self->arena);
|
684
880
|
}
|
685
881
|
|
686
882
|
/*
|
@@ -690,19 +886,208 @@ VALUE Message_index(VALUE _self, VALUE field_name) {
|
|
690
886
|
* Sets a field's value by field name. The provided field name should be a
|
691
887
|
* string.
|
692
888
|
*/
|
693
|
-
VALUE Message_index_set(VALUE _self, VALUE field_name, VALUE value) {
|
694
|
-
|
695
|
-
const upb_fielddef*
|
696
|
-
|
889
|
+
static VALUE Message_index_set(VALUE _self, VALUE field_name, VALUE value) {
|
890
|
+
Message* self = ruby_to_Message(_self);
|
891
|
+
const upb_fielddef* f;
|
892
|
+
upb_msgval val;
|
893
|
+
upb_arena *arena = Arena_get(self->arena);
|
894
|
+
|
697
895
|
Check_Type(field_name, T_STRING);
|
698
|
-
|
699
|
-
|
896
|
+
f = upb_msgdef_ntofz(self->msgdef, RSTRING_PTR(field_name));
|
897
|
+
|
898
|
+
if (f == NULL) {
|
700
899
|
rb_raise(rb_eArgError, "Unknown field: %s", RSTRING_PTR(field_name));
|
701
900
|
}
|
702
|
-
|
901
|
+
|
902
|
+
val = Convert_RubyToUpb(value, upb_fielddef_name(f), TypeInfo_get(f), arena);
|
903
|
+
upb_msg_set(Message_GetMutable(_self, NULL), f, val, arena);
|
904
|
+
|
703
905
|
return Qnil;
|
704
906
|
}
|
705
907
|
|
908
|
+
/*
|
909
|
+
* call-seq:
|
910
|
+
* MessageClass.decode(data) => message
|
911
|
+
*
|
912
|
+
* Decodes the given data (as a string containing bytes in protocol buffers wire
|
913
|
+
* format) under the interpretration given by this message class's definition
|
914
|
+
* and returns a message object with the corresponding field values.
|
915
|
+
*/
|
916
|
+
static VALUE Message_decode(VALUE klass, VALUE data) {
|
917
|
+
if (TYPE(data) != T_STRING) {
|
918
|
+
rb_raise(rb_eArgError, "Expected string for binary protobuf data.");
|
919
|
+
}
|
920
|
+
|
921
|
+
VALUE msg_rb = initialize_rb_class_with_no_args(klass);
|
922
|
+
Message* msg = ruby_to_Message(msg_rb);
|
923
|
+
|
924
|
+
if (!upb_decode(RSTRING_PTR(data), RSTRING_LEN(data), (upb_msg*)msg->msg,
|
925
|
+
upb_msgdef_layout(msg->msgdef),
|
926
|
+
Arena_get(msg->arena))) {
|
927
|
+
rb_raise(cParseError, "Error occurred during parsing");
|
928
|
+
}
|
929
|
+
|
930
|
+
return msg_rb;
|
931
|
+
}
|
932
|
+
|
933
|
+
/*
|
934
|
+
* call-seq:
|
935
|
+
* MessageClass.decode_json(data, options = {}) => message
|
936
|
+
*
|
937
|
+
* Decodes the given data (as a string containing bytes in protocol buffers wire
|
938
|
+
* format) under the interpretration given by this message class's definition
|
939
|
+
* and returns a message object with the corresponding field values.
|
940
|
+
*
|
941
|
+
* @param options [Hash] options for the decoder
|
942
|
+
* ignore_unknown_fields: set true to ignore unknown fields (default is to
|
943
|
+
* raise an error)
|
944
|
+
*/
|
945
|
+
static VALUE Message_decode_json(int argc, VALUE* argv, VALUE klass) {
|
946
|
+
VALUE data = argv[0];
|
947
|
+
int options = 0;
|
948
|
+
upb_status status;
|
949
|
+
|
950
|
+
// TODO(haberman): use this message's pool instead.
|
951
|
+
const upb_symtab *symtab = DescriptorPool_GetSymtab(generated_pool);
|
952
|
+
|
953
|
+
if (argc < 1 || argc > 2) {
|
954
|
+
rb_raise(rb_eArgError, "Expected 1 or 2 arguments.");
|
955
|
+
}
|
956
|
+
|
957
|
+
if (argc == 2) {
|
958
|
+
VALUE hash_args = argv[1];
|
959
|
+
if (TYPE(hash_args) != T_HASH) {
|
960
|
+
rb_raise(rb_eArgError, "Expected hash arguments.");
|
961
|
+
}
|
962
|
+
|
963
|
+
if (RTEST(rb_hash_lookup2( hash_args, ID2SYM(rb_intern("ignore_unknown_fields")), Qfalse))) {
|
964
|
+
options |= UPB_JSONDEC_IGNOREUNKNOWN;
|
965
|
+
}
|
966
|
+
}
|
967
|
+
|
968
|
+
if (TYPE(data) != T_STRING) {
|
969
|
+
rb_raise(rb_eArgError, "Expected string for JSON data.");
|
970
|
+
}
|
971
|
+
|
972
|
+
// TODO(cfallin): Check and respect string encoding. If not UTF-8, we need to
|
973
|
+
// convert, because string handlers pass data directly to message string
|
974
|
+
// fields.
|
975
|
+
|
976
|
+
VALUE msg_rb = initialize_rb_class_with_no_args(klass);
|
977
|
+
Message* msg = ruby_to_Message(msg_rb);
|
978
|
+
|
979
|
+
// We don't allow users to decode a wrapper type directly.
|
980
|
+
if (upb_msgdef_iswrapper(msg->msgdef)) {
|
981
|
+
rb_raise(rb_eRuntimeError, "Cannot parse a wrapper directly.");
|
982
|
+
}
|
983
|
+
|
984
|
+
upb_status_clear(&status);
|
985
|
+
if (!upb_json_decode(RSTRING_PTR(data), RSTRING_LEN(data), (upb_msg*)msg->msg,
|
986
|
+
msg->msgdef, symtab, options,
|
987
|
+
Arena_get(msg->arena), &status)) {
|
988
|
+
rb_raise(cParseError, "Error occurred during parsing: %s",
|
989
|
+
upb_status_errmsg(&status));
|
990
|
+
}
|
991
|
+
|
992
|
+
return msg_rb;
|
993
|
+
}
|
994
|
+
|
995
|
+
/*
|
996
|
+
* call-seq:
|
997
|
+
* MessageClass.encode(msg) => bytes
|
998
|
+
*
|
999
|
+
* Encodes the given message object to its serialized form in protocol buffers
|
1000
|
+
* wire format.
|
1001
|
+
*/
|
1002
|
+
static VALUE Message_encode(VALUE klass, VALUE msg_rb) {
|
1003
|
+
Message* msg = ruby_to_Message(msg_rb);
|
1004
|
+
upb_arena *arena = upb_arena_new();
|
1005
|
+
const char *data;
|
1006
|
+
size_t size;
|
1007
|
+
|
1008
|
+
if (CLASS_OF(msg_rb) != klass) {
|
1009
|
+
rb_raise(rb_eArgError, "Message of wrong type.");
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
data = upb_encode(msg->msg, upb_msgdef_layout(msg->msgdef), arena,
|
1013
|
+
&size);
|
1014
|
+
|
1015
|
+
if (data) {
|
1016
|
+
VALUE ret = rb_str_new(data, size);
|
1017
|
+
rb_enc_associate(ret, rb_ascii8bit_encoding());
|
1018
|
+
upb_arena_free(arena);
|
1019
|
+
return ret;
|
1020
|
+
} else {
|
1021
|
+
upb_arena_free(arena);
|
1022
|
+
rb_raise(rb_eRuntimeError, "Exceeded maximum depth (possibly cycle)");
|
1023
|
+
}
|
1024
|
+
}
|
1025
|
+
|
1026
|
+
/*
|
1027
|
+
* call-seq:
|
1028
|
+
* MessageClass.encode_json(msg, options = {}) => json_string
|
1029
|
+
*
|
1030
|
+
* Encodes the given message object into its serialized JSON representation.
|
1031
|
+
* @param options [Hash] options for the decoder
|
1032
|
+
* preserve_proto_fieldnames: set true to use original fieldnames (default is to camelCase)
|
1033
|
+
* emit_defaults: set true to emit 0/false values (default is to omit them)
|
1034
|
+
*/
|
1035
|
+
static VALUE Message_encode_json(int argc, VALUE* argv, VALUE klass) {
|
1036
|
+
Message* msg = ruby_to_Message(argv[0]);
|
1037
|
+
int options = 0;
|
1038
|
+
char buf[1024];
|
1039
|
+
size_t size;
|
1040
|
+
upb_status status;
|
1041
|
+
|
1042
|
+
// TODO(haberman): use this message's pool instead.
|
1043
|
+
const upb_symtab *symtab = DescriptorPool_GetSymtab(generated_pool);
|
1044
|
+
|
1045
|
+
if (argc < 1 || argc > 2) {
|
1046
|
+
rb_raise(rb_eArgError, "Expected 1 or 2 arguments.");
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
if (argc == 2) {
|
1050
|
+
VALUE hash_args = argv[1];
|
1051
|
+
if (TYPE(hash_args) != T_HASH) {
|
1052
|
+
rb_raise(rb_eArgError, "Expected hash arguments.");
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
if (RTEST(rb_hash_lookup2(hash_args,
|
1056
|
+
ID2SYM(rb_intern("preserve_proto_fieldnames")),
|
1057
|
+
Qfalse))) {
|
1058
|
+
options |= UPB_JSONENC_PROTONAMES;
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
if (RTEST(rb_hash_lookup2(hash_args, ID2SYM(rb_intern("emit_defaults")),
|
1062
|
+
Qfalse))) {
|
1063
|
+
options |= UPB_JSONENC_EMITDEFAULTS;
|
1064
|
+
}
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
upb_status_clear(&status);
|
1068
|
+
size = upb_json_encode(msg->msg, msg->msgdef, symtab, options, buf,
|
1069
|
+
sizeof(buf), &status);
|
1070
|
+
|
1071
|
+
if (!upb_ok(&status)) {
|
1072
|
+
rb_raise(cParseError, "Error occurred during encoding: %s",
|
1073
|
+
upb_status_errmsg(&status));
|
1074
|
+
}
|
1075
|
+
|
1076
|
+
VALUE ret;
|
1077
|
+
if (size >= sizeof(buf)) {
|
1078
|
+
char* buf2 = malloc(size + 1);
|
1079
|
+
upb_json_encode(msg->msg, msg->msgdef, symtab, options, buf2, size + 1,
|
1080
|
+
&status);
|
1081
|
+
ret = rb_str_new(buf2, size);
|
1082
|
+
free(buf2);
|
1083
|
+
} else {
|
1084
|
+
ret = rb_str_new(buf, size);
|
1085
|
+
}
|
1086
|
+
|
1087
|
+
rb_enc_associate(ret, rb_utf8_encoding());
|
1088
|
+
return ret;
|
1089
|
+
}
|
1090
|
+
|
706
1091
|
/*
|
707
1092
|
* call-seq:
|
708
1093
|
* Message.descriptor => descriptor
|
@@ -710,16 +1095,15 @@ VALUE Message_index_set(VALUE _self, VALUE field_name, VALUE value) {
|
|
710
1095
|
* Class method that returns the Descriptor instance corresponding to this
|
711
1096
|
* message class's type.
|
712
1097
|
*/
|
713
|
-
VALUE Message_descriptor(VALUE klass) {
|
1098
|
+
static VALUE Message_descriptor(VALUE klass) {
|
714
1099
|
return rb_ivar_get(klass, descriptor_instancevar_interned);
|
715
1100
|
}
|
716
1101
|
|
717
1102
|
VALUE build_class_from_descriptor(VALUE descriptor) {
|
718
|
-
Descriptor* desc = ruby_to_Descriptor(descriptor);
|
719
1103
|
const char *name;
|
720
1104
|
VALUE klass;
|
721
1105
|
|
722
|
-
name = upb_msgdef_fullname(
|
1106
|
+
name = upb_msgdef_fullname(Descriptor_GetMsgDef(descriptor));
|
723
1107
|
if (name == NULL) {
|
724
1108
|
rb_raise(rb_eRuntimeError, "Descriptor does not have assigned name.");
|
725
1109
|
}
|
@@ -746,6 +1130,7 @@ VALUE build_class_from_descriptor(VALUE descriptor) {
|
|
746
1130
|
rb_define_method(klass, "clone", Message_dup, 0);
|
747
1131
|
rb_define_method(klass, "==", Message_eq, 1);
|
748
1132
|
rb_define_method(klass, "eql?", Message_eq, 1);
|
1133
|
+
rb_define_method(klass, "freeze", Message_freeze, 0);
|
749
1134
|
rb_define_method(klass, "hash", Message_hash, 0);
|
750
1135
|
rb_define_method(klass, "to_h", Message_to_h, 0);
|
751
1136
|
rb_define_method(klass, "inspect", Message_inspect, 0);
|
@@ -768,12 +1153,12 @@ VALUE build_class_from_descriptor(VALUE descriptor) {
|
|
768
1153
|
* This module method, provided on each generated enum module, looks up an enum
|
769
1154
|
* value by number and returns its name as a Ruby symbol, or nil if not found.
|
770
1155
|
*/
|
771
|
-
VALUE enum_lookup(VALUE self, VALUE number) {
|
1156
|
+
static VALUE enum_lookup(VALUE self, VALUE number) {
|
772
1157
|
int32_t num = NUM2INT(number);
|
773
1158
|
VALUE desc = rb_ivar_get(self, descriptor_instancevar_interned);
|
774
|
-
|
1159
|
+
const upb_enumdef *e = EnumDescriptor_GetEnumDef(desc);
|
775
1160
|
|
776
|
-
const char* name = upb_enumdef_iton(
|
1161
|
+
const char* name = upb_enumdef_iton(e, num);
|
777
1162
|
if (name == NULL) {
|
778
1163
|
return Qnil;
|
779
1164
|
} else {
|
@@ -788,13 +1173,13 @@ VALUE enum_lookup(VALUE self, VALUE number) {
|
|
788
1173
|
* This module method, provided on each generated enum module, looks up an enum
|
789
1174
|
* value by name (as a Ruby symbol) and returns its name, or nil if not found.
|
790
1175
|
*/
|
791
|
-
VALUE enum_resolve(VALUE self, VALUE sym) {
|
1176
|
+
static VALUE enum_resolve(VALUE self, VALUE sym) {
|
792
1177
|
const char* name = rb_id2name(SYM2ID(sym));
|
793
1178
|
VALUE desc = rb_ivar_get(self, descriptor_instancevar_interned);
|
794
|
-
|
1179
|
+
const upb_enumdef *e = EnumDescriptor_GetEnumDef(desc);
|
795
1180
|
|
796
1181
|
int32_t num = 0;
|
797
|
-
bool found = upb_enumdef_ntoiz(
|
1182
|
+
bool found = upb_enumdef_ntoiz(e, name, &num);
|
798
1183
|
if (!found) {
|
799
1184
|
return Qnil;
|
800
1185
|
} else {
|
@@ -809,17 +1194,16 @@ VALUE enum_resolve(VALUE self, VALUE sym) {
|
|
809
1194
|
* This module method, provided on each generated enum module, returns the
|
810
1195
|
* EnumDescriptor corresponding to this enum type.
|
811
1196
|
*/
|
812
|
-
VALUE enum_descriptor(VALUE self) {
|
1197
|
+
static VALUE enum_descriptor(VALUE self) {
|
813
1198
|
return rb_ivar_get(self, descriptor_instancevar_interned);
|
814
1199
|
}
|
815
1200
|
|
816
1201
|
VALUE build_module_from_enumdesc(VALUE _enumdesc) {
|
817
|
-
|
818
|
-
VALUE mod = rb_define_module_id(
|
819
|
-
rb_intern(upb_enumdef_fullname(enumdesc->enumdef)));
|
1202
|
+
const upb_enumdef *e = EnumDescriptor_GetEnumDef(_enumdesc);
|
1203
|
+
VALUE mod = rb_define_module_id(rb_intern(upb_enumdef_fullname(e)));
|
820
1204
|
|
821
1205
|
upb_enum_iter it;
|
822
|
-
for (upb_enum_begin(&it,
|
1206
|
+
for (upb_enum_begin(&it, e);
|
823
1207
|
!upb_enum_done(&it);
|
824
1208
|
upb_enum_next(&it)) {
|
825
1209
|
const char* name = upb_enum_iter_name(&it);
|
@@ -840,20 +1224,92 @@ VALUE build_module_from_enumdesc(VALUE _enumdesc) {
|
|
840
1224
|
return mod;
|
841
1225
|
}
|
842
1226
|
|
843
|
-
|
844
|
-
*
|
845
|
-
*
|
846
|
-
|
847
|
-
*
|
848
|
-
*
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
return Message_deep_copy(obj);
|
1227
|
+
// Internal only; used by Google::Protobuf.deep_copy.
|
1228
|
+
upb_msg* Message_deep_copy(const upb_msg* msg, const upb_msgdef* m,
|
1229
|
+
upb_arena *arena) {
|
1230
|
+
// Serialize and parse.
|
1231
|
+
upb_arena *tmp_arena = upb_arena_new();
|
1232
|
+
const upb_msglayout *layout = upb_msgdef_layout(m);
|
1233
|
+
size_t size;
|
1234
|
+
|
1235
|
+
char* data = upb_encode_ex(msg, layout, 0, tmp_arena, &size);
|
1236
|
+
upb_msg* new_msg = upb_msg_new(m, arena);
|
1237
|
+
|
1238
|
+
if (!data || !upb_decode(data, size, new_msg, layout, arena)) {
|
1239
|
+
upb_arena_free(tmp_arena);
|
1240
|
+
rb_raise(cParseError, "Error occurred copying proto");
|
858
1241
|
}
|
1242
|
+
|
1243
|
+
upb_arena_free(tmp_arena);
|
1244
|
+
return new_msg;
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
const upb_msg* Message_GetUpbMessage(VALUE value, const upb_msgdef* m,
|
1248
|
+
const char* name, upb_arena* arena) {
|
1249
|
+
if (value == Qnil) return NULL;
|
1250
|
+
|
1251
|
+
VALUE klass = CLASS_OF(value);
|
1252
|
+
VALUE desc_rb = rb_ivar_get(klass, descriptor_instancevar_interned);
|
1253
|
+
const upb_msgdef* val_m =
|
1254
|
+
desc_rb == Qnil ? NULL : Descriptor_GetMsgDef(desc_rb);
|
1255
|
+
|
1256
|
+
if (val_m != m) {
|
1257
|
+
// Check for possible implicit conversions
|
1258
|
+
// TODO: hash conversion?
|
1259
|
+
|
1260
|
+
switch (upb_msgdef_wellknowntype(m)) {
|
1261
|
+
case UPB_WELLKNOWN_TIMESTAMP: {
|
1262
|
+
// Time -> Google::Protobuf::Timestamp
|
1263
|
+
upb_msg *msg = upb_msg_new(m, arena);
|
1264
|
+
upb_msgval sec, nsec;
|
1265
|
+
struct timespec time;
|
1266
|
+
const upb_fielddef *sec_f = upb_msgdef_itof(m, 1);
|
1267
|
+
const upb_fielddef *nsec_f = upb_msgdef_itof(m, 2);
|
1268
|
+
|
1269
|
+
if (!rb_obj_is_kind_of(value, rb_cTime)) goto badtype;
|
1270
|
+
|
1271
|
+
time = rb_time_timespec(value);
|
1272
|
+
sec.int64_val = time.tv_sec;
|
1273
|
+
nsec.int32_val = time.tv_nsec;
|
1274
|
+
upb_msg_set(msg, sec_f, sec, arena);
|
1275
|
+
upb_msg_set(msg, nsec_f, nsec, arena);
|
1276
|
+
return msg;
|
1277
|
+
}
|
1278
|
+
case UPB_WELLKNOWN_DURATION: {
|
1279
|
+
// Numeric -> Google::Protobuf::Duration
|
1280
|
+
upb_msg *msg = upb_msg_new(m, arena);
|
1281
|
+
upb_msgval sec, nsec;
|
1282
|
+
const upb_fielddef *sec_f = upb_msgdef_itof(m, 1);
|
1283
|
+
const upb_fielddef *nsec_f = upb_msgdef_itof(m, 2);
|
1284
|
+
|
1285
|
+
if (!rb_obj_is_kind_of(value, rb_cNumeric)) goto badtype;
|
1286
|
+
|
1287
|
+
sec.int64_val = NUM2LL(value);
|
1288
|
+
nsec.int32_val = (NUM2DBL(value) - NUM2LL(value)) * 1000000000;
|
1289
|
+
upb_msg_set(msg, sec_f, sec, arena);
|
1290
|
+
upb_msg_set(msg, nsec_f, nsec, arena);
|
1291
|
+
return msg;
|
1292
|
+
}
|
1293
|
+
default:
|
1294
|
+
badtype:
|
1295
|
+
rb_raise(cTypeError,
|
1296
|
+
"Invalid type %s to assign to submessage field '%s'.",
|
1297
|
+
rb_class2name(CLASS_OF(value)), name);
|
1298
|
+
}
|
1299
|
+
|
1300
|
+
}
|
1301
|
+
|
1302
|
+
Message* self = ruby_to_Message(value);
|
1303
|
+
upb_arena_fuse(arena, Arena_get(self->arena));
|
1304
|
+
|
1305
|
+
return self->msg;
|
1306
|
+
}
|
1307
|
+
|
1308
|
+
void Message_register(VALUE protobuf) {
|
1309
|
+
cParseError = rb_const_get(protobuf, rb_intern("ParseError"));
|
1310
|
+
|
1311
|
+
// Ruby-interned string: "descriptor". We use this identifier to store an
|
1312
|
+
// instance variable on message classes we create in order to link them back
|
1313
|
+
// to their descriptors.
|
1314
|
+
descriptor_instancevar_interned = rb_intern("descriptor");
|
859
1315
|
}
|