TDME2 1.9.121
HTTPDownloadClient.h
Go to the documentation of this file.
1#pragma once
2
3#include <fstream>
4#include <vector>
5
6#include <tdme/tdme.h>
12
13using std::ifstream;
14using std::string;
15using std::vector;
16
21
22/**
23 * HTTP download client
24 * @author Andreas Drewke
25 */
27
28private:
29 string url;
30 string file;
31 string username;
32 string password;
33
34 int16_t httpStatusCode { -1 };
35 vector<string> httpHeader;
36
37 Thread* downloadThread { nullptr };
39 bool haveHeaders { false };
40 bool haveContentSize { false };
41 uint64_t headerSize { 0LL };
42 uint64_t contentSize { 0LL };
43 volatile bool finished { true };
44 volatile float progress { 0.0f };
45
46 /**
47 * Create HTTP request headers
48 * @param hostName host name
49 * @param relativeUrl url relative to server root
50 */
51 string createHTTPRequestHeaders(const string& hostName, const string& relativeUrl);
52
53 /**
54 * Parse HTTP response headers
55 * @param rawResponse raw response
56 * @param httpStatusCode HTTP status code
57 * @param httpHeader HTTP header
58 * @return http header size or 0 if not yet completely submitted
59 */
60 uint64_t parseHTTPResponseHeaders(ifstream& rawResponse, int16_t& httpStatusCode, vector<string>& httpHeader);
61
62public:
63
64 static const constexpr int16_t HTTP_STATUSCODE_OK { 200 };
65
66 /**
67 * Public constructor
68 */
70
71 /**
72 * Get username
73 * @return username
74 */
75 inline const string& getUsername() {
76 return username;
77 }
78
79 /**
80 * Set username
81 * @param username user name
82 */
83 inline void setUsername(const string& username) {
84 this->username = username;
85 }
86
87 /**
88 * Get password
89 * @return password
90 */
91 inline const string& getPassword() {
92 return password;
93 }
94
95 /**
96 * Set password
97 * @param password password
98 */
99 inline void setPassword(const string& password) {
100 this->password = password;
101 }
102
103 /**
104 * Get URL
105 * @return URL
106 */
107 inline const string& getURL() {
108 return url;
109 }
110
111 /**
112 * Set URL
113 * @param url URL
114 */
115 inline void setURL(const string& url) {
116 this->url = url;
117 }
118
119 /**
120 * Get file to download to
121 * @return file
122 */
123 inline const string& getFile() {
124 return file;
125 }
126
127 /**
128 * Set file to download to
129 * @param file file
130 */
131 inline void setFile(const string& file) {
132 this->file = file;
133 }
134
135 /**
136 * Reset this HTTP client
137 */
138 void reset();
139
140 /**
141 * Starts the HTTP download to file
142 */
143 void start();
144
145 /**
146 * @return HTTP status code
147 */
148 inline int16_t getStatusCode() {
149 return httpStatusCode;
150 }
151
152 /**
153 * @return HTTP response headers
154 */
155 inline const vector<string>& getResponseHeaders() {
156 return httpHeader;
157 }
158
159 inline bool isFinished() {
160 return finished;
161 }
162
163 /**
164 * @return progress
165 */
166 inline float getProgress() {
167 return progress;
168 }
169
170 /**
171 * Cancel a started download
172 */
173 void cancel();
174
175 /**
176 * Wait until underlying thread has finished
177 */
178 void join();
179
180};
const string & getFile()
Get file to download to.
void setPassword(const string &password)
Set password.
static const constexpr int16_t HTTP_STATUSCODE_OK
void start()
Starts the HTTP download to file.
void join()
Wait until underlying thread has finished.
void setUsername(const string &username)
Set username.
void setFile(const string &file)
Set file to download to.
uint64_t parseHTTPResponseHeaders(ifstream &rawResponse, int16_t &httpStatusCode, vector< string > &httpHeader)
Parse HTTP response headers.
string createHTTPRequestHeaders(const string &hostName, const string &relativeUrl)
Create HTTP request headers.
Base exception class for network exceptions.
Mutex implementation.
Definition: Mutex.h:27
Base class for threads.
Definition: Thread.h:26