summaryrefslogtreecommitdiff
path: root/src/upb_data.c
blob: 8ed1646e8a47d2d1dec4471a0f5339d1d21dcb85 (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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 */

#include <stdlib.h>
#include "upb_data.h"
#include "upb_decoder.h"
#include "upb_def.h"

static uint32_t round_up_to_pow2(uint32_t v)
{
  /* cf. http://graphics.stanford.edu/~seander/bithacks.html#RoundUpPowerOf2 */
  v--;
  v |= v >> 1;
  v |= v >> 2;
  v |= v >> 4;
  v |= v >> 8;
  v |= v >> 16;
  v++;
  return v;
}

/* upb_data *******************************************************************/

static void data_elem_unref(upb_valueptr p, upb_fielddef *f) {
  if(upb_issubmsg(f)) {
    upb_msg_unref(*p.msg, upb_downcast_msgdef(f->def));
  } else if(upb_isstring(f)) {
    upb_string_unref(*p.str);
  } else {
    assert(false);
  }
}

static void data_unref(upb_valueptr p, upb_fielddef *f) {
  if(upb_isarray(f)) {
    upb_array_unref(*p.arr, f);
  } else {
    data_elem_unref(p, f);
  }
}

INLINE void data_init(upb_data *d, int flags) {
  d->v = REFCOUNT_ONE | flags;
}

static void check_not_frozen(upb_data *d) {
  // On one hand I am reluctant to put abort() calls in a low-level library
  // that are enabled in a production build.  On the other hand, this is a bug
  // in the client code that we cannot recover from, and it seems better to get
  // the error here than later.
  if(upb_data_hasflag(d, UPB_DATA_FROZEN)) abort();
}


/* upb_string *******************************************************************/

void _upb_string_setptr(upb_strptr s, char *ptr) {
  if(upb_data_hasflag(s.base, UPB_DATA_REFCOUNTED))
    s.refcounted->ptr = ptr;
  else
    s.norefcount->ptr = ptr;
}

static void _upb_string_set_bytelen(upb_strptr s, upb_strlen_t newlen) {
  if(upb_data_hasflag(s.base, UPB_DATA_REFCOUNTED)) {
    s.refcounted->byte_len = newlen;
  } else {
    s.norefcount->byte_len = newlen;
  }
}

upb_strptr upb_string_new() {
  upb_strptr s;
  s.refcounted = malloc(sizeof(struct upb_refcounted_string));
  data_init(s.base, UPB_DATA_HEAPALLOCATED | UPB_DATA_REFCOUNTED);
  s.refcounted->byte_size = 0;
  s.refcounted->byte_len = 0;
  s.refcounted->ptr = NULL;
  return s;
}

static upb_strlen_t string_get_bytesize(upb_strptr s) {
  if(upb_data_hasflag(s.base, UPB_DATA_REFCOUNTED)) {
    return s.refcounted->byte_size;
  } else {
    return (s.norefcount->byte_size_and_flags & 0xFFFFFFF8) >> 3;
  }
}

static void string_set_bytesize(upb_strptr s, upb_strlen_t newsize) {
  if(upb_data_hasflag(s.base, UPB_DATA_REFCOUNTED)) {
    s.refcounted->byte_size = newsize;
  } else {
    s.norefcount->byte_size_and_flags &= 0x7;
    s.norefcount->byte_size_and_flags |= (newsize << 3);
  }
}

void _upb_string_free(upb_strptr s)
{
  if(string_get_bytesize(s) != 0) free((void*)upb_string_getrobuf(s));
  free(s.base);
}

void upb_string_resize(upb_strptr s, upb_strlen_t byte_len) {
  check_not_frozen(s.base);
  if(string_get_bytesize(s) < byte_len) {
    // Need to resize.
    size_t new_byte_size = round_up_to_pow2(byte_len);
    _upb_string_setptr(s, realloc(_upb_string_getptr(s), new_byte_size));
    string_set_bytesize(s, new_byte_size);
  }
  _upb_string_set_bytelen(s, byte_len);
}

upb_strptr upb_string_getref(upb_strptr s, int ref_flags) {
  if(_upb_data_incref(s.base, ref_flags)) return s;
  upb_strptr copy = upb_strdup(s);
  if(ref_flags == UPB_REF_FROZEN)
    upb_data_setflag(copy.base, UPB_DATA_FROZEN);
  return copy;
}

upb_strptr upb_strreadfile(const char *filename) {
  FILE *f = fopen(filename, "rb");
  if(!f) return UPB_STRING_NULL;
  if(fseek(f, 0, SEEK_END) != 0) goto error;
  long size = ftell(f);
  if(size < 0) goto error;
  if(fseek(f, 0, SEEK_SET) != 0) goto error;
  upb_strptr s = upb_string_new();
  char *buf = upb_string_getrwbuf(s, size);
  if(fread(buf, size, 1, f) != 1) goto error;
  fclose(f);
  return s;

error:
  fclose(f);
  return UPB_STRING_NULL;
}

upb_strptr upb_strdupc(const char *src) {
  upb_strptr copy = upb_string_new();
  upb_strlen_t len = strlen(src);
  char *buf = upb_string_getrwbuf(copy, len);
  memcpy(buf, src, len);
  return copy;
}

void upb_strcat(upb_strptr s, upb_strptr append) {
  upb_strlen_t s_len = upb_strlen(s);
  upb_strlen_t append_len = upb_strlen(append);
  upb_strlen_t newlen = s_len + append_len;
  memcpy(upb_string_getrwbuf(s, newlen) + s_len,
         upb_string_getrobuf(append), append_len);
}

upb_strptr upb_strslice(upb_strptr s, int offset, int len) {
  upb_strptr slice = upb_string_new();
  len = UPB_MIN((upb_strlen_t)len, upb_strlen(s) - (upb_strlen_t)offset);
  memcpy(upb_string_getrwbuf(slice, len), upb_string_getrobuf(s) + offset, len);
  return slice;
}

upb_strptr upb_strdup(upb_strptr s) {
  upb_strptr copy = upb_string_new();
  upb_strcpy(copy, s);
  return copy;
}

int upb_strcmp(upb_strptr s1, upb_strptr s2) {
  upb_strlen_t common_length = UPB_MIN(upb_strlen(s1), upb_strlen(s2));
  int common_diff = memcmp(upb_string_getrobuf(s1), upb_string_getrobuf(s2),
                           common_length);
  return common_diff ==
      0 ? ((int)upb_strlen(s1) - (int)upb_strlen(s2)) : common_diff;
}


/* upb_array ******************************************************************/

static void _upb_array_setptr(upb_arrayptr a, void *ptr) {
  if(upb_data_hasflag(a.base, UPB_DATA_REFCOUNTED))
    a.refcounted->elements._void = ptr;
  else
    a.norefcount->elements._void = ptr;
}

static void _upb_array_setlen(upb_arrayptr a, upb_strlen_t newlen) {
  if(upb_data_hasflag(a.base, UPB_DATA_REFCOUNTED)) {
    a.refcounted->len = newlen;
  } else {
    a.norefcount->len = newlen;
  }
}

upb_arrayptr upb_array_new() {
  upb_arrayptr a;
  a.refcounted = malloc(sizeof(struct upb_refcounted_array));
  data_init(a.base, UPB_DATA_HEAPALLOCATED | UPB_DATA_REFCOUNTED);
  a.refcounted->size = 0;
  a.refcounted->len = 0;
  a.refcounted->elements._void = NULL;
  return a;
}

// ONLY handles refcounted arrays for the moment.
void _upb_array_free(upb_arrayptr a, upb_fielddef *f)
{
  if(upb_elem_ismm(f)) {
    for(upb_arraylen_t i = 0; i < a.refcounted->size; i++) {
      upb_valueptr p = _upb_array_getptr(a, f, i);
      if(!*p.data) continue;
      data_elem_unref(p, f);
    }
  }
  if(a.refcounted->size != 0) free(a.refcounted->elements._void);
  free(a.refcounted);
}

static upb_arraylen_t array_get_size(upb_arrayptr a) {
  if(upb_data_hasflag(a.base, UPB_DATA_REFCOUNTED)) {
    return a.refcounted->size;
  } else {
    return (a.norefcount->base.v & 0xFFFFFFF8) >> 3;
  }
}

static void array_set_size(upb_arrayptr a, upb_arraylen_t newsize) {
  if(upb_data_hasflag(a.base, UPB_DATA_REFCOUNTED)) {
    a.refcounted->size = newsize;
  } else {
    a.norefcount->base.v &= 0x7;
    a.norefcount->base.v |= (newsize << 3);
  }
}

void upb_array_resize(upb_arrayptr a, upb_fielddef *f, upb_strlen_t len) {
  check_not_frozen(a.base);
  size_t type_size = upb_types[f->type].size;
  upb_arraylen_t old_size = array_get_size(a);
  if(old_size < len) {
    // Need to resize.
    size_t new_size = round_up_to_pow2(len);
    _upb_array_setptr(a, realloc(_upb_array_getptr_raw(a, 0, 0)._void, new_size * type_size));
    array_set_size(a, new_size);
    memset(_upb_array_getptr_raw(a, old_size, type_size)._void,
           0,
           (new_size - old_size) * type_size);
  }
  _upb_array_setlen(a, len);
}


/* upb_msg ********************************************************************/

static void upb_msg_sethas(upb_msg *msg, upb_fielddef *f) {
  msg->data[f->field_index/8] |= (1 << (f->field_index % 8));
}

upb_msg *upb_msg_new(upb_msgdef *md) {
  upb_msg *msg = malloc(md->size);
  memset(msg, 0, md->size);
  data_init(&msg->base, UPB_DATA_HEAPALLOCATED | UPB_DATA_REFCOUNTED);
  upb_def_ref(UPB_UPCAST(md));
  return msg;
}

// ONLY handles refcounted messages for the moment.
void _upb_msg_free(upb_msg *msg, upb_msgdef *md)
{
  for(int i = 0; i < md->num_fields; i++) {
    upb_fielddef *f = &md->fields[i];
    upb_valueptr p = _upb_msg_getptr(msg, f);
    if(!upb_field_ismm(f) || !*p.data) continue;
    data_unref(p, f);
  }
  upb_def_unref(UPB_UPCAST(md));
  free(msg);
}

void upb_msg_decodestr(upb_msg *msg, upb_msgdef *md, upb_strptr str,
                       upb_status *status)
{
  upb_decoder *d = upb_decoder_new(md);
  upb_msgsink *s = upb_msgsink_new(md);

  upb_msgsink_reset(s, msg);
  upb_decoder_reset(d, upb_msgsink_sink(s));
  upb_msg_clear(msg, md);
  upb_decoder_decode(d, str, status);

  upb_decoder_free(d);
  upb_msgsink_free(s);
}


/* upb_msgsrc  ****************************************************************/

static void _upb_msgsrc_produceval(upb_value v, upb_fielddef *f, upb_sink *sink,
                                   bool reverse)
{
  if(upb_issubmsg(f)) {
    upb_sink_onstart(sink, f);
    upb_msgsrc_produce(v.msg, upb_downcast_msgdef(f->def), sink, reverse);
    upb_sink_onend(sink, f);
  } else if(upb_isstring(f)) {
    upb_sink_onstr(sink, f, v.str, 0, upb_strlen(v.str));
  } else {
    upb_sink_onvalue(sink, f, v);
  }
}

void upb_msgsrc_produce(upb_msg *msg, upb_msgdef *md, upb_sink *sink,
                        bool reverse)
{
  for(int i = 0; i < md->num_fields; i++) {
    upb_fielddef *f = &md->fields[reverse ? md->num_fields - i - 1 : i];
    if(!upb_msg_has(msg, f)) continue;
    upb_value v = upb_msg_get(msg, f);
    if(upb_isarray(f)) {
      upb_arrayptr arr = v.arr;
      upb_arraylen_t len = upb_array_len(arr);
      for(upb_arraylen_t j = 0; j < upb_array_len(arr); j++) {
        upb_value elem = upb_array_get(arr, f, reverse ? len - j - 1 : j);
        _upb_msgsrc_produceval(elem, f, sink, reverse);
      }
    } else {
      _upb_msgsrc_produceval(v, f, sink, reverse);
    }
  }
}


/* upb_msgsink  ***************************************************************/

typedef struct {
  upb_msg *msg;
  upb_msgdef *md;
} upb_msgsink_frame;

struct upb_msgsink {
  upb_sink base;
  upb_msgdef *toplevel_msgdef;
  upb_msgsink_frame stack[UPB_MAX_NESTING], *top;
};

/* Helper function that returns a pointer to where the next value for field "f"
 * should be stored, taking into account whether f is an array that may need to
 * be allocated or resized. */
static upb_valueptr get_valueptr(upb_msg *msg, upb_fielddef *f)
{
  upb_valueptr p = _upb_msg_getptr(msg, f);
  if(upb_isarray(f)) {
    if(!upb_msg_has(msg, f)) {
      if(upb_array_isnull(*p.arr) || !upb_data_only(*p.data)) {
        if(!upb_array_isnull(*p.arr))
          upb_array_unref(*p.arr, f);
        *p.arr = upb_array_new();
      }
      upb_array_truncate(*p.arr);
      upb_msg_sethas(msg, f);
    } else {
      assert(!upb_array_isnull(*p.arr));
    }
    upb_arraylen_t oldlen = upb_array_len(*p.arr);
    upb_array_resize(*p.arr, f, oldlen + 1);
    p = _upb_array_getptr(*p.arr, f, oldlen);
  }
  return p;
}

// Callbacks for upb_sink.
// TODO: implement these in terms of public interfaces.

static upb_sink_status _upb_msgsink_valuecb(upb_sink *s, upb_fielddef *f,
                                            upb_value val)
{
  upb_msgsink *ms = (upb_msgsink*)s;
  upb_msg *msg = ms->top->msg;
  upb_valueptr p = get_valueptr(msg, f);
  upb_msg_sethas(msg, f);
  upb_value_write(p, val, f->type);
  return UPB_SINK_CONTINUE;
}

static upb_sink_status _upb_msgsink_strcb(upb_sink *s, upb_fielddef *f,
                                          upb_strptr str,
                                          int32_t start, uint32_t end)
{
  upb_msgsink *ms = (upb_msgsink*)s;
  upb_msg *msg = ms->top->msg;
  upb_valueptr p = get_valueptr(msg, f);
  upb_msg_sethas(msg, f);
  if(end > upb_strlen(str)) abort();  /* TODO: support streaming. */
  if(upb_string_isnull(*p.str) || !upb_data_only(*p.data)) {
    if(!upb_string_isnull(*p.str))
      upb_string_unref(*p.str);
    *p.str = upb_string_new();
  }
  upb_strcpylen(*p.str, upb_string_getrobuf(str) + start, end - start);
  return UPB_SINK_CONTINUE;
}

static upb_sink_status _upb_msgsink_startcb(upb_sink *s, upb_fielddef *f)
{
  upb_msgsink *ms = (upb_msgsink*)s;
  upb_msg *oldmsg = ms->top->msg;
  upb_valueptr p = get_valueptr(oldmsg, f);

  if(upb_isarray(f) || !upb_msg_has(oldmsg, f)) {
    upb_msgdef *md = upb_downcast_msgdef(f->def);
    if(!*p.msg || !upb_data_only(*p.data)) {
      if(*p.msg)
        upb_msg_unref(*p.msg, md);
      *p.msg = upb_msg_new(md);
    }
    upb_msg_clear(*p.msg, md);
    upb_msg_sethas(oldmsg, f);
  }

  ms->top++;
  ms->top->msg = *p.msg;
  return UPB_SINK_CONTINUE;
}

static upb_sink_status _upb_msgsink_endcb(upb_sink *s, upb_fielddef *f)
{
  (void)f;  // Unused.
  upb_msgsink *ms = (upb_msgsink*)s;
  ms->top--;
  return UPB_SINK_CONTINUE;
}

static upb_sink_callbacks _upb_msgsink_vtbl = {
  _upb_msgsink_valuecb,
  _upb_msgsink_strcb,
  _upb_msgsink_startcb,
  _upb_msgsink_endcb
};

//
// External upb_msgsink interface.
//

upb_msgsink *upb_msgsink_new(upb_msgdef *md)
{
  upb_msgsink *ms = malloc(sizeof(*ms));
  upb_sink_init(&ms->base, &_upb_msgsink_vtbl);
  ms->toplevel_msgdef = md;
  return ms;
}

void upb_msgsink_free(upb_msgsink *sink)
{
  free(sink);
}

upb_sink *upb_msgsink_sink(upb_msgsink *sink)
{
  return &sink->base;
}

void upb_msgsink_reset(upb_msgsink *ms, upb_msg *msg)
{
  ms->top = ms->stack;
  ms->top->msg = msg;
  ms->top->md = ms->toplevel_msgdef;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback