cec: show the opcode as hex instead of decimal in the log when storing a command...
[deb_libcec.git] / src / testclient / main.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
31 */
32
33#include "../../include/CECExports.h"
34#include "../lib/platform/threads.h"
35#include "../lib/util/StdString.h"
36#include <cstdio>
37#include <fcntl.h>
38#include <iostream>
39#include <string>
40#include <sstream>
41
42using namespace CEC;
43using namespace std;
44
45#define CEC_TEST_CLIENT_VERSION 5
46
47
48inline bool HexStrToInt(const std::string& data, uint8_t& value)
49{
50 int iTmp(0);
51 if (sscanf(data.c_str(), "%x", &iTmp) == 1)
52 {
53 if (iTmp > 256)
54 value = 255;
55 else if (iTmp < 0)
56 value = 0;
57 else
58 value = (uint8_t) iTmp;
59
60 return true;
61 }
62
63 return false;
64}
65
66//get the first word (separated by whitespace) from string data and place that in word
67//then remove that word from string data
68bool GetWord(string& data, string& word)
69{
70 stringstream datastream(data);
71 string end;
72
73 datastream >> word;
74 if (datastream.fail())
75 {
76 data.clear();
77 return false;
78 }
79
80 size_t pos = data.find(word) + word.length();
81
82 if (pos >= data.length())
83 {
84 data.clear();
85 return true;
86 }
87
88 data = data.substr(pos);
89
90 datastream.clear();
91 datastream.str(data);
92
93 datastream >> end;
94 if (datastream.fail())
95 data.clear();
96
97 return true;
98}
99
100void flush_log(ICECAdapter *cecParser)
101{
102 cec_log_message message;
103 while (cecParser && cecParser->GetNextLogMessage(&message))
104 {
105 switch (message.level)
106 {
107 case CEC_LOG_ERROR:
108 cout << "ERROR: ";
109 break;
110 case CEC_LOG_WARNING:
111 cout << "WARNING: ";
112 break;
113 case CEC_LOG_NOTICE:
114 cout << "NOTICE: ";
115 break;
116 case CEC_LOG_DEBUG:
117 cout << "DEBUG: ";
118 break;
119 }
120
121 CStdString strMessageTmp;
122 strMessageTmp.Format("[%16lld]\t%s", message.time, message.message);
123 cout << strMessageTmp.c_str() << endl;
124 }
125}
126
127void list_devices(ICECAdapter *parser)
128{
129 cec_adapter *devices = new cec_adapter[10];
130 uint8_t iDevicesFound = parser->FindAdapters(devices, 10, NULL);
131 if (iDevicesFound <= 0)
132 {
133 cout << "Found devices: NONE" << endl;
134 }
135 else
136 {
137 CStdString strLog;
138 strLog.Format("Found devices: %d", iDevicesFound);
139 cout << strLog.c_str() << endl;
140 for (unsigned int iDevicePtr = 0; iDevicePtr < iDevicesFound; iDevicePtr++)
141 {
142 CStdString strDevice;
143 strDevice.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr + 1, devices[iDevicePtr].path, devices[iDevicePtr].comm);
144 cout << endl << strDevice.c_str() << endl;
145 }
146 }
147}
148
149void show_help(const char* strExec)
150{
151 cout << endl <<
152 strExec << " {-h|--help|-l|--list-devices|[COM PORT]}" << endl <<
153 endl <<
154 "parameters:" << endl <<
155 "\t-h --help Shows this help text" << endl <<
156 "\t-l --list-devices List all devices on this system" << endl <<
157 "\t[COM PORT] The com port to connect to. If no COM port is given, the client tries to connect to the first device that is detected" << endl <<
158 endl <<
159 "Type 'h' or 'help' and press enter after starting the client to display all available commands" << endl;
160}
161
162void show_console_help(void)
163{
164 cout << endl <<
165 "================================================================================" << endl <<
166 "Available commands:" << endl <<
167 endl <<
168 "tx {bytes} transfer bytes over the CEC line." << endl <<
169 "[tx 40 00 FF 11 22 33] sends bytes 0x40 0x00 0xFF 0x11 0x22 0x33" << endl <<
170 endl <<
171 "la {logical_address} change the logical address of the CEC adapter." << endl <<
172 "[la 4] logical address 4" << endl <<
173 endl <<
174 "[ping] send a ping command to the CEC adapter." << endl <<
175 "[bl] to let the adapter enter the bootloader, to upgrade the flash rom." << endl <<
176 "[h] or [help] show this help." << endl <<
177 "[q] or [quit] to quit the CEC test client and switch off all connected CEC devices." << endl <<
178 "================================================================================" << endl;
179}
180
181int main (int argc, char *argv[])
182{
183 ICECAdapter *parser = LoadLibCec("CECTester");
184 if (!parser && parser->GetMinVersion() > CEC_TEST_CLIENT_VERSION)
185 {
186 cout << "Unable to create parser. Is libcec.dll present?" << endl;
187 return 1;
188 }
189 CStdString strLog;
190 strLog.Format("CEC Parser created - libcec version %d", parser->GetLibVersion());
191 cout << strLog.c_str() << endl;
192
193 //make stdin non-blocking
194#ifndef __WINDOWS__
195 int flags = fcntl(0, F_GETFL, 0);
196 flags |= O_NONBLOCK;
197 fcntl(0, F_SETFL, flags);
198#endif
199
200 string strPort;
201 if (argc < 2)
202 {
203 cout << "no serial port given. trying autodetect: ";
204 cec_adapter devices[10];
205 uint8_t iDevicesFound = parser->FindAdapters(devices, 10, NULL);
206 if (iDevicesFound <= 0)
207 {
208 cout << "FAILED" << endl;
209 UnloadLibCec(parser);
210 return 1;
211 }
212 else
213 {
214 cout << endl << " path: " << devices[0].path << endl <<
215 " com port: " << devices[0].comm << endl << endl;
216 strPort = devices[0].comm;
217 }
218 }
219 else if (!strcmp(argv[1], "--list-devices") || !strcmp(argv[1], "-l"))
220 {
221 list_devices(parser);
222 UnloadLibCec(parser);
223 return 0;
224 }
225 else if (!strcmp(argv[1], "--help") || !strcmp(argv[1], "-h"))
226 {
227 show_help(argv[0]);
228 return 0;
229 }
230 else
231 {
232 strPort = argv[1];
233 }
234
235 if (!parser->Open(strPort.c_str()))
236 {
237 cout << "unable to open the device on port " << strPort << endl;
238 flush_log(parser);
239 UnloadLibCec(parser);
240 return 1;
241 }
242
243 cout << "cec device opened" << endl;
244
245 parser->PowerOnDevices(CECDEVICE_TV);
246 flush_log(parser);
247
248 parser->SetActiveView();
249 flush_log(parser);
250
251 bool bContinue(true);
252 cout << "waiting for input" << endl;
253 while (bContinue)
254 {
255 flush_log(parser);
256
257 string input;
258 getline(cin, input);
259 cin.clear();
260
261 if (!input.empty())
262 {
263 string command;
264 if (GetWord(input, command))
265 {
266 if (command == "tx")
267 {
268 string strvalue;
269 uint8_t ivalue;
270 cec_frame bytes;
271 bytes.clear();
272
273 while (GetWord(input, strvalue) && HexStrToInt(strvalue, ivalue))
274 bytes.push_back(ivalue);
275
276 parser->Transmit(bytes);
277 }
278 else if (command == "la")
279 {
280 string strvalue;
281 if (GetWord(input, strvalue))
282 {
283 parser->SetLogicalAddress((cec_logical_address) atoi(strvalue.c_str()));
284 }
285 }
286 else if (command == "ping")
287 {
288 parser->PingAdapter();
289 }
290 else if (command == "bl")
291 {
292 parser->StartBootloader();
293 }
294 else if (command == "r")
295 {
296 cout << "closing the connection" << endl;
297 parser->Close();
298 flush_log(parser);
299
300 cout << "opening a new connection" << endl;
301 parser->Open(strPort.c_str());
302 flush_log(parser);
303
304 cout << "setting active view" << endl;
305 parser->SetActiveView();
306 }
307 else if (command == "h" || command == "help")
308 {
309 show_console_help();
310 }
311 else if (command == "q" || command == "quit")
312 {
313 bContinue = false;
314 }
315 }
316 if (bContinue)
317 cout << "waiting for input" << endl;
318 }
319 CCondition::Sleep(50);
320 }
321
322 parser->StandbyDevices(CECDEVICE_BROADCAST);
323 parser->Close();
324 flush_log(parser);
325 UnloadLibCec(parser);
326 return 0;
327}