summaryrefslogtreecommitdiff
path: root/benchmarks/parsetostruct.proto2_compiled.cc
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2009-08-04 19:46:42 -0700
committerJoshua Haberman <joshua@reverberate.org>2009-08-04 19:46:42 -0700
commit84cd1538ee20b934c6892f38578a08106a934fe8 (patch)
treeecfc5baa4d47a276bf1509243778ae7940e08e83 /benchmarks/parsetostruct.proto2_compiled.cc
parent2aaea5390a841e2682a318746e90aebbe8a955b9 (diff)
Integrated benchmarks into main Makefile.
Diffstat (limited to 'benchmarks/parsetostruct.proto2_compiled.cc')
-rw-r--r--benchmarks/parsetostruct.proto2_compiled.cc37
1 files changed, 37 insertions, 0 deletions
diff --git a/benchmarks/parsetostruct.proto2_compiled.cc b/benchmarks/parsetostruct.proto2_compiled.cc
new file mode 100644
index 0000000..339e184
--- /dev/null
+++ b/benchmarks/parsetostruct.proto2_compiled.cc
@@ -0,0 +1,37 @@
+
+#include "main.c"
+#include MESSAGE_HFILE
+#include <string>
+#include <iostream>
+#include <sstream>
+#include <fstream>
+
+static std::string str;
+MESSAGE_CIDENT msg;
+
+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();
+ return true;
+}
+
+static void cleanup()
+{
+}
+
+static size_t run()
+{
+ if(!msg.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