51HTTPDownloadClient::HTTPDownloadClient(): downloadThreadMutex(
"downloadthread-mutex") {
56 string(
"GET " + relativeUrl +
" HTTP/1.1\r\n") +
57 string(
"User-Agent: tdme2-httpdownloadclient\r\n") +
58 string(
"Host: " + hostName +
"\r\n") +
59 string(
"Connection: close\r\n");
63 request+=
"Authorization: Basic " + base64Pass +
"\r\n";
74 uint64_t returnHeaderSize = 0;
77 while (rawResponse.eof() ==
false) {
78 rawResponse.get(currentChar);
80 if (lastChar ==
'\r' && currentChar ==
'\n') {
81 if (line.size() != 0) {
84 if (line.size() == 0) {
90 if (currentChar !=
'\r' && currentChar !=
'\n') {
93 lastChar = currentChar;
105 return returnHeaderSize;
122 class DownloadThread:
public Thread {
131 if (StringTools::startsWith(downloadClient->
url,
"http://") ==
false)
throw HTTPClientException(
"Invalid protocol");
132 auto relativeUrl = StringTools::substring(downloadClient->
url,
string(
"http://").size());
134 auto slashIdx = relativeUrl.find(
'/');
135 auto hostName = relativeUrl;
136 if (slashIdx != -1) hostName = StringTools::substring(relativeUrl, 0, slashIdx);
137 relativeUrl = StringTools::substring(relativeUrl, hostName.size());
139 Console::println(
"HTTPDownloadClient::execute(): Hostname: " + hostName);
140 Console::println(
"HTTPDownloadClient::execute(): RelativeUrl: " + relativeUrl);
141 Console::print(
"HTTPDownloadClient::execute(): Resolving name to IP: " + hostName +
": ");
142 auto ip = Network::getIpByHostName(hostName);
143 if (ip.size() == 0) {
144 Console::println(
"HTTPDownloadClient::execute(): Failed");
147 Console::println(ip);
150 TCPSocket::create(socket, TCPSocket::determineIpVersion(ip));
153 socket.
write((
void*)request.data(), request.length());
157 ofstream ofs((downloadClient->
file +
".download").c_str(), ofstream::binary);
158 if (ofs.is_open() ==
false) {
159 throw HTTPClientException(
"Unable to open file for writing(" + to_string(errno) +
"): " + (downloadClient->
file +
".download"));
163 char rawResponseBuf[16384];
164 auto rawResponseBytesRead = 0;
165 uint64_t bytesRead = 0;
167 for (;isStopRequested() ==
false;) {
168 auto rawResponseBytesRead = socket.
read(rawResponseBuf,
sizeof(rawResponseBuf));
169 ofs.write(rawResponseBuf, rawResponseBytesRead);
174 ifstream ifs((downloadClient->
file +
".download").c_str(), ofstream::binary);
175 if (ifs.is_open() ==
false) {
176 throw HTTPClientException(
"Unable to open file for reading(" + to_string(errno) +
"): " + (downloadClient->
file +
".download"));
182 for (
auto header: downloadClient->
httpHeader) {
183 if (StringTools::startsWith(header,
"Content-Length: ") ==
true) {
185 downloadClient->
contentSize = Integer::parse(StringTools::substring(header,
string(
"Content-Length: ").size()));
191 bytesRead+= rawResponseBytesRead;
205 if (downloadClient->
httpStatusCode == 200 && isStopRequested() ==
false) {
207 ifstream ifs((downloadClient->
file +
".download").c_str(), ofstream::binary);
208 if (ifs.is_open() ==
false) {
209 throw HTTPClientException(
"Unable to open file for reading(" + to_string(errno) +
"): " + (downloadClient->
file +
".download"));
212 ifs.seekg(downloadClient->
headerSize, ios::beg);
213 auto ifsHeaderSize = ifs.tellg();
214 ifs.seekg(0, ios::end);
215 auto ifsSizeTotal = ifs.tellg();
216 auto ifsSize = ifsSizeTotal - ifsHeaderSize;
217 ifs.seekg(ifsHeaderSize, ios::beg);
220 ofstream ofs(downloadClient->
file.c_str(), ofstream::binary);
221 if (ofs.is_open() ==
false) {
222 throw HTTPClientException(
"Unable to open file for writing(" + to_string(errno) +
"): " + downloadClient->
file);
227 auto ifsBytesToRead = 0;
228 auto ifsBytesRead = 0;
230 auto ifsBytesToRead = Math::min(
static_cast<int64_t
>(ifsSize - ifsBytesRead),
sizeof(buf));
231 ifs.read(buf, ifsBytesToRead);
232 ofs.write(buf, ifsBytesToRead);
233 ifsBytesRead+= ifsBytesToRead;
234 }
while (ifsBytesRead < ifsSize);
244 FileSystem::getStandardFileSystem()->removeFile(
".", downloadClient->
file +
".download");
255 Console::println(
string(
"HTTPDownloadClient::execute(): performed HTTP request: FAILED: ") + exception.what());
void cancel()
Cancel a started download.
void start()
Starts the HTTP download to file.
void join()
Wait until underlying thread has finished.
Mutex downloadThreadMutex
vector< string > httpHeader
void reset()
Reset this HTTP client.
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.
File system singleton class.
Network socket closed exception.
void shutdown()
shuts socket down for reading and writing
Class representing a TCP socket.
size_t read(void *buf, const size_t bytes)
Reads up to "bytes" bytes from socket.
size_t write(void *buf, const size_t bytes)
Writes up to "bytes" bytes to socket.
void connect(const string &ip, const unsigned int port)
Connects a socket to given IP and port.
void unlock()
Unlocks this mutex.
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
void start()
Starts this objects thread.
void join()
Blocks caller thread until this thread has been terminated.
void stop()
Requests that this thread should be stopped.
Base64 encoding/decoding class.
const string & nextToken()
void tokenize(const string &str, const string &delimiters)
Tokenize.
std::exception Exception
Exception base class.