summaryrefslogtreecommitdiff
path: root/benchmarks/parsetoproto2.upb.cc
blob: 75cd10c2fa68616bf7da31b9a70529cd9509c8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
// This file is a crime against software engineering.  It breaks the
// encapsulation of proto2 in numerous ways, violates the C++ standard
// in others, and generally deserves to have comtempt and scorn heaped
// upon it.
//
// Its purpose is to get an accurate benchmark for how fast upb can
// parse into proto2 data structures.  To add proper support for this
// functionality, proto2 would need to expose actual support for the
// operations we are trying to perform here.

#define __STDC_LIMIT_MACROS 1
#include "main.c"

#include <stdint.h>
#include "upb/bytestream.h"
#include "upb/def.h"
#include "upb/msg.h"
#include "upb/pb/decoder.h"
#include "upb/pb/glue.h"

// Need to violate the encapsulation of GeneratedMessageReflection -- see below.
#define private public
#include MESSAGE_HFILE
#include <google/protobuf/descriptor.h>
#undef private

static size_t len;
MESSAGE_CIDENT msg[NUM_MESSAGES];
MESSAGE_CIDENT msg2;
static upb_stringsrc strsrc;
static upb_decoder d;
static const upb_msgdef *def;

#define PROTO2_APPEND(type, ctype) \
  upb_flow_t proto2_append_ ## type(void *_r, upb_value fval, upb_value val) { \
    (void)fval; \
    typedef google::protobuf::RepeatedField<ctype> R; \
    R *r = (R*)_r; \
    r->Add(upb_value_get ## type(val)); \
    return UPB_CONTINUE; \
  }

PROTO2_APPEND(double, double)
PROTO2_APPEND(float, float)
PROTO2_APPEND(uint64, uint64_t)
PROTO2_APPEND(int64, int64_t)
PROTO2_APPEND(int32, int32_t)
PROTO2_APPEND(uint32, uint32_t)
PROTO2_APPEND(bool, bool)

upb_flow_t proto2_setstr(void *m, upb_value fval, upb_value val) {
  assert(m != NULL);
  const upb_fielddef *f = upb_value_getfielddef(fval);
  std::string **str = (std::string**)UPB_INDEX(m, f->offset, 1);
  if (*str == f->default_ptr) *str = new std::string;
  const upb_strref *ref = upb_value_getstrref(val);
  // XXX: only supports contiguous strings atm.
  (*str)->assign(ref->ptr, ref->len);
  return UPB_CONTINUE;
}

upb_flow_t proto2_append_str(void *_r, upb_value fval, upb_value val) {
  assert(_r != NULL);
  typedef google::protobuf::RepeatedPtrField<std::string> R;
  (void)fval;
  R *r = (R*)_r;
  const upb_strref *ref = upb_value_getstrref(val);
  // XXX: only supports contiguous strings atm.
  r->Add()->assign(ref->ptr, ref->len);
  return UPB_CONTINUE;
}

upb_sflow_t proto2_startseq(void *m, upb_value fval) {
  assert(m != NULL);
  const upb_fielddef *f = upb_value_getfielddef(fval);
  return UPB_CONTINUE_WITH(UPB_INDEX(m, f->offset, 1));
}

upb_sflow_t proto2_startsubmsg(void *m, upb_value fval) {
  assert(m != NULL);
  const upb_fielddef *f = upb_value_getfielddef(fval);
  google::protobuf::Message *prototype = (google::protobuf::Message*)f->prototype;
  void **subm = (void**)UPB_INDEX(m, f->offset, 1);
  if (*subm == NULL || *subm == f->default_ptr)
    *subm = prototype->New();
  assert(*subm != NULL);
  return UPB_CONTINUE_WITH(*subm);
}

class UpbRepeatedPtrField : public google::protobuf::internal::RepeatedPtrFieldBase {
 public:
  class TypeHandler {
   public:
    typedef void Type;
    // AddAllocated() calls this, but only if other objects are sitting
    // around waiting for reuse, which we will not do.
    static void Delete(Type*) { assert(false); }
  };
  void *Add(google::protobuf::Message *m) {
    void *submsg = RepeatedPtrFieldBase::AddFromCleared<TypeHandler>();
    if (!submsg) {
      submsg = m->New();
      RepeatedPtrFieldBase::AddAllocated<TypeHandler>(submsg);
    }
    return submsg;
  }
};

upb_sflow_t proto2_startsubmsg_r(void *_r, upb_value fval) {
  assert(_r != NULL);
  // Compared to the other writers, this implementation is particularly sketchy.
  // The object we are modifying is a RepeatedPtrField<SubType>*, but we can't
  // properly declare that templated pointer because we don't have access to
  // that type at compile-time (and wouldn't want to create a separate callback
  // for each type anyway).  Instead we access the pointer as a
  // RepeatedPtrFieldBase, which is indeed a superclass of RepeatedPtrField.
  // But we can't properly declare a TypeHandler for the submessage's type,
  // for the same reason that we can't create a RepeatedPtrField<SubType>*.
  // Instead we treat it as a void*, and create the submessage using
  // google::protobuf::Message::New() if we need to.
  class TypeHandler {
   public:
    typedef void Type;
  };
  const upb_fielddef *f = upb_value_getfielddef(fval);
  UpbRepeatedPtrField *r = (UpbRepeatedPtrField*)_r;
  void *submsg = r->Add((google::protobuf::Message*)f->prototype);
  assert(submsg != NULL);
  return UPB_CONTINUE_WITH(submsg);
}

#define PROTO2MSG(type, size) { static upb_accessor_vtbl vtbl = { \
    &proto2_startsubmsg, \
    &upb_stdmsg_set ## type, \
    &proto2_startseq, \
    &proto2_startsubmsg_r, \
    &proto2_append_ ## type, \
    NULL, NULL, NULL, NULL, NULL, NULL}; \
  return &vtbl; }

static upb_accessor_vtbl *proto2_accessor(upb_fielddef *f) {
  switch (f->type) {
    case UPB_TYPE(DOUBLE): PROTO2MSG(double, 8)
    case UPB_TYPE(FLOAT): PROTO2MSG(float, 4)
    case UPB_TYPE(UINT64):
    case UPB_TYPE(FIXED64): PROTO2MSG(uint64, 8)
    case UPB_TYPE(INT64):
    case UPB_TYPE(SFIXED64):
    case UPB_TYPE(SINT64): PROTO2MSG(int64, 8)
    case UPB_TYPE(INT32):
    case UPB_TYPE(SINT32):
    case UPB_TYPE(ENUM):
    case UPB_TYPE(SFIXED32): PROTO2MSG(int32, 4)
    case UPB_TYPE(UINT32):
    case UPB_TYPE(FIXED32): PROTO2MSG(uint32, 4)
    case UPB_TYPE(BOOL): PROTO2MSG(bool, 1)
    case UPB_TYPE(STRING):
    case UPB_TYPE(BYTES):
    case UPB_TYPE(GROUP):
    case UPB_TYPE(MESSAGE): {
        static upb_accessor_vtbl vtbl = {
        &proto2_startsubmsg,
        &proto2_setstr,
        &proto2_startseq,
        &proto2_startsubmsg_r,
        &proto2_append_str,
        NULL, NULL, NULL, NULL, NULL, NULL};
        return &vtbl;
    }
  }
  return NULL;
}

static void layout_msgdef_from_proto2(upb_msgdef *upb_md,
                                      const google::protobuf::Message *m,
                                      const google::protobuf::Descriptor *proto2_d) {
  // Hack: we break the encapsulation of GeneratedMessageReflection to get at
  // the offsets we need.  If/when we do this for real, we will need
  // GeneratedMessageReflection to expose those offsets publicly.
  const google::protobuf::internal::GeneratedMessageReflection *r =
      (google::protobuf::internal::GeneratedMessageReflection*)m->GetReflection();
  for (int i = 0; i < proto2_d->field_count(); i++) {
    const google::protobuf::FieldDescriptor *proto2_f = proto2_d->field(i);
    upb_fielddef *upb_f = upb_msgdef_itof(upb_md, proto2_f->number());
    assert(upb_f);

    // Encapsulation violation BEGIN
    uint32_t data_offset = r->offsets_[proto2_f->index()];
    uint32_t hasbit = (r->has_bits_offset_ * 8) + proto2_f->index();
    // Encapsulation violation END

    if (upb_isseq(upb_f)) {
      // proto2 does not store hasbits for repeated fields.
      upb_f->hasbit = -1;
    } else {
      upb_f->hasbit = hasbit;
    }
    upb_f->offset = data_offset;
    upb_fielddef_setaccessor(upb_f, proto2_accessor(upb_f));

    if (upb_isstring(upb_f) && !upb_isseq(upb_f)) {
      upb_f->default_ptr = &r->GetStringReference(*m, proto2_f, NULL);
    } else if (upb_issubmsg(upb_f)) {
      // XXX: skip leading "."
      const google::protobuf::Descriptor *subm_descriptor =
          google::protobuf::DescriptorPool::generated_pool()->
              FindMessageTypeByName(upb_fielddef_typename(upb_f) + 1);
      assert(subm_descriptor);
      upb_f->prototype = google::protobuf::MessageFactory::generated_factory()->GetPrototype(subm_descriptor);
      if (!upb_isseq(upb_f))
        upb_f->default_ptr = &r->GetMessage(*m, proto2_f);
    }
  }
}

static bool initialize()
{
  // Initialize upb state, decode descriptor.
  upb_status status = UPB_STATUS_INIT;
  upb_symtab *s = upb_symtab_new();

  char *data = upb_readfile(MESSAGE_DESCRIPTOR_FILE, &len);
  if (!data) {
    fprintf(stderr, "Couldn't read file: " MESSAGE_DESCRIPTOR_FILE);
    return false;
  }
  int n;
  upb_def **defs = upb_load_defs_from_descriptor(data, len, &n, &status);
  free(data);
  if(!upb_ok(&status)) {
    fprintf(stderr, "Error reading descriptor: %s\n",
            upb_status_getstr(&status));
    return false;
  }

  // Setup offsets and accessors to properly write into a proto2 generated
  // class.
  for (int i = 0; i < n; i++) {
    upb_def *def = defs[i];
    upb_msgdef *upb_md = upb_dyncast_msgdef(def);
    if (!upb_md) continue;
    const google::protobuf::Descriptor *proto2_md =
        google::protobuf::DescriptorPool::generated_pool()->
            FindMessageTypeByName(upb_def_fqname(def));
    if (!proto2_md) abort();
    const google::protobuf::Message *proto2_m =
        google::protobuf::MessageFactory::generated_factory()->GetPrototype(proto2_md);
    layout_msgdef_from_proto2(upb_md, proto2_m, proto2_md);
  }

  upb_symtab_add(s, defs, n, &status);
  if(!upb_ok(&status)) {
    fprintf(stderr, "Error reading adding to symtab: %s\n",
            upb_status_getstr(&status));
    return false;
  }
  for(int i = 0; i < n; i++) upb_def_unref(defs[i]);
  free(defs);

  def = upb_dyncast_msgdef_const(upb_symtab_lookup(s, MESSAGE_NAME));
  if(!def) {
    fprintf(stderr, "Error finding symbol '%s'.\n", MESSAGE_NAME);
    return false;
  }
  upb_symtab_unref(s);

  // Read the message data itself.
  char *str = upb_readfile(MESSAGE_FILE, &len);
  if(str == NULL) {
    fprintf(stderr, "Error reading " MESSAGE_FILE "\n");
    return false;
  }
  upb_status_uninit(&status);

  msg2.ParseFromArray(str, len);

  upb_stringsrc_init(&strsrc);
  upb_stringsrc_reset(&strsrc, str, len);
  upb_handlers *h = upb_handlers_new();
  upb_accessors_reghandlers(h, def);
  if (!JIT) h->should_jit = false;
  upb_decoder_init(&d, h);
  upb_handlers_unref(h);

  return true;
}

static void cleanup() {
  upb_stringsrc_uninit(&strsrc);
  upb_decoder_uninit(&d);
  upb_def_unref(UPB_UPCAST(def));
}

static size_t run(int i)
{
  (void)i;
  upb_status status = UPB_STATUS_INIT;
  msg[i % NUM_MESSAGES].Clear();
  upb_decoder_reset(&d, upb_stringsrc_bytesrc(&strsrc),
                    0, UPB_NONDELIMITED, &msg[i % NUM_MESSAGES]);
  upb_decoder_decode(&d, &status);
  if(!upb_ok(&status)) goto err;
  return len;

err:
  fprintf(stderr, "Decode error: %s", upb_status_getstr(&status));
  return 0;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback