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/
33 #include "../../include/cec.h"
41 #include "../lib/platform/threads/mutex.h"
42 #include "../lib/platform/util/timeutils.h"
43 #include "../lib/implementations/CECCommandHandler.h"
47 using namespace PLATFORM
;
49 #include <cecloader.h>
53 CEvent g_responseEvent
;
54 cec_opcode g_lastCommand
= CEC_OPCODE_NONE
;
57 cec_user_control_code g_lastKey
= CEC_USER_CONTROL_CODE_UNKNOWN
;
59 ICECCallbacks g_callbacks
;
60 libcec_configuration g_config
;
61 ICECAdapter
* g_parser
;
63 inline void PrintToStdOut(const char *strFormat
, ...)
68 va_start(argList
, strFormat
);
69 strLog
.FormatV(strFormat
, argList
);
72 CLockObject
lock(g_outputMutex
);
73 cout
<< strLog
<< endl
;
76 //get the first word (separated by whitespace) from string data and place that in word
77 //then remove that word from string data
78 bool GetWord(string
& data
, string
& word
)
80 stringstream
datastream(data
);
84 if (datastream
.fail())
90 size_t pos
= data
.find(word
) + word
.length();
92 if (pos
>= data
.length())
98 data
= data
.substr(pos
);
101 datastream
.str(data
);
104 if (datastream
.fail())
110 int CecLogMessage(void *UNUSED(cbParam
), const cec_log_message
&message
)
112 switch (message
.level
)
115 PrintToStdOut("ERROR:\t%s", message
.message
);
117 case CEC_LOG_WARNING
:
118 PrintToStdOut("ERROR:\t%s", message
.message
);
127 int CecKeyPress(void *UNUSED(cbParam
), const cec_keypress
&key
)
129 g_lastKey
= key
.keycode
;
134 int CecCommand(void *UNUSED(cbParam
), const cec_command
&command
)
136 g_lastCommand
= command
.opcode
;
137 g_responseEvent
.Signal();
141 bool ProcessConsoleCommand(string
&input
)
146 if (GetWord(input
, command
))
148 if (command
== "q" || command
== "quit")
155 bool OpenConnection(cec_device_type type
= CEC_DEVICE_TYPE_RECORDING_DEVICE
)
158 snprintf(g_config
.strDeviceName
, 13, "CEC-config");
159 g_config
.callbackParam
= NULL
;
160 g_config
.clientVersion
= (uint32_t)CEC_CLIENT_VERSION_1_6_2
;
161 g_callbacks
.CBCecLogMessage
= &CecLogMessage
;
162 g_callbacks
.CBCecKeyPress
= &CecKeyPress
;
163 g_callbacks
.CBCecCommand
= &CecCommand
;
164 g_config
.callbacks
= &g_callbacks
;
166 g_config
.deviceTypes
.add(type
);
168 g_parser
= LibCecInitialise(&g_config
);
173 cec_adapter devices
[10];
174 uint8_t iDevicesFound
= g_parser
->FindAdapters(devices
, 10, NULL
);
175 if (iDevicesFound
<= 0)
177 PrintToStdOut("autodetect FAILED");
178 UnloadLibCec(g_parser
);
183 strPort
= devices
[0].comm
;
186 PrintToStdOut("opening a connection to the CEC adapter...");
187 if (!g_parser
->Open(strPort
.c_str()))
189 PrintToStdOut("unable to open the device on port %s", strPort
.c_str());
190 UnloadLibCec(g_parser
);
194 g_parser
->GetCurrentConfiguration(&g_config
);
195 PrintToStdOut("CEC Parser created - libCEC version %s", g_parser
->ToString((cec_server_version
)g_config
.serverVersion
));
200 int8_t FindPhysicalAddressPortNumber(void)
202 PrintToStdOut("Enter the HDMI port number to which you connected your CEC adapter, followed by <enter>. Valid ports are in the range 1-15. Anything else will cancel this wizard.");
209 int hdmiport
= atoi(input
.c_str());
210 return (hdmiport
< 1 || hdmiport
> 15) ? -1 : (int8_t)hdmiport
;
213 cec_logical_address
FindPhysicalAddressBaseDevice(void)
215 PrintToStdOut("Press 1 if your CEC adapter is connected to your TV or\nPress 2 if it's connected to an AVR, followed by <enter>. Anything else will cancel this wizard.");
220 if (input
.empty() || (input
!= "1" && input
!= "2"))
222 PrintToStdOut("Exiting...");
223 return CECDEVICE_UNKNOWN
;
225 return (input
== "2") ?
226 CECDEVICE_AUDIOSYSTEM
:
230 uint16_t FindPhysicalAddress(void)
232 PrintToStdOut("=== Physical Address Configuration ===\n");
233 uint16_t iAddress(CEC_INVALID_PHYSICAL_ADDRESS
);
235 PrintToStdOut("Do you want to let libCEC try to autodetect the address (y/n)?");
239 if (input
== "y" || input
== "Y")
241 cec_logical_address baseDevice
= FindPhysicalAddressBaseDevice();
242 if (baseDevice
== CECDEVICE_UNKNOWN
)
245 int8_t iPortNumber
= FindPhysicalAddressPortNumber();
246 if (iPortNumber
== -1)
249 PrintToStdOut("Trying to detect the physical address...");
250 if (!g_parser
->SetHDMIPort(baseDevice
, iPortNumber
))
251 PrintToStdOut("Failed. Please enter the address manually, or restart this wizard and use different settings.");
254 g_parser
->GetCurrentConfiguration(&g_config
);
255 iAddress
= g_parser
->GetDevicePhysicalAddress(g_config
.logicalAddresses
.primary
);
256 if (iAddress
== 0 || iAddress
== CEC_INVALID_PHYSICAL_ADDRESS
)
257 PrintToStdOut("Failed. Please enter the address manually, or restart this wizard and use different settings.");
261 if (iAddress
== 0 || iAddress
== CEC_INVALID_PHYSICAL_ADDRESS
)
263 PrintToStdOut("Please enter the physical address (0001 - FFFE), followed by <enter>.");
268 if (sscanf(input
.c_str(), "%x", &iAddressTmp
) == 1)
270 if (iAddressTmp
<= CEC_PHYSICAL_ADDRESS_TV
|| iAddressTmp
> CEC_MAX_PHYSICAL_ADDRESS
)
271 iAddressTmp
= CEC_INVALID_PHYSICAL_ADDRESS
;
272 iAddress
= (uint16_t)iAddressTmp
;
278 g_parser
->SetPhysicalAddress(iAddress
);
279 g_parser
->SetActiveSource(g_config
.deviceTypes
[0]);
285 bool PowerOnTV(uint64_t iTimeout
= 60000)
287 cec_power_status
currentTvPower(CEC_POWER_STATUS_UNKNOWN
);
288 uint64_t iNow
= GetTimeMs();
289 uint64_t iTarget
= iNow
+ iTimeout
;
291 if (currentTvPower
!= CEC_POWER_STATUS_ON
)
293 currentTvPower
= g_parser
->GetDevicePowerStatus(CECDEVICE_TV
);
294 if (currentTvPower
!= CEC_POWER_STATUS_ON
)
296 PrintToStdOut("Sending 'power on' command to the TV\n=== Please wait ===");
297 g_parser
->PowerOnDevices(CECDEVICE_TV
);
298 while (iTarget
> iNow
)
300 g_responseEvent
.Wait((uint32_t)(iTarget
- iNow
));
301 if (g_lastCommand
== CEC_OPCODE_REQUEST_ACTIVE_SOURCE
)
308 currentTvPower
= g_parser
->GetDevicePowerStatus(CECDEVICE_TV
);
310 if (currentTvPower
!= CEC_POWER_STATUS_ON
)
311 PrintToStdOut("Failed to power on the TV, or the TV does not respond properly");
313 return currentTvPower
== CEC_POWER_STATUS_ON
;
316 int main (int UNUSED(argc
), char *UNUSED(argv
[]))
318 PrintToStdOut("=== USB-CEC Adapter Configuration ===\n");
319 if (!OpenConnection())
325 bool bAddressOk(false);
328 uint16_t iAddress
= FindPhysicalAddress();
330 PrintToStdOut("Physical address: %4X", iAddress
);
331 PrintToStdOut("Is this correct (y/n)?");
335 bAddressOk
= (input
== "y" || input
== "Y");
338 g_parser
->GetCurrentConfiguration(&g_config
);
341 cec_menu_language lang
;
342 if (g_parser
->GetDeviceMenuLanguage(CECDEVICE_TV
, &lang
))
344 PrintToStdOut("TV menu language: %s", lang
.language
);
345 PrintToStdOut("Do you want the application to use the menu language of the TV (y/n)?");
349 g_config
.bUseTVMenuLanguage
= (input
== "y" || input
== "Y") ? 1 : 0;
353 PrintToStdOut("The TV did not respond properly to the menu language request.");
358 PrintToStdOut("Do you want to make the CEC adapter the active source when starting the application (y/n)?");
362 g_config
.bActivateSource
= (input
== "y" || input
== "Y") ? 1 : 0;
366 PrintToStdOut("Do you want to power on the TV when starting the application (y/n)?");
370 if (input
== "y" || input
== "Y")
371 g_config
.wakeDevices
.Set(CECDEVICE_TV
);
375 PrintToStdOut("Do you want to power off CEC devices when closing the application (y/n)?");
379 if (input
== "y" || input
== "Y")
380 g_config
.powerOffDevices
.Set(CECDEVICE_TV
);
384 PrintToStdOut("Do you want to power off CEC devices when the screensaver is activated (y/n)?");
388 g_config
.bPowerOffScreensaver
= (input
== "y" || input
== "Y") ? 1 : 0;
392 PrintToStdOut("Do you want to put the PC in standby when the TV is put in standby mode (y/n)?");
396 g_config
.bPowerOffOnStandby
= (input
== "y" || input
== "Y") ? 1 : 0;
400 PrintToStdOut("Do you want to send an inactive source message when stopping the application (y/n)?");
404 g_config
.bSendInactiveSource
= (input
== "y" || input
== "Y") ? 1 : 0;
407 PrintToStdOut("\n\n=== USB-CEC Adapter Configuration Summary ===");
408 PrintToStdOut("HDMI port number: %d", g_config
.iHDMIPort
);
409 PrintToStdOut("Connected to HDMI device: %X", (uint8_t)g_config
.baseDevice
);
410 PrintToStdOut("Physical address: %4X", g_config
.iPhysicalAddress
);
411 PrintToStdOut("Use the TV's language setting: %s", g_config
.bUseTVMenuLanguage
? "yes" : "no");
412 PrintToStdOut("Make the adapter the active source when starting XBMC: %s", g_config
.bActivateSource
? "yes" : "no");
413 PrintToStdOut("Power on the TV when starting XBMC: %s", g_config
.wakeDevices
.IsSet(CECDEVICE_BROADCAST
) ? "yes" : "no");
414 PrintToStdOut("Power off devices when stopping XBMC: %s", g_config
.powerOffDevices
.IsSet(CECDEVICE_BROADCAST
) ? "yes" : "no");
415 PrintToStdOut("Put devices in standby mode when activating screensaver: %s", g_config
.bPowerOffScreensaver
? "yes" : "no");
416 PrintToStdOut("Put this PC in standby mode when the TV is switched off: %s", g_config
.bPowerOffOnStandby
? "yes" : "no");
417 PrintToStdOut("Send an inactive source message when stopping XBMC: %s\n\n", g_config
.bSendInactiveSource
? "yes" : "no");
419 PrintToStdOut("Storing settings ...");
420 if (g_parser
->PersistConfiguration(&g_config
))
421 PrintToStdOut("Settings stored.");
423 PrintToStdOut("The settings could not be stored");
425 ofstream configOutput
;
426 configOutput
.open("usb_2548_1001.xml");
427 if (configOutput
.is_open())
429 CStdString strWakeDevices
;
430 for (uint8_t iPtr
= 0; iPtr
< 16; iPtr
++)
431 if (g_config
.wakeDevices
[iPtr
])
432 strWakeDevices
.AppendFormat(" %d" + iPtr
);
433 CStdString strStandbyDevices
;
434 for (uint8_t iPtr
= 0; iPtr
< 16; iPtr
++)
435 if (g_config
.powerOffDevices
[iPtr
])
436 strStandbyDevices
.AppendFormat(" %d" + iPtr
);
440 "\t<setting id=\"enabled\" value=\"1\" />\n" <<
441 "\t<setting id=\"activate_source\" value=\"" << (int)g_config
.bActivateSource
<< "\" />\n" <<
442 "\t<setting id=\"wake_devices\" value=\"" << strWakeDevices
.c_str() << "\" />\n" <<
443 "\t<setting id=\"standby_devices\" value=\"" << strStandbyDevices
.c_str() << "\" />\n" <<
444 "\t<setting id=\"cec_standby_screensaver\" value=\"" << (int)g_config
.bPowerOffScreensaver
<< "\" />\n" <<
445 "\t<setting id=\"standby_pc_on_tv_standby\" value=\"" << (int)g_config
.bPowerOffOnStandby
<< "\" />\n" <<
446 "\t<setting id=\"use_tv_menu_language\" value=\"" << (int)g_config
.bUseTVMenuLanguage
<< "\" />\n" <<
447 "\t<setting id=\"physical_address\" value=\"" << hex
<< g_config
.iPhysicalAddress
<< "\" />\n" <<
448 "\t<setting id=\"cec_hdmi_port\" value=\"" << g_config
.iHDMIPort
<< "\" />\n" <<
449 "\t<setting id=\"connected_device\" value=\"" << (int)g_config
.baseDevice
<< "\" />\n" <<
450 "\t<setting id=\"port\" value=\"\" />\n" <<
451 "\t<setting id=\"send_inactive_source\" value=\"" << (int)g_config
.bSendInactiveSource
<< "\" />\n" <<
453 configOutput
.close();
455 PrintToStdOut("The configuration has been stored in 'usb_2548_1001.xml'. Copy this file to ~/.userdata/peripheral_data to use it in XBMC");
458 g_parser
->StandbyDevices();
460 UnloadLibCec(g_parser
);
462 PrintToStdOut("Press enter to close this wizard.");