-
Notifications
You must be signed in to change notification settings - Fork 0
/
protobuf_example.cpp
89 lines (80 loc) · 2.72 KB
/
protobuf_example.cpp
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
/*
* Copyright (C) 2018 Christian Berger
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <chrono>
#include <iostream>
#include <fstream>
#include <sstream>
#include "example.pb.h"
int main() {
// Verify that the version of the library that we linked against is
// compatible with the version of the headers we compiled against.
GOOGLE_PROTOBUF_VERIFY_VERSION;
testdata_MyTestMessage1 msg1;
msg1.set_attribute1(false);
msg1.set_attribute2(-10);
msg1.set_attribute3(10);
msg1.set_attribute4(-11);
msg1.set_attribute5(11);
msg1.set_attribute6(-12);
msg1.set_attribute7(12);
msg1.set_attribute8(1.23f);
msg1.set_attribute9(1.6);
msg1.set_attribute10("Hello World 2");
msg1.set_attribute11("Hello World 3");
// Output values.
{
std::cout << msg1.DebugString() << std::endl;
}
// Serialize as Protobuf to file.
{
std::fstream fout("protobuf.out", std::ios::binary|std::ios::out|std::ios::trunc);
msg1.SerializeToOstream(&fout);
fout.flush();
fout.close();
}
std::stringstream out;
{
auto encBefore = std::chrono::steady_clock::now();
{
msg1.SerializeToOstream(&out);
}
auto encAfter = std::chrono::steady_clock::now();
std::cout << "Encoding took " << std::chrono::duration <double, std::nano>(encAfter-encBefore).count() << " ns." << std::endl;
out.flush();
}
testdata_MyTestMessage1 msg2;
// Display default values.
{
std::cout << msg2.DebugString() << std::endl;
}
// Read back data.
{
auto decBefore = std::chrono::steady_clock::now();
{
msg2.ParseFromIstream(&out);
}
auto decAfter = std::chrono::steady_clock::now();
std::cout << "Decoding took " << std::chrono::duration <double, std::nano>(decAfter-decBefore).count() << " ns." << std::endl;
}
// Display read values.
{
std::cout << msg2.DebugString() << std::endl;
}
// Optional: Delete all global objects allocated by libprotobuf.
google::protobuf::ShutdownProtobufLibrary();
return 0;
}