Move wstring to string conversion to StringUtils.cpp and update most HID get serial number functions to use it

This commit is contained in:
Adam Honse 2024-07-28 03:50:29 -05:00
parent 366fda30f5
commit b4d15b9545
159 changed files with 623 additions and 930 deletions

View file

@ -10,6 +10,7 @@
\*---------------------------------------------------------*/
#include <string.h>
#include "StringUtils.h"
#include "ZETEdgeAirProController.h"
ZETEdgeAirProController::ZETEdgeAirProController(hid_device* dev_handle, const hid_device_info& info)
@ -17,19 +18,6 @@ ZETEdgeAirProController::ZETEdgeAirProController(hid_device* dev_handle, const h
dev = dev_handle;
location = info.path;
version = "";
wchar_t serial_string[128];
int ret = hid_get_serial_number_string(dev, serial_string, 128);
if(ret != 0)
{
serial_number = "";
}
else
{
std::wstring return_wstring = serial_string;
serial_number = std::string(return_wstring.begin(), return_wstring.end());
}
}
ZETEdgeAirProController::~ZETEdgeAirProController()
@ -44,7 +32,15 @@ std::string ZETEdgeAirProController::GetDeviceLocation()
std::string ZETEdgeAirProController::GetSerialString()
{
return(serial_number);
wchar_t serial_string[128];
int ret = hid_get_serial_number_string(dev, serial_string, 128);
if(ret != 0)
{
return("");
}
return(StringUtils::wstring_to_string(serial_string));
}
std::string ZETEdgeAirProController::GetFirmwareVersion()

View file

@ -52,6 +52,5 @@ protected:
private:
std::string location;
std::string serial_number;
std::string version;
};