-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClientState.cpp
201 lines (183 loc) · 5.91 KB
/
ClientState.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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#include "ClientState.hpp"
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <filesystem>
#include "Client.hpp"
#include "LoggerModule.hpp"
#include "SignErrors.hpp"
#include "TransferInfoManager.hpp"
using namespace ErrorsModule;
void Client::handleRequest() { state_->handleRequest(this); }
// TODO: In more complex applications, this function should be replaced with a
// set of overloaded constructors for each state. This will also prevent
// unwanted state changes, or loops in the state machine.
void ClientState::changeState(Client *client, const ClientStateEnum &newState)
{
switch (newState)
{
case ClientStateEnum::INITIAL:
client->setState(std::make_unique<InitialState>());
break;
case ClientStateEnum::AWAITING_UUID:
client->setState(std::make_unique<AwaitingUUIDState>());
break;
case ClientStateEnum::AWAITING_NEW_AES:
client->setState(std::make_unique<AwaitingNewAESState>());
break;
case ClientStateEnum::AWAITING_OLD_AES:
client->setState(std::make_unique<AwaitingOldAESState>());
break;
case ClientStateEnum::CRC_VERIFYING:
client->setState(std::make_unique<CRCVerificationState>());
break;
}
}
// ========== InitialState ==========
void InitialState::handleRequest(Client *client)
{
try
{
client->signUp();
changeState(client, ClientStateEnum::AWAITING_NEW_AES);
}
catch (const SignInError &e)
{
WARN_LOG("Dear {}, a signing event, please note: {}",
client->getClientName(),
e.getFullMessage(e.getStatus(), e.getExtraInfo()));
switch (e.getStatus())
{
case SignInStatus::ALREADY_REGISTERED:
changeState(client, ClientStateEnum::AWAITING_OLD_AES);
break;
default:
WARN_LOG(
"Exiting client loop: Failed to sign up in "
"InitialState::handleRequest. Error: {}",
e.what());
return;
}
}
catch (const std::exception &e)
{
WARN_LOG(
"Exiting client loop: Failed to sign up in "
"InitialState::handleRequest. Error: {}",
e.what());
return;
}
client->handleRequest();
}
// ========== AwaitingUUIDState ==========
void AwaitingUUIDState::handleRequest(Client *client)
{
client->registerClient();
changeState(client, ClientStateEnum::AWAITING_NEW_AES);
}
// ========== AwaitingNewAESState ==========
void AwaitingNewAESState::handleRequest(Client *client)
{
try
{
client->getNewAESKey();
changeState(client, ClientStateEnum::CRC_VERIFYING);
}
catch (const SignInError &e)
{
WARN_LOG("Dear {}, a signing event, please note: {}",
client->getClientName(),
e.getFullMessage(e.getStatus(), e.getExtraInfo()));
switch (e.getStatus())
{
// It is possible here to return to the initial state and try to
// register again, but this is not implemented because it is
// infinitely possible to get into a loop in bach mode.
default:
WARN_LOG(
"Exiting client loop: Failed to get new AES key in "
"AwaitingNewAESState::handleRequest. Error: {}",
e.what());
return;
}
}
catch (const std::exception &e)
{
WARN_LOG(
"Exiting client loop: Failed to get new AES key in "
"AwaitingNewAESState::handleRequest. Error: {}",
e.what());
return;
}
client->handleRequest();
}
// ========== AwaitingOldAESState ==========
void AwaitingOldAESState::handleRequest(Client *client)
{
try
{
client->signIn();
changeState(client, ClientStateEnum::CRC_VERIFYING);
client->handleRequest();
}
catch (const SignInError &e)
{
WARN_LOG("Dear {}, a signing event, please note: {}",
client->getClientName(),
e.getFullMessage(e.getStatus(), e.getExtraInfo()));
switch (e.getStatus())
{
case SignInStatus::FAILURE_INVALID_ME_INFO:
case SignInStatus::FAILURE_INVALID_UUID:
std::filesystem::remove("me.info");
std::filesystem::remove("priv.key");
// For debug mode because it can create a loop
#ifdef ENABLE_DEBUG_LOGGING
client->setClientID(boost::uuids::nil_generator()());
// no need to reset name since the problem not in transfer.info
changeState(client, ClientStateEnum::INITIAL);
client->handleRequest();
#else
break;
#endif
default:
{
return;
}
}
}
catch (const std::exception &e)
{
WARN_LOG(
"Exiting client loop: Failed to sign in in "
"AwaitingOldAESState::handleRequest. Error: {}",
e.what());
}
}
// ========== CRCVerificationState ==========
void CRCVerificationState::handleRequest(Client *client)
{
int file_count = 0;
do
{
try
{
client->sendEncryptedFileAndCountCRC();
++file_count;
}
catch (const NoMoreFilesException &e)
{
LOG(file_count == 0 ? "No files to send. Exiting client loop."
: "[{}] Files sent. No more files to send. "
"Exiting client loop.",
file_count);
break;
}
catch (const std::exception &e)
{
WARN_LOG(
"Exiting client loop: Failed to send and verify file in "
"CRCVerificationState::handleRequest. Error: {}",
e.what());
}
} while (true);
}