Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
bdccd686
Commit
bdccd686
authored
Oct 20, 2021
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update qt.HttpDlg; fix jinfo.bios_serial
parent
c9a1ab5a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
108 additions
and
2 deletions
+108
-2
HttpDlg.cpp
jlib/qt/View/HttpDlg.cpp
+97
-2
HttpDlg.h
jlib/qt/View/HttpDlg.h
+5
-0
baseboard.cpp
jlib/win32/info/baseboard.cpp
+1
-0
test.sln
test/test.sln
+4
-0
test_jinfo.cpp
test/test_jinfo/test_jinfo.cpp
+1
-0
No files found.
jlib/qt/View/HttpDlg.cpp
View file @
bdccd686
...
@@ -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
);
...
...
jlib/qt/View/HttpDlg.h
View file @
bdccd686
...
@@ -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_
=
{};
...
...
jlib/win32/info/baseboard.cpp
View file @
bdccd686
...
@@ -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"
);
}
}
...
...
test/test.sln
View file @
bdccd686
...
@@ -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
...
...
test/test_jinfo/test_jinfo.cpp
View file @
bdccd686
...
@@ -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
<<
"
\n
logicaldrive
\n
device_id
\t
drive_type
\t
free_space
\t
size
\t
percent
\t
volume_name
\n
"
;
cout
<<
"
\n
logicaldrive
\n
device_id
\t
drive_type
\t
free_space
\t
size
\t
percent
\t
volume_name
\n
"
;
for
(
auto
&&
drive
:
logicaldrive
::
logical_drives
())
{
for
(
auto
&&
drive
:
logicaldrive
::
logical_drives
())
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment