summaryrefslogtreecommitdiff
path: root/benchmarks/parsetostruct.upb_table.c
blob: 9daa8e09727f1b16bd1c3c063b3852f7fd685f0e (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

#include "main.c"

#include "upb_context.h"
#include "upb_msg.h"
#include "upb_mm.h"

static struct upb_context *c;
static struct upb_string *str;
static struct upb_msgdef *def;
static struct upb_msg *msgs[NUM_MESSAGES];

static bool initialize()
{
  /* Initialize upb state, parse descriptor. */
  c = upb_context_new();
  struct upb_string *fds = upb_strreadfile(MESSAGE_DESCRIPTOR_FILE);
  if(!fds) {
    fprintf(stderr, "Couldn't read " MESSAGE_DESCRIPTOR_FILE ".\n");
    return false;
  }
  if(!upb_context_parsefds(c, fds)) {
    fprintf(stderr, "Error importing " MESSAGE_DESCRIPTOR_FILE ".\n");
    return false;
  }
  upb_string_unref(fds);

  char class_name[] = MESSAGE_NAME;
  struct upb_string proto_name;
  proto_name.ptr = class_name;
  proto_name.byte_len = sizeof(class_name)-1;
  struct upb_symtab_entry e;
  upb_status_t success = upb_context_lookup(c, &proto_name, &e);
  if(!success || e.type != UPB_SYM_MESSAGE) {
    fprintf(stderr, "Error finding symbol '" UPB_STRFMT "'.\n",
            UPB_STRARG(&proto_name));
    return false;
  }

  def = e.ref.msg;
  for(int i = 0; i < 32; i++)
    msgs[i] = upb_msg_new(def);

  /* Read the message data itself. */
  str = upb_strreadfile(MESSAGE_FILE);
  if(!str) {
    fprintf(stderr, "Error reading " MESSAGE_FILE "\n");
    return false;
  }
  return true;
}

static void cleanup()
{
  for(int i = 0; i < 32; i++)
    upb_msg_unref(msgs[i]);
  upb_string_unref(str);
  upb_context_unref(c);
}

static size_t run(int i)
{
  upb_status_t status;
  status = upb_msg_parsestr(msgs[i%NUM_MESSAGES], str->ptr, str->byte_len);
  if(status != UPB_STATUS_OK) {
    fprintf(stderr, "Error. :(  error=%d\n", status);
    return 0;
  }
  return str->byte_len;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback