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/util/threads.h"
35 #include "../lib/util/misc.h"
36 #include "../lib/util/StdString.h"
45 #define CEC_TEST_CLIENT_VERSION 2
47 void flush_log(ICECDevice
*cecParser
)
49 cec_log_message message
;
50 while (cecParser
&& cecParser
->GetNextLogMessage(&message
))
52 switch (message
.level
)
55 cout
<< "ERROR: " << message
.message
.c_str() << endl
;
58 cout
<< "WARNING: " << message
.message
.c_str() << endl
;
61 cout
<< "NOTICE: " << message
.message
.c_str() << endl
;
64 cout
<< "DEBUG: " << message
.message
.c_str() << endl
;
70 void list_devices(ICECDevice
*parser
)
72 cout
<< "Found devices: ";
73 vector
<cec_device
> devices
;
74 int iDevicesFound
= parser
->FindDevices(devices
);
75 if (iDevicesFound
<= 0)
78 cout
<< "Not supported yet, sorry!" << endl
;
80 cout
<< "NONE" << endl
;
85 cout
<< devices
.size() << endl
;
86 for (unsigned int iDevicePtr
= 0; iDevicePtr
< devices
.size(); iDevicePtr
++)
89 strDevice
.Format("device: %d\npath: %s\ncom port: %s", iDevicePtr
, devices
[iDevicePtr
].path
.c_str(), devices
[0].comm
.c_str());
90 cout
<< endl
<< strDevice
.c_str() << endl
;
95 void show_help(const char* strExec
)
98 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << endl
<<
100 "parameters:" << endl
<<
101 "\t-h --help Shows this help text" << endl
<<
102 "\t-l --list-devices List all devices on this system" << endl
<<
103 "\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
<<
105 "Type 'h' or 'help' and press enter after starting the client to display all available commands" << endl
;
108 void show_console_help(void)
111 "================================================================================" << endl
<<
112 "Available commands:" << endl
<<
114 "tx {bytes} transfer bytes over the CEC line." << endl
<<
115 "[tx 40 00 FF 11 22 33] sends bytes 0x40 0x00 0xFF 0x11 0x22 0x33" << endl
<<
117 "am {ackmack} change the ackmask of the CEC adapter." << endl
<<
118 "[am 10] ackmask 0x10 (logical address 4)" << endl
<<
120 "la {logical_address} change the logical address of the CEC adapter." << endl
<<
121 "[la 4] logical address 4" << endl
<<
123 "[ping] send a ping command to the CEC adapter." << endl
<<
124 "[bl] to let the adapter enter the bootloader, to upgrade the flash rom." << endl
<<
125 "[h] or [help] show this help." << endl
<<
126 "[q] or [quit] to quit the CEC test client and switch off all connected CEC devices." << endl
<<
127 "================================================================================" << endl
;
130 int main (int argc
, char *argv
[])
132 ICECDevice
*parser
= LoadLibCec("CEC Tester");
133 if (!parser
&& parser
->GetMinVersion() > CEC_TEST_CLIENT_VERSION
)
135 cout
<< "Unable to create parser. Is libcec.dll present?" << endl
;
139 strLog
.Format("CEC Parser created - libcec version %d", parser
->GetLibVersion());
140 cout
<< strLog
.c_str() << endl
;
142 //make stdin non-blocking
144 int flags
= fcntl(0, F_GETFL
, 0);
146 fcntl(0, F_SETFL
, flags
);
152 cout
<< "no serial port given. trying autodetect: ";
153 vector
<cec_device
> devices
;
154 int iDevicesFound
= parser
->FindDevices(devices
);
155 if (iDevicesFound
<= 0)
157 cout
<< "FAILED" << endl
;
158 UnloadLibCec(parser
);
163 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
164 " com port: " << devices
[0].comm
<< endl
<< endl
;
165 strPort
= devices
[0].comm
;
168 else if (!strcmp(argv
[1], "--list-devices") || !strcmp(argv
[1], "-l"))
170 list_devices(parser
);
171 UnloadLibCec(parser
);
174 else if (!strcmp(argv
[1], "--help") || !strcmp(argv
[1], "-h"))
184 if (!parser
->Open(strPort
.c_str()))
186 cout
<< "unable to open the device on port " << strPort
<< endl
;
188 UnloadLibCec(parser
);
192 cout
<< "cec device opened" << endl
;
193 usleep(CEC_SETTLE_DOWN_TIME
);
195 parser
->PowerOnDevices();
198 parser
->SetActiveView();
201 bool bContinue(true);
202 cout
<< "waiting for input" << endl
;
214 if (GetWord(input
, command
))
220 vector
<uint8_t> bytes
;
221 while (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
222 bytes
.push_back(ivalue
);
224 parser
->Transmit(bytes
);
226 else if (command
== "am")
230 if (GetWord(input
, strvalue
) && HexStrToInt(strvalue
, ackmask
))
232 parser
->SetAckMask(ackmask
);
235 else if (command
== "la")
238 if (GetWord(input
, strvalue
))
240 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
243 else if (command
== "ping")
247 else if (command
== "bl")
249 parser
->StartBootloader();
251 else if (command
== "h" || command
== "help")
255 else if (command
== "q" || command
== "quit")
261 cout
<< "waiting for input" << endl
;
263 CCondition::Sleep(50);
266 parser
->PowerOffDevices();
268 UnloadLibCec(parser
);