X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftestclient%2Fmain.cpp;h=983ba13736fff90d6b3b16c9fce8985206ead71c;hb=3424a2f327e569e92c7282c6e643536984a65c64;hp=90158edbec031ac5fb0ef0dc4fefe28d9b27e4eb;hpb=93f86187ea362ab62f9e0f93b77fb3bcc29166ab;p=deb_libcec.git diff --git a/src/testclient/main.cpp b/src/testclient/main.cpp index 90158ed..983ba13 100644 --- a/src/testclient/main.cpp +++ b/src/testclient/main.cpp @@ -31,19 +31,72 @@ */ #include "../../include/CECExports.h" -#include "../lib/util/threads.h" -#include "../lib/util/misc.h" +#include "../lib/platform/threads.h" #include "../lib/util/StdString.h" #include #include #include #include +#include using namespace CEC; using namespace std; #define CEC_TEST_CLIENT_VERSION 3 + +inline bool HexStrToInt(const std::string& data, uint8_t& value) +{ + int iTmp(0); + if (sscanf(data.c_str(), "%x", &iTmp) == 1) + { + if (iTmp > 256) + value = 255; + else if (iTmp < 0) + value = 0; + else + value = (uint8_t) iTmp; + + return true; + } + + return false; +} + +//get the first word (separated by whitespace) from string data and place that in word +//then remove that word from string data +bool GetWord(string& data, string& word) +{ + stringstream datastream(data); + string end; + + datastream >> word; + if (datastream.fail()) + { + data.clear(); + return false; + } + + size_t pos = data.find(word) + word.length(); + + if (pos >= data.length()) + { + data.clear(); + return true; + } + + data = data.substr(pos); + + datastream.clear(); + datastream.str(data); + + datastream >> end; + if (datastream.fail()) + data.clear(); + + return true; +} + void flush_log(ICECAdapter *cecParser) { cec_log_message message; @@ -213,7 +266,7 @@ int main (int argc, char *argv[]) if (command == "tx") { string strvalue; - int ivalue; + uint8_t ivalue; vector bytes; while (GetWord(input, strvalue) && HexStrToInt(strvalue, ivalue)) bytes.push_back(ivalue);