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/
33 #include "../../include/CECExports.h"
34 #include "../lib/platform/threads.h"
35 #include "../lib/util/StdString.h"
45 #define CEC_TEST_CLIENT_VERSION 5
48 inline bool HexStrToInt(const std::string
& data
, uint8_t& value
)
51 if (sscanf(data
.c_str(), "%x", &iTmp
) == 1)
58 value
= (uint8_t) iTmp
;
66 //get the first word (separated by whitespace) from string data and place that in word
67 //then remove that word from string data
68 bool GetWord(string
& data
, string
& word
)
70 stringstream
datastream(data
);
74 if (datastream
.fail())
80 size_t pos
= data
.find(word
) + word
.length();
82 if (pos
>= data
.length())
88 data
= data
.substr(pos
);
94 if (datastream
.fail())
100 void flush_log(ICECAdapter
*cecParser
)
102 cec_log_message message
;
103 while (cecParser
&& cecParser
->GetNextLogMessage(&message
))
105 switch (message
.level
)
110 case CEC_LOG_WARNING
:
121 CStdString strMessageTmp
;
122 strMessageTmp
.Format("[%16lld]\t%s", message
.time
, message
.message
);
123 cout
<< strMessageTmp
.c_str() << endl
;
127 void list_devices(ICECAdapter
*parser
)
129 cec_adapter
*devices
= new cec_adapter
[10];
130 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
131 if (iDevicesFound
<= 0)
133 cout
<< "Found devices: NONE" << endl
;
138 strLog
.Format("Found devices: %d", iDevicesFound
);
139 cout
<< strLog
.c_str() << endl
;
140 for (unsigned int iDevicePtr
= 0; iDevicePtr
< iDevicesFound
; iDevicePtr
++)
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
;
149 void show_help(const char* strExec
)
152 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << 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
<<
159 "Type 'h' or 'help' and press enter after starting the client to display all available commands" << endl
;
162 void show_console_help(void)
165 "================================================================================" << endl
<<
166 "Available commands:" << 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
<<
171 "on {address} power on the device with the given logical address." << endl
<<
172 "[on 5] power on a connected audio system" << endl
<<
174 "standby {address} put the device with the given address in standby mode." << endl
<<
175 "[standby 0] powers off the TV" << endl
<<
177 "la {logical_address} change the logical address of the CEC adapter." << endl
<<
178 "[la 4] logical address 4" << endl
<<
180 "[ping] send a ping command to the CEC adapter." << endl
<<
181 "[bl] to let the adapter enter the bootloader, to upgrade" << endl
<<
182 " the flash rom." << endl
<<
183 "[r] reconnect to the CEC adapter." << endl
<<
184 "[h] or [help] show this help." << endl
<<
185 "[q] or [quit] to quit the CEC test client and switch off all" << endl
<<
186 " connected CEC devices." << endl
<<
187 "================================================================================" << endl
;
190 int main (int argc
, char *argv
[])
192 ICECAdapter
*parser
= LoadLibCec("CECTester");
193 if (!parser
&& parser
->GetMinVersion() > CEC_TEST_CLIENT_VERSION
)
195 cout
<< "Unable to create parser. Is libcec.dll present?" << endl
;
199 strLog
.Format("CEC Parser created - libcec version %d", parser
->GetLibVersion());
200 cout
<< strLog
.c_str() << endl
;
202 //make stdin non-blocking
204 int flags
= fcntl(0, F_GETFL
, 0);
206 fcntl(0, F_SETFL
, flags
);
212 cout
<< "no serial port given. trying autodetect: ";
213 cec_adapter devices
[10];
214 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
215 if (iDevicesFound
<= 0)
217 cout
<< "FAILED" << endl
;
218 UnloadLibCec(parser
);
223 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
224 " com port: " << devices
[0].comm
<< endl
<< endl
;
225 strPort
= devices
[0].comm
;
228 else if (!strcmp(argv
[1], "--list-devices") || !strcmp(argv
[1], "-l"))
230 list_devices(parser
);
231 UnloadLibCec(parser
);
234 else if (!strcmp(argv
[1], "--help") || !strcmp(argv
[1], "-h"))
244 if (!parser
->Open(strPort
.c_str()))
246 cout
<< "unable to open the device on port " << strPort
<< endl
;
248 UnloadLibCec(parser
);
252 cout
<< "cec device opened" << endl
;
254 parser
->PowerOnDevices(CECDEVICE_TV
);
257 parser
->SetActiveView();
260 bool bContinue(true);
261 cout
<< "waiting for input" << endl
;
273 if (GetWord(input
, command
))
282 while (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
283 bytes
.push_back(ivalue
);
285 parser
->Transmit(bytes
);
287 else if (command
== "on")
291 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
293 parser
->PowerOnDevices((cec_logical_address
) iValue
);
297 cout
<< "invalid destination" << endl
;
300 else if (command
== "standby")
304 if (GetWord(input
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
306 parser
->StandbyDevices((cec_logical_address
) iValue
);
310 cout
<< "invalid destination" << endl
;
313 else if (command
== "la")
316 if (GetWord(input
, strvalue
))
318 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
321 else if (command
== "ping")
323 parser
->PingAdapter();
325 else if (command
== "bl")
327 parser
->StartBootloader();
329 else if (command
== "r")
331 cout
<< "closing the connection" << endl
;
335 cout
<< "opening a new connection" << endl
;
336 parser
->Open(strPort
.c_str());
339 cout
<< "setting active view" << endl
;
340 parser
->SetActiveView();
342 else if (command
== "h" || command
== "help")
346 else if (command
== "q" || command
== "quit")
352 cout
<< "waiting for input" << endl
;
354 CCondition::Sleep(50);
357 parser
->StandbyDevices(CECDEVICE_BROADCAST
);
360 UnloadLibCec(parser
);