-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibcluon_example.cpp
97 lines (89 loc) · 3.27 KB
/
libcluon_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
90
91
92
93
94
95
96
97
/*
* 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.hpp"
#include "cluon-complete.hpp"
int main() {
testdata::MyTestMessage1 msg1;
msg1.attribute1(false)
.attribute2(-10)
.attribute3(10)
.attribute4(-11)
.attribute5(11)
.attribute6(-12)
.attribute7(12)
.attribute8(1.23f)
.attribute9(1.6)
.attribute10("Hello World 2")
.attribute11("Hello World 3");
// Output values.
{
std::stringstream buffer;
msg1.accept([](int32_t, const std::string &, const std::string &) {},
[&buffer](uint32_t, std::string &&, std::string &&n, auto v) { buffer << n << " = " << v << '\n'; },
[]() {});
std::cout << buffer.str() << std::endl;
}
// Serialize as Protobuf to file.
cluon::ToProtoVisitor protoEncoder;
auto encBefore = std::chrono::steady_clock::now();
{
msg1.accept(protoEncoder);
}
auto encAfter = std::chrono::steady_clock::now();
std::cout << "Encoding took " << std::chrono::duration <double, std::nano>(encAfter-encBefore).count() << " ns." << std::endl;
{
std::fstream fout("libcluon.out", std::ios::binary|std::ios::out|std::ios::trunc);
fout << protoEncoder.encodedData();
fout.flush();
fout.close();
}
std::stringstream out;
out << protoEncoder.encodedData();
out.flush();
testdata::MyTestMessage1 msg2;
// Display default values.
{
std::stringstream buffer;
msg2.accept([](int32_t, const std::string &, const std::string &) {},
[&buffer](uint32_t, std::string &&, std::string &&n, auto v) { buffer << n << " = " << v << '\n'; },
[]() {});
std::cout << buffer.str() << std::endl;
}
// Read back data.
cluon::FromProtoVisitor protoDecoder;
{
auto decBefore = std::chrono::steady_clock::now();
{
protoDecoder.decodeFrom<testdata::MyTestMessage1>(out, msg2);
}
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::stringstream buffer;
msg2.accept([](int32_t, const std::string &, const std::string &) {},
[&buffer](uint32_t, std::string &&, std::string &&n, auto v) { buffer << n << " = " << v << '\n'; },
[]() {});
std::cout << buffer.str() << std::endl;
}
return 0;
}