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 3
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
)
108 cout
<< "ERROR: " << message
.message
.c_str() << endl
;
110 case CEC_LOG_WARNING
:
111 cout
<< "WARNING: " << message
.message
.c_str() << endl
;
114 cout
<< "NOTICE: " << message
.message
.c_str() << endl
;
117 cout
<< "DEBUG: " << message
.message
.c_str() << endl
;
123 void list_devices(ICECAdapter
*parser
)
125 cout
<< "Found devices: ";
126 vector
<cec_adapter
> devices
;
127 int iDevicesFound
= parser
->FindAdapters(devices
);
128 if (iDevicesFound
<= 0)
131 cout
<< "Not supported yet, sorry!" << endl
;
133 cout
<< "NONE" << endl
;
138 cout
<< devices
.size() << endl
;
139 for (unsigned int iDevicePtr
= 0; iDevicePtr
< devices
.size(); iDevicePtr
++)
141 CStdString strDevice
;
142 strDevice
.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr
, devices
[iDevicePtr
].path
.c_str(), devices
[0].comm
.c_str());
143 cout
<< endl
<< strDevice
.c_str() << endl
;
148 void show_help(const char* strExec
)
151 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << endl
<<
153 "parameters:" << endl
<<
154 "\t-h --help Shows this help text" << endl
<<
155 "\t-l --list-devices List all devices on this system" << endl
<<
156 "\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
<<
158 "Type 'h' or 'help' and press enter after starting the client to display all available commands" << endl
;
161 void show_console_help(void)
164 "================================================================================" << endl
<<
165 "Available commands:" << endl
<<
167 "tx {bytes} transfer bytes over the CEC line." << endl
<<
168 "[tx 40 00 FF 11 22 33] sends bytes 0x40 0x00 0xFF 0x11 0x22 0x33" << endl
<<
170 "la {logical_address} change the logical address of the CEC adapter." << endl
<<
171 "[la 4] logical address 4" << endl
<<
173 "[ping] send a ping command to the CEC adapter." << endl
<<
174 "[bl] to let the adapter enter the bootloader, to upgrade the flash rom." << endl
<<
175 "[h] or [help] show this help." << endl
<<
176 "[q] or [quit] to quit the CEC test client and switch off all connected CEC devices." << endl
<<
177 "================================================================================" << endl
;
180 int main (int argc
, char *argv
[])
182 ICECAdapter
*parser
= LoadLibCec("CEC Tester");
183 if (!parser
&& parser
->GetMinVersion() > CEC_TEST_CLIENT_VERSION
)
185 cout
<< "Unable to create parser. Is libcec.dll present?" << endl
;
189 strLog
.Format("CEC Parser created - libcec version %d", parser
->GetLibVersion());
190 cout
<< strLog
.c_str() << endl
;
192 //make stdin non-blocking
194 int flags
= fcntl(0, F_GETFL
, 0);
196 fcntl(0, F_SETFL
, flags
);
202 cout
<< "no serial port given. trying autodetect: ";
203 vector
<cec_adapter
> devices
;
204 int iDevicesFound
= parser
->FindAdapters(devices
);
205 if (iDevicesFound
<= 0)
207 cout
<< "FAILED" << endl
;
208 UnloadLibCec(parser
);
213 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
214 " com port: " << devices
[0].comm
<< endl
<< endl
;
215 strPort
= devices
[0].comm
;
218 else if (!strcmp(argv
[1], "--list-devices") || !strcmp(argv
[1], "-l"))
220 list_devices(parser
);
221 UnloadLibCec(parser
);
224 else if (!strcmp(argv
[1], "--help") || !strcmp(argv
[1], "-h"))
234 if (!parser
->Open(strPort
.c_str()))
236 cout
<< "unable to open the device on port " << strPort
<< endl
;
238 UnloadLibCec(parser
);
242 cout
<< "cec device opened" << endl
;
243 usleep(CEC_SETTLE_DOWN_TIME
);
245 parser
->PowerOnDevices(CECDEVICE_TV
);
248 parser
->SetActiveView();
251 bool bContinue(true);
252 cout
<< "waiting for input" << endl
;
264 if (GetWord(input
, command
))
270 vector
<uint8_t> bytes
;
271 while (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
272 bytes
.push_back(ivalue
);
274 parser
->Transmit(bytes
);
276 else if (command
== "la")
279 if (GetWord(input
, strvalue
))
281 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
284 else if (command
== "ping")
286 parser
->PingAdapter();
288 else if (command
== "bl")
290 parser
->StartBootloader();
292 else if (command
== "h" || command
== "help")
296 else if (command
== "q" || command
== "quit")
302 cout
<< "waiting for input" << endl
;
304 CCondition::Sleep(50);
307 parser
->StandbyDevices(CECDEVICE_BROADCAST
);
310 UnloadLibCec(parser
);