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
39c31029
Commit
39c31029
authored
Feb 23, 2023
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix curl wrapper; fix jinfo bootable disk serial
parent
07a70e72
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
6 deletions
+14
-6
curl_wrapper.h
jlib/util/curl_wrapper.h
+1
-1
MyWSAError.h
jlib/win32/MyWSAError.h
+2
-2
diskdrive.cpp
jlib/win32/info/diskdrive.cpp
+7
-2
test.sln
test/test.sln
+3
-0
test_curl_wrapper.cpp
test/test_curl_wrapper/test_curl_wrapper.cpp
+1
-1
No files found.
jlib/util/curl_wrapper.h
View file @
39c31029
...
...
@@ -8,7 +8,7 @@
*/
#include <curl.h>
#include <curl
/curl
.h>
#include <string>
#include <initializer_list>
#include <memory>
...
...
jlib/win32/MyWSAError.h
View file @
39c31029
#pragma once
#include "../utf8.h"
#include <WinSock2.h>
#include "UnicodeTool.h"
namespace
jlib
{
...
...
@@ -68,7 +68,7 @@ inline const wchar_t* FormatWSAError(int errornumber)
inline
const
char
*
FormatWSAErrorA
(
int
errornumber
)
{
return
utf
8
::
w2a
(
FormatWSAError
(
errornumber
)).
c_str
();
return
utf
16_to_mbcs
(
FormatWSAError
(
errornumber
)).
c_str
();
}
}
...
...
jlib/win32/info/diskdrive.cpp
View file @
39c31029
...
...
@@ -40,9 +40,14 @@ std::vector<DiskDrive> disk_drives()
std
::
string
bootable_disk_serial
()
{
wmi
::
Result
result
;
if
(
wmi
::
WmiBase
::
simpleSelect
({
L"SerialNumber"
,
},
L"Win32_DiskDrive"
,
L"Where Index=0"
,
result
)
&&
result
.
size
()
==
1
)
{
return
utf16_to_mbcs
(
result
[
0
][
L"SerialNumber"
]);
if
(
wmi
::
WmiBase
::
simpleSelect
({
L"DiskIndex"
,
},
L"Win32_DiskPartition"
,
L"Where BootPartition=True"
,
result
)
&&
result
.
size
()
==
1
)
{
auto
index
=
result
[
0
][
L"DiskIndex"
];
result
.
clear
();
if
(
wmi
::
WmiBase
::
simpleSelect
({
L"SerialNumber"
,
},
L"Win32_DiskDrive"
,
L"Where Index="
+
index
,
result
)
&&
result
.
size
()
==
1
)
{
return
utf16_to_mbcs
(
result
[
0
][
L"SerialNumber"
]);
}
}
auto
drives
=
disk_drives
();
if
(
!
drives
.
empty
())
{
...
...
test/test.sln
View file @
39c31029
...
...
@@ -376,6 +376,9 @@ EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_jinfo", "test_jinfo\test_jinfo.vcxproj", "{0E83FBE2-4696-41AD-9A5F-55B1401AB77C}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libjinfo", "libjinfo\libjinfo.vcxproj", "{441E6793-7CDA-4D51-81BD-7A38520F1C1D}"
ProjectSection(ProjectDependencies) = postProject
{7B505B49-5584-4CF7-A2BB-65CC84303B33} = {7B505B49-5584-4CF7-A2BB-65CC84303B33}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libjinfomt", "libjinfomt\libjinfomt.vcxproj", "{E8551DB0-274F-493A-88AF-7383E47F49FA}"
EndProject
...
...
test/test_curl_wrapper/test_curl_wrapper.cpp
View file @
39c31029
...
...
@@ -40,7 +40,7 @@ int main()
"ver": "1.0"
})"
;
auto
url
=
"1
92.168.1.168:10086
"
;
auto
url
=
"1
27.0.0.1:8000
"
;
curl
.
postJson
(
url
,
json
);
printf
(
"HTTP %ld
\n
"
,
curl
.
lastHttpCode
());
printf
(
"error %d
\n
"
,
curl
.
lastError
());
...
...
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