2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
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.
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.
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.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
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/
41 #include "../lib/platform/threads.h"
42 #include "../lib/util/StdString.h"
47 #define CEC_TEST_CLIENT_VERSION 1
49 #include <cecloader.h>
51 int g_cecLogLevel
= CEC_LOG_ALL
;
53 bool g_bShortLog
= false;
56 inline bool HexStrToInt(const std::string
& data
, uint8_t& value
)
59 if (sscanf(data
.c_str(), "%x", &iTmp
) == 1)
66 value
= (uint8_t) iTmp
;
74 //get the first word (separated by whitespace) from string data and place that in word
75 //then remove that word from string data
76 bool GetWord(string
& data
, string
& word
)
78 stringstream
datastream(data
);
82 if (datastream
.fail())
88 size_t pos
= data
.find(word
) + word
.length();
90 if (pos
>= data
.length())
96 data
= data
.substr(pos
);
102 if (datastream
.fail())
108 void flush_log(ICECAdapter
*cecParser
)
110 cec_log_message message
;
111 while (cecParser
&& cecParser
->GetNextLogMessage(&message
))
113 if ((message
.level
& g_cecLogLevel
) == message
.level
)
116 switch (message
.level
)
119 strLevel
= "ERROR: ";
121 case CEC_LOG_WARNING
:
122 strLevel
= "WARNING: ";
125 strLevel
= "NOTICE: ";
127 case CEC_LOG_TRAFFIC
:
128 strLevel
= "TRAFFIC: ";
131 strLevel
= "DEBUG: ";
137 CStdString strFullLog
;
138 strFullLog
.Format("%s[%16lld]\t%s", strLevel
.c_str(), message
.time
, message
.message
);
139 cout
<< strFullLog
.c_str() << endl
;
141 if (g_logOutput
.is_open())
144 g_logOutput
<< message
.message
<< endl
;
146 g_logOutput
<< strFullLog
.c_str() << endl
;
152 void list_devices(ICECAdapter
*parser
)
154 cec_adapter
*devices
= new cec_adapter
[10];
155 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
156 if (iDevicesFound
<= 0)
158 cout
<< "Found devices: NONE" << endl
;
163 strLog
.Format("Found devices: %d", iDevicesFound
);
164 cout
<< strLog
.c_str() << endl
;
165 for (unsigned int iDevicePtr
= 0; iDevicePtr
< iDevicesFound
; iDevicePtr
++)
167 CStdString strDevice
;
168 strDevice
.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr
+ 1, devices
[iDevicePtr
].path
, devices
[iDevicePtr
].comm
);
169 cout
<< endl
<< strDevice
.c_str() << endl
;
174 void show_help(const char* strExec
)
177 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << endl
<<
179 "parameters:" << endl
<<
180 " -h --help Shows this help text" << endl
<<
181 " -l --list-devices List all devices on this system" << endl
<<
182 " -t --type {p|r|t|a} The device type to use. More than one is possible." << endl
<<
183 " -f --log-file {file} Writes all libCEC log message to a file" << endl
<<
184 " -sf --short-log-file {file} Writes all libCEC log message without timestamps" << endl
<<
185 " and log levels to a file." << endl
<<
186 " -d --log-level {level} Sets the log level. See cectypes.h for values." << endl
<<
187 " [COM PORT] The com port to connect to. If no COM" << endl
<<
188 " port is given, the client tries to connect to the" << endl
<<
189 " first device that is detected." << endl
<<
191 "Type 'h' or 'help' and press enter after starting the client to display all " << endl
<<
192 "available commands" << endl
;
195 ICECAdapter
*create_parser(cec_device_type_list typeList
)
197 ICECAdapter
*parser
= LibCecInit("CECTester", typeList
);
198 if (!parser
|| parser
->GetMinLibVersion() > CEC_TEST_CLIENT_VERSION
)
201 cout
<< "Cannot load libcec.dll" << endl
;
203 cout
<< "Cannot load libcec.so" << endl
;
209 strLog
.Format("CEC Parser created - libcec version %d.%d", parser
->GetLibVersionMajor(), parser
->GetLibVersionMinor());
210 cout
<< strLog
.c_str() << endl
;
215 void show_console_help(void)
218 "================================================================================" << endl
<<
219 "Available commands:" << endl
<<
221 "tx {bytes} transfer bytes over the CEC line." << endl
<<
222 "txn {bytes} transfer bytes but don't wait for transmission ACK." << endl
<<
223 "[tx 40 00 FF 11 22 33] sends bytes 0x40 0x00 0xFF 0x11 0x22 0x33" << endl
<<
225 "on {address} power on the device with the given logical address." << endl
<<
226 "[on 5] power on a connected audio system" << endl
<<
228 "standby {address} put the device with the given address in standby mode." << endl
<<
229 "[standby 0] powers off the TV" << endl
<<
231 "la {logical_address} change the logical address of the CEC adapter." << endl
<<
232 "[la 4] logical address 4" << endl
<<
234 "pa {physical_address} change the physical address of the CEC adapter." << endl
<<
235 "[pa 10 00] physical address 1.0.0.0" << endl
<<
237 "osd {addr} {string} set OSD message on the specified device." << endl
<<
238 "[osd 0 Test Message] displays 'Test Message' on the TV" << endl
<<
240 "ver {addr} get the CEC version of the specified device." << endl
<<
241 "[ver 0] get the CEC version of the TV" << endl
<<
243 "ven {addr} get the vendor ID of the specified device." << endl
<<
244 "[ven 0] get the vendor ID of the TV" << endl
<<
246 "lang {addr} get the menu language of the specified device." << endl
<<
247 "[lang 0] get the menu language of the TV" << endl
<<
249 "pow {addr} get the power status of the specified device." << endl
<<
250 "[pow 0] get the power status of the TV" << endl
<<
252 "poll {addr} poll the specified device." << endl
<<
253 "[poll 0] sends a poll message to the TV" << endl
<<
255 "[mon] {1|0} enable or disable CEC bus monitoring." << endl
<<
256 "[log] {1 - 31} change the log level. see cectypes.h for values." << endl
<<
257 "[ping] send a ping command to the CEC adapter." << endl
<<
258 "[bl] to let the adapter enter the bootloader, to upgrade" << endl
<<
259 " the flash rom." << endl
<<
260 "[r] reconnect to the CEC adapter." << endl
<<
261 "[h] or [help] show this help." << endl
<<
262 "[q] or [quit] to quit the CEC test client and switch off all" << endl
<<
263 " connected CEC devices." << endl
<<
264 "================================================================================" << endl
;
267 int main (int argc
, char *argv
[])
269 cec_device_type_list typeList
;
273 while (iArgPtr
< argc
)
275 if (argc
>= iArgPtr
+ 1)
277 if (!strcmp(argv
[iArgPtr
], "-f") ||
278 !strcmp(argv
[iArgPtr
], "--log-file") ||
279 !strcmp(argv
[iArgPtr
], "-sf") ||
280 !strcmp(argv
[iArgPtr
], "--short-log-file"))
282 if (argc
>= iArgPtr
+ 2)
284 g_logOutput
.open(argv
[iArgPtr
+ 1]);
285 g_bShortLog
= (!strcmp(argv
[iArgPtr
], "-sf") || !strcmp(argv
[iArgPtr
], "--short-log-file"));
290 cout
<< "== skipped log-file parameter: no file given ==" << endl
;
294 else if (!strcmp(argv
[iArgPtr
], "-d") ||
295 !strcmp(argv
[iArgPtr
], "--log-level"))
297 if (argc
>= iArgPtr
+ 2)
299 int iNewLevel
= atoi(argv
[iArgPtr
+ 1]);
300 if (iNewLevel
>= CEC_LOG_ERROR
&& iNewLevel
<= CEC_LOG_ALL
)
302 g_cecLogLevel
= iNewLevel
;
303 cout
<< "log level set to " << argv
[iArgPtr
+ 1] << endl
;
307 cout
<< "== skipped log-level parameter: invalid level '" << argv
[iArgPtr
+ 1] << "' ==" << endl
;
313 cout
<< "== skipped log-level parameter: no level given ==" << endl
;
317 else if (!strcmp(argv
[iArgPtr
], "-t") ||
318 !strcmp(argv
[iArgPtr
], "--type"))
320 if (argc
>= iArgPtr
+ 2)
322 if (!strcmp(argv
[iArgPtr
+ 1], "p"))
324 cout
<< "== using device type 'playback device'" << endl
;
325 typeList
.add(CEC_DEVICE_TYPE_PLAYBACK_DEVICE
);
327 else if (!strcmp(argv
[iArgPtr
+ 1], "r"))
329 cout
<< "== using device type 'recording device'" << endl
;
330 typeList
.add(CEC_DEVICE_TYPE_RECORDING_DEVICE
);
332 else if (!strcmp(argv
[iArgPtr
+ 1], "t"))
334 cout
<< "== using device type 'tuner'" << endl
;
335 typeList
.add(CEC_DEVICE_TYPE_TUNER
);
337 else if (!strcmp(argv
[iArgPtr
+ 1], "a"))
339 cout
<< "== using device type 'audio system'" << endl
;
340 typeList
.add(CEC_DEVICE_TYPE_AUDIO_SYSTEM
);
344 cout
<< "== skipped invalid device type '" << argv
[iArgPtr
+ 1] << "'" << endl
;
350 else if (!strcmp(argv
[iArgPtr
], "--list-devices") ||
351 !strcmp(argv
[iArgPtr
], "-l"))
353 ICECAdapter
*parser
= create_parser(typeList
);
356 list_devices(parser
);
357 UnloadLibCec(parser
);
361 else if (!strcmp(argv
[iArgPtr
], "--help") ||
362 !strcmp(argv
[iArgPtr
], "-h"))
369 g_strPort
= argv
[iArgPtr
++];
374 if (typeList
.empty())
376 cout
<< "No device type given. Using 'playback device'" << endl
;
377 typeList
.add(CEC_DEVICE_TYPE_PLAYBACK_DEVICE
);
380 ICECAdapter
*parser
= LibCecInit("CECTester", typeList
);
381 if (!parser
|| parser
->GetMinLibVersion() > CEC_TEST_CLIENT_VERSION
)
384 cout
<< "Cannot load libcec.dll" << endl
;
386 cout
<< "Cannot load libcec.so" << endl
;
391 strLog
.Format("CEC Parser created - libcec version %d.%d", parser
->GetLibVersionMajor(), parser
->GetLibVersionMinor());
392 cout
<< strLog
.c_str() << endl
;
394 //make stdin non-blocking
396 int flags
= fcntl(0, F_GETFL
, 0);
398 fcntl(0, F_SETFL
, flags
);
401 if (g_strPort
.IsEmpty())
403 cout
<< "no serial port given. trying autodetect: ";
404 cec_adapter devices
[10];
405 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
406 if (iDevicesFound
<= 0)
408 cout
<< "FAILED" << endl
;
409 UnloadLibCec(parser
);
414 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
415 " com port: " << devices
[0].comm
<< endl
<< endl
;
416 g_strPort
= devices
[0].comm
;
420 if (!parser
->Open(g_strPort
.c_str()))
422 cout
<< "unable to open the device on port " << g_strPort
<< endl
;
424 UnloadLibCec(parser
);
428 cout
<< "cec device opened" << endl
;
430 parser
->PowerOnDevices(CECDEVICE_TV
);
433 parser
->SetActiveSource();
436 bool bContinue(true);
437 cout
<< "waiting for input" << endl
;
442 /* just ignore the command buffer and clear it */
444 while (parser
&& parser
->GetNextCommand(&dummy
)) {}
453 if (GetWord(input
, command
))
455 if (command
== "tx" || command
== "txn")
462 while (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
463 bytes
.push_back(ivalue
);
465 if (command
== "txn")
466 bytes
.transmit_timeout
= 0;
468 parser
->Transmit(bytes
);
470 else if (command
== "on")
474 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
476 parser
->PowerOnDevices((cec_logical_address
) iValue
);
480 cout
<< "invalid destination" << endl
;
483 else if (command
== "standby")
487 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
489 parser
->StandbyDevices((cec_logical_address
) iValue
);
493 cout
<< "invalid destination" << endl
;
496 else if (command
== "poll")
500 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
502 if (parser
->PollDevice((cec_logical_address
) iValue
))
503 cout
<< "POLL message sent" << endl
;
505 cout
<< "POLL message not sent" << endl
;
509 cout
<< "invalid destination" << endl
;
512 else if (command
== "la")
515 if (GetWord(input
, strvalue
))
517 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
520 else if (command
== "pa")
524 if (GetWord(input
, strB1
) && HexStrToInt(strB1
, iB1
) &&
525 GetWord(input
, strB2
) && HexStrToInt(strB2
, iB2
))
527 uint16_t iPhysicalAddress
= ((uint16_t)iB1
<< 8) + iB2
;
528 parser
->SetPhysicalAddress(iPhysicalAddress
);
531 else if (command
== "osd")
533 bool bFirstWord(false);
534 string strAddr
, strMessage
, strWord
;
536 if (GetWord(input
, strAddr
) && HexStrToInt(strAddr
, iAddr
) && iAddr
< 0xF)
538 while (GetWord(input
, strWord
))
543 strMessage
.append(" ");
545 strMessage
.append(strWord
);
547 parser
->SetOSDString((cec_logical_address
) iAddr
, CEC_DISPLAY_CONTROL_DISPLAY_FOR_DEFAULT_TIME
, strMessage
.c_str());
550 else if (command
== "ping")
552 parser
->PingAdapter();
554 else if (command
== "mon")
556 CStdString strEnable
;
557 if (GetWord(input
, strEnable
) && (strEnable
.Equals("0") || strEnable
.Equals("1")))
559 parser
->SwitchMonitoring(strEnable
.Equals("1"));
562 else if (command
== "bl")
564 parser
->StartBootloader();
566 else if (command
== "lang")
569 if (GetWord(input
, strDev
))
571 int iDev
= atoi(strDev
);
572 if (iDev
>= 0 && iDev
< 15)
575 cec_menu_language language
;
576 if (parser
->GetDeviceMenuLanguage((cec_logical_address
) iDev
, &language
))
577 strLog
.Format("menu language '%s'", language
.language
);
580 cout
<< strLog
.c_str() << endl
;
584 else if (command
== "ven")
587 if (GetWord(input
, strDev
))
589 int iDev
= atoi(strDev
);
590 if (iDev
>= 0 && iDev
< 15)
592 uint64_t iVendor
= parser
->GetDeviceVendorId((cec_logical_address
) iDev
);
594 strLog
.Format("vendor id: %06x", iVendor
);
595 cout
<< strLog
.c_str() << endl
;
599 else if (command
== "ver")
602 if (GetWord(input
, strDev
))
604 int iDev
= atoi(strDev
);
605 if (iDev
>= 0 && iDev
< 15)
607 cec_version iVersion
= parser
->GetDeviceCecVersion((cec_logical_address
) iDev
);
610 case CEC_VERSION_1_2
:
611 cout
<< "CEC version 1.2" << endl
;
613 case CEC_VERSION_1_2A
:
614 cout
<< "CEC version 1.2a" << endl
;
616 case CEC_VERSION_1_3
:
617 cout
<< "CEC version 1.3" << endl
;
619 case CEC_VERSION_1_3A
:
620 cout
<< "CEC version 1.3a" << endl
;
623 cout
<< "unknown CEC version" << endl
;
629 else if (command
== "pow")
632 if (GetWord(input
, strDev
))
634 int iDev
= atoi(strDev
);
635 if (iDev
>= 0 && iDev
< 15)
637 cec_power_status iPower
= parser
->GetDevicePowerStatus((cec_logical_address
) iDev
);
640 case CEC_POWER_STATUS_ON
:
641 cout
<< "powered on" << endl
;
643 case CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY
:
644 cout
<< "on -> standby" << endl
;
646 case CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
:
647 cout
<< "standby -> on" << endl
;
649 case CEC_POWER_STATUS_STANDBY
:
650 cout
<< "standby" << endl
;
653 cout
<< "unknown power status" << endl
;
659 else if (command
== "r")
661 cout
<< "closing the connection" << endl
;
665 cout
<< "opening a new connection" << endl
;
666 parser
->Open(g_strPort
.c_str());
669 cout
<< "setting active source" << endl
;
670 parser
->SetActiveSource();
672 else if (command
== "h" || command
== "help")
676 else if (command
== "q" || command
== "quit")
680 else if (command
== "log")
683 if (GetWord(input
, strLevel
))
685 int iNewLevel
= atoi(strLevel
);
686 if (iNewLevel
>= CEC_LOG_ERROR
&& iNewLevel
<= CEC_LOG_ALL
)
688 g_cecLogLevel
= iNewLevel
;
689 cout
<< "log level changed to " << strLevel
.c_str() << endl
;
695 cout
<< "waiting for input" << endl
;
697 CCondition::Sleep(50);
700 parser
->StandbyDevices(CECDEVICE_BROADCAST
);
703 UnloadLibCec(parser
);
705 if (g_logOutput
.is_open())