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
, int& value
)
50 return sscanf(data
.c_str(), "%x", &value
) == 1;
54 //get the first word (separated by whitespace) from string data and place that in word
55 //then remove that word from string data
56 bool GetWord(string
& data
, string
& word
)
58 stringstream
datastream(data
);
62 if (datastream
.fail())
68 size_t pos
= data
.find(word
) + word
.length();
70 if (pos
>= data
.length())
76 data
= data
.substr(pos
);
82 if (datastream
.fail())
88 void flush_log(ICECAdapter
*cecParser
)
90 cec_log_message message
;
91 while (cecParser
&& cecParser
->GetNextLogMessage(&message
))
93 switch (message
.level
)
96 cout
<< "ERROR: " << message
.message
.c_str() << endl
;
99 cout
<< "WARNING: " << message
.message
.c_str() << endl
;
102 cout
<< "NOTICE: " << message
.message
.c_str() << endl
;
105 cout
<< "DEBUG: " << message
.message
.c_str() << endl
;
111 void list_devices(ICECAdapter
*parser
)
113 cout
<< "Found devices: ";
114 vector
<cec_adapter
> devices
;
115 int iDevicesFound
= parser
->FindAdapters(devices
);
116 if (iDevicesFound
<= 0)
119 cout
<< "Not supported yet, sorry!" << endl
;
121 cout
<< "NONE" << endl
;
126 cout
<< devices
.size() << endl
;
127 for (unsigned int iDevicePtr
= 0; iDevicePtr
< devices
.size(); iDevicePtr
++)
129 CStdString strDevice
;
130 strDevice
.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr
, devices
[iDevicePtr
].path
.c_str(), devices
[0].comm
.c_str());
131 cout
<< endl
<< strDevice
.c_str() << endl
;
136 void show_help(const char* strExec
)
139 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << endl
<<
141 "parameters:" << endl
<<
142 "\t-h --help Shows this help text" << endl
<<
143 "\t-l --list-devices List all devices on this system" << endl
<<
144 "\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
<<
146 "Type 'h' or 'help' and press enter after starting the client to display all available commands" << endl
;
149 void show_console_help(void)
152 "================================================================================" << endl
<<
153 "Available commands:" << endl
<<
155 "tx {bytes} transfer bytes over the CEC line." << endl
<<
156 "[tx 40 00 FF 11 22 33] sends bytes 0x40 0x00 0xFF 0x11 0x22 0x33" << endl
<<
158 "la {logical_address} change the logical address of the CEC adapter." << endl
<<
159 "[la 4] logical address 4" << endl
<<
161 "[ping] send a ping command to the CEC adapter." << endl
<<
162 "[bl] to let the adapter enter the bootloader, to upgrade the flash rom." << endl
<<
163 "[h] or [help] show this help." << endl
<<
164 "[q] or [quit] to quit the CEC test client and switch off all connected CEC devices." << endl
<<
165 "================================================================================" << endl
;
168 int main (int argc
, char *argv
[])
170 ICECAdapter
*parser
= LoadLibCec("CEC Tester");
171 if (!parser
&& parser
->GetMinVersion() > CEC_TEST_CLIENT_VERSION
)
173 cout
<< "Unable to create parser. Is libcec.dll present?" << endl
;
177 strLog
.Format("CEC Parser created - libcec version %d", parser
->GetLibVersion());
178 cout
<< strLog
.c_str() << endl
;
180 //make stdin non-blocking
182 int flags
= fcntl(0, F_GETFL
, 0);
184 fcntl(0, F_SETFL
, flags
);
190 cout
<< "no serial port given. trying autodetect: ";
191 vector
<cec_adapter
> devices
;
192 int iDevicesFound
= parser
->FindAdapters(devices
);
193 if (iDevicesFound
<= 0)
195 cout
<< "FAILED" << endl
;
196 UnloadLibCec(parser
);
201 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
202 " com port: " << devices
[0].comm
<< endl
<< endl
;
203 strPort
= devices
[0].comm
;
206 else if (!strcmp(argv
[1], "--list-devices") || !strcmp(argv
[1], "-l"))
208 list_devices(parser
);
209 UnloadLibCec(parser
);
212 else if (!strcmp(argv
[1], "--help") || !strcmp(argv
[1], "-h"))
222 if (!parser
->Open(strPort
.c_str()))
224 cout
<< "unable to open the device on port " << strPort
<< endl
;
226 UnloadLibCec(parser
);
230 cout
<< "cec device opened" << endl
;
231 usleep(CEC_SETTLE_DOWN_TIME
);
233 parser
->PowerOnDevices(CECDEVICE_TV
);
236 parser
->SetActiveView();
239 bool bContinue(true);
240 cout
<< "waiting for input" << endl
;
252 if (GetWord(input
, command
))
258 vector
<uint8_t> bytes
;
259 while (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
260 bytes
.push_back(ivalue
);
262 parser
->Transmit(bytes
);
264 else if (command
== "la")
267 if (GetWord(input
, strvalue
))
269 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
272 else if (command
== "ping")
274 parser
->PingAdapter();
276 else if (command
== "bl")
278 parser
->StartBootloader();
280 else if (command
== "h" || command
== "help")
284 else if (command
== "q" || command
== "quit")
290 cout
<< "waiting for input" << endl
;
292 CCondition::Sleep(50);
295 parser
->StandbyDevices(CECDEVICE_BROADCAST
);
298 UnloadLibCec(parser
);