Commit 39c31029 authored by captainwong's avatar captainwong

fix curl wrapper; fix jinfo bootable disk serial

parent 07a70e72
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
*/ */
#include <curl.h> #include <curl/curl.h>
#include <string> #include <string>
#include <initializer_list> #include <initializer_list>
#include <memory> #include <memory>
......
#pragma once #pragma once
#include "../utf8.h"
#include <WinSock2.h> #include <WinSock2.h>
#include "UnicodeTool.h"
namespace jlib namespace jlib
{ {
...@@ -68,7 +68,7 @@ inline const wchar_t* FormatWSAError(int errornumber) ...@@ -68,7 +68,7 @@ inline const wchar_t* FormatWSAError(int errornumber)
inline const char* FormatWSAErrorA(int errornumber) inline const char* FormatWSAErrorA(int errornumber)
{ {
return utf8::w2a(FormatWSAError(errornumber)).c_str(); return utf16_to_mbcs(FormatWSAError(errornumber)).c_str();
} }
} }
......
...@@ -40,9 +40,14 @@ std::vector<DiskDrive> disk_drives() ...@@ -40,9 +40,14 @@ std::vector<DiskDrive> disk_drives()
std::string bootable_disk_serial() std::string bootable_disk_serial()
{ {
wmi::Result result; wmi::Result result;
if (wmi::WmiBase::simpleSelect({ L"SerialNumber", }, L"Win32_DiskDrive", L"Where Index=0", result) && result.size() == 1) { if (wmi::WmiBase::simpleSelect({ L"DiskIndex", }, L"Win32_DiskPartition", L"Where BootPartition=True", result) && result.size() == 1) {
return utf16_to_mbcs(result[0][L"SerialNumber"]); 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(); auto drives = disk_drives();
if (!drives.empty()) { if (!drives.empty()) {
......
...@@ -376,6 +376,9 @@ EndProject ...@@ -376,6 +376,9 @@ EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_jinfo", "test_jinfo\test_jinfo.vcxproj", "{0E83FBE2-4696-41AD-9A5F-55B1401AB77C}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_jinfo", "test_jinfo\test_jinfo.vcxproj", "{0E83FBE2-4696-41AD-9A5F-55B1401AB77C}"
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libjinfo", "libjinfo\libjinfo.vcxproj", "{441E6793-7CDA-4D51-81BD-7A38520F1C1D}" 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 EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libjinfomt", "libjinfomt\libjinfomt.vcxproj", "{E8551DB0-274F-493A-88AF-7383E47F49FA}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libjinfomt", "libjinfomt\libjinfomt.vcxproj", "{E8551DB0-274F-493A-88AF-7383E47F49FA}"
EndProject EndProject
......
...@@ -40,7 +40,7 @@ int main() ...@@ -40,7 +40,7 @@ int main()
"ver": "1.0" "ver": "1.0"
})"; })";
auto url = "192.168.1.168:10086"; auto url = "127.0.0.1:8000";
curl.postJson(url, json); curl.postJson(url, json);
printf("HTTP %ld\n", curl.lastHttpCode()); printf("HTTP %ld\n", curl.lastHttpCode());
printf("error %d\n", curl.lastError()); printf("error %d\n", curl.lastError());
......
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