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/
40 #include "../lib/platform/threads.h"
41 #include "../lib/util/StdString.h"
46 #define CEC_TEST_CLIENT_VERSION 8
48 #include <cecloader.h>
50 inline bool HexStrToInt(const std::string
& data
, uint8_t& value
)
53 if (sscanf(data
.c_str(), "%x", &iTmp
) == 1)
60 value
= (uint8_t) iTmp
;
68 //get the first word (separated by whitespace) from string data and place that in word
69 //then remove that word from string data
70 bool GetWord(string
& data
, string
& word
)
72 stringstream
datastream(data
);
76 if (datastream
.fail())
82 size_t pos
= data
.find(word
) + word
.length();
84 if (pos
>= data
.length())
90 data
= data
.substr(pos
);
96 if (datastream
.fail())
102 void flush_log(ICECAdapter
*cecParser
)
104 cec_log_message message
;
105 while (cecParser
&& cecParser
->GetNextLogMessage(&message
))
107 switch (message
.level
)
112 case CEC_LOG_WARNING
:
123 CStdString strMessageTmp
;
124 strMessageTmp
.Format("[%16lld]\t%s", message
.time
, message
.message
);
125 cout
<< strMessageTmp
.c_str() << endl
;
129 void list_devices(ICECAdapter
*parser
)
131 cec_adapter
*devices
= new cec_adapter
[10];
132 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
133 if (iDevicesFound
<= 0)
135 cout
<< "Found devices: NONE" << endl
;
140 strLog
.Format("Found devices: %d", iDevicesFound
);
141 cout
<< strLog
.c_str() << endl
;
142 for (unsigned int iDevicePtr
= 0; iDevicePtr
< iDevicesFound
; iDevicePtr
++)
144 CStdString strDevice
;
145 strDevice
.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr
+ 1, devices
[iDevicePtr
].path
, devices
[iDevicePtr
].comm
);
146 cout
<< endl
<< strDevice
.c_str() << endl
;
151 void show_help(const char* strExec
)
154 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << endl
<<
156 "parameters:" << endl
<<
157 "\t-h --help Shows this help text" << endl
<<
158 "\t-l --list-devices List all devices on this system" << endl
<<
159 "\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
<<
161 "Type 'h' or 'help' and press enter after starting the client to display all available commands" << endl
;
164 void show_console_help(void)
167 "================================================================================" << endl
<<
168 "Available commands:" << endl
<<
170 "tx {bytes} transfer bytes over the CEC line." << endl
<<
171 "txn {bytes} transfer bytes and don't wait for an ACK reply." << endl
<<
172 "[tx 40 00 FF 11 22 33] sends bytes 0x40 0x00 0xFF 0x11 0x22 0x33" << endl
<<
174 "on {address} power on the device with the given logical address." << endl
<<
175 "[on 5] power on a connected audio system" << endl
<<
177 "standby {address} put the device with the given address in standby mode." << endl
<<
178 "[standby 0] powers off the TV" << endl
<<
180 "la {logical_address} change the logical address of the CEC adapter." << endl
<<
181 "[la 4] logical address 4" << endl
<<
183 "pa {physical_address} change the physical address of the CEC adapter." << endl
<<
184 "[pa 10 00] physical address 1.0.0.0" << endl
<<
186 "osd {addr} {string} set OSD message on the specified device." << endl
<<
187 "[osd 0 Test Message] displays 'Test Message' on the TV" << endl
<<
189 "[mon] {1|0} enable or disable CEC bus monitoring." << endl
<<
190 "[ping] send a ping command to the CEC adapter." << endl
<<
191 "[bl] to let the adapter enter the bootloader, to upgrade" << endl
<<
192 " the flash rom." << endl
<<
193 "[r] reconnect to the CEC adapter." << endl
<<
194 "[h] or [help] show this help." << endl
<<
195 "[q] or [quit] to quit the CEC test client and switch off all" << endl
<<
196 " connected CEC devices." << endl
<<
197 "================================================================================" << endl
;
200 int main (int argc
, char *argv
[])
202 ICECAdapter
*parser
= LoadLibCec("CECTester");
203 if (!parser
|| parser
->GetMinVersion() > CEC_TEST_CLIENT_VERSION
)
206 cout
<< "Cannot load libcec.dll" << endl
;
208 cout
<< "Cannot load libcec.so" << endl
;
213 strLog
.Format("CEC Parser created - libcec version %d", parser
->GetLibVersion());
214 cout
<< strLog
.c_str() << endl
;
216 //make stdin non-blocking
218 int flags
= fcntl(0, F_GETFL
, 0);
220 fcntl(0, F_SETFL
, flags
);
226 cout
<< "no serial port given. trying autodetect: ";
227 cec_adapter devices
[10];
228 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
229 if (iDevicesFound
<= 0)
231 cout
<< "FAILED" << endl
;
232 UnloadLibCec(parser
);
237 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
238 " com port: " << devices
[0].comm
<< endl
<< endl
;
239 strPort
= devices
[0].comm
;
242 else if (!strcmp(argv
[1], "--list-devices") || !strcmp(argv
[1], "-l"))
244 list_devices(parser
);
245 UnloadLibCec(parser
);
248 else if (!strcmp(argv
[1], "--help") || !strcmp(argv
[1], "-h"))
258 if (!parser
->Open(strPort
.c_str()))
260 cout
<< "unable to open the device on port " << strPort
<< endl
;
262 UnloadLibCec(parser
);
266 cout
<< "cec device opened" << endl
;
268 parser
->PowerOnDevices(CECDEVICE_TV
);
271 parser
->SetActiveView();
274 bool bContinue(true);
275 cout
<< "waiting for input" << endl
;
287 if (GetWord(input
, command
))
289 if (command
== "tx" || command
== "txn")
296 while (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
297 bytes
.push_back(ivalue
);
299 parser
->Transmit(bytes
, command
== "tx");
301 else if (command
== "on")
305 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
307 parser
->PowerOnDevices((cec_logical_address
) iValue
);
311 cout
<< "invalid destination" << endl
;
314 else if (command
== "standby")
318 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
320 parser
->StandbyDevices((cec_logical_address
) iValue
);
324 cout
<< "invalid destination" << endl
;
327 else if (command
== "la")
330 if (GetWord(input
, strvalue
))
332 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
335 else if (command
== "pa")
339 if (GetWord(input
, strB1
) && HexStrToInt(strB1
, iB1
) &&
340 GetWord(input
, strB2
) && HexStrToInt(strB2
, iB2
))
342 uint16_t iPhysicalAddress
= ((uint16_t)iB1
<< 8) + iB2
;
343 parser
->SetPhysicalAddress(iPhysicalAddress
);
346 else if (command
== "osd")
348 bool bFirstWord(false);
349 string strAddr
, strMessage
, strWord
;
351 if (GetWord(input
, strAddr
) && HexStrToInt(strAddr
, iAddr
) && iAddr
< 0xF)
353 while (GetWord(input
, strWord
))
358 strMessage
.append(" ");
360 strMessage
.append(strWord
);
362 parser
->SetOSDString((cec_logical_address
) iAddr
, CEC_DISPLAY_CONTROL_DISPLAY_FOR_DEFAULT_TIME
, strMessage
.c_str());
365 else if (command
== "ping")
367 parser
->PingAdapter();
369 else if (command
== "mon")
371 CStdString strEnable
;
372 if (GetWord(input
, strEnable
) && (strEnable
.Equals("0") || strEnable
.Equals("1")))
374 parser
->SwitchMonitoring(strEnable
.Equals("1"));
377 else if (command
== "bl")
379 parser
->StartBootloader();
381 else if (command
== "r")
383 cout
<< "closing the connection" << endl
;
387 cout
<< "opening a new connection" << endl
;
388 parser
->Open(strPort
.c_str());
391 cout
<< "setting active view" << endl
;
392 parser
->SetActiveView();
394 else if (command
== "h" || command
== "help")
398 else if (command
== "q" || command
== "quit")
404 cout
<< "waiting for input" << endl
;
406 CCondition::Sleep(50);
409 parser
->StandbyDevices(CECDEVICE_BROADCAST
);
412 UnloadLibCec(parser
);