Commit bdccd686 authored by captainwong's avatar captainwong

update qt.HttpDlg; fix jinfo.bios_serial

parent c9a1ab5a
...@@ -11,6 +11,24 @@ using namespace jlib::qt; ...@@ -11,6 +11,24 @@ using namespace jlib::qt;
//namespace HBVideoPlatform { //namespace HBVideoPlatform {
//namespace common { //namespace common {
static QString methodToString(HttpDlg::Method method)
{
switch (method) {
case HttpDlg::Method::Get: return "GET";
break;
case HttpDlg::Method::Post:return "POST";
break;
case HttpDlg::Method::Put:return "PUT";
break;
case HttpDlg::Method::Patch:return "PATCH";
break;
case HttpDlg::Method::Delete:return "DELETE";
break;
default:return "";
break;
}
}
HttpDlg::HttpDlg(QWidget *parent, int timeout, int retries, HttpDlgGif gif) HttpDlg::HttpDlg(QWidget *parent, int timeout, int retries, HttpDlgGif gif)
: QDialog(parent) : QDialog(parent)
, timeout(timeout) , timeout(timeout)
...@@ -150,6 +168,39 @@ void HttpDlg::deleteResource(const QNetworkRequest& request) ...@@ -150,6 +168,39 @@ void HttpDlg::deleteResource(const QNetworkRequest& request)
run(); run();
} }
void HttpDlg::get_img(const QUrl& url)
{
if (connection_) {
disconnect(connection_);
}
connection_ = connect(mgr, &QNetworkAccessManager::finished, this, &HttpDlg::onImgFinished);
QNetworkRequest request(url);
reply_ = mgr->get(request);
auto p = parentWidget();
if (p) {
p->setEnabled(false);
}
auto path = getGifPath();
auto movie = new QMovie(path);
label_->setMovie(movie);
movie->start();
time_out_sec_ = timeout;
retry_counter = 0;
timer_.start();
timer_id_ = startTimer(1000);
QDialog::exec();
if (p) {
p->setEnabled(true);
}
movie->deleteLater();
}
QString HttpDlg::getGifPath() QString HttpDlg::getGifPath()
{ {
switch (gif_) { switch (gif_) {
...@@ -198,12 +249,13 @@ void HttpDlg::timerEvent(QTimerEvent * e) ...@@ -198,12 +249,13 @@ void HttpDlg::timerEvent(QTimerEvent * e)
reply_->deleteLater(); reply_->deleteLater();
} }
MYQDEBUG << "retry_counter =" << retry_counter;
if (retry_counter <= 0) { if (retry_counter <= 0) {
result_ = HttpDlgErrorCode::Timeout; result_ = HttpDlgErrorCode::Timeout;
QDialog::reject(); QDialog::reject();
} else { } else {
retry_counter--; retry_counter--;
MYQDEBUG << "retry_counter =" << retry_counter;
connection_ = connect(mgr, &QNetworkAccessManager::finished, this, &HttpDlg::onFinished); connection_ = connect(mgr, &QNetworkAccessManager::finished, this, &HttpDlg::onFinished);
switch (lastMethod_) { switch (lastMethod_) {
case HttpDlg::Method::Get: case HttpDlg::Method::Get:
...@@ -231,6 +283,49 @@ void HttpDlg::timerEvent(QTimerEvent * e) ...@@ -231,6 +283,49 @@ void HttpDlg::timerEvent(QTimerEvent * e)
} }
} }
void HttpDlg::onImgFinished(QNetworkReply* reply)
{
do {
if (!reply) {
MYQCRITICAL << "no reply";
result_ = HttpDlgErrorCode::Timeout;
break;
}
if (QNetworkReply::NoError != reply->error()) {
httpReason_ = reply->errorString();
MYQCRITICAL << httpReason_;
result_ = HttpDlgErrorCode::Unknown;
//break;
}
QVariant statusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute);
if (!statusCode.isValid()) {
MYQDEBUG << "statusCode is not valid";
result_ = HttpDlgErrorCode::HttpStatusNeq200;
break;
}
httpStatusCode_ = statusCode.toInt();
if (httpStatusCode_ != 200) {
result_ = HttpDlgErrorCode::HttpStatusNeq200;
httpReason_ = reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toString();
MYQCRITICAL << httpStatusCode_ << httpReason_;
//break;
}
MYQDEBUG << reply->url() << "reply " << httpStatusCode_;
pixReply_.loadFromData(reply->readAll());
} while (false);
killTimer(timer_id_);
QDialog::accept();
reply->deleteLater();
}
void HttpDlg::onFinished(QNetworkReply * reply) void HttpDlg::onFinished(QNetworkReply * reply)
{ {
do { do {
...@@ -274,7 +369,7 @@ void HttpDlg::onFinished(QNetworkReply * reply) ...@@ -274,7 +369,7 @@ void HttpDlg::onFinished(QNetworkReply * reply)
} }
auto out = QString::fromUtf8(root_.toStyledString().data()); auto out = QString::fromUtf8(root_.toStyledString().data());
MYQDEBUG << reply->url() << "reply:\n" << httpStatusCode_ << out; MYQDEBUG << methodToString(lastMethod_) << reply->url() << "reply " << httpStatusCode_ << "\n" << out;
} while (false); } while (false);
......
...@@ -44,6 +44,7 @@ public: ...@@ -44,6 +44,7 @@ public:
void put(const QNetworkRequest& request, const QByteArray& data = {}); void put(const QNetworkRequest& request, const QByteArray& data = {});
void patch(const QNetworkRequest& request, const QByteArray& data = {}); void patch(const QNetworkRequest& request, const QByteArray& data = {});
void deleteResource(const QNetworkRequest& request); void deleteResource(const QNetworkRequest& request);
void get_img(const QUrl& url);
std::error_code get_result() const { return result_; } std::error_code get_result() const { return result_; }
...@@ -78,6 +79,7 @@ public: ...@@ -78,6 +79,7 @@ public:
int getHttpStatusCode() const { return httpStatusCode_; } int getHttpStatusCode() const { return httpStatusCode_; }
QString getHttpReason() const { return httpReason_; } QString getHttpReason() const { return httpReason_; }
QPixmap getPixmap() const { return pixReply_; }
#define break_if_parse_int_value_failed(json, name, default_value) \ #define break_if_parse_int_value_failed(json, name, default_value) \
int name = default_value; \ int name = default_value; \
...@@ -100,6 +102,7 @@ protected: ...@@ -100,6 +102,7 @@ protected:
private slots: private slots:
void onFinished(QNetworkReply* reply); void onFinished(QNetworkReply* reply);
void onImgFinished(QNetworkReply* reply);
private: private:
std::error_code result_ = {}; std::error_code result_ = {};
...@@ -115,6 +118,8 @@ private: ...@@ -115,6 +118,8 @@ private:
QNetworkRequest lastRequest_{}; QNetworkRequest lastRequest_{};
Method lastMethod_ = Method::Post; Method lastMethod_ = Method::Post;
QByteArray lastData_{}; QByteArray lastData_{};
QPixmap pixReply_{};
QNetworkReply* reply_{}; QNetworkReply* reply_{};
QMetaObject::Connection connection_ = {}; QMetaObject::Connection connection_ = {};
......
...@@ -49,6 +49,7 @@ std::string bios_serial() ...@@ -49,6 +49,7 @@ std::string bios_serial()
wmi::Result result; wmi::Result result;
if (wmi::WmiBase::simpleSelect({ L"SerialNumber" }, L"Win32_BIOS", L"", result) && result.size() == 1) { if (wmi::WmiBase::simpleSelect({ L"SerialNumber" }, L"Win32_BIOS", L"", result) && result.size() == 1) {
auto serial = result[0][L"SerialNumber"]; auto serial = result[0][L"SerialNumber"];
return utf16_to_mbcs(serial);
} }
return std::string("System Serial Number"); return std::string("System Serial Number");
} }
......
...@@ -352,9 +352,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dynamiclib", "dynamiclib", ...@@ -352,9 +352,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "dynamiclib", "dynamiclib",
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "info", "info", "{D2FBAC12-7C05-4632-9A99-3E86147322CB}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "info", "info", "{D2FBAC12-7C05-4632-9A99-3E86147322CB}"
ProjectSection(SolutionItems) = preProject ProjectSection(SolutionItems) = preProject
..\jlib\win32\info\baseboard.cpp = ..\jlib\win32\info\baseboard.cpp
..\jlib\win32\info\baseboard.h = ..\jlib\win32\info\baseboard.h
..\jlib\win32\info\cpu.cpp = ..\jlib\win32\info\cpu.cpp ..\jlib\win32\info\cpu.cpp = ..\jlib\win32\info\cpu.cpp
..\jlib\win32\info\cpu.h = ..\jlib\win32\info\cpu.h ..\jlib\win32\info\cpu.h = ..\jlib\win32\info\cpu.h
..\jlib\win32\info\def.h = ..\jlib\win32\info\def.h ..\jlib\win32\info\def.h = ..\jlib\win32\info\def.h
..\jlib\win32\info\diskdrive.cpp = ..\jlib\win32\info\diskdrive.cpp
..\jlib\win32\info\diskdrive.h = ..\jlib\win32\info\diskdrive.h
..\jlib\win32\info\gpu.cpp = ..\jlib\win32\info\gpu.cpp ..\jlib\win32\info\gpu.cpp = ..\jlib\win32\info\gpu.cpp
..\jlib\win32\info\gpu.h = ..\jlib\win32\info\gpu.h ..\jlib\win32\info\gpu.h = ..\jlib\win32\info\gpu.h
..\jlib\win32\info\logicaldrive.cpp = ..\jlib\win32\info\logicaldrive.cpp ..\jlib\win32\info\logicaldrive.cpp = ..\jlib\win32\info\logicaldrive.cpp
......
...@@ -55,6 +55,7 @@ int main() ...@@ -55,6 +55,7 @@ int main()
jlib::human_readable_byte_count(disk.size, jlib::PositionalNotation::Decimal) << endl; jlib::human_readable_byte_count(disk.size, jlib::PositionalNotation::Decimal) << endl;
} }
cout << "bootable_disk_serial:\t" << diskdrive::bootable_disk_serial() << endl; cout << "bootable_disk_serial:\t" << diskdrive::bootable_disk_serial() << endl;
cout << "bootable_disk_serial_old:\t" << diskdrive::bootable_disk_serial_old() << endl;
cout << "\nlogicaldrive\ndevice_id\tdrive_type\tfree_space\tsize\tpercent\tvolume_name\n"; cout << "\nlogicaldrive\ndevice_id\tdrive_type\tfree_space\tsize\tpercent\tvolume_name\n";
for (auto&& drive : logicaldrive::logical_drives()) { for (auto&& drive : logicaldrive::logical_drives()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment