-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrpc_stream.cpp
More file actions
241 lines (195 loc) · 5.74 KB
/
rpc_stream.cpp
File metadata and controls
241 lines (195 loc) · 5.74 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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#include "rpc.h"
#include <curl/curl.h>
#include <iostream>
#include <chrono>
#include <thread>
#ifndef SHORTPOLLING_INTERVAL_SECS
#define SHORTPOLLING_INTERVAL_SECS 5
#endif
using namespace jsonrpc;
namespace mage {
void RPC::ReceiveEvent(const std::string& name, const Json::Value& data) const {
std::lock_guard<std::mutex> lock(observerList_mutex);
std::list<EventObserver*>::const_iterator citr;
for(citr = m_oObserverList.cbegin();
citr != m_oObserverList.cend(); ++citr) {
(*citr)->ReceiveEvent(name, data);
}
}
void RPC::AddObserver(EventObserver* observer) {
std::lock_guard<std::mutex> lock(observerList_mutex);
m_oObserverList.push_back(observer);
}
static int writer(char *data, size_t size, size_t nmemb,
std::string *writerData) {
if (writerData == NULL) return 0;
writerData->append(data, size*nmemb);
return size * nmemb;
}
void RPC::DoHttpGet(std::string *buffer, const std::string& url) const {
CURL* c = curl_easy_init();
if (!c) {
throw MageClientError("Unable to pull events. "
"Unable to initialize curl.");
}
curl_easy_setopt(c, CURLOPT_URL, url.c_str());
curl_easy_setopt(c, CURLOPT_WRITEFUNCTION, writer);
curl_easy_setopt(c, CURLOPT_WRITEDATA, buffer);
CURLcode res = curl_easy_perform(c);
curl_easy_cleanup(c);
if(res != CURLE_OK) {
throw MageClientError(std::string("Unable to pull events. "
"Curl error: ") +
curl_easy_strerror(res));
}
}
void RPC::ExtractEventsFromMsgStreamResponse(const std::string& response) {
Json::Reader reader;
Json::Value messages;
if (!reader.parse(response.c_str(), messages)) {
throw MageClientError("Unable to parse the received content from "
"the message stream.");
}
bool hasInvalidFormatError = false;
std::vector<std::string> members = messages.getMemberNames();
std::vector<std::string>::const_iterator citr;
for (citr = members.begin();
citr != members.end();
++citr) {
for (int i = 0; i < messages[(*citr)].size(); ++i) {
Json::Value event = messages[(*citr)][i];
switch (event.size()) {
case 1:
ReceiveEvent(event[0u].asString());
break;
case 2:
ReceiveEvent(event[0u].asString(), event[1u]);
break;
default:
hasInvalidFormatError = true;
break;
}
}
msgStreamUrl_mutex.lock();
m_oMsgToConfirm.push_back(*citr);
msgStreamUrl_mutex.unlock();
}
if (hasInvalidFormatError) {
throw new MageClientError("One of the received events has an invalid format.");
}
}
void RPC::PullEvents(Transport transport) {
const std::string url = GetMsgStreamUrl(transport);
std::string buffer;
DoHttpGet(&buffer, url);
// The previous messages were confirmed
msgStreamUrl_mutex.lock();
m_oMsgToConfirm.clear();
msgStreamUrl_mutex.unlock();
// No messages to read
if (buffer.empty()) {
return;
}
// Heartbeat sent by MAGE
if (buffer == "HB") {
return;
}
ExtractEventsFromMsgStreamResponse(buffer);
}
void RPC::StartPolling(Transport transport) {
sessionKey_mutex.lock();
if (m_sSessionKey.empty()) {
sessionKey_mutex.unlock();
throw MageClientError("No session key registered.");
}
sessionKey_mutex.unlock();
if (m_pPollingThread != nullptr &&
m_pPollingThread->joinable() == true) {
throw MageClientError("A polling thread is already running.");
}
if (m_pPollingThread != nullptr) {
delete m_pPollingThread;
}
auto f = [this, transport](){
std::unique_lock<std::mutex> lock(pollingThread_mutex);
std::chrono::seconds duration;
// In case of shortpolling we have to wait
if (transport == SHORTPOLLING) {
duration = std::chrono::seconds(SHORTPOLLING_INTERVAL_SECS);
} else {
duration = std::chrono::seconds::zero();
}
// Wait for duration
// If a notification is received, it will execute the lamdba
// If it returns true, it will stop
// else it should continue
while (m_bShouldRunPollingThread &&
pollingThread_cv.wait_for(lock, duration, [this]() {
// To stop the waiting, we should return true
return !m_bShouldRunPollingThread;
}) == false) {
try {
PullEvents(transport);
} catch (MageClientError error) {
std::cerr << error.what() << std::endl;
}
}
};
// Execute the lambda in a new thread
m_bShouldRunPollingThread = true;
m_pPollingThread = new std::thread(f);
}
void RPC::StopPolling() {
m_bShouldRunPollingThread = false;
pollingThread_cv.notify_all();
m_pPollingThread->join();
}
std::string RPC::GetConfirmIds() const {
std::lock_guard<std::recursive_mutex> lock(msgStreamUrl_mutex);
std::stringstream ss;
bool first = true;
std::list<std::string>::const_iterator citr;
for (citr = m_oMsgToConfirm.cbegin();
citr != m_oMsgToConfirm.cend();
++citr) {
if (!first) {
ss << ",";
} else {
first = false;
}
ss << (*citr);
}
return ss.str();
}
std::string RPC::GetMsgStreamUrl(Transport transport) const {
std::lock_guard<std::recursive_mutex> lock(msgStreamUrl_mutex);
std::stringstream ss;
ss << m_sProtocol
<< "://"
<< m_sDomain
<< "/msgstream?transport=";
switch (transport) {
case SHORTPOLLING:
ss << "shortpolling";
break;
case LONGPOLLING:
ss << "longpolling";
break;
default:
throw MageClientError("Unsupported transport.");
}
sessionKey_mutex.lock();
if (m_sSessionKey.empty()) {
sessionKey_mutex.unlock();
throw MageClientError("No session key registered.");
}
ss << "&sessionKey="
<< m_sSessionKey;
sessionKey_mutex.unlock();
if (!m_oMsgToConfirm.empty()) {
ss << "&confirmIds="
<< GetConfirmIds();
}
return ss.str();
}
} // namespace mage