cec: added VolumeUp()/cec_volume_up(), VolumeDown()/cec_volume_down(), MuteAudio...
[deb_libcec.git] / src / testclient / main.cpp
CommitLineData
abbca718
LOK
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
761dcc45 33#include <cec.h>
acec5f48 34
abbca718
LOK
35#include <cstdio>
36#include <fcntl.h>
37#include <iostream>
e6d2161b 38#include <fstream>
abbca718 39#include <string>
b9187cc6 40#include <sstream>
acec5f48
LOK
41#include "../lib/platform/threads.h"
42#include "../lib/util/StdString.h"
abbca718
LOK
43
44using namespace CEC;
45using namespace std;
46
d75be19b 47#define CEC_TEST_CLIENT_VERSION 1
abbca718 48
761dcc45 49#include <cecloader.h>
8bc45476 50
3d0dca16
LOK
51int g_cecLogLevel = CEC_LOG_ALL;
52ofstream g_logOutput;
53bool g_bShortLog = false;
54CStdString g_strPort;
b9187cc6 55
8bca69de 56inline bool HexStrToInt(const std::string& data, uint8_t& value)
b9187cc6 57{
8bca69de
LOK
58 int iTmp(0);
59 if (sscanf(data.c_str(), "%x", &iTmp) == 1)
60 {
61 if (iTmp > 256)
62 value = 255;
63 else if (iTmp < 0)
64 value = 0;
65 else
66 value = (uint8_t) iTmp;
b9187cc6 67
8bca69de
LOK
68 return true;
69 }
70
71 return false;
72}
b9187cc6
LOK
73
74//get the first word (separated by whitespace) from string data and place that in word
75//then remove that word from string data
76bool GetWord(string& data, string& word)
77{
78 stringstream datastream(data);
79 string end;
80
81 datastream >> word;
82 if (datastream.fail())
83 {
84 data.clear();
85 return false;
86 }
87
88 size_t pos = data.find(word) + word.length();
89
90 if (pos >= data.length())
91 {
92 data.clear();
93 return true;
94 }
95
96 data = data.substr(pos);
97
98 datastream.clear();
99 datastream.str(data);
100
101 datastream >> end;
102 if (datastream.fail())
103 data.clear();
104
105 return true;
106}
107
d5f66c28 108void FlushLog(ICECAdapter *cecParser)
abbca718
LOK
109{
110 cec_log_message message;
111 while (cecParser && cecParser->GetNextLogMessage(&message))
112 {
bdd433cb 113 if ((message.level & g_cecLogLevel) == message.level)
abbca718 114 {
e6d2161b 115 CStdString strLevel;
bdd433cb
LOK
116 switch (message.level)
117 {
118 case CEC_LOG_ERROR:
e6d2161b 119 strLevel = "ERROR: ";
bdd433cb
LOK
120 break;
121 case CEC_LOG_WARNING:
e6d2161b 122 strLevel = "WARNING: ";
bdd433cb
LOK
123 break;
124 case CEC_LOG_NOTICE:
e6d2161b 125 strLevel = "NOTICE: ";
bdd433cb
LOK
126 break;
127 case CEC_LOG_TRAFFIC:
e6d2161b 128 strLevel = "TRAFFIC: ";
bdd433cb
LOK
129 break;
130 case CEC_LOG_DEBUG:
e6d2161b 131 strLevel = "DEBUG: ";
bdd433cb
LOK
132 break;
133 default:
134 break;
135 }
40339852 136
8bc45476
LOK
137 CStdString strFullLog;
138 strFullLog.Format("%s[%16lld]\t%s", strLevel.c_str(), message.time, message.message);
139 cout << strFullLog.c_str() << endl;
e6d2161b
LOK
140
141 if (g_logOutput.is_open())
8bc45476
LOK
142 {
143 if (g_bShortLog)
144 g_logOutput << message.message << endl;
145 else
146 g_logOutput << strFullLog.c_str() << endl;
147 }
bdd433cb 148 }
abbca718
LOK
149 }
150}
151
d5f66c28 152void ListDevices(ICECAdapter *parser)
abbca718 153{
25701fa6
LOK
154 cec_adapter *devices = new cec_adapter[10];
155 uint8_t iDevicesFound = parser->FindAdapters(devices, 10, NULL);
abbca718
LOK
156 if (iDevicesFound <= 0)
157 {
25701fa6 158 cout << "Found devices: NONE" << endl;
abbca718
LOK
159 }
160 else
161 {
25701fa6
LOK
162 CStdString strLog;
163 strLog.Format("Found devices: %d", iDevicesFound);
164 cout << strLog.c_str() << endl;
165 for (unsigned int iDevicePtr = 0; iDevicePtr < iDevicesFound; iDevicePtr++)
abbca718
LOK
166 {
167 CStdString strDevice;
25701fa6 168 strDevice.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr + 1, devices[iDevicePtr].path, devices[iDevicePtr].comm);
abbca718
LOK
169 cout << endl << strDevice.c_str() << endl;
170 }
171 }
172}
173
d5f66c28 174void ShowHelpCommandLine(const char* strExec)
abbca718
LOK
175{
176 cout << endl <<
177 strExec << " {-h|--help|-l|--list-devices|[COM PORT]}" << endl <<
178 endl <<
179 "parameters:" << endl <<
8bc45476
LOK
180 " -h --help Shows this help text" << endl <<
181 " -l --list-devices List all devices on this system" << endl <<
f8513317 182 " -t --type {p|r|t|a} The device type to use. More than one is possible." << endl <<
16b1e052 183 " -p --port {int} The HDMI port to use as active source." << endl <<
8bc45476
LOK
184 " -f --log-file {file} Writes all libCEC log message to a file" << endl <<
185 " -sf --short-log-file {file} Writes all libCEC log message without timestamps" << endl <<
186 " and log levels to a file." << endl <<
606034b6 187 " -d --log-level {level} Sets the log level. See cectypes.h for values." << endl <<
5ad0ea13
LOK
188 " -s --single-command Execute a single command and exit. Does not power" << endl <<
189 " on devices on startup and power them off on exit." << endl <<
8bc45476
LOK
190 " [COM PORT] The com port to connect to. If no COM" << endl <<
191 " port is given, the client tries to connect to the" << endl <<
192 " first device that is detected." << endl <<
825ddb96 193 endl <<
8bc45476
LOK
194 "Type 'h' or 'help' and press enter after starting the client to display all " << endl <<
195 "available commands" << endl;
825ddb96
LOK
196}
197
d5f66c28 198ICECAdapter *CreateParser(cec_device_type_list typeList)
f8513317
LOK
199{
200 ICECAdapter *parser = LibCecInit("CECTester", typeList);
201 if (!parser || parser->GetMinLibVersion() > CEC_TEST_CLIENT_VERSION)
202 {
203 #ifdef __WINDOWS__
204 cout << "Cannot load libcec.dll" << endl;
205 #else
206 cout << "Cannot load libcec.so" << endl;
207 #endif
208 return NULL;
209 }
210
211 CStdString strLog;
212 strLog.Format("CEC Parser created - libcec version %d.%d", parser->GetLibVersionMajor(), parser->GetLibVersionMinor());
213 cout << strLog.c_str() << endl;
214
215 return parser;
216}
217
d5f66c28 218void ShowHelpConsole(void)
825ddb96
LOK
219{
220 cout << endl <<
221 "================================================================================" << endl <<
222 "Available commands:" << endl <<
223 endl <<
224 "tx {bytes} transfer bytes over the CEC line." << endl <<
1f0e9e0f 225 "txn {bytes} transfer bytes but don't wait for transmission ACK." << endl <<
88f45c9b 226 "on {address} power on the device with the given logical address." << endl <<
88f45c9b 227 "standby {address} put the device with the given address in standby mode." << endl <<
16b1e052
LOK
228 "la {logical address} change the logical address of the CEC adapter." << endl <<
229 "p {port number} change the HDMI port number of the CEC adapter." << endl <<
230 "pa {physical address} change the physical address of the CEC adapter." << endl <<
1969b140 231 "osd {addr} {string} set OSD message on the specified device." << endl <<
6a1c0009 232 "ver {addr} get the CEC version of the specified device." << endl <<
44c74256 233 "ven {addr} get the vendor ID of the specified device." << endl <<
44c74256 234 "lang {addr} get the menu language of the specified device." << endl <<
e55f3f70 235 "pow {addr} get the power status of the specified device." << endl <<
57f45e6c 236 "poll {addr} poll the specified device." << endl <<
6d858ba4
LOK
237 "lad lists active devices on the bus" << endl <<
238 "ad {addr} checks whether the specified device is active." << endl <<
239 "at {type} checks whether the specified device type is active." << endl <<
8b7e5ff6 240 "[mon] {1|0} enable or disable CEC bus monitoring." << endl <<
bdd433cb 241 "[log] {1 - 31} change the log level. see cectypes.h for values." << endl <<
825ddb96 242 "[ping] send a ping command to the CEC adapter." << endl <<
88f45c9b
LOK
243 "[bl] to let the adapter enter the bootloader, to upgrade" << endl <<
244 " the flash rom." << endl <<
245 "[r] reconnect to the CEC adapter." << endl <<
825ddb96 246 "[h] or [help] show this help." << endl <<
88f45c9b
LOK
247 "[q] or [quit] to quit the CEC test client and switch off all" << endl <<
248 " connected CEC devices." << endl <<
825ddb96 249 "================================================================================" << endl;
abbca718
LOK
250}
251
252int main (int argc, char *argv[])
253{
16b1e052 254 int8_t iHDMIPort(-1);
f8513317 255 cec_device_type_list typeList;
20b8870a 256 typeList.clear();
abbca718 257
3d0dca16 258 int iArgPtr = 1;
5ad0ea13 259 bool bSingleCommand(false);
3d0dca16 260 while (iArgPtr < argc)
e6d2161b 261 {
3d0dca16 262 if (argc >= iArgPtr + 1)
e6d2161b 263 {
3d0dca16
LOK
264 if (!strcmp(argv[iArgPtr], "-f") ||
265 !strcmp(argv[iArgPtr], "--log-file") ||
266 !strcmp(argv[iArgPtr], "-sf") ||
267 !strcmp(argv[iArgPtr], "--short-log-file"))
268 {
269 if (argc >= iArgPtr + 2)
270 {
271 g_logOutput.open(argv[iArgPtr + 1]);
272 g_bShortLog = (!strcmp(argv[iArgPtr], "-sf") || !strcmp(argv[iArgPtr], "--short-log-file"));
273 iArgPtr += 2;
274 }
275 else
276 {
606034b6
LOK
277 cout << "== skipped log-file parameter: no file given ==" << endl;
278 ++iArgPtr;
279 }
280 }
281 else if (!strcmp(argv[iArgPtr], "-d") ||
282 !strcmp(argv[iArgPtr], "--log-level"))
283 {
284 if (argc >= iArgPtr + 2)
285 {
286 int iNewLevel = atoi(argv[iArgPtr + 1]);
287 if (iNewLevel >= CEC_LOG_ERROR && iNewLevel <= CEC_LOG_ALL)
288 {
289 g_cecLogLevel = iNewLevel;
5ad0ea13
LOK
290 if (!bSingleCommand)
291 cout << "log level set to " << argv[iArgPtr + 1] << endl;
606034b6
LOK
292 }
293 else
294 {
295 cout << "== skipped log-level parameter: invalid level '" << argv[iArgPtr + 1] << "' ==" << endl;
296 }
297 iArgPtr += 2;
298 }
299 else
300 {
301 cout << "== skipped log-level parameter: no level given ==" << endl;
3d0dca16
LOK
302 ++iArgPtr;
303 }
304 }
f8513317
LOK
305 else if (!strcmp(argv[iArgPtr], "-t") ||
306 !strcmp(argv[iArgPtr], "--type"))
d6cc5f60
LOK
307 {
308 if (argc >= iArgPtr + 2)
309 {
f8513317
LOK
310 if (!strcmp(argv[iArgPtr + 1], "p"))
311 {
5ad0ea13
LOK
312 if (!bSingleCommand)
313 cout << "== using device type 'playback device'" << endl;
20b8870a 314 typeList.add(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
f8513317
LOK
315 }
316 else if (!strcmp(argv[iArgPtr + 1], "r"))
d6cc5f60 317 {
5ad0ea13
LOK
318 if (!bSingleCommand)
319 cout << "== using device type 'recording device'" << endl;
20b8870a 320 typeList.add(CEC_DEVICE_TYPE_RECORDING_DEVICE);
f8513317
LOK
321 }
322 else if (!strcmp(argv[iArgPtr + 1], "t"))
323 {
5ad0ea13
LOK
324 if (!bSingleCommand)
325 cout << "== using device type 'tuner'" << endl;
20b8870a 326 typeList.add(CEC_DEVICE_TYPE_TUNER);
f8513317
LOK
327 }
328 else if (!strcmp(argv[iArgPtr + 1], "a"))
329 {
5ad0ea13
LOK
330 if (!bSingleCommand)
331 cout << "== using device type 'audio system'" << endl;
20b8870a 332 typeList.add(CEC_DEVICE_TYPE_AUDIO_SYSTEM);
d6cc5f60
LOK
333 }
334 else
335 {
f8513317 336 cout << "== skipped invalid device type '" << argv[iArgPtr + 1] << "'" << endl;
d6cc5f60 337 }
d6cc5f60
LOK
338 ++iArgPtr;
339 }
f8513317 340 ++iArgPtr;
d6cc5f60 341 }
3d0dca16
LOK
342 else if (!strcmp(argv[iArgPtr], "--list-devices") ||
343 !strcmp(argv[iArgPtr], "-l"))
344 {
d5f66c28 345 ICECAdapter *parser = CreateParser(typeList);
f8513317
LOK
346 if (parser)
347 {
d5f66c28 348 ListDevices(parser);
f8513317
LOK
349 UnloadLibCec(parser);
350 }
3d0dca16
LOK
351 return 0;
352 }
5ad0ea13
LOK
353 else if (!strcmp(argv[iArgPtr], "--single-command") ||
354 !strcmp(argv[iArgPtr], "-s"))
355 {
356 bSingleCommand = true;
357 ++iArgPtr;
358 }
3d0dca16
LOK
359 else if (!strcmp(argv[iArgPtr], "--help") ||
360 !strcmp(argv[iArgPtr], "-h"))
361 {
d5f66c28 362 ShowHelpCommandLine(argv[0]);
3d0dca16
LOK
363 return 0;
364 }
45de9d9f 365 else if (!strcmp(argv[iArgPtr], "-p") ||
16b1e052 366 !strcmp(argv[iArgPtr], "--port"))
45de9d9f
LOK
367 {
368 if (argc >= iArgPtr + 2)
369 {
16b1e052
LOK
370 iHDMIPort= atoi(argv[iArgPtr + 1]);
371 cout << "using HDMI port '" << iHDMIPort << "'" << endl;
45de9d9f
LOK
372 ++iArgPtr;
373 }
374 ++iArgPtr;
375 }
3d0dca16
LOK
376 else
377 {
378 g_strPort = argv[iArgPtr++];
379 }
e6d2161b
LOK
380 }
381 }
382
ab1469a0 383 if (typeList.IsEmpty())
f8513317 384 {
5ad0ea13 385 if (!bSingleCommand)
88e5de6f
LOK
386 cout << "No device type given. Using 'recording device'" << endl;
387 typeList.add(CEC_DEVICE_TYPE_RECORDING_DEVICE);
f8513317
LOK
388 }
389
390 ICECAdapter *parser = LibCecInit("CECTester", typeList);
391 if (!parser || parser->GetMinLibVersion() > CEC_TEST_CLIENT_VERSION)
392 {
393#ifdef __WINDOWS__
394 cout << "Cannot load libcec.dll" << endl;
395#else
396 cout << "Cannot load libcec.so" << endl;
397#endif
398 return 1;
399 }
f8513317 400
5ad0ea13
LOK
401 if (!bSingleCommand)
402 {
403 CStdString strLog;
404 strLog.Format("CEC Parser created - libcec version %d.%d", parser->GetLibVersionMajor(), parser->GetLibVersionMinor());
405 cout << strLog.c_str() << endl;
406
407 //make stdin non-blocking
408 #ifndef __WINDOWS__
409 int flags = fcntl(0, F_GETFL, 0);
410 flags |= O_NONBLOCK;
411 fcntl(0, F_SETFL, flags);
412 #endif
413 }
f8513317 414
3d0dca16 415 if (g_strPort.IsEmpty())
abbca718 416 {
5ad0ea13
LOK
417 if (!bSingleCommand)
418 cout << "no serial port given. trying autodetect: ";
25701fa6
LOK
419 cec_adapter devices[10];
420 uint8_t iDevicesFound = parser->FindAdapters(devices, 10, NULL);
abbca718
LOK
421 if (iDevicesFound <= 0)
422 {
5ad0ea13
LOK
423 if (bSingleCommand)
424 cout << "autodetect ";
abbca718
LOK
425 cout << "FAILED" << endl;
426 UnloadLibCec(parser);
427 return 1;
428 }
429 else
430 {
5ad0ea13
LOK
431 if (!bSingleCommand)
432 {
433 cout << endl << " path: " << devices[0].path << endl <<
434 " com port: " << devices[0].comm << endl << endl;
435 }
3d0dca16 436 g_strPort = devices[0].comm;
abbca718
LOK
437 }
438 }
e6d2161b 439
16b1e052
LOK
440 if (iHDMIPort > 0)
441 {
442 parser->SetHDMIPort((uint8_t)iHDMIPort);
443 FlushLog(parser);
444 }
445
446 cout << "scanning the CEC bus..." << endl;
447
3d0dca16 448 if (!parser->Open(g_strPort.c_str()))
abbca718 449 {
3d0dca16 450 cout << "unable to open the device on port " << g_strPort << endl;
d5f66c28 451 FlushLog(parser);
abbca718
LOK
452 UnloadLibCec(parser);
453 return 1;
454 }
455
5ad0ea13
LOK
456 if (!bSingleCommand)
457 {
458 cout << "cec device opened" << endl;
abbca718 459
5ad0ea13
LOK
460 parser->PowerOnDevices(CECDEVICE_TV);
461 FlushLog(parser);
abbca718 462
5ad0ea13
LOK
463 parser->SetActiveSource();
464 FlushLog(parser);
465
466 cout << "waiting for input" << endl;
467 }
abbca718
LOK
468
469 bool bContinue(true);
abbca718
LOK
470 while (bContinue)
471 {
5ad0ea13
LOK
472 if (bSingleCommand)
473 bContinue = false;
474
d5f66c28 475 FlushLog(parser);
abbca718 476
b5b53c7d
LOK
477 /* just ignore the command buffer and clear it */
478 cec_command dummy;
479 while (parser && parser->GetNextCommand(&dummy)) {}
480
abbca718
LOK
481 string input;
482 getline(cin, input);
483 cin.clear();
484
485 if (!input.empty())
486 {
487 string command;
488 if (GetWord(input, command))
489 {
faa6a23b 490 if (command == "tx" || command == "txn")
abbca718
LOK
491 {
492 string strvalue;
8bca69de 493 uint8_t ivalue;
9dee1670 494 cec_command bytes;
ab1469a0 495 bytes.Clear();
25701fa6 496
abbca718 497 while (GetWord(input, strvalue) && HexStrToInt(strvalue, ivalue))
ab1469a0 498 bytes.PushBack(ivalue);
abbca718 499
8d84e2c0 500 if (command == "txn")
1f0e9e0f 501 bytes.transmit_timeout = 0;
8d84e2c0
LOK
502
503 parser->Transmit(bytes);
abbca718 504 }
88f45c9b
LOK
505 else if (command == "on")
506 {
507 string strValue;
508 uint8_t iValue = 0;
509 if (GetWord(input, strValue) && HexStrToInt(strValue, iValue) && iValue <= 0xF)
510 {
511 parser->PowerOnDevices((cec_logical_address) iValue);
512 }
513 else
514 {
515 cout << "invalid destination" << endl;
516 }
517 }
518 else if (command == "standby")
519 {
520 string strValue;
521 uint8_t iValue = 0;
522 if (GetWord(input, strValue) && HexStrToInt(strValue, iValue) && iValue <= 0xF)
523 {
524 parser->StandbyDevices((cec_logical_address) iValue);
525 }
526 else
527 {
528 cout << "invalid destination" << endl;
529 }
530 }
57f45e6c
LOK
531 else if (command == "poll")
532 {
533 string strValue;
534 uint8_t iValue = 0;
535 if (GetWord(input, strValue) && HexStrToInt(strValue, iValue) && iValue <= 0xF)
536 {
537 if (parser->PollDevice((cec_logical_address) iValue))
538 cout << "POLL message sent" << endl;
539 else
540 cout << "POLL message not sent" << endl;
541 }
542 else
543 {
544 cout << "invalid destination" << endl;
545 }
546 }
6dfe9213
LOK
547 else if (command == "la")
548 {
549 string strvalue;
6dfe9213
LOK
550 if (GetWord(input, strvalue))
551 {
552 parser->SetLogicalAddress((cec_logical_address) atoi(strvalue.c_str()));
abbca718
LOK
553 }
554 }
16b1e052
LOK
555 else if (command == "p")
556 {
557 string strvalue;
558 if (GetWord(input, strvalue))
559 {
560 parser->SetHDMIPort(atoi(strvalue.c_str()));
561 }
562 }
a424ebac
LOK
563 else if (command == "pa")
564 {
565 string strB1, strB2;
566 uint8_t iB1, iB2;
567 if (GetWord(input, strB1) && HexStrToInt(strB1, iB1) &&
568 GetWord(input, strB2) && HexStrToInt(strB2, iB2))
569 {
570 uint16_t iPhysicalAddress = ((uint16_t)iB1 << 8) + iB2;
571 parser->SetPhysicalAddress(iPhysicalAddress);
572 }
573 }
1969b140
LOK
574 else if (command == "osd")
575 {
576 bool bFirstWord(false);
577 string strAddr, strMessage, strWord;
578 uint8_t iAddr;
579 if (GetWord(input, strAddr) && HexStrToInt(strAddr, iAddr) && iAddr < 0xF)
580 {
581 while (GetWord(input, strWord))
582 {
583 if (bFirstWord)
584 {
585 bFirstWord = false;
586 strMessage.append(" ");
587 }
588 strMessage.append(strWord);
589 }
590 parser->SetOSDString((cec_logical_address) iAddr, CEC_DISPLAY_CONTROL_DISPLAY_FOR_DEFAULT_TIME, strMessage.c_str());
591 }
592 }
abbca718
LOK
593 else if (command == "ping")
594 {
2abe74eb 595 parser->PingAdapter();
abbca718 596 }
04e637f9
LOK
597 else if (command == "volup")
598 {
599 parser->VolumeUp();
600 }
601 else if (command == "voldown")
602 {
603 parser->VolumeDown();
604 }
605 else if (command == "mute")
606 {
607 parser->MuteAudio();
608 }
8b7e5ff6
LOK
609 else if (command == "mon")
610 {
611 CStdString strEnable;
612 if (GetWord(input, strEnable) && (strEnable.Equals("0") || strEnable.Equals("1")))
613 {
614 parser->SwitchMonitoring(strEnable.Equals("1"));
615 }
616 }
abbca718
LOK
617 else if (command == "bl")
618 {
619 parser->StartBootloader();
620 }
a3269a0a
LOK
621 else if (command == "lang")
622 {
623 CStdString strDev;
624 if (GetWord(input, strDev))
625 {
626 int iDev = atoi(strDev);
627 if (iDev >= 0 && iDev < 15)
628 {
629 CStdString strLog;
630 cec_menu_language language;
631 if (parser->GetDeviceMenuLanguage((cec_logical_address) iDev, &language))
632 strLog.Format("menu language '%s'", language.language);
633 else
634 strLog = "failed!";
635 cout << strLog.c_str() << endl;
636 }
637 }
638 }
44c74256
LOK
639 else if (command == "ven")
640 {
641 CStdString strDev;
642 if (GetWord(input, strDev))
643 {
644 int iDev = atoi(strDev);
645 if (iDev >= 0 && iDev < 15)
646 {
647 uint64_t iVendor = parser->GetDeviceVendorId((cec_logical_address) iDev);
648 CStdString strLog;
649 strLog.Format("vendor id: %06x", iVendor);
650 cout << strLog.c_str() << endl;
651 }
652 }
653 }
6a1c0009
LOK
654 else if (command == "ver")
655 {
656 CStdString strDev;
657 if (GetWord(input, strDev))
658 {
659 int iDev = atoi(strDev);
660 if (iDev >= 0 && iDev < 15)
661 {
662 cec_version iVersion = parser->GetDeviceCecVersion((cec_logical_address) iDev);
663 switch (iVersion)
664 {
665 case CEC_VERSION_1_2:
666 cout << "CEC version 1.2" << endl;
667 break;
668 case CEC_VERSION_1_2A:
669 cout << "CEC version 1.2a" << endl;
670 break;
671 case CEC_VERSION_1_3:
672 cout << "CEC version 1.3" << endl;
673 break;
674 case CEC_VERSION_1_3A:
675 cout << "CEC version 1.3a" << endl;
676 break;
677 default:
678 cout << "unknown CEC version" << endl;
679 break;
680 }
681 }
682 }
683 }
e55f3f70
LOK
684 else if (command == "pow")
685 {
686 CStdString strDev;
687 if (GetWord(input, strDev))
688 {
689 int iDev = atoi(strDev);
690 if (iDev >= 0 && iDev < 15)
691 {
692 cec_power_status iPower = parser->GetDevicePowerStatus((cec_logical_address) iDev);
693 switch (iPower)
694 {
695 case CEC_POWER_STATUS_ON:
696 cout << "powered on" << endl;
697 break;
698 case CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY:
699 cout << "on -> standby" << endl;
700 break;
701 case CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON:
702 cout << "standby -> on" << endl;
703 break;
704 case CEC_POWER_STATUS_STANDBY:
705 cout << "standby" << endl;
706 break;
707 default:
708 cout << "unknown power status" << endl;
709 break;
710 }
711 }
712 }
713 }
6d858ba4
LOK
714 else if (command == "lad")
715 {
716 cout << "listing active devices:" << endl;
717 cec_logical_addresses addresses = parser->GetActiveDevices();
718 for (unsigned iPtr = 0; iPtr < 16; iPtr++)
719 if (addresses[iPtr])
720 cout << "logical address " << iPtr << endl;
721 }
722 else if (command == "ad")
723 {
724 CStdString strDev;
725 if (GetWord(input, strDev))
726 {
727 int iDev = atoi(strDev);
728 if (iDev >= 0 && iDev < 15)
729 cout << "logical address " << iDev << " is " << (parser->IsActiveDevice((cec_logical_address)iDev) ? "active" : "not active") << endl;
730 }
731 }
732 else if (command == "at")
733 {
734 CStdString strType;
735 if (GetWord(input, strType))
736 {
737 cec_device_type type = CEC_DEVICE_TYPE_TV;
738 if (strType.Equals("a"))
739 type = CEC_DEVICE_TYPE_AUDIO_SYSTEM;
740 else if (strType.Equals("p"))
741 type = CEC_DEVICE_TYPE_PLAYBACK_DEVICE;
742 else if (strType.Equals("r"))
743 type = CEC_DEVICE_TYPE_RECORDING_DEVICE;
744 else if (strType.Equals("t"))
745 type = CEC_DEVICE_TYPE_TUNER;
746 cout << "device " << type << " is " << (parser->IsActiveDeviceType(type) ? "active" : "not active") << endl;
747 }
748 }
12027dbe
LOK
749 else if (command == "r")
750 {
25701fa6 751 cout << "closing the connection" << endl;
12027dbe 752 parser->Close();
d5f66c28 753 FlushLog(parser);
25701fa6
LOK
754
755 cout << "opening a new connection" << endl;
3d0dca16 756 parser->Open(g_strPort.c_str());
d5f66c28 757 FlushLog(parser);
25701fa6 758
18203d17
LOK
759 cout << "setting active source" << endl;
760 parser->SetActiveSource();
12027dbe 761 }
825ddb96
LOK
762 else if (command == "h" || command == "help")
763 {
d5f66c28 764 ShowHelpConsole();
825ddb96 765 }
abbca718
LOK
766 else if (command == "q" || command == "quit")
767 {
768 bContinue = false;
769 }
bdd433cb
LOK
770 else if (command == "log")
771 {
772 CStdString strLevel;
773 if (GetWord(input, strLevel))
774 {
775 int iNewLevel = atoi(strLevel);
776 if (iNewLevel >= CEC_LOG_ERROR && iNewLevel <= CEC_LOG_ALL)
777 {
778 g_cecLogLevel = iNewLevel;
779 cout << "log level changed to " << strLevel.c_str() << endl;
780 }
781 }
782 }
abbca718
LOK
783 }
784 if (bContinue)
785 cout << "waiting for input" << endl;
786 }
5ad0ea13
LOK
787
788 if (bContinue)
789 CCondition::Sleep(50);
abbca718
LOK
790 }
791
5ad0ea13
LOK
792 if (!bSingleCommand)
793 parser->StandbyDevices(CECDEVICE_BROADCAST);
794
5f39c4d8 795 parser->Close();
d5f66c28 796 FlushLog(parser);
abbca718 797 UnloadLibCec(parser);
e6d2161b
LOK
798
799 if (g_logOutput.is_open())
800 g_logOutput.close();
801
abbca718
LOK
802 return 0;
803}