2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011-2012 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/
34 #include "../include/cec.h"
43 #include "../lib/platform/os.h"
44 #include "../lib/implementations/CECCommandHandler.h"
45 #include "../lib/platform/util/StdString.h"
49 using namespace PLATFORM
;
51 #define CEC_CONFIG_VERSION CEC_CLIENT_VERSION_CURRENT;
53 #include "../../include/cecloader.h"
55 ICECCallbacks g_callbacks
;
56 libcec_configuration g_config
;
57 int g_cecLogLevel(-1);
58 int g_cecDefaultLogLevel(CEC_LOG_ALL
);
60 bool g_bShortLog(false);
62 bool g_bSingleCommand(false);
64 bool g_bHardExit(false);
67 inline void PrintToStdOut(const char *strFormat
, ...)
72 va_start(argList
, strFormat
);
73 strLog
.FormatV(strFormat
, argList
);
76 CLockObject
lock(g_outputMutex
);
77 cout
<< strLog
<< endl
;
80 inline bool HexStrToInt(const std::string
& data
, uint8_t& value
)
83 if (sscanf(data
.c_str(), "%x", &iTmp
) == 1)
90 value
= (uint8_t) iTmp
;
98 //get the first word (separated by whitespace) from string data and place that in word
99 //then remove that word from string data
100 bool GetWord(string
& data
, string
& word
)
102 stringstream
datastream(data
);
106 if (datastream
.fail())
112 size_t pos
= data
.find(word
) + word
.length();
114 if (pos
>= data
.length())
120 data
= data
.substr(pos
);
123 datastream
.str(data
);
126 if (datastream
.fail())
132 int CecLogMessage(void *UNUSED(cbParam
), const cec_log_message message
)
134 if ((message
.level
& g_cecLogLevel
) == message
.level
)
137 switch (message
.level
)
140 strLevel
= "ERROR: ";
142 case CEC_LOG_WARNING
:
143 strLevel
= "WARNING: ";
146 strLevel
= "NOTICE: ";
148 case CEC_LOG_TRAFFIC
:
149 strLevel
= "TRAFFIC: ";
152 strLevel
= "DEBUG: ";
158 CStdString strFullLog
;
159 strFullLog
.Format("%s[%16lld]\t%s", strLevel
.c_str(), message
.time
, message
.message
);
160 PrintToStdOut(strFullLog
.c_str());
162 if (g_logOutput
.is_open())
165 g_logOutput
<< message
.message
<< endl
;
167 g_logOutput
<< strFullLog
.c_str() << endl
;
174 int CecKeyPress(void *UNUSED(cbParam
), const cec_keypress
UNUSED(key
))
179 int CecCommand(void *UNUSED(cbParam
), const cec_command
UNUSED(command
))
184 int CecAlert(void *UNUSED(cbParam
), const libcec_alert type
, const libcec_parameter
UNUSED(param
))
188 case CEC_ALERT_CONNECTION_LOST
:
189 PrintToStdOut("Connection lost - exiting\n");
198 void ListDevices(ICECAdapter
*parser
)
200 cec_adapter
*devices
= new cec_adapter
[10];
201 int8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
202 if (iDevicesFound
<= 0)
204 PrintToStdOut("Found devices: NONE");
208 CStdString strDeviceInfo
;
209 strDeviceInfo
.Format("Found devices: %d\n\n", iDevicesFound
);
211 for (int8_t iDevicePtr
= 0; iDevicePtr
< iDevicesFound
; iDevicePtr
++)
213 strDeviceInfo
.AppendFormat("device: %d\ncom port: %s\n", iDevicePtr
+ 1, devices
[iDevicePtr
].comm
);
214 libcec_configuration config
;
217 if (!parser
->GetDeviceInformation(devices
[iDevicePtr
].comm
, &config
))
218 PrintToStdOut("WARNING: unable to open the device on port %s", devices
[iDevicePtr
].comm
);
221 strDeviceInfo
.AppendFormat("firmware version: %d\n", config
.iFirmwareVersion
);
223 if (config
.iFirmwareBuildDate
!= CEC_FW_BUILD_UNKNOWN
)
225 time_t buildTime
= (time_t)config
.iFirmwareBuildDate
;
226 strDeviceInfo
.AppendFormat("firmware build date: %s", asctime(gmtime(&buildTime
)));
227 strDeviceInfo
= strDeviceInfo
.Left(strDeviceInfo
.length() > 1 ? (unsigned)(strDeviceInfo
.length() - 1) : 0); // strip \n added by asctime
228 strDeviceInfo
.append(" +0000\n");
231 if (config
.adapterType
!= ADAPTERTYPE_UNKNOWN
)
233 strDeviceInfo
.AppendFormat("type: %s\n", parser
->ToString(config
.adapterType
));
236 strDeviceInfo
.append("\n");
238 PrintToStdOut(strDeviceInfo
.c_str());
242 void ShowHelpCommandLine(const char* strExec
)
244 CLockObject
lock(g_outputMutex
);
246 strExec
<< " {-h|--help|-l|--list-devices|[COM PORT]}" << endl
<<
248 "parameters:" << endl
<<
249 " -h --help Shows this help text" << endl
<<
250 " -l --list-devices List all devices on this system" << endl
<<
251 " -t --type {p|r|t|a} The device type to use. More than one is possible." << endl
<<
252 " -p --port {int} The HDMI port to use as active source." << endl
<<
253 " -b --base {int} The logical address of the device to with this " << endl
<<
254 " adapter is connected." << endl
<<
255 " -f --log-file {file} Writes all libCEC log message to a file" << endl
<<
256 " -r --rom Read persisted settings from the EEPROM" << endl
<<
257 " -sf --short-log-file {file} Writes all libCEC log message without timestamps" << endl
<<
258 " and log levels to a file." << endl
<<
259 " -d --log-level {level} Sets the log level. See cectypes.h for values." << endl
<<
260 " -s --single-command Execute a single command and exit. Does not power" << endl
<<
261 " on devices on startup and power them off on exit." << endl
<<
262 " -o --osd-name {osd name} Use a custom osd name." << endl
<<
263 " -m --monitor Start a monitor-only client." << endl
<<
264 " -i --info Shows information about how libCEC was compiled." << endl
<<
265 " [COM PORT] The com port to connect to. If no COM" << endl
<<
266 " port is given, the client tries to connect to the" << endl
<<
267 " first device that is detected." << endl
<<
269 "Type 'h' or 'help' and press enter after starting the client to display all " << endl
<<
270 "available commands" << endl
;
273 void ShowHelpConsole(void)
275 CLockObject
lock(g_outputMutex
);
277 "================================================================================" << endl
<<
278 "Available commands:" << endl
<<
280 "[tx] {bytes} transfer bytes over the CEC line." << endl
<<
281 "[txn] {bytes} transfer bytes but don't wait for transmission ACK." << endl
<<
282 "[on] {address} power on the device with the given logical address." << endl
<<
283 "[standby] {address} put the device with the given address in standby mode." << endl
<<
284 "[la] {logical address} change the logical address of the CEC adapter." << endl
<<
285 "[p] {device} {port} change the HDMI port number of the CEC adapter." << endl
<<
286 "[pa] {physical address} change the physical address of the CEC adapter." << endl
<<
287 "[as] make the CEC adapter the active source." << endl
<<
288 "[is] mark the CEC adapter as inactive source." << endl
<<
289 "[osd] {addr} {string} set OSD message on the specified device." << endl
<<
290 "[ver] {addr} get the CEC version of the specified device." << endl
<<
291 "[ven] {addr} get the vendor ID of the specified device." << endl
<<
292 "[lang] {addr} get the menu language of the specified device." << endl
<<
293 "[pow] {addr} get the power status of the specified device." << endl
<<
294 "[name] {addr} get the OSD name of the specified device." << endl
<<
295 "[poll] {addr} poll the specified device." << endl
<<
296 "[lad] lists active devices on the bus" << endl
<<
297 "[ad] {addr} checks whether the specified device is active." << endl
<<
298 "[at] {type} checks whether the specified device type is active." << endl
<<
299 "[sp] {addr} makes the specified physical address active." << endl
<<
300 "[spl] {addr} makes the specified logical address active." << endl
<<
301 "[volup] send a volume up command to the amp if present" << endl
<<
302 "[voldown] send a volume down command to the amp if present" << endl
<<
303 "[mute] send a mute/unmute command to the amp if present" << endl
<<
304 "[self] show the list of addresses controlled by libCEC" << endl
<<
305 "[scan] scan the CEC bus and display device info" << endl
<<
306 "[mon] {1|0} enable or disable CEC bus monitoring." << endl
<<
307 "[log] {1 - 31} change the log level. see cectypes.h for values." << endl
<<
308 "[ping] send a ping command to the CEC adapter." << endl
<<
309 "[bl] to let the adapter enter the bootloader, to upgrade" << endl
<<
310 " the flash rom." << endl
<<
311 "[r] reconnect to the CEC adapter." << endl
<<
312 "[h] or [help] show this help." << endl
<<
313 "[q] or [quit] to quit the CEC test client and switch off all" << endl
<<
314 " connected CEC devices." << endl
<<
315 "================================================================================" << endl
;
318 bool ProcessCommandSELF(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
320 if (command
== "self")
322 cec_logical_addresses addr
= parser
->GetLogicalAddresses();
323 CStdString strOut
= "Addresses controlled by libCEC: ";
325 for (uint8_t iPtr
= 0; iPtr
<= 15; iPtr
++)
329 strOut
.AppendFormat((bFirst
? "%d%s" : ", %d%s"), iPtr
, parser
->IsActiveSource((cec_logical_address
)iPtr
) ? "*" : "");
333 PrintToStdOut(strOut
.c_str());
340 bool ProcessCommandSP(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
346 if (GetWord(arguments
, strAddress
))
348 sscanf(strAddress
.c_str(), "%x", &iAddress
);
349 if (iAddress
>= 0 && iAddress
<= CEC_INVALID_PHYSICAL_ADDRESS
)
350 parser
->SetStreamPath((uint16_t)iAddress
);
358 bool ProcessCommandSPL(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
360 if (command
== "spl")
363 cec_logical_address iAddress
;
364 if (GetWord(arguments
, strAddress
))
366 iAddress
= (cec_logical_address
)atoi(strAddress
.c_str());
367 if (iAddress
>= CECDEVICE_TV
&& iAddress
< CECDEVICE_BROADCAST
)
368 parser
->SetStreamPath(iAddress
);
376 bool ProcessCommandTX(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
378 if (command
== "tx" || command
== "txn")
385 CStdString
strArguments(arguments
);
386 strArguments
.Replace(':', ' ');
387 arguments
= strArguments
;
389 while (GetWord(arguments
, strvalue
) && HexStrToInt(strvalue
, ivalue
))
390 bytes
.PushBack(ivalue
);
392 if (command
== "txn")
393 bytes
.transmit_timeout
= 0;
395 parser
->Transmit(bytes
);
403 bool ProcessCommandON(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
409 if (GetWord(arguments
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
411 parser
->PowerOnDevices((cec_logical_address
) iValue
);
416 PrintToStdOut("invalid destination");
423 bool ProcessCommandSTANDBY(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
425 if (command
== "standby")
429 if (GetWord(arguments
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
431 parser
->StandbyDevices((cec_logical_address
) iValue
);
436 PrintToStdOut("invalid destination");
443 bool ProcessCommandPOLL(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
445 if (command
== "poll")
449 if (GetWord(arguments
, strValue
) && HexStrToInt(strValue
, iValue
) && iValue
<= 0xF)
451 if (parser
->PollDevice((cec_logical_address
) iValue
))
452 PrintToStdOut("POLL message sent");
454 PrintToStdOut("POLL message not sent");
459 PrintToStdOut("invalid destination");
466 bool ProcessCommandLA(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
471 if (GetWord(arguments
, strvalue
))
473 parser
->SetLogicalAddress((cec_logical_address
) atoi(strvalue
.c_str()));
481 bool ProcessCommandP(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
485 string strPort
, strDevice
;
486 if (GetWord(arguments
, strDevice
) && GetWord(arguments
, strPort
))
488 parser
->SetHDMIPort((cec_logical_address
)atoi(strDevice
.c_str()), (uint8_t)atoi(strPort
.c_str()));
496 bool ProcessCommandPA(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
502 if (GetWord(arguments
, strB1
) && HexStrToInt(strB1
, iB1
) &&
503 GetWord(arguments
, strB2
) && HexStrToInt(strB2
, iB2
))
505 uint16_t iPhysicalAddress
= ((uint16_t)iB1
<< 8) + iB2
;
506 parser
->SetPhysicalAddress(iPhysicalAddress
);
514 bool ProcessCommandOSD(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
516 if (command
== "osd")
518 bool bFirstWord(false);
519 string strAddr
, strMessage
, strWord
;
521 if (GetWord(arguments
, strAddr
) && HexStrToInt(strAddr
, iAddr
) && iAddr
< 0xF)
523 while (GetWord(arguments
, strWord
))
528 strMessage
.append(" ");
530 strMessage
.append(strWord
);
532 parser
->SetOSDString((cec_logical_address
) iAddr
, CEC_DISPLAY_CONTROL_DISPLAY_FOR_DEFAULT_TIME
, strMessage
.c_str());
540 bool ProcessCommandAS(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
544 parser
->SetActiveSource();
545 // wait for the source switch to finish for 15 seconds tops
546 if (g_bSingleCommand
)
548 CTimeout
timeout(15000);
549 bool bActiveSource(false);
550 while (timeout
.TimeLeft() > 0 && !bActiveSource
)
552 bActiveSource
= parser
->IsLibCECActiveSource();
563 bool ProcessCommandIS(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
566 return parser
->SetInactiveView();
571 bool ProcessCommandPING(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
573 if (command
== "ping")
575 parser
->PingAdapter();
582 bool ProcessCommandVOLUP(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
584 if (command
== "volup")
586 PrintToStdOut("volume up: %2X", parser
->VolumeUp());
593 bool ProcessCommandVOLDOWN(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
595 if (command
== "voldown")
597 PrintToStdOut("volume down: %2X", parser
->VolumeDown());
604 bool ProcessCommandMUTE(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
606 if (command
== "mute")
608 PrintToStdOut("mute: %2X", parser
->MuteAudio());
615 bool ProcessCommandMON(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
617 if (command
== "mon")
619 CStdString strEnable
;
620 if (GetWord(arguments
, strEnable
) && (strEnable
.Equals("0") || strEnable
.Equals("1")))
622 parser
->SwitchMonitoring(strEnable
.Equals("1"));
630 bool ProcessCommandBL(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
634 if (parser
->StartBootloader())
636 PrintToStdOut("entered bootloader mode. exiting cec-client");
646 bool ProcessCommandLANG(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
648 if (command
== "lang")
651 if (GetWord(arguments
, strDev
))
653 int iDev
= atoi(strDev
);
654 if (iDev
>= 0 && iDev
< 15)
657 cec_menu_language language
;
658 if (parser
->GetDeviceMenuLanguage((cec_logical_address
) iDev
, &language
))
659 strLog
.Format("menu language '%s'", language
.language
);
662 PrintToStdOut(strLog
);
671 bool ProcessCommandVEN(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
673 if (command
== "ven")
676 if (GetWord(arguments
, strDev
))
678 int iDev
= atoi(strDev
);
679 if (iDev
>= 0 && iDev
< 15)
681 uint64_t iVendor
= parser
->GetDeviceVendorId((cec_logical_address
) iDev
);
682 PrintToStdOut("vendor id: %06llx", iVendor
);
691 bool ProcessCommandVER(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
693 if (command
== "ver")
696 if (GetWord(arguments
, strDev
))
698 int iDev
= atoi(strDev
);
699 if (iDev
>= 0 && iDev
< 15)
701 cec_version iVersion
= parser
->GetDeviceCecVersion((cec_logical_address
) iDev
);
702 PrintToStdOut("CEC version %s", parser
->ToString(iVersion
));
711 bool ProcessCommandPOW(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
713 if (command
== "pow")
716 if (GetWord(arguments
, strDev
))
718 int iDev
= atoi(strDev
);
719 if (iDev
>= 0 && iDev
< 15)
721 cec_power_status iPower
= parser
->GetDevicePowerStatus((cec_logical_address
) iDev
);
722 PrintToStdOut("power status: %s", parser
->ToString(iPower
));
731 bool ProcessCommandNAME(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
733 if (command
== "name")
736 if (GetWord(arguments
, strDev
))
738 int iDev
= atoi(strDev
);
739 if (iDev
>= 0 && iDev
< 15)
741 cec_osd_name name
= parser
->GetDeviceOSDName((cec_logical_address
)iDev
);
742 PrintToStdOut("OSD name of device %d is '%s'", iDev
, name
.name
);
751 bool ProcessCommandLAD(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
753 if (command
== "lad")
755 PrintToStdOut("listing active devices:");
756 cec_logical_addresses addresses
= parser
->GetActiveDevices();
757 for (uint8_t iPtr
= 0; iPtr
<= 11; iPtr
++)
760 PrintToStdOut("logical address %X", (int)iPtr
);
768 bool ProcessCommandAD(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
773 if (GetWord(arguments
, strDev
))
775 int iDev
= atoi(strDev
);
776 if (iDev
>= 0 && iDev
< 15)
777 PrintToStdOut("logical address %X is %s", iDev
, (parser
->IsActiveDevice((cec_logical_address
)iDev
) ? "active" : "not active"));
784 bool ProcessCommandAT(ICECAdapter
*parser
, const string
&command
, string
&arguments
)
789 if (GetWord(arguments
, strType
))
791 cec_device_type type
= CEC_DEVICE_TYPE_TV
;
792 if (strType
.Equals("a"))
793 type
= CEC_DEVICE_TYPE_AUDIO_SYSTEM
;
794 else if (strType
.Equals("p"))
795 type
= CEC_DEVICE_TYPE_PLAYBACK_DEVICE
;
796 else if (strType
.Equals("r"))
797 type
= CEC_DEVICE_TYPE_RECORDING_DEVICE
;
798 else if (strType
.Equals("t"))
799 type
= CEC_DEVICE_TYPE_TUNER
;
801 PrintToStdOut("device %d is %s", type
, (parser
->IsActiveDeviceType(type
) ? "active" : "not active"));
809 bool ProcessCommandR(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
813 bool bReactivate
= parser
->IsLibCECActiveSource();
815 PrintToStdOut("closing the connection");
818 PrintToStdOut("opening a new connection");
819 parser
->Open(g_strPort
.c_str());
823 PrintToStdOut("setting active source");
824 parser
->SetActiveSource();
832 bool ProcessCommandH(ICECAdapter
* UNUSED(parser
), const string
&command
, string
& UNUSED(arguments
))
834 if (command
== "h" || command
== "help")
843 bool ProcessCommandLOG(ICECAdapter
* UNUSED(parser
), const string
&command
, string
&arguments
)
845 if (command
== "log")
848 if (GetWord(arguments
, strLevel
))
850 int iNewLevel
= atoi(strLevel
);
851 if (iNewLevel
>= CEC_LOG_ERROR
&& iNewLevel
<= CEC_LOG_ALL
)
853 g_cecLogLevel
= iNewLevel
;
855 PrintToStdOut("log level changed to %s", strLevel
.c_str());
864 bool ProcessCommandSCAN(ICECAdapter
*parser
, const string
&command
, string
& UNUSED(arguments
))
866 if (command
== "scan")
869 PrintToStdOut("requesting CEC bus information ...");
871 strLog
.append("CEC bus information\n===================\n");
872 cec_logical_addresses addresses
= parser
->GetActiveDevices();
873 cec_logical_address activeSource
= parser
->GetActiveSource();
874 for (uint8_t iPtr
= 0; iPtr
< 16; iPtr
++)
878 uint64_t iVendorId
= parser
->GetDeviceVendorId((cec_logical_address
)iPtr
);
879 uint16_t iPhysicalAddress
= parser
->GetDevicePhysicalAddress((cec_logical_address
)iPtr
);
880 bool bActive
= parser
->IsActiveSource((cec_logical_address
)iPtr
);
881 cec_version iCecVersion
= parser
->GetDeviceCecVersion((cec_logical_address
)iPtr
);
882 cec_power_status power
= parser
->GetDevicePowerStatus((cec_logical_address
)iPtr
);
883 cec_osd_name osdName
= parser
->GetDeviceOSDName((cec_logical_address
)iPtr
);
885 strAddr
.Format("%x.%x.%x.%x", (iPhysicalAddress
>> 12) & 0xF, (iPhysicalAddress
>> 8) & 0xF, (iPhysicalAddress
>> 4) & 0xF, iPhysicalAddress
& 0xF);
886 cec_menu_language lang
;
887 lang
.device
= CECDEVICE_UNKNOWN
;
888 parser
->GetDeviceMenuLanguage((cec_logical_address
)iPtr
, &lang
);
890 strLog
.AppendFormat("device #%X: %s\n", (int)iPtr
, parser
->ToString((cec_logical_address
)iPtr
));
891 strLog
.AppendFormat("address: %s\n", strAddr
.c_str());
892 strLog
.AppendFormat("active source: %s\n", (bActive
? "yes" : "no"));
893 strLog
.AppendFormat("vendor: %s\n", parser
->ToString((cec_vendor_id
)iVendorId
));
894 strLog
.AppendFormat("osd string: %s\n", osdName
.name
);
895 strLog
.AppendFormat("CEC version: %s\n", parser
->ToString(iCecVersion
));
896 strLog
.AppendFormat("power status: %s\n", parser
->ToString(power
));
897 if ((uint8_t)lang
.device
== iPtr
)
898 strLog
.AppendFormat("language: %s\n", lang
.language
);
899 strLog
.append("\n\n");
903 activeSource
= parser
->GetActiveSource();
904 strLog
.AppendFormat("currently active source: %s (%d)", parser
->ToString(activeSource
), (int)activeSource
);
906 PrintToStdOut(strLog
);
913 bool ProcessConsoleCommand(ICECAdapter
*parser
, string
&input
)
918 if (GetWord(input
, command
))
920 if (command
== "q" || command
== "quit")
923 ProcessCommandTX(parser
, command
, input
) ||
924 ProcessCommandON(parser
, command
, input
) ||
925 ProcessCommandSTANDBY(parser
, command
, input
) ||
926 ProcessCommandPOLL(parser
, command
, input
) ||
927 ProcessCommandLA(parser
, command
, input
) ||
928 ProcessCommandP(parser
, command
, input
) ||
929 ProcessCommandPA(parser
, command
, input
) ||
930 ProcessCommandAS(parser
, command
, input
) ||
931 ProcessCommandIS(parser
, command
, input
) ||
932 ProcessCommandOSD(parser
, command
, input
) ||
933 ProcessCommandPING(parser
, command
, input
) ||
934 ProcessCommandVOLUP(parser
, command
, input
) ||
935 ProcessCommandVOLDOWN(parser
, command
, input
) ||
936 ProcessCommandMUTE(parser
, command
, input
) ||
937 ProcessCommandMON(parser
, command
, input
) ||
938 ProcessCommandBL(parser
, command
, input
) ||
939 ProcessCommandLANG(parser
, command
, input
) ||
940 ProcessCommandVEN(parser
, command
, input
) ||
941 ProcessCommandVER(parser
, command
, input
) ||
942 ProcessCommandPOW(parser
, command
, input
) ||
943 ProcessCommandNAME(parser
, command
, input
) ||
944 ProcessCommandLAD(parser
, command
, input
) ||
945 ProcessCommandAD(parser
, command
, input
) ||
946 ProcessCommandAT(parser
, command
, input
) ||
947 ProcessCommandR(parser
, command
, input
) ||
948 ProcessCommandH(parser
, command
, input
) ||
949 ProcessCommandLOG(parser
, command
, input
) ||
950 ProcessCommandSCAN(parser
, command
, input
) ||
951 ProcessCommandSP(parser
, command
, input
) ||
952 ProcessCommandSPL(parser
, command
, input
) ||
953 ProcessCommandSELF(parser
, command
, input
);
959 bool ProcessCommandLineArguments(int argc
, char *argv
[])
963 while (iArgPtr
< argc
&& bReturn
)
965 if (argc
>= iArgPtr
+ 1)
967 if (!strcmp(argv
[iArgPtr
], "-f") ||
968 !strcmp(argv
[iArgPtr
], "--log-file") ||
969 !strcmp(argv
[iArgPtr
], "-sf") ||
970 !strcmp(argv
[iArgPtr
], "--short-log-file"))
972 if (argc
>= iArgPtr
+ 2)
974 g_logOutput
.open(argv
[iArgPtr
+ 1]);
975 g_bShortLog
= (!strcmp(argv
[iArgPtr
], "-sf") || !strcmp(argv
[iArgPtr
], "--short-log-file"));
980 cout
<< "== skipped log-file parameter: no file given ==" << endl
;
984 else if (!strcmp(argv
[iArgPtr
], "-d") ||
985 !strcmp(argv
[iArgPtr
], "--log-level"))
987 if (argc
>= iArgPtr
+ 2)
989 int iNewLevel
= atoi(argv
[iArgPtr
+ 1]);
990 if (iNewLevel
>= CEC_LOG_ERROR
&& iNewLevel
<= CEC_LOG_ALL
)
992 g_cecLogLevel
= iNewLevel
;
993 if (!g_bSingleCommand
)
994 cout
<< "log level set to " << argv
[iArgPtr
+ 1] << endl
;
998 cout
<< "== skipped log-level parameter: invalid level '" << argv
[iArgPtr
+ 1] << "' ==" << endl
;
1004 cout
<< "== skipped log-level parameter: no level given ==" << endl
;
1008 else if (!strcmp(argv
[iArgPtr
], "-t") ||
1009 !strcmp(argv
[iArgPtr
], "--type"))
1011 if (argc
>= iArgPtr
+ 2)
1013 if (!strcmp(argv
[iArgPtr
+ 1], "p"))
1015 if (!g_bSingleCommand
)
1016 cout
<< "== using device type 'playback device'" << endl
;
1017 g_config
.deviceTypes
.Add(CEC_DEVICE_TYPE_PLAYBACK_DEVICE
);
1019 else if (!strcmp(argv
[iArgPtr
+ 1], "r"))
1021 if (!g_bSingleCommand
)
1022 cout
<< "== using device type 'recording device'" << endl
;
1023 g_config
.deviceTypes
.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE
);
1025 else if (!strcmp(argv
[iArgPtr
+ 1], "t"))
1027 if (!g_bSingleCommand
)
1028 cout
<< "== using device type 'tuner'" << endl
;
1029 g_config
.deviceTypes
.Add(CEC_DEVICE_TYPE_TUNER
);
1031 else if (!strcmp(argv
[iArgPtr
+ 1], "a"))
1033 if (!g_bSingleCommand
)
1034 cout
<< "== using device type 'audio system'" << endl
;
1035 g_config
.deviceTypes
.Add(CEC_DEVICE_TYPE_AUDIO_SYSTEM
);
1039 cout
<< "== skipped invalid device type '" << argv
[iArgPtr
+ 1] << "'" << endl
;
1045 else if (!strcmp(argv
[iArgPtr
], "--info") ||
1046 !strcmp(argv
[iArgPtr
], "-i"))
1048 if (g_cecLogLevel
== -1)
1049 g_cecLogLevel
= CEC_LOG_WARNING
+ CEC_LOG_ERROR
;
1050 ICECAdapter
*parser
= LibCecInitialise(&g_config
);
1053 CStdString strMessage
;
1054 strMessage
.Format("libCEC version: %s", parser
->ToString((cec_server_version
)g_config
.serverVersion
));
1055 if (g_config
.serverVersion
>= CEC_SERVER_VERSION_1_7_2
)
1056 strMessage
.AppendFormat(", %s", parser
->GetLibInfo());
1057 PrintToStdOut(strMessage
.c_str());
1058 UnloadLibCec(parser
);
1063 else if (!strcmp(argv
[iArgPtr
], "--list-devices") ||
1064 !strcmp(argv
[iArgPtr
], "-l"))
1066 if (g_cecLogLevel
== -1)
1067 g_cecLogLevel
= CEC_LOG_WARNING
+ CEC_LOG_ERROR
;
1068 ICECAdapter
*parser
= LibCecInitialise(&g_config
);
1071 ListDevices(parser
);
1072 UnloadLibCec(parser
);
1077 else if (!strcmp(argv
[iArgPtr
], "--bootloader"))
1082 else if (!strcmp(argv
[iArgPtr
], "--single-command") ||
1083 !strcmp(argv
[iArgPtr
], "-s"))
1085 g_bSingleCommand
= true;
1088 else if (!strcmp(argv
[iArgPtr
], "--help") ||
1089 !strcmp(argv
[iArgPtr
], "-h"))
1091 if (g_cecLogLevel
== -1)
1092 g_cecLogLevel
= CEC_LOG_WARNING
+ CEC_LOG_ERROR
;
1094 ShowHelpCommandLine(argv
[0]);
1097 else if (!strcmp(argv
[iArgPtr
], "-b") ||
1098 !strcmp(argv
[iArgPtr
], "--base"))
1100 if (argc
>= iArgPtr
+ 2)
1102 g_config
.baseDevice
= (cec_logical_address
)atoi(argv
[iArgPtr
+ 1]);
1103 cout
<< "using base device '" << (int)g_config
.baseDevice
<< "'" << endl
;
1108 else if (!strcmp(argv
[iArgPtr
], "-p") ||
1109 !strcmp(argv
[iArgPtr
], "--port"))
1111 if (argc
>= iArgPtr
+ 2)
1113 uint8_t hdmiport
= (int8_t)atoi(argv
[iArgPtr
+ 1]);
1118 g_config
.iHDMIPort
= hdmiport
;
1119 cout
<< "using HDMI port '" << (int)g_config
.iHDMIPort
<< "'" << endl
;
1124 else if (!strcmp(argv
[iArgPtr
], "-r") ||
1125 !strcmp(argv
[iArgPtr
], "--rom"))
1127 cout
<< "using settings from EEPROM" << endl
;
1128 g_config
.bGetSettingsFromROM
= 1;
1131 else if (!strcmp(argv
[iArgPtr
], "-o") ||
1132 !strcmp(argv
[iArgPtr
], "--osd-name"))
1134 if (argc
>= iArgPtr
+ 2)
1136 snprintf(g_config
.strDeviceName
, 13, "%s", argv
[iArgPtr
+ 1]);
1137 cout
<< "using osd name " << g_config
.strDeviceName
<< endl
;
1142 else if (!strcmp(argv
[iArgPtr
], "-m") ||
1143 !strcmp(argv
[iArgPtr
], "--monitor"))
1145 cout
<< "starting a monitor-only client. use 'mon 0' to switch to normal mode" << endl
;
1146 g_config
.bMonitorOnly
= 1;
1151 g_strPort
= argv
[iArgPtr
++];
1159 void sighandler(int iSignal
)
1161 PrintToStdOut("signal caught: %d - exiting", iSignal
);
1165 int main (int argc
, char *argv
[])
1167 if (signal(SIGINT
, sighandler
) == SIG_ERR
)
1169 PrintToStdOut("can't register sighandler");
1174 g_callbacks
.Clear();
1175 snprintf(g_config
.strDeviceName
, 13, "CECTester");
1176 g_config
.clientVersion
= CEC_CONFIG_VERSION
;
1177 g_config
.bActivateSource
= 0;
1178 g_callbacks
.CBCecLogMessage
= &CecLogMessage
;
1179 g_callbacks
.CBCecKeyPress
= &CecKeyPress
;
1180 g_callbacks
.CBCecCommand
= &CecCommand
;
1181 g_callbacks
.CBCecAlert
= &CecAlert
;
1182 g_config
.callbacks
= &g_callbacks
;
1184 if (!ProcessCommandLineArguments(argc
, argv
))
1187 if (g_cecLogLevel
== -1)
1188 g_cecLogLevel
= g_cecDefaultLogLevel
;
1190 if (g_config
.deviceTypes
.IsEmpty())
1192 if (!g_bSingleCommand
)
1193 cout
<< "No device type given. Using 'recording device'" << endl
;
1194 g_config
.deviceTypes
.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE
);
1197 ICECAdapter
*parser
= LibCecInitialise(&g_config
);
1201 cout
<< "Cannot load libcec.dll" << endl
;
1203 cout
<< "Cannot load libcec.so" << endl
;
1207 UnloadLibCec(parser
);
1212 // init video on targets that need this
1213 parser
->InitVideoStandalone();
1215 if (!g_bSingleCommand
)
1218 strLog
.Format("CEC Parser created - libCEC version %s", parser
->ToString((cec_server_version
)g_config
.serverVersion
));
1219 cout
<< strLog
.c_str() << endl
;
1221 //make stdin non-blocking
1223 int flags
= fcntl(0, F_GETFL
, 0);
1224 flags
|= O_NONBLOCK
;
1225 fcntl(0, F_SETFL
, flags
);
1229 if (g_strPort
.IsEmpty())
1231 if (!g_bSingleCommand
)
1232 cout
<< "no serial port given. trying autodetect: ";
1233 cec_adapter devices
[10];
1234 uint8_t iDevicesFound
= parser
->FindAdapters(devices
, 10, NULL
);
1235 if (iDevicesFound
<= 0)
1237 if (g_bSingleCommand
)
1238 cout
<< "autodetect ";
1239 cout
<< "FAILED" << endl
;
1240 UnloadLibCec(parser
);
1245 if (!g_bSingleCommand
)
1247 cout
<< endl
<< " path: " << devices
[0].path
<< endl
<<
1248 " com port: " << devices
[0].comm
<< endl
<< endl
;
1250 g_strPort
= devices
[0].comm
;
1254 PrintToStdOut("opening a connection to the CEC adapter...");
1256 if (!parser
->Open(g_strPort
.c_str()))
1258 PrintToStdOut("unable to open the device on port %s", g_strPort
.c_str());
1259 UnloadLibCec(parser
);
1263 if (!g_bSingleCommand
)
1264 PrintToStdOut("waiting for input");
1266 while (!g_bExit
&& !g_bHardExit
)
1269 getline(cin
, input
);
1272 if (ProcessConsoleCommand(parser
, input
) && !g_bSingleCommand
&& !g_bExit
&& !g_bHardExit
)
1275 PrintToStdOut("waiting for input");
1280 if (!g_bExit
&& !g_bHardExit
)
1285 UnloadLibCec(parser
);
1287 if (g_logOutput
.is_open())
1288 g_logOutput
.close();