summaryrefslogtreecommitdiff
path: root/benchmarks/parsetostruct.proto2_table.cc
blob: ded267d8f1131f23765c498ced280594881318bd (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

#include "main.c"
#include <google/protobuf/dynamic_message.h>
#include <iostream>
#include <sstream>
#include <fstream>
#include MESSAGE_HFILE

static std::string str;
static google::protobuf::DynamicMessageFactory factory;
static google::protobuf::Message *msg[NUM_MESSAGES];

static bool initialize()
{
  /* Read the message data itself. */
  std::ifstream stream(MESSAGE_FILE);
  if(!stream.is_open()) {
    fprintf(stderr, "Error opening " MESSAGE_FILE ".\n");
    return false;
  }
  std::stringstream stringstream;
  stringstream << stream.rdbuf();
  str = stringstream.str();

  /* Create the DynamicMessage. */
  const google::protobuf::Message *dynamic_msg_prototype =
      factory.GetPrototype(MESSAGE_CIDENT::descriptor());
  for(int i = 0; i < NUM_MESSAGES; i++)
    msg[i] = dynamic_msg_prototype->New();
  return true;
}

static void cleanup()
{
  for(int i = 0; i < NUM_MESSAGES; i++)
    delete msg[i];
}

static size_t run(int i)
{
  if(!msg[i%NUM_MESSAGES]->ParseFromString(str)) {
    fprintf(stderr, "Error parsing with proto2.\n");
    return 0;
  }
  return str.size();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback