leocad/common/lc_http.cpp

92 lines
1.6 KiB
C++
Raw Normal View History

2018-04-14 20:44:39 +02:00
#include "lc_global.h"
#include "lc_http.h"
#ifdef Q_OS_WIN
#include <wininet.h>
lcHttpReply::lcHttpReply(QObject* Parent, const QString& URL)
: QThread(Parent)
{
mError = true;
mAbort = false;
mURL = URL;
}
void lcHttpReply::run()
{
HINTERNET Session = nullptr;
HINTERNET Request = nullptr;
2019-05-18 20:33:27 +02:00
static_assert(sizeof(wchar_t) == sizeof(QChar), "Character size mismatch");
2018-04-14 20:44:39 +02:00
Session = InternetOpen(L"LeoCAD", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
if (!Session)
return;
Request = InternetOpenUrl(Session, (WCHAR*)mURL.data(), NULL, 0, 0, 0);
if (!Request)
{
InternetCloseHandle(Session);
return;
}
for (;;)
{
char Buffer[1024];
DWORD BytesRead;
if (mAbort)
break;
if (!InternetReadFile(Request, Buffer, sizeof(Buffer), &BytesRead))
break;
if (BytesRead)
mBuffer.append(Buffer, BytesRead);
else
{
mError = false;
break;
}
Sleep(0);
}
InternetCloseHandle(Request);
InternetCloseHandle(Session);
}
lcHttpManager::lcHttpManager(QObject* Owner)
: QObject(Owner)
{
}
lcHttpReply* lcHttpManager::DownloadFile(const QString& Url)
{
lcHttpReply* Reply = new lcHttpReply(this, Url);
connect(Reply, &QThread::finished, [this, Reply] { emit DownloadFinished(Reply); });
Reply->start();
return Reply;
}
#else
lcHttpManager::lcHttpManager(QObject* Owner)
: QNetworkAccessManager(Owner)
{
connect(this, SIGNAL(finished(QNetworkReply*)), this, SLOT(Finished(QNetworkReply*)));
}
lcHttpReply* lcHttpManager::lcHttpManager::DownloadFile(const QString& Url)
{
2018-04-14 20:53:00 +02:00
return (lcHttpReply*)get(QNetworkRequest(QUrl(Url)));
2018-04-14 20:44:39 +02:00
}
void lcHttpManager::Finished(QNetworkReply* Reply)
{
2018-04-14 20:53:00 +02:00
emit DownloadFinished((lcHttpReply*)Reply);
2018-04-14 20:44:39 +02:00
}
#endif