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 8
49 #include <cecloader.h>
51 int g_cecLogLevel
= CEC_LOG_ALL
;
52 int g_iLogicalAddress
= CECDEVICE_PLAYBACKDEVICE1
;
54 bool g_bShortLog
= false;
57 inline bool HexStrToInt(const std::string
& data
, uint8_t& value
)
60 if (sscanf(data
.c_str(), "%x", &iTmp
) == 1)
67 value
= (uint8_t) iTmp
;
75 //get the first word (separated by whitespace) from string data and place that in word
76 //then remove that word from string data
77 bool GetWord(string
& data
, string
& word
)
79 stringstream
datastream(data
);
83 if (datastream
.fail())
89 size_t pos
= data
.find(word
) + word
.length();
91 if (pos
>= data
.length())
97 data
= data
.substr(pos
);
100 datastream
.str(data
);
103 if (datastream
.fail())
109 void flush_log(ICECAdapter
*cecParser
)
111 cec_log_message message
;
112 while (cecParser
&& cecParser
->GetNextLogMessage(&message
))
114 if ((message
.level
& g_cecLogLevel
) == message
.level
)
117 switch (message
.level
)
120 strLevel
= "ERROR: ";
122 case CEC_LOG_WARNING
:
123 strLevel
= "WARNING: ";
126 strLevel
= "NOTICE: ";
128 case CEC_LOG_TRAFFIC
:
129 strLevel
= "TRAFFIC: ";
132 strLevel
= "DEBUG: ";
138 CStdString strFullLog
;
139 strFullLog
.Format("%s[%16lld]\t%s", strLevel
.c_str(), message
.time
, message
.message
);
140 cout
<< strFullLog
.c_str() << endl
;
142 if (g_logOutput
.is_open())
145 g_logOutput
<< message
.message
<< endl
;
147 g_logOutput
<< strFullLog
.c_str() << endl
;
153 void list_devices(ICECAdapter
*parser
)
155 cec_adapter
*devices
= new cec_adapter
[10];
156 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
157 if (iDevicesFound
<= 0)
159 cout
<< "Found devices: NONE" << endl
;
164 strLog
.Format("Found devices: %d", iDevicesFound
);
165 cout
<< strLog
.c_str() << endl
;
166 for (unsigned int iDevicePtr
= 0; iDevicePtr
< iDevicesFound
; iDevicePtr
++)
168 CStdString strDevice
;
169 strDevice
.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr
+ 1, devices
[iDevicePtr
].path
, devices
[iDevicePtr
].comm
);
170 cout
<< endl
<< strDevice
.c_str() << endl
;
175 void show_help(const char* strExec
)
178 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << endl
<<
180 "parameters:" << endl
<<
181 " -h --help Shows this help text" << endl
<<
182 " -l --list-devices List all devices on this system" << endl
<<
183 " -la --logical-address {a} The logical address to use." << endl
<<
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
<<
187 " -d --log-level {level} Sets the log level. See cectypes.h for values." << endl
<<
188 " [COM PORT] The com port to connect to. If no COM" << endl
<<
189 " port is given, the client tries to connect to the" << endl
<<
190 " first device that is detected." << endl
<<
192 "Type 'h' or 'help' and press enter after starting the client to display all " << endl
<<
193 "available commands" << endl
;
196 void show_console_help(void)
199 "================================================================================" << endl
<<
200 "Available commands:" << endl
<<
202 "tx {bytes} transfer bytes over the CEC line." << endl
<<
203 "txn {bytes} transfer bytes and don't wait for an ACK reply." << endl
<<
204 "[tx 40 00 FF 11 22 33] sends bytes 0x40 0x00 0xFF 0x11 0x22 0x33" << endl
<<
206 "on {address} power on the device with the given logical address." << endl
<<
207 "[on 5] power on a connected audio system" << endl
<<
209 "standby {address} put the device with the given address in standby mode." << endl
<<
210 "[standby 0] powers off the TV" << endl
<<
212 "la {logical_address} change the logical address of the CEC adapter." << endl
<<
213 "[la 4] logical address 4" << endl
<<
215 "pa {physical_address} change the physical address of the CEC adapter." << endl
<<
216 "[pa 10 00] physical address 1.0.0.0" << endl
<<
218 "osd {addr} {string} set OSD message on the specified device." << endl
<<
219 "[osd 0 Test Message] displays 'Test Message' on the TV" << endl
<<
221 "ver {addr} get the CEC version of the specified device." << endl
<<
222 "[ver 0] get the CEC version of the TV" << endl
<<
224 "lang {addr get the menu language of the specified device." << endl
<<
225 "[lang 0] get the menu language of the TV" << endl
<<
227 "[mon] {1|0} enable or disable CEC bus monitoring." << endl
<<
228 "[log] {1 - 31} change the log level. see cectypes.h for values." << endl
<<
229 "[ping] send a ping command to the CEC adapter." << endl
<<
230 "[bl] to let the adapter enter the bootloader, to upgrade" << endl
<<
231 " the flash rom." << endl
<<
232 "[r] reconnect to the CEC adapter." << endl
<<
233 "[h] or [help] show this help." << endl
<<
234 "[q] or [quit] to quit the CEC test client and switch off all" << endl
<<
235 " connected CEC devices." << endl
<<
236 "================================================================================" << endl
;
239 int main (int argc
, char *argv
[])
241 ICECAdapter
*parser
= LoadLibCec("CECTester");
242 if (!parser
|| parser
->GetMinVersion() > CEC_TEST_CLIENT_VERSION
)
245 cout
<< "Cannot load libcec.dll" << endl
;
247 cout
<< "Cannot load libcec.so" << endl
;
252 strLog
.Format("CEC Parser created - libcec version %d", parser
->GetLibVersion());
253 cout
<< strLog
.c_str() << endl
;
255 //make stdin non-blocking
257 int flags
= fcntl(0, F_GETFL
, 0);
259 fcntl(0, F_SETFL
, flags
);
263 while (iArgPtr
< argc
)
265 if (argc
>= iArgPtr
+ 1)
267 if (!strcmp(argv
[iArgPtr
], "-f") ||
268 !strcmp(argv
[iArgPtr
], "--log-file") ||
269 !strcmp(argv
[iArgPtr
], "-sf") ||
270 !strcmp(argv
[iArgPtr
], "--short-log-file"))
272 if (argc
>= iArgPtr
+ 2)
274 g_logOutput
.open(argv
[iArgPtr
+ 1]);
275 g_bShortLog
= (!strcmp(argv
[iArgPtr
], "-sf") || !strcmp(argv
[iArgPtr
], "--short-log-file"));
280 cout
<< "== skipped log-file parameter: no file given ==" << endl
;
284 else if (!strcmp(argv
[iArgPtr
], "-d") ||
285 !strcmp(argv
[iArgPtr
], "--log-level"))
287 if (argc
>= iArgPtr
+ 2)
289 int iNewLevel
= atoi(argv
[iArgPtr
+ 1]);
290 if (iNewLevel
>= CEC_LOG_ERROR
&& iNewLevel
<= CEC_LOG_ALL
)
292 g_cecLogLevel
= iNewLevel
;
293 cout
<< "log level set to " << argv
[iArgPtr
+ 1] << endl
;
297 cout
<< "== skipped log-level parameter: invalid level '" << argv
[iArgPtr
+ 1] << "' ==" << endl
;
303 cout
<< "== skipped log-level parameter: no level given ==" << endl
;
307 else if (!strcmp(argv
[iArgPtr
], "-la") ||
308 !strcmp(argv
[iArgPtr
], "--logical-address"))
310 if (argc
>= iArgPtr
+ 2)
312 int iNewAddress
= atoi(argv
[iArgPtr
+ 1]);
313 if (iNewAddress
>= 0 && iNewAddress
<= 15)
315 g_iLogicalAddress
= iNewAddress
;
316 cout
<< "logical address set to " << argv
[iArgPtr
+ 1] << endl
;
320 cout
<< "== skipped logical-address parameter: invalid address '" << argv
[iArgPtr
+ 1] << "' ==" << endl
;
326 cout
<< "== skipped logical-address parameter: no address given ==" << endl
;
330 else if (!strcmp(argv
[iArgPtr
], "--list-devices") ||
331 !strcmp(argv
[iArgPtr
], "-l"))
333 list_devices(parser
);
334 UnloadLibCec(parser
);
337 else if (!strcmp(argv
[iArgPtr
], "--help") ||
338 !strcmp(argv
[iArgPtr
], "-h"))
341 UnloadLibCec(parser
);
346 g_strPort
= argv
[iArgPtr
++];
351 if (g_strPort
.IsEmpty())
353 cout
<< "no serial port given. trying autodetect: ";
354 cec_adapter devices
[10];
355 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
356 if (iDevicesFound
<= 0)
358 cout
<< "FAILED" << endl
;
359 UnloadLibCec(parser
);
364 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
365 " com port: " << devices
[0].comm
<< endl
<< endl
;
366 g_strPort
= devices
[0].comm
;
370 parser
->SetLogicalAddress((cec_logical_address
) g_iLogicalAddress
);
372 if (!parser
->Open(g_strPort
.c_str()))
374 cout
<< "unable to open the device on port " << g_strPort
<< endl
;
376 UnloadLibCec(parser
);
380 cout
<< "cec device opened" << endl
;
382 parser
->PowerOnDevices(CECDEVICE_TV
);
385 parser
->SetActiveView();
388 bool bContinue(true);
389 cout
<< "waiting for input" << endl
;
401 if (GetWord(input
, command
))
403 if (command
== "tx" || command
== "txn")
410 while (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
411 bytes
.push_back(ivalue
);
413 if (command
== "txn")
414 bytes
.ack_timeout
= 0;
416 parser
->Transmit(bytes
);
418 else if (command
== "on")
422 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
424 parser
->PowerOnDevices((cec_logical_address
) iValue
);
428 cout
<< "invalid destination" << endl
;
431 else if (command
== "standby")
435 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
437 parser
->StandbyDevices((cec_logical_address
) iValue
);
441 cout
<< "invalid destination" << endl
;
444 else if (command
== "la")
447 if (GetWord(input
, strvalue
))
449 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
452 else if (command
== "pa")
456 if (GetWord(input
, strB1
) && HexStrToInt(strB1
, iB1
) &&
457 GetWord(input
, strB2
) && HexStrToInt(strB2
, iB2
))
459 uint16_t iPhysicalAddress
= ((uint16_t)iB1
<< 8) + iB2
;
460 parser
->SetPhysicalAddress(iPhysicalAddress
);
463 else if (command
== "osd")
465 bool bFirstWord(false);
466 string strAddr
, strMessage
, strWord
;
468 if (GetWord(input
, strAddr
) && HexStrToInt(strAddr
, iAddr
) && iAddr
< 0xF)
470 while (GetWord(input
, strWord
))
475 strMessage
.append(" ");
477 strMessage
.append(strWord
);
479 parser
->SetOSDString((cec_logical_address
) iAddr
, CEC_DISPLAY_CONTROL_DISPLAY_FOR_DEFAULT_TIME
, strMessage
.c_str());
482 else if (command
== "ping")
484 parser
->PingAdapter();
486 else if (command
== "mon")
488 CStdString strEnable
;
489 if (GetWord(input
, strEnable
) && (strEnable
.Equals("0") || strEnable
.Equals("1")))
491 parser
->SwitchMonitoring(strEnable
.Equals("1"));
494 else if (command
== "bl")
496 parser
->StartBootloader();
498 else if (command
== "lang")
501 if (GetWord(input
, strDev
))
503 int iDev
= atoi(strDev
);
504 if (iDev
>= 0 && iDev
< 15)
507 cec_menu_language language
;
508 if (parser
->GetDeviceMenuLanguage((cec_logical_address
) iDev
, &language
))
509 strLog
.Format("menu language '%s'", language
.language
);
512 cout
<< strLog
.c_str() << endl
;
516 else if (command
== "ver")
519 if (GetWord(input
, strDev
))
521 int iDev
= atoi(strDev
);
522 if (iDev
>= 0 && iDev
< 15)
524 cec_version iVersion
= parser
->GetDeviceCecVersion((cec_logical_address
) iDev
);
527 case CEC_VERSION_1_2
:
528 cout
<< "CEC version 1.2" << endl
;
530 case CEC_VERSION_1_2A
:
531 cout
<< "CEC version 1.2a" << endl
;
533 case CEC_VERSION_1_3
:
534 cout
<< "CEC version 1.3" << endl
;
536 case CEC_VERSION_1_3A
:
537 cout
<< "CEC version 1.3a" << endl
;
540 cout
<< "unknown CEC version" << endl
;
546 else if (command
== "r")
548 cout
<< "closing the connection" << endl
;
552 cout
<< "opening a new connection" << endl
;
553 parser
->Open(g_strPort
.c_str());
556 cout
<< "setting active view" << endl
;
557 parser
->SetActiveView();
559 else if (command
== "h" || command
== "help")
563 else if (command
== "q" || command
== "quit")
567 else if (command
== "log")
570 if (GetWord(input
, strLevel
))
572 int iNewLevel
= atoi(strLevel
);
573 if (iNewLevel
>= CEC_LOG_ERROR
&& iNewLevel
<= CEC_LOG_ALL
)
575 g_cecLogLevel
= iNewLevel
;
576 cout
<< "log level changed to " << strLevel
.c_str() << endl
;
582 cout
<< "waiting for input" << endl
;
584 CCondition::Sleep(50);
587 parser
->StandbyDevices(CECDEVICE_BROADCAST
);
590 UnloadLibCec(parser
);
592 if (g_logOutput
.is_open())