This repository was archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp_request_base.h
More file actions
352 lines (284 loc) · 10.2 KB
/
Copy pathhttp_request_base.h
File metadata and controls
352 lines (284 loc) · 10.2 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
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
/*
* PackageLicenseDeclared: Apache-2.0
* Copyright (c) 2017 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _HTTP_REQUEST_BASE_H_
#define _HTTP_REQUEST_BASE_H_
#include <map>
#include <string>
#include <vector>
#include "mbed.h"
#include "http_parser.h"
#include "http_parsed_url.h"
#include "http_request_builder.h"
#include "http_request_parser.h"
#include "http_response.h"
#include "NetworkInterface.h"
#include "netsocket/Socket.h"
/**
* @todo:
* - Userinfo parameter is not handled
*/
#ifndef HTTP_RECEIVE_BUFFER_SIZE
#define HTTP_RECEIVE_BUFFER_SIZE 8 * 1024
#endif
class HttpRequest;
class HttpsRequest;
/**
* \brief HttpRequest implements the logic for interacting with HTTP servers.
*/
class HttpRequestBase {
friend class HttpRequest;
friend class HttpsRequest;
public:
HttpRequestBase(Socket *socket, Callback<void(const char *at, uint32_t length)> bodyCallback)
: _socket(socket), _body_callback(bodyCallback), _request_buffer(NULL), _request_buffer_ix(0)
{}
/**
* HttpRequest Constructor
*/
virtual ~HttpRequestBase() {
// should response be owned by us? Or should user free it?
// maybe implement copy constructor on response...
if (_response) {
delete _response;
}
if (_parsed_url) {
delete _parsed_url;
}
if (_request_builder) {
delete _request_builder;
}
if (_socket && _we_created_socket) {
delete _socket;
}
}
/**
* Execute the request and receive the response.
* This adds a Content-Length header to the request (when body_size is set), and sends the data to the server.
* @param body Pointer to the body to be sent
* @param body_size Size of the body to be sent
* @return An HttpResponse pointer on success, or NULL on failure.
* See get_error() for the error code.
*/
HttpResponse* send(const void* body = NULL, nsapi_size_t body_size = 0) {
nsapi_size_or_error_t ret = connect_socket();
if (ret != NSAPI_ERROR_OK) {
_error = ret;
return NULL;
}
_request_buffer_ix = 0;
uint32_t request_size = 0;
char* request = _request_builder->build(body, body_size, request_size);
ret = send_buffer(request, request_size);
free(request);
if (ret < 0) {
_error = ret;
return NULL;
}
return create_http_response();
}
/**
* Execute the request and receive the response.
* This sends the request through chunked-encoding.
* @param body_cb Callback which generates the next chunk of the request
* @return An HttpResponse pointer on success, or NULL on failure.
* See get_error() for the error code.
*/
HttpResponse* send(Callback<const void*(uint32_t*)> body_cb) {
nsapi_error_t ret;
if ((ret = connect_socket()) != NSAPI_ERROR_OK) {
_error = ret;
return NULL;
}
_request_buffer_ix = 0;
set_header("Transfer-Encoding", "chunked");
uint32_t request_size = 0;
char* request = _request_builder->build(NULL, 0, request_size);
// first... send this request headers without the body
nsapi_size_or_error_t total_send_count = send_buffer(request, request_size);
if (total_send_count < 0) {
free(request);
_error = total_send_count;
return NULL;
}
// ok... now it's time to start sending chunks...
while (1) {
uint32_t size;
const void *buffer = body_cb(&size);
if (size == 0) break;
// so... size in HEX, \r\n, data, \r\n again
char size_buff[10]; // if sending length of more than 8 digits, you have another problem on a microcontroller...
int size_buff_size = sprintf(size_buff, "%X\r\n", static_cast<size_t>(size));
if ((total_send_count = send_buffer(size_buff, static_cast<uint32_t>(size_buff_size))) < 0) {
free(request);
_error = total_send_count;
return NULL;
}
// now send the normal buffer... and then \r\n at the end
total_send_count = send_buffer((char*)buffer, size);
if (total_send_count < 0) {
free(request);
_error = total_send_count;
return NULL;
}
// and... \r\n
const char* rn = "\r\n";
if ((total_send_count = send_buffer((char*)rn, 2)) < 0) {
free(request);
_error = total_send_count;
return NULL;
}
}
// finalize...?
const char* fin = "0\r\n\r\n";
if ((total_send_count = send_buffer((char*)fin, strlen(fin))) < 0) {
free(request);
_error = total_send_count;
return NULL;
}
free(request);
return create_http_response();
}
/**
* Set a header for the request.
*
* The 'Host', 'Content-Length', and (optionally) 'Transfer-Encoding: chunked'
* headers are set automatically.
* Setting the same header twice will overwrite the previous entry.
*
* @param key Header key
* @param value Header value
*/
void set_header(string key, string value) {
_request_builder->set_header(key, value);
}
/**
* Get the error code.
*
* When send() fails, this error is set.
*/
nsapi_error_t get_error() {
return _error;
}
/**
* Set the request log buffer, all bytes that are sent for this request are logged here.
* If the buffer would overflow logging is stopped.
*
* @param buffer Pointer to a buffer to store the data in
* @param buffer_size Size of the buffer
*/
void set_request_log_buffer(uint8_t *buffer, size_t buffer_size) {
_request_buffer = buffer;
_request_buffer_size = buffer_size;
_request_buffer_ix = 0;
}
/**
* Get the number of bytes written to the request log buffer, since the last request.
* If no request was sent, or if the request log buffer is NULL, then this returns 0.
*/
size_t get_request_log_buffer_length() {
return _request_buffer_ix;
}
protected:
virtual nsapi_error_t connect_socket(char *host, uint16_t port) = 0;
private:
nsapi_error_t connect_socket( ) {
if (_response != NULL) {
// already executed this response
return -2100; // @todo, make a lookup table with errors
}
if (_we_created_socket) {
nsapi_error_t connection_result = connect_socket(_parsed_url->host(), _parsed_url->port());
if (connection_result != NSAPI_ERROR_OK) {
return connection_result;
}
}
return NSAPI_ERROR_OK;
}
nsapi_size_or_error_t send_buffer(char* buffer, uint32_t buffer_size) {
nsapi_size_or_error_t total_send_count = 0;
while (total_send_count < buffer_size) {
// get a slice of the buffer
char *buffer_slice = buffer + total_send_count;
uint32_t buffer_slice_size = buffer_size - total_send_count;
// if request buffer was set, copy it there
if (_request_buffer != NULL && _request_buffer_ix + buffer_slice_size < _request_buffer_size) {
memcpy(_request_buffer + _request_buffer_ix, buffer_slice, buffer_slice_size);
_request_buffer_ix += buffer_slice_size;
}
nsapi_size_or_error_t send_result = _socket->send(buffer_slice, buffer_slice_size);
if (send_result < 0) {
total_send_count = send_result;
break;
}
if (send_result == 0) {
break;
}
total_send_count += send_result;
}
return total_send_count;
}
HttpResponse* create_http_response() {
// Create a response object
_response = new HttpResponse();
// And a response parser
HttpParser parser(_response, HTTP_RESPONSE, _body_callback);
// Set up a receive buffer (on the heap)
uint8_t* recv_buffer = (uint8_t*)malloc(HTTP_RECEIVE_BUFFER_SIZE);
// Socket::recv is called until we don't have any data anymore
nsapi_size_or_error_t recv_ret;
while ((recv_ret = _socket->recv(recv_buffer, HTTP_RECEIVE_BUFFER_SIZE)) > 0) {
// Pass the chunk into the http_parser
uint32_t nparsed = parser.execute((const char*)recv_buffer, recv_ret);
if (nparsed != recv_ret) {
// printf("Parsing failed... parsed %d bytes, received %d bytes\n", nparsed, recv_ret);
_error = -2101;
free(recv_buffer);
return NULL;
}
if (_response->is_message_complete()) {
break;
}
}
// error?
if (recv_ret < 0) {
_error = recv_ret;
free(recv_buffer);
return NULL;
}
// When done, call parser.finish()
parser.finish();
// Free the receive buffer
free(recv_buffer);
if (_we_created_socket) {
// Close the socket
_socket->close();
}
return _response;
}
private:
Socket* _socket;
Callback<void(const char *at, uint32_t length)> _body_callback;
ParsedUrl* _parsed_url;
HttpRequestBuilder* _request_builder;
HttpResponse* _response;
bool _we_created_socket;
nsapi_error_t _error;
uint8_t *_request_buffer;
size_t _request_buffer_size;
size_t _request_buffer_ix;
};
#endif // _HTTP_REQUEST_BASE_H_