Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-http by
source/http_request_builder.h@21:fcd2bfd31a39, 2017-12-14 (annotated)
- Committer:
- Jan Jongboom
- Date:
- Thu Dec 14 16:19:22 2017 +0700
- Revision:
- 21:fcd2bfd31a39
- Parent:
- 10:b017c7d2cf23
Add port Host header if not 80/443
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Jan Jongboom |
0:910f5949759f | 1 | /* |
| Jan Jongboom |
0:910f5949759f | 2 | * PackageLicenseDeclared: Apache-2.0 |
| Jan Jongboom |
0:910f5949759f | 3 | * Copyright (c) 2017 ARM Limited |
| Jan Jongboom |
0:910f5949759f | 4 | * |
| Jan Jongboom |
0:910f5949759f | 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| Jan Jongboom |
0:910f5949759f | 6 | * you may not use this file except in compliance with the License. |
| Jan Jongboom |
0:910f5949759f | 7 | * You may obtain a copy of the License at |
| Jan Jongboom |
0:910f5949759f | 8 | * |
| Jan Jongboom |
0:910f5949759f | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| Jan Jongboom |
0:910f5949759f | 10 | * |
| Jan Jongboom |
0:910f5949759f | 11 | * Unless required by applicable law or agreed to in writing, software |
| Jan Jongboom |
0:910f5949759f | 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| Jan Jongboom |
0:910f5949759f | 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| Jan Jongboom |
0:910f5949759f | 14 | * See the License for the specific language governing permissions and |
| Jan Jongboom |
0:910f5949759f | 15 | * limitations under the License. |
| Jan Jongboom |
0:910f5949759f | 16 | */ |
| Jan Jongboom |
0:910f5949759f | 17 | |
| Jan Jongboom |
0:910f5949759f | 18 | #ifndef _MBED_HTTP_REQUEST_BUILDER_H_ |
| Jan Jongboom |
0:910f5949759f | 19 | #define _MBED_HTTP_REQUEST_BUILDER_H_ |
| Jan Jongboom |
0:910f5949759f | 20 | |
| Jan Jongboom |
0:910f5949759f | 21 | #include <string> |
| Jan Jongboom |
0:910f5949759f | 22 | #include <map> |
| Jan Jongboom |
0:910f5949759f | 23 | #include "http_parser.h" |
| Jan Jongboom |
0:910f5949759f | 24 | #include "http_parsed_url.h" |
| Jan Jongboom |
0:910f5949759f | 25 | |
| Jan Jongboom |
0:910f5949759f | 26 | class HttpRequestBuilder { |
| Jan Jongboom |
0:910f5949759f | 27 | public: |
| Jan Jongboom |
0:910f5949759f | 28 | HttpRequestBuilder(http_method a_method, ParsedUrl* a_parsed_url) |
| Jan Jongboom |
0:910f5949759f | 29 | : method(a_method), parsed_url(a_parsed_url) |
| Jan Jongboom |
0:910f5949759f | 30 | { |
| Jan Jongboom |
21:fcd2bfd31a39 | 31 | string host(parsed_url->host()); |
| Jan Jongboom |
21:fcd2bfd31a39 | 32 | |
| Jan Jongboom |
21:fcd2bfd31a39 | 33 | char port_str[10]; |
| Jan Jongboom |
21:fcd2bfd31a39 | 34 | sprintf(port_str, ":%d", parsed_url->port()); |
| Jan Jongboom |
21:fcd2bfd31a39 | 35 | |
| Jan Jongboom |
21:fcd2bfd31a39 | 36 | if (strcmp(parsed_url->schema(), "http") == 0 && parsed_url->port() != 80) { |
| Jan Jongboom |
21:fcd2bfd31a39 | 37 | host += string(port_str); |
| Jan Jongboom |
21:fcd2bfd31a39 | 38 | } |
| Jan Jongboom |
21:fcd2bfd31a39 | 39 | else if (strcmp(parsed_url->schema(), "https") == 0 && parsed_url->port() != 443) { |
| Jan Jongboom |
21:fcd2bfd31a39 | 40 | host += string(port_str); |
| Jan Jongboom |
21:fcd2bfd31a39 | 41 | } |
| Jan Jongboom |
21:fcd2bfd31a39 | 42 | |
| Jan Jongboom |
21:fcd2bfd31a39 | 43 | set_header("Host", host); |
| Jan Jongboom |
0:910f5949759f | 44 | } |
| Jan Jongboom |
0:910f5949759f | 45 | |
| Jan Jongboom |
0:910f5949759f | 46 | /** |
| Jan Jongboom |
0:910f5949759f | 47 | * Set a header for the request |
| Jan Jongboom |
0:910f5949759f | 48 | * If the key already exists, it will be overwritten... |
| Jan Jongboom |
0:910f5949759f | 49 | */ |
| Jan Jongboom |
0:910f5949759f | 50 | void set_header(string key, string value) { |
| Jan Jongboom |
0:910f5949759f | 51 | map<string, string>::iterator it = headers.find(key); |
| Jan Jongboom |
0:910f5949759f | 52 | |
| Jan Jongboom |
0:910f5949759f | 53 | if (it != headers.end()) { |
| Jan Jongboom |
0:910f5949759f | 54 | it->second = value; |
| Jan Jongboom |
0:910f5949759f | 55 | } |
| Jan Jongboom |
0:910f5949759f | 56 | else { |
| Jan Jongboom |
0:910f5949759f | 57 | headers.insert(headers.end(), pair<string, string>(key, value)); |
| Jan Jongboom |
0:910f5949759f | 58 | } |
| Jan Jongboom |
0:910f5949759f | 59 | } |
| Jan Jongboom |
0:910f5949759f | 60 | |
| Jan Jongboom |
10:b017c7d2cf23 | 61 | char* build(const void* body, size_t body_size, size_t &size) { |
| Jan Jongboom |
0:910f5949759f | 62 | const char* method_str = http_method_str(method); |
| Jan Jongboom |
0:910f5949759f | 63 | |
| Jan Jongboom |
10:b017c7d2cf23 | 64 | if (method == HTTP_POST || method == HTTP_PUT || method == HTTP_DELETE || body_size > 0) { |
| Jan Jongboom |
0:910f5949759f | 65 | char buffer[10]; |
| Jan Jongboom |
0:910f5949759f | 66 | snprintf(buffer, 10, "%d", body_size); |
| Jan Jongboom |
0:910f5949759f | 67 | set_header("Content-Length", string(buffer)); |
| Jan Jongboom |
0:910f5949759f | 68 | } |
| Jan Jongboom |
0:910f5949759f | 69 | |
| Jan Jongboom |
10:b017c7d2cf23 | 70 | size = 0; |
| Jan Jongboom |
0:910f5949759f | 71 | |
| Jan Jongboom |
0:910f5949759f | 72 | // first line is METHOD PATH+QUERY HTTP/1.1\r\n |
| Jan Jongboom |
10:b017c7d2cf23 | 73 | size += strlen(method_str) + 1 + strlen(parsed_url->path()) + (strlen(parsed_url->query()) ? strlen(parsed_url->query()) + 1 : 0) + 1 + 8 + 2; |
| Jan Jongboom |
0:910f5949759f | 74 | |
| Jan Jongboom |
0:910f5949759f | 75 | // after that we'll do the headers |
| Jan Jongboom |
0:910f5949759f | 76 | typedef map<string, string>::iterator it_type; |
| Jan Jongboom |
0:910f5949759f | 77 | for(it_type it = headers.begin(); it != headers.end(); it++) { |
| Jan Jongboom |
0:910f5949759f | 78 | // line is KEY: VALUE\r\n |
| Jan Jongboom |
0:910f5949759f | 79 | size += it->first.length() + 1 + 1 + it->second.length() + 2; |
| Jan Jongboom |
0:910f5949759f | 80 | } |
| Jan Jongboom |
0:910f5949759f | 81 | |
| Jan Jongboom |
0:910f5949759f | 82 | // then the body, first an extra newline |
| Jan Jongboom |
0:910f5949759f | 83 | size += 2; |
| Jan Jongboom |
0:910f5949759f | 84 | |
| Jan Jongboom |
0:910f5949759f | 85 | // body |
| Jan Jongboom |
0:910f5949759f | 86 | size += body_size; |
| Jan Jongboom |
0:910f5949759f | 87 | |
| Jan Jongboom |
0:910f5949759f | 88 | // extra newline |
| Jan Jongboom |
0:910f5949759f | 89 | size += 2; |
| Jan Jongboom |
0:910f5949759f | 90 | |
| Jan Jongboom |
0:910f5949759f | 91 | // Now let's print it |
| Jan Jongboom |
0:910f5949759f | 92 | char* req = (char*)calloc(size + 1, 1); |
| Jan Jongboom |
0:910f5949759f | 93 | char* originalReq = req; |
| Jan Jongboom |
0:910f5949759f | 94 | |
| Jan Jongboom |
10:b017c7d2cf23 | 95 | if (strlen(parsed_url->query())) { |
| Jan Jongboom |
10:b017c7d2cf23 | 96 | sprintf(req, "%s %s?%s HTTP/1.1\r\n", method_str, parsed_url->path(), parsed_url->query()); |
| Jan Jongboom |
10:b017c7d2cf23 | 97 | } else { |
| Jan Jongboom |
10:b017c7d2cf23 | 98 | sprintf(req, "%s %s%s HTTP/1.1\r\n", method_str, parsed_url->path(), parsed_url->query()); |
| Jan Jongboom |
7:2e3eedb9ca5c | 99 | } |
| Jan Jongboom |
10:b017c7d2cf23 | 100 | req += strlen(method_str) + 1 + strlen(parsed_url->path()) + (strlen(parsed_url->query()) ? strlen(parsed_url->query()) + 1 : 0) + 1 + 8 + 2; |
| Jan Jongboom |
0:910f5949759f | 101 | |
| Jan Jongboom |
0:910f5949759f | 102 | typedef map<string, string>::iterator it_type; |
| Jan Jongboom |
0:910f5949759f | 103 | for(it_type it = headers.begin(); it != headers.end(); it++) { |
| Jan Jongboom |
0:910f5949759f | 104 | // line is KEY: VALUE\r\n |
| Jan Jongboom |
0:910f5949759f | 105 | sprintf(req, "%s: %s\r\n", it->first.c_str(), it->second.c_str()); |
| Jan Jongboom |
0:910f5949759f | 106 | req += it->first.length() + 1 + 1 + it->second.length() + 2; |
| Jan Jongboom |
0:910f5949759f | 107 | } |
| Jan Jongboom |
0:910f5949759f | 108 | |
| Jan Jongboom |
0:910f5949759f | 109 | sprintf(req, "\r\n"); |
| Jan Jongboom |
0:910f5949759f | 110 | req += 2; |
| Jan Jongboom |
0:910f5949759f | 111 | |
| Jan Jongboom |
0:910f5949759f | 112 | if (body_size > 0) { |
| Jan Jongboom |
10:b017c7d2cf23 | 113 | memcpy(req, body, body_size); |
| Jan Jongboom |
0:910f5949759f | 114 | } |
| Jan Jongboom |
0:910f5949759f | 115 | req += body_size; |
| Jan Jongboom |
0:910f5949759f | 116 | |
| Jan Jongboom |
0:910f5949759f | 117 | sprintf(req, "\r\n"); |
| Jan Jongboom |
0:910f5949759f | 118 | req += 2; |
| Jan Jongboom |
0:910f5949759f | 119 | |
| Jan Jongboom |
0:910f5949759f | 120 | // Uncomment to debug... |
| Jan Jongboom |
0:910f5949759f | 121 | // printf("----- BEGIN REQUEST -----\n"); |
| Jan Jongboom |
0:910f5949759f | 122 | // printf("%s", originalReq); |
| Jan Jongboom |
0:910f5949759f | 123 | // printf("----- END REQUEST -----\n"); |
| Jan Jongboom |
0:910f5949759f | 124 | |
| Jan Jongboom |
0:910f5949759f | 125 | return originalReq; |
| Jan Jongboom |
0:910f5949759f | 126 | } |
| Jan Jongboom |
0:910f5949759f | 127 | |
| Jan Jongboom |
0:910f5949759f | 128 | private: |
| Jan Jongboom |
0:910f5949759f | 129 | http_method method; |
| Jan Jongboom |
0:910f5949759f | 130 | ParsedUrl* parsed_url; |
| Jan Jongboom |
0:910f5949759f | 131 | map<string, string> headers; |
| Jan Jongboom |
0:910f5949759f | 132 | }; |
| Jan Jongboom |
0:910f5949759f | 133 | |
| Jan Jongboom |
0:910f5949759f | 134 | #endif // _MBED_HTTP_REQUEST_BUILDER_H_ |
