forked from ros-industrial/abb_librws
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rws_poco_client.h
488 lines (433 loc) · 14.3 KB
/
rws_poco_client.h
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
/***********************************************************************************************************************
*
* Copyright (c) 2015, ABB Schweiz AG
* All rights reserved.
*
* Redistribution and use in source and binary forms, with
* or without modification, are permitted provided that
* the following conditions are met:
*
* * Redistributions of source code must retain the
* above copyright notice, this list of conditions
* and the following disclaimer.
* * Redistributions in binary form must reproduce the
* above copyright notice, this list of conditions
* and the following disclaimer in the documentation
* and/or other materials provided with the
* distribution.
* * Neither the name of ABB nor the names of its
* contributors may be used to endorse or promote
* products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
***********************************************************************************************************************
*/
#ifndef RWS_POCO_CLIENT_H
#define RWS_POCO_CLIENT_H
#include "Poco/Mutex.h"
#include "Poco/Net/HTTPClientSession.h"
#include "Poco/Net/HTTPCredentials.h"
#include "Poco/Net/HTTPResponse.h"
#include "Poco/Net/WebSocket.h"
#include "Poco/SharedPtr.h"
namespace abb
{
namespace rws
{
/**
* \brief A class for a simple client based on POCO.
*/
class POCOClient
{
public:
/**
* \brief A struct for containing the result of a communication.
*/
struct POCOResult
{
/**
* \brief An enum for specifying a general status.
*/
enum GeneralStatus
{
UNKNOWN, ///< Unknown status.
OK, ///< Ok status.
WEBSOCKET_NOT_ALLOCATED, ///< The WebSocket has not been allocated.
EXCEPTION_POCO_INVALID_ARGUMENT, ///< POCO invalid argument exception
EXCEPTION_POCO_TIMEOUT, ///< POCO timeout exception.
EXCEPTION_POCO_NET, ///< POCO net exception.
EXCEPTION_POCO_WEBSOCKET ///< POCO WebSocket exception.
};
/**
* \brief A struct for containing POCO info.
*/
struct POCOInfo
{
/**
* \brief A struct for containing HTTP info.
*/
struct HTTPInfo
{
/**
* \brief A struct for containing HTTP request info.
*/
struct RequestInfo
{
/**
* \brief Method used for the request.
*/
std::string method;
/**
* \brief URI used for the request.
*/
std::string uri;
/**
* \brief Content used for the request.
*/
std::string content;
};
/**
* \brief A struct for containing HTTP response info.
*/
struct ResponseInfo
{
/**
* \brief Response status.
*/
Poco::Net::HTTPResponse::HTTPStatus status;
/**
* \brief Response header info.
*/
std::string header_info;
/**
* \brief Response content.
*/
std::string content;
/**
* \brief A default constructor.
*/
ResponseInfo() : status(Poco::Net::HTTPResponse::HTTP_OK) {}
};
/**
* \brief Info about a HTTP request.
*/
RequestInfo request;
/**
* \brief Info about a HTTP response.
*/
ResponseInfo response;
};
/**
* \brief A struct for containing WebSocket info.
*/
struct WebSocketInfo
{
/**
* \brief Flags from a received WebSocket frame.
*/
int flags;
/**
* \brief Content from a received WebSocket frame.
*/
std::string frame_content;
/**
* \brief A default constructor.
*/
WebSocketInfo() : flags(0) {};
};
/**
* \brief Container for HTTP info.
*/
HTTPInfo http;
/**
* \brief Container for WebSocket info.
*/
WebSocketInfo websocket;
};
/**
* \brief Container for a general status.
*/
GeneralStatus status;
/**
* \brief Container for an exception message (if one occurred).
*/
std::string exception_message;
/**
* \brief Container for POCO info.
*/
POCOInfo poco_info;
/**
* \brief A default constructor.
*/
POCOResult() : status(UNKNOWN) {};
/**
* \brief A method for adding info from a HTTP request.
*
* \param request for the HTTP request.
* \param request_content for the HTTP request's content.
*/
void addHTTPRequestInfo(const Poco::Net::HTTPRequest& request, const std::string& request_content = "");
/**
* \brief A method for adding info from a HTTP response.
*
* \param response for the HTTP response.
* \param response_content for the HTTP response's content.
*/
void addHTTPResponseInfo(const Poco::Net::HTTPResponse& response, const std::string& response_content = "");
/**
* \brief A method for adding info from a received WebSocket frame.
*
* \param flags for the received WebSocket frame's flags.
* \param frame_content for the received WebSocket frame's content.
*/
void addWebSocketFrameInfo(const int flags, const std::string& frame_content);
/**
* \brief A method to map the general status to a std::string.
*
* \return std::string containing the mapped general status.
*/
std::string mapGeneralStatus() const;
/**
* \brief A method to map the opcode of a received WebSocket frame.
*
* \return std::string containing the mapped opcode.
*/
std::string mapWebSocketOpcode() const;
/**
* \brief A method to construct a text representation of the result.
*
* \param verbose indicating if the log text should be verbose or not.
* \param indent for indentation.
*
* \return std::string containing the text representation.
*/
std::string toString(const bool verbose = false, const size_t indent = 0) const;
};
/**
* \brief A constructor.
*
* \param ip_address for the remote server's IP address.
* \param port for the remote server's port.
* \param username for the username to the remote server's authentication process.
* \param password for the password to the remote server's authentication process.
*/
POCOClient(const std::string& ip_address,
const Poco::UInt16 port,
const std::string& username,
const std::string& password)
:
http_client_session_(ip_address, port),
http_credentials_(username, password)
{
http_client_session_.setKeepAlive(true);
http_client_session_.setTimeout(Poco::Timespan(DEFAULT_HTTP_TIMEOUT));
}
/**
* \brief A destructor.
*/
~POCOClient() {}
/**
* \brief A method for sending a HTTP GET request.
*
* \param uri for the URI (path and query).
*
* \return POCOResult containing the result.
*/
POCOResult httpGet(const std::string& uri);
/**
* \brief A method for sending a HTTP POST request.
*
* \param uri for the URI (path and query).
* \param content for the request's content.
*
* \return POCOResult containing the result.
*/
POCOResult httpPost(const std::string& uri, const std::string& content = "");
/**
* \brief A method for sending a HTTP PUT request.
*
* \param uri for the URI (path and query).
* \param content for the request's content.
*
* \return POCOResult containing the result.
*/
POCOResult httpPut(const std::string& uri, const std::string& content = "");
/**
* \brief A method for sending a HTTP DELETE request.
*
* \param uri for the URI (path and query).
*
* \return POCOResult containing the result.
*/
POCOResult httpDelete(const std::string& uri);
/**
* \brief A method for setting the HTTP communication timeout.
*
* \note This method resets the internal HTTP client session, causing the
* RWS server (robot controller) to send a new cookie. The RWS
* session id is not changed.
*
* \param timeout for the HTTP communication timeout [microseconds].
*/
void setHTTPTimeout(const Poco::Int64 timeout)
{
http_client_session_.setTimeout(Poco::Timespan(timeout));
http_client_session_.reset();
}
/**
* \brief A method for checking if the WebSocket exist.
*
* \return bool flag indicating if the WebSocket exist or not.
*/
bool webSocketExist() { return !p_websocket_.isNull(); }
/**
* \brief A method for connecting a WebSocket.
*
* \param uri for the URI (path and query).
* \param protocol for the WebSocket protocol.
* \param timeout for the WebSocket communication timeout [microseconds].
*
* \return POCOResult containing the result.
*/
POCOResult webSocketConnect(const std::string& uri, const std::string& protocol, const Poco::Int64 timeout);
/**
* \brief A method for receiving a WebSocket frame.
*
* \return POCOResult containing the result.
*/
POCOResult webSocketReceiveFrame();
/**
* \brief Forcibly shut down the websocket connection.
*
* The connection is shut down immediately.
* Subsequently, the function will block until a current call to webSocketReceiveFrame() has finished,
* before cleaning up the local state.
*
* Note that since mutexes do not guarantee the order of acquisition for multiple contenders,
* it is undefined how many calls to webSocketReceiveFrame() will still attempt to use the shut down
* connection before the local state is cleaned. Those invocation will throw a runtime error.
*/
void webSocketShutdown();
/**
* \brief A method for retrieving a substring in a string.
*
* \param whole_string for the string containing the substring.
* \param substring_start start of the substring.
* \param substring_end end of the substring.
*
* \return string containing the substring.
*/
std::string findSubstringContent(const std::string& whole_string,
const std::string& substring_start,
const std::string& substring_end);
private:
/**
* \brief A method for making a HTTP request.
*
* \param method for the request's method.
* \param uri for the URI (path and query).
* \param content for the request's content.
*
* \return POCOResult containing the result.
*/
POCOResult makeHTTPRequest(const std::string& method,
const std::string& uri = "/",
const std::string& content = "");
/**
* \brief A method for sending and receiving HTTP messages.
*
* \param result for the result.
* \param request for the HTTP request.
* \param response for the HTTP response.
* \param request_content for the request's content.
*/
void sendAndReceive(POCOResult& result,
Poco::Net::HTTPRequest& request,
Poco::Net::HTTPResponse& response,
const std::string& request_content);
/**
* \brief A method for performing authentication.
*
* \param result for the result.
* \param request for the HTTP request.
* \param response for the HTTP response.
* \param request_content for the request's content.
*/
void authenticate(POCOResult& result,
Poco::Net::HTTPRequest& request,
Poco::Net::HTTPResponse& response,
const std::string& request_content);
/**
* \brief A method for extracting and storing information from a cookie string.
*
* \param cookie_string for the cookie string.
*/
void extractAndStoreCookie(const std::string& cookie_string);
/**
* \brief Static constant for the default HTTP communication timeout [microseconds].
*/
static const Poco::Int64 DEFAULT_HTTP_TIMEOUT = 400e3;
/**
* \brief Static constant for the socket's buffer size.
*/
static const size_t BUFFER_SIZE = 1024;
/**
* \brief A mutex for protecting the clients's HTTP resources.
*/
Poco::Mutex http_mutex_;
/**
* \brief A mutex for protecting the client's WebSocket pointer.
*
* This mutex must be held while setting or invalidating the p_websocket_ member.
* Note that the websocket_use_mutex_ must also be held while invalidating the pointer,
* since someone may be using it otherwise.
*
* If acquiring both websocket_connect_mutex_ and websocket_use_mutex_,
* the connect mutex must be acquired first.
*/
Poco::Mutex websocket_connect_mutex_;
/**
* \brief A mutex for protecting the client's WebSocket resources.
*
* This mutex must be held while using the p_websocket_ member,
* and while invalidating the pointer.
*
* If acquiring both websocket_connect_mutex_ and websocket_use_mutex_,
* the connect mutex must be acquired first.
*/
Poco::Mutex websocket_use_mutex_;
/**
* \brief A HTTP client session.
*/
Poco::Net::HTTPClientSession http_client_session_;
/**
* \brief HTTP credentials for the remote server's access authentication process.
*/
Poco::Net::HTTPCredentials http_credentials_;
/**
* \brief A container for cookies received from a server.
*/
Poco::Net::NameValueCollection cookies_;
/**
* \brief A buffer for a WebSocket.
*/
char websocket_buffer_[BUFFER_SIZE];
/**
* \brief A pointer to a WebSocket client.
*/
Poco::SharedPtr<Poco::Net::WebSocket> p_websocket_;
};
} // end namespace rws
} // end namespace abb
#endif