-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathClientSession.cpp
More file actions
174 lines (135 loc) · 4.98 KB
/
Copy pathClientSession.cpp
File metadata and controls
174 lines (135 loc) · 4.98 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include "ClientSession.h"
#include <cassert>
#include <iterator>
#include "comms/cast.h"
#include "comms/iterator.h"
#include "comms/process.h"
#include "tutorial21/field/Msg1Flags.h"
#include "tutorial21/field/Msg2Flags.h"
namespace cc_tutorial
{
void ClientSession::handle(Msg1& msg)
{
std::cout << "Received message \"" << msg.doName() << "\" with ID=" << (unsigned)msg.doGetId() << "; flags are:\n";
using Msg1Flags = tutorial21::field::Msg1Flags<ClientProtocolOptions>;
auto flags = comms::field_cast<Msg1Flags>(msg.transportField_flags());
printSetField(flags);
if (m_currentStage != CommsStage_Msg1) {
std::cerr << "ERROR: Unexpected stage" << std::endl;
return;
}
doNextStage();
}
void ClientSession::handle(Msg2& msg)
{
std::cout << "Received message \"" << msg.doName() << "\" with ID=" << (unsigned)msg.doGetId() << "; flags are:\n";
using Msg2Flags = tutorial21::field::Msg2Flags<ClientProtocolOptions>;
auto flags = comms::field_cast<Msg2Flags>(msg.transportField_flags());
printEnumField(flags.field_enumMem());
printIntField(flags.field_intMem());
if (m_currentStage != CommsStage_Msg2) {
std::cerr << "ERROR: Unexpected stage" << std::endl;
return;
}
doNextStage();
}
void ClientSession::handle(Message& msg)
{
std::cerr << "ERROR: Received unexpected message \"" << msg.name() << " with ID=" << (unsigned)msg.getId() << std::endl;
}
bool ClientSession::startImpl()
{
doNextStage();
return true;
}
std::size_t ClientSession::processInputImpl(const std::uint8_t* buf, std::size_t bufLen)
{
std::cout << "Processing input: " << std::hex;
std::copy_n(buf, bufLen, std::ostream_iterator<unsigned>(std::cout, " "));
std::cout << std::dec << std::endl;
// Process reported input, create relevant message objects and
// dispatch all the created messages
// to this object for handling (appropriate handle() member function will be called)
return comms::processAllWithDispatch(buf, bufLen, m_frame, *this);
}
void ClientSession::sendMessage(Message& msg)
{
std::cout << "Sending message \"" << msg.name() << "\" with ID=" << (unsigned)msg.getId() << std::endl;
// The statement below uses polymorphic message name and ID retrievals.
std::vector<std::uint8_t> output;
// Use polymorphic serialization length calculation to reserve
// needed capacity
output.reserve(m_frame.length(msg));
// Serialize message into the buffer (including framing)
// The serialization uses polymorphic write functionality.
auto writeIter = std::back_inserter(output);
// The frame will use polymorphic message ID retrieval to
// prefix message payload with message ID
auto es = m_frame.write(msg, writeIter, output.max_size());
if (es == comms::ErrorStatus::UpdateRequired) {
auto updateIter = &output[0];
es = m_frame.update(updateIter, output.size());
}
if (es != comms::ErrorStatus::Success) {
assert(!"Write operation failed unexpectedly");
return;
}
// Send serialized message back
sendOutput(&output[0], output.size());
}
void ClientSession::doNextStage()
{
do {
if (CommsStage_NumOfValues <= m_currentStage) {
// Happens in first cycle
m_currentStage = static_cast<decltype(m_currentStage)>(0);
break;
}
m_currentStage =
static_cast<decltype(m_currentStage)>(
static_cast<unsigned>(m_currentStage) + 1);
if (m_currentStage < CommsStage_NumOfValues) {
break;
}
// Client execution is complete
getIo().stop();
return;
} while (false);
using NextSendFunc = void (ClientSession::*)();
static const NextSendFunc Map[] = {
/* CommsStage_Msg1 */ &ClientSession::sendMsg1,
/* CommsStage_Msg2 */ &ClientSession::sendMsg2,
};
static const std::size_t MapSize = std::extent<decltype(Map)>::value;
static_assert(MapSize == CommsStage_NumOfValues, "Invalid Map");
auto func = Map[m_currentStage];
(this->*func)(); // Call appropriate sending function
}
void ClientSession::sendMsg1()
{
Msg1 msg;
// prepare flags of Msg1
using Msg1Flags = tutorial21::field::Msg1Flags<ClientProtocolOptions>;
Msg1Flags flags;
flags.setBitValue_B1(true);
// Assign the flags
msg.transportField_flags() = comms::field_cast<Message::TransportField_flags>(flags);
sendMessage(msg);
}
void ClientSession::sendMsg2()
{
Msg2 msg;
// prepare flags of Msg2
using Msg2Flags = tutorial21::field::Msg2Flags<ClientProtocolOptions>;
Msg2Flags flags;
flags.field_enumMem().value() = Msg2Flags::Field_enumMem::ValueType::V1;
flags.field_intMem().value() = 111;
// Assign the flags
msg.transportField_flags() = comms::field_cast<Message::TransportField_flags>(flags);
sendMessage(msg);
}
SessionPtr Session::createClient(boost_wrap::io& io)
{
return SessionPtr(new ClientSession(io));
}
} // namespace cc_tutorial