cec: optimisation - strip unneeded virtual keywords from top level implementations
[deb_libcec.git] / src / lib / CECProcessor.cpp
CommitLineData
abbca718
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
b492c10e 4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
abbca718
LOK
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
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.
13 *
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.
18 *
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.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
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/
31 */
32
2abe74eb 33#include "CECProcessor.h"
abbca718 34
7bb4ed43 35#include "adapter/USBCECAdapterCommunication.h"
eafa9d46 36#include "devices/CECBusDevice.h"
51b2a094
LOK
37#include "devices/CECAudioSystem.h"
38#include "devices/CECPlaybackDevice.h"
39#include "devices/CECRecordingDevice.h"
40#include "devices/CECTuner.h"
41#include "devices/CECTV.h"
62f5527d 42#include "implementations/CECCommandHandler.h"
2abe74eb 43#include "LibCEC.h"
ba65909d 44#include "platform/util/timeutils.h"
abbca718
LOK
45
46using namespace CEC;
47using namespace std;
f00ff009 48using namespace PLATFORM;
abbca718 49
3efda01a 50CCECProcessor::CCECProcessor(CLibCEC *controller, libcec_configuration *configuration) :
80726797 51 m_bConnectionOpened(false),
caca2d81 52 m_bInitialised(false),
caca2d81
LOK
53 m_communication(NULL),
54 m_controller(controller),
55 m_bMonitor(false),
56 m_iStandardLineTimeout(3),
57 m_iRetryLineTimeout(3),
30b4aac0 58 m_iLastTransmission(0)
caca2d81 59{
caca2d81 60 CreateBusDevices();
30b4aac0 61 m_configuration.Clear();
e4a7396c 62 m_configuration.serverVersion = CEC_SERVER_VERSION_1_6_1;
30b4aac0
LOK
63 SetConfiguration(configuration);
64
65 if (m_configuration.tvVendor != CEC_VENDOR_UNKNOWN)
ed63a515 66 m_busDevices[CECDEVICE_TV]->ReplaceHandler(false);
caca2d81
LOK
67}
68
7bdfd76c 69CCECProcessor::CCECProcessor(CLibCEC *controller, const char *strDeviceName, const cec_device_type_list &types, uint16_t iPhysicalAddress) :
80726797 70 m_bConnectionOpened(false),
b64db02e 71 m_bInitialised(false),
99666519 72 m_communication(NULL),
f8513317 73 m_controller(controller),
dcd240b2
LOK
74 m_bMonitor(false),
75 m_iStandardLineTimeout(3),
5f316715 76 m_iRetryLineTimeout(3),
30b4aac0 77 m_iLastTransmission(0)
f8513317 78{
30b4aac0 79 m_configuration.Clear();
e4a7396c 80 m_configuration.serverVersion = CEC_SERVER_VERSION_1_6_1;
30b4aac0
LOK
81
82 // client version < 1.5.0
3efda01a 83 m_configuration.clientVersion = (uint32_t)CEC_CLIENT_VERSION_PRE_1_5;
30b4aac0
LOK
84 snprintf(m_configuration.strDeviceName, 13, "%s", strDeviceName);
85 m_configuration.deviceTypes = types;
86 m_configuration.iPhysicalAddress = iPhysicalAddress;
87 m_configuration.baseDevice = (cec_logical_address)CEC_DEFAULT_BASE_DEVICE;
88 m_configuration.iHDMIPort = CEC_DEFAULT_HDMI_PORT;
89
90 if (m_configuration.deviceTypes.IsEmpty())
91 m_configuration.deviceTypes.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE);
caca2d81
LOK
92 CreateBusDevices();
93}
94
95void CCECProcessor::CreateBusDevices(void)
96{
f8513317 97 for (int iPtr = 0; iPtr < 16; iPtr++)
51b2a094
LOK
98 {
99 switch(iPtr)
100 {
101 case CECDEVICE_AUDIOSYSTEM:
5d5a2dc2 102 m_busDevices[iPtr] = new CCECAudioSystem(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
103 break;
104 case CECDEVICE_PLAYBACKDEVICE1:
105 case CECDEVICE_PLAYBACKDEVICE2:
106 case CECDEVICE_PLAYBACKDEVICE3:
5d5a2dc2 107 m_busDevices[iPtr] = new CCECPlaybackDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
108 break;
109 case CECDEVICE_RECORDINGDEVICE1:
110 case CECDEVICE_RECORDINGDEVICE2:
111 case CECDEVICE_RECORDINGDEVICE3:
5d5a2dc2 112 m_busDevices[iPtr] = new CCECRecordingDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
113 break;
114 case CECDEVICE_TUNER1:
115 case CECDEVICE_TUNER2:
116 case CECDEVICE_TUNER3:
117 case CECDEVICE_TUNER4:
5d5a2dc2 118 m_busDevices[iPtr] = new CCECTuner(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
119 break;
120 case CECDEVICE_TV:
121 m_busDevices[iPtr] = new CCECTV(this, (cec_logical_address) iPtr, 0);
122 break;
123 default:
5d5a2dc2 124 m_busDevices[iPtr] = new CCECBusDevice(this, (cec_logical_address) iPtr, 0xFFFF);
51b2a094
LOK
125 break;
126 }
127 }
f8513317
LOK
128}
129
2abe74eb 130CCECProcessor::~CCECProcessor(void)
abbca718 131{
eca71746 132 Close();
7c63a480 133
d1998c7b 134 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
f401a435 135 {
d1998c7b 136 delete m_busDevices[iPtr];
f401a435
LOK
137 m_busDevices[iPtr] = NULL;
138 }
abbca718
LOK
139}
140
eca71746
LOK
141void CCECProcessor::Close(void)
142{
f9e01dac
LOK
143 StopThread(false);
144 SetInitialised(false);
eca71746
LOK
145 StopThread();
146
80726797
LOK
147 bool bClose(false);
148 {
149 CLockObject lock(m_mutex);
150 bClose = m_bConnectionOpened;
151 m_bConnectionOpened = false;
152 }
153
154 if (bClose && m_communication)
eca71746 155 {
eca71746
LOK
156 delete m_communication;
157 m_communication = NULL;
158 }
159}
160
f80cd208 161bool CCECProcessor::OpenConnection(const char *strPort, uint16_t iBaudRate, uint32_t iTimeoutMs, bool bStartListening /* = true */)
abbca718 162{
a674fd68 163 bool bReturn(false);
80726797
LOK
164 Close();
165
578c3905 166 {
80726797
LOK
167 CLockObject lock(m_mutex);
168 if (m_bConnectionOpened)
169 {
170 CLibCEC::AddLog(CEC_LOG_ERROR, "connection already opened");
171 return false;
172 }
173 m_communication = new CUSBCECAdapterCommunication(this, strPort, iBaudRate);
174 m_bConnectionOpened = (m_communication != NULL);
578c3905 175 }
1113cb7d 176
3b5e433a 177 CTimeout timeout(iTimeoutMs > 0 ? iTimeoutMs : CEC_DEFAULT_TRANSMIT_WAIT);
c520af4f 178
578c3905 179 /* open a new connection */
efed01e1 180 unsigned iConnectTry(0);
a75e3a5a 181 while (timeout.TimeLeft() > 0 && (bReturn = m_communication->Open((timeout.TimeLeft() / CEC_CONNECT_TRIES), false, bStartListening)) == false)
3d78df91
LOK
182 {
183 CLibCEC::AddLog(CEC_LOG_ERROR, "could not open a connection (try %d)", ++iConnectTry);
d55f263f 184 m_communication->Close();
a88017b8 185 CEvent::Sleep(1000);
3d78df91 186 }
56035c86 187
efed01e1 188 if (bReturn)
e69d8f19
LOK
189 {
190 m_configuration.iFirmwareVersion = m_communication->GetFirmwareVersion();
b2f56d35 191 uint32_t iBuildDate = m_communication->GetFirmwareBuildDate();
e69d8f19 192 CLibCEC::AddLog(CEC_LOG_NOTICE, "connected to the CEC adapter. firmware version = %d, client version = %s", m_configuration.iFirmwareVersion, ToString((cec_client_version)m_configuration.clientVersion));
b2f56d35
LOK
193 if (iBuildDate > 0)
194 {
195 time_t buildTime = (time_t)iBuildDate;
196 CLibCEC::AddLog(CEC_LOG_NOTICE, "Firmware build date: %s", asctime(localtime(&buildTime)));
197 }
198
e69d8f19 199 }
3d78df91 200
12a36be9 201 if (m_configuration.bGetSettingsFromROM == 1)
7c5c5bf4
LOK
202 {
203 libcec_configuration config;
204 config.Clear();
205 m_communication->GetConfiguration(&config);
206
207 CLockObject lock(m_mutex);
208 if (!config.deviceTypes.IsEmpty())
209 m_configuration.deviceTypes = config.deviceTypes;
210 if (config.iPhysicalAddress > 0)
211 m_configuration.iPhysicalAddress = config.iPhysicalAddress;
212 snprintf(m_configuration.strDeviceName, 13, "%s", config.strDeviceName);
213 }
12a36be9 214
578c3905
LOK
215 return bReturn;
216}
217
0cfdeb5a
LOK
218bool CCECProcessor::IsInitialised(void)
219{
0b714871 220 CLockObject lock(m_threadMutex);
0cfdeb5a
LOK
221 return m_bInitialised;
222}
223
2db8981f 224void CCECProcessor::SetInitialised(bool bSetTo /* = true */)
578c3905 225{
578c3905 226 CLockObject lock(m_mutex);
2db8981f
LOK
227 m_bInitialised = bSetTo;
228}
578c3905 229
2db8981f
LOK
230bool CCECProcessor::Initialise(void)
231{
232 bool bReturn(false);
578c3905 233 {
2db8981f 234 CLockObject lock(m_mutex);
dd18e809
LOK
235 if (!m_configuration.logicalAddresses.IsEmpty())
236 m_configuration.logicalAddresses.Clear();
578c3905 237
2db8981f
LOK
238 if (!FindLogicalAddresses())
239 {
5477a250 240 CLibCEC::AddLog(CEC_LOG_ERROR, "could not detect our logical addresses");
2db8981f
LOK
241 return bReturn;
242 }
243
244 /* only set our OSD name for the primary device */
dd18e809 245 m_busDevices[m_configuration.logicalAddresses.primary]->m_strDeviceName = m_configuration.strDeviceName;
80726797
LOK
246
247 /* make the primary device the active source if the option is set */
248 if (m_configuration.bActivateSource == 1)
dd18e809 249 m_busDevices[m_configuration.logicalAddresses.primary]->m_bActiveSource = true;
3ef17606
MK
250
251 /* set the default menu language for devices we control */
252 cec_menu_language language;
253 language.device = m_configuration.logicalAddresses.primary;
254 memcpy(language.language, m_configuration.strDeviceLanguage, 3);
255 language.language[3] = 0;
256
257 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
258 {
259 if (m_configuration.logicalAddresses[iPtr])
260 {
261 language.device = (cec_logical_address) iPtr;
262 m_busDevices[iPtr]->SetMenuLanguage(language);
263 }
264 }
2db8981f 265 }
578c3905
LOK
266
267 /* get the vendor id from the TV, so we are using the correct handler */
30b4aac0 268 m_busDevices[CECDEVICE_TV]->GetVendorId();
578c3905 269
30b4aac0 270 if (m_configuration.iPhysicalAddress != 0)
4f362964 271 {
30b4aac0 272 CLibCEC::AddLog(CEC_LOG_NOTICE, "setting the physical address to %4x", m_configuration.iPhysicalAddress);
dd18e809
LOK
273 m_busDevices[m_configuration.logicalAddresses.primary]->m_iPhysicalAddress = m_configuration.iPhysicalAddress;
274 if ((bReturn = m_busDevices[m_configuration.logicalAddresses.primary]->TransmitPhysicalAddress()) == false)
30b4aac0 275 CLibCEC::AddLog(CEC_LOG_ERROR, "unable to set the physical address to %4x", m_configuration.iPhysicalAddress);
4f362964 276 }
30b4aac0
LOK
277 else if (m_configuration.iPhysicalAddress == 0 && (bReturn = SetHDMIPort(m_configuration.baseDevice, m_configuration.iHDMIPort, true)) == false)
278 CLibCEC::AddLog(CEC_LOG_ERROR, "unable to set HDMI port %d on %s (%x)", m_configuration.iHDMIPort, ToString(m_configuration.baseDevice), (uint8_t)m_configuration.baseDevice);
2db8981f 279
1bfdc9bd 280 if (bReturn && m_configuration.bActivateSource == 1)
dd18e809 281 m_busDevices[m_configuration.logicalAddresses.primary]->ActivateSource();
80726797 282
2db8981f 283 SetInitialised(bReturn);
ba73be2f
LOK
284 if (bReturn)
285 CLibCEC::ConfigurationChanged(m_configuration);
578c3905
LOK
286
287 return bReturn;
288}
289
290bool CCECProcessor::Start(const char *strPort, uint16_t iBaudRate /* = 38400 */, uint32_t iTimeoutMs /* = 10000 */)
291{
292 bool bReturn(false);
293
294 {
295 CLockObject lock(m_mutex);
296 if (!OpenConnection(strPort, iBaudRate, iTimeoutMs))
a674fd68 297 return bReturn;
994dbaaa 298
a674fd68 299 /* create the processor thread */
8e57f83c 300 if (!CreateThread())
a674fd68 301 {
5477a250 302 CLibCEC::AddLog(CEC_LOG_ERROR, "could not create a processor thread");
a674fd68 303 return bReturn;
994dbaaa 304 }
a674fd68
LOK
305 }
306
578c3905 307 if ((bReturn = Initialise()) == false)
a674fd68 308 {
5477a250 309 CLibCEC::AddLog(CEC_LOG_ERROR, "could not create a processor thread");
578c3905 310 StopThread(true);
a674fd68
LOK
311 }
312 else
313 {
5477a250 314 CLibCEC::AddLog(CEC_LOG_DEBUG, "processor thread started");
a674fd68
LOK
315 }
316
317 return bReturn;
abbca718
LOK
318}
319
b58d9277 320bool CCECProcessor::TryLogicalAddress(cec_logical_address address)
f8513317 321{
93fff5c1 322 if (m_busDevices[address]->TryLogicalAddress())
f8513317 323 {
dd18e809 324 m_configuration.logicalAddresses.Set(address);
f8513317
LOK
325 return true;
326 }
327
f8513317
LOK
328 return false;
329}
330
b58d9277 331bool CCECProcessor::FindLogicalAddressRecordingDevice(void)
f8513317 332{
5477a250 333 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'recording device'");
b58d9277
LOK
334 return TryLogicalAddress(CECDEVICE_RECORDINGDEVICE1) ||
335 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE2) ||
336 TryLogicalAddress(CECDEVICE_RECORDINGDEVICE3);
f8513317
LOK
337}
338
b58d9277 339bool CCECProcessor::FindLogicalAddressTuner(void)
f8513317 340{
5477a250 341 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'tuner'");
b58d9277
LOK
342 return TryLogicalAddress(CECDEVICE_TUNER1) ||
343 TryLogicalAddress(CECDEVICE_TUNER2) ||
344 TryLogicalAddress(CECDEVICE_TUNER3) ||
345 TryLogicalAddress(CECDEVICE_TUNER4);
f8513317
LOK
346}
347
b58d9277 348bool CCECProcessor::FindLogicalAddressPlaybackDevice(void)
f8513317 349{
5477a250 350 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'playback device'");
b58d9277
LOK
351 return TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE1) ||
352 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE2) ||
353 TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE3);
f8513317
LOK
354}
355
b58d9277 356bool CCECProcessor::FindLogicalAddressAudioSystem(void)
f8513317 357{
5477a250 358 CLibCEC::AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'audio'");
b58d9277 359 return TryLogicalAddress(CECDEVICE_AUDIOSYSTEM);
f8513317
LOK
360}
361
3e61b350
LOK
362bool CCECProcessor::ChangeDeviceType(cec_device_type from, cec_device_type to)
363{
364 bool bChanged(false);
365
5477a250 366 CLibCEC::AddLog(CEC_LOG_NOTICE, "changing device type '%s' into '%s'", ToString(from), ToString(to));
3e61b350 367
f00ff009 368 CLockObject lock(m_mutex);
3e61b350 369 CCECBusDevice *previousDevice = GetDeviceByType(from);
dd18e809 370 m_configuration.logicalAddresses.primary = CECDEVICE_UNKNOWN;
3e61b350
LOK
371
372 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
373 {
30b4aac0 374 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
3e61b350
LOK
375 continue;
376
30b4aac0 377 if (m_configuration.deviceTypes.types[iPtr] == from)
3e61b350
LOK
378 {
379 bChanged = true;
30b4aac0 380 m_configuration.deviceTypes.types[iPtr] = to;
3e61b350 381 }
30b4aac0 382 else if (m_configuration.deviceTypes.types[iPtr] == to && bChanged)
3e61b350 383 {
30b4aac0 384 m_configuration.deviceTypes.types[iPtr] = CEC_DEVICE_TYPE_RESERVED;
3e61b350
LOK
385 }
386 }
387
388 if (bChanged)
389 {
390 FindLogicalAddresses();
391
392 CCECBusDevice *newDevice = GetDeviceByType(to);
393 if (previousDevice && newDevice)
394 {
395 newDevice->SetDeviceStatus(CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC);
4478bc79 396 previousDevice->SetDeviceStatus(CEC_DEVICE_STATUS_NOT_PRESENT);
3e61b350
LOK
397
398 newDevice->SetCecVersion(previousDevice->GetCecVersion(false));
399 previousDevice->SetCecVersion(CEC_VERSION_UNKNOWN);
400
401 newDevice->SetMenuLanguage(previousDevice->GetMenuLanguage(false));
3e61b350
LOK
402
403 newDevice->SetMenuState(previousDevice->GetMenuState());
404 previousDevice->SetMenuState(CEC_MENU_STATE_DEACTIVATED);
405
406 newDevice->SetOSDName(previousDevice->GetOSDName(false));
407 previousDevice->SetOSDName(ToString(previousDevice->GetLogicalAddress()));
408
409 newDevice->SetPhysicalAddress(previousDevice->GetPhysicalAddress(false));
410 previousDevice->SetPhysicalAddress(0xFFFF);
411
412 newDevice->SetPowerStatus(previousDevice->GetPowerStatus(false));
413 previousDevice->SetPowerStatus(CEC_POWER_STATUS_UNKNOWN);
414
415 newDevice->SetVendorId(previousDevice->GetVendorId(false));
416 previousDevice->SetVendorId(CEC_VENDOR_UNKNOWN);
417
418 if ((from == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || from == CEC_DEVICE_TYPE_RECORDING_DEVICE) &&
419 (to == CEC_DEVICE_TYPE_PLAYBACK_DEVICE || to == CEC_DEVICE_TYPE_RECORDING_DEVICE))
420 {
421 ((CCECPlaybackDevice *) newDevice)->SetDeckControlMode(((CCECPlaybackDevice *) previousDevice)->GetDeckControlMode());
422 ((CCECPlaybackDevice *) previousDevice)->SetDeckControlMode(CEC_DECK_CONTROL_MODE_STOP);
423
424 ((CCECPlaybackDevice *) newDevice)->SetDeckStatus(((CCECPlaybackDevice *) previousDevice)->GetDeckStatus());
425 ((CCECPlaybackDevice *) previousDevice)->SetDeckStatus(CEC_DECK_INFO_STOP);
426 }
427 }
428 }
429
430 return true;
431}
432
f8513317
LOK
433bool CCECProcessor::FindLogicalAddresses(void)
434{
435 bool bReturn(true);
dd18e809 436 m_configuration.logicalAddresses.Clear();
f8513317 437
30b4aac0 438 if (m_configuration.deviceTypes.IsEmpty())
c39611ec
LOK
439 {
440 CLibCEC::AddLog(CEC_LOG_ERROR, "no device types set");
441 return false;
442 }
443
f8513317
LOK
444 for (unsigned int iPtr = 0; iPtr < 5; iPtr++)
445 {
30b4aac0 446 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
f8513317
LOK
447 continue;
448
30b4aac0 449 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - device %d: type %d", __FUNCTION__, iPtr, m_configuration.deviceTypes.types[iPtr]);
f8513317 450
30b4aac0 451 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RECORDING_DEVICE)
b58d9277 452 bReturn &= FindLogicalAddressRecordingDevice();
30b4aac0 453 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_TUNER)
b58d9277 454 bReturn &= FindLogicalAddressTuner();
30b4aac0 455 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_PLAYBACK_DEVICE)
b58d9277 456 bReturn &= FindLogicalAddressPlaybackDevice();
30b4aac0 457 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
b58d9277 458 bReturn &= FindLogicalAddressAudioSystem();
f8513317
LOK
459 }
460
a674fd68 461 if (bReturn)
dd18e809 462 SetAckMask(m_configuration.logicalAddresses.AckMask());
a674fd68 463
f8513317
LOK
464 return bReturn;
465}
466
a3ffc068
LOK
467void CCECProcessor::ReplaceHandlers(void)
468{
0cfdeb5a
LOK
469 if (!IsInitialised())
470 return;
a3ffc068 471 for (uint8_t iPtr = 0; iPtr <= CECDEVICE_PLAYBACKDEVICE3; iPtr++)
591170fd 472 m_busDevices[iPtr]->ReplaceHandler(m_bInitialised);
a3ffc068
LOK
473}
474
b1f94db1
LOK
475bool CCECProcessor::OnCommandReceived(const cec_command &command)
476{
a4b9f561 477 return m_inBuffer.Push(command);
b1f94db1
LOK
478}
479
2abe74eb 480void *CCECProcessor::Process(void)
f99bc831 481{
8e57f83c 482 CLibCEC::AddLog(CEC_LOG_DEBUG, "processor thread started");
abbca718 483
a4b9f561
LOK
484 cec_command command;
485 command.Clear();
486
b1f94db1 487 while (!IsStopped() && m_communication->IsOpen())
abbca718 488 {
a4b9f561
LOK
489 if (m_inBuffer.Pop(command, 500))
490 ParseCommand(command);
491
f0154449
LOK
492 if (IsInitialised())
493 {
494 ReplaceHandlers();
b5f34cf9 495
f0154449
LOK
496 m_controller->CheckKeypressTimeout();
497 }
abbca718
LOK
498 }
499
60fa4578 500 return NULL;
abbca718
LOK
501}
502
18203d17 503bool CCECProcessor::SetActiveSource(cec_device_type type /* = CEC_DEVICE_TYPE_RESERVED */)
abbca718 504{
8ac9c610
LOK
505 bool bReturn(false);
506
60fa4578 507 if (!IsRunning())
8ac9c610 508 return bReturn;
f99bc831 509
dd18e809 510 cec_logical_address addr = m_configuration.logicalAddresses.primary;
04437dcf 511
18203d17
LOK
512 if (type != CEC_DEVICE_TYPE_RESERVED)
513 {
90ea9066 514 for (uint8_t iPtr = 0; iPtr <= 11; iPtr++)
18203d17 515 {
dd18e809 516 if (m_configuration.logicalAddresses[iPtr] && m_busDevices[iPtr]->m_type == type)
18203d17
LOK
517 {
518 addr = (cec_logical_address) iPtr;
519 break;
520 }
521 }
522 }
523
37b0c572 524 m_busDevices[addr]->SetActiveSource();
d383d6d0 525 if (m_busDevices[addr]->GetPhysicalAddress(false) != 0xFFFF)
bbc71623 526 bReturn = m_busDevices[addr]->ActivateSource();
8d915412
LOK
527
528 return bReturn;
18203d17
LOK
529}
530
37b0c572
LOK
531bool CCECProcessor::SetActiveSource(uint16_t iStreamPath)
532{
533 bool bReturn(false);
534
a75e3a5a
LOK
535 // suppress polls when searching for a device
536 CCECBusDevice *device = GetDeviceByPhysicalAddress(iStreamPath, false, true);
37b0c572
LOK
537 if (device)
538 {
539 device->SetActiveSource();
540 bReturn = true;
541 }
542
543 return bReturn;
544}
545
dcd240b2
LOK
546void CCECProcessor::SetStandardLineTimeout(uint8_t iTimeout)
547{
f00ff009 548 CLockObject lock(m_mutex);
dcd240b2
LOK
549 m_iStandardLineTimeout = iTimeout;
550}
551
552void CCECProcessor::SetRetryLineTimeout(uint8_t iTimeout)
553{
f00ff009 554 CLockObject lock(m_mutex);
dcd240b2
LOK
555 m_iRetryLineTimeout = iTimeout;
556}
557
18203d17
LOK
558bool CCECProcessor::SetActiveView(void)
559{
8670c970 560 CLibCEC::AddLog(CEC_LOG_WARNING, "deprecated method %s called", __FUNCTION__);
30b4aac0 561 return SetActiveSource(m_configuration.deviceTypes.IsEmpty() ? CEC_DEVICE_TYPE_RESERVED : m_configuration.deviceTypes[0]);
8ac9c610
LOK
562}
563
28fa6c97 564bool CCECProcessor::SetDeckControlMode(cec_deck_control_mode mode, bool bSendUpdate /* = true */)
a9232a79
LOK
565{
566 bool bReturn(false);
567
568 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
569 if (device)
570 {
571 ((CCECPlaybackDevice *) device)->SetDeckControlMode(mode);
28fa6c97
LOK
572 if (bSendUpdate)
573 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
a9232a79
LOK
574 bReturn = true;
575 }
576
577 return bReturn;
578}
579
28fa6c97 580bool CCECProcessor::SetDeckInfo(cec_deck_info info, bool bSendUpdate /* = true */)
a9232a79
LOK
581{
582 bool bReturn(false);
583
584 CCECBusDevice *device = GetDeviceByType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE);
585 if (device)
586 {
587 ((CCECPlaybackDevice *) device)->SetDeckStatus(info);
28fa6c97
LOK
588 if (bSendUpdate)
589 ((CCECPlaybackDevice *) device)->TransmitDeckStatus(CECDEVICE_TV);
a9232a79
LOK
590 bReturn = true;
591 }
592
593 return bReturn;
594}
595
d2f1c157 596bool CCECProcessor::SetHDMIPort(cec_logical_address iBaseDevice, uint8_t iPort, bool bForce /* = false */)
16b1e052
LOK
597{
598 bool bReturn(false);
599
86393878
MK
600 // limit the HDMI port range to 1-15
601 if (iPort < 1)
602 iPort = 1;
603 if (iPort > 15)
604 iPort = 15;
605
8670c970
LOK
606 {
607 CLockObject lock(m_mutex);
608 m_configuration.baseDevice = iBaseDevice;
609 m_configuration.iHDMIPort = iPort;
8670c970
LOK
610 }
611
8e57f83c 612 if (!IsRunning() && !bForce)
89b3c9df 613 return true;
16b1e052 614
5477a250 615 CLibCEC::AddLog(CEC_LOG_DEBUG, "setting HDMI port to %d on device %s (%d)", iPort, ToString(iBaseDevice), (int)iBaseDevice);
56035c86 616
16b1e052 617 uint16_t iPhysicalAddress(0);
1e7afacd 618 if (iBaseDevice > CECDEVICE_TV)
5d0c1164 619 {
1e7afacd 620 iPhysicalAddress = m_busDevices[iBaseDevice]->GetPhysicalAddress();
5d0c1164 621 }
1e7afacd 622
a674fd68 623 if (iPhysicalAddress < 0xffff)
1e7afacd 624 {
1e7afacd 625 if (iPhysicalAddress == 0)
5d355340 626 iPhysicalAddress += 0x1000 * iPort;
1e7afacd 627 else if (iPhysicalAddress % 0x1000 == 0)
5d355340 628 iPhysicalAddress += 0x100 * iPort;
1e7afacd 629 else if (iPhysicalAddress % 0x100 == 0)
5d355340 630 iPhysicalAddress += 0x10 * iPort;
1e7afacd 631 else if (iPhysicalAddress % 0x10 == 0)
5d355340 632 iPhysicalAddress += iPort;
1e7afacd 633
5d355340 634 bReturn = true;
16b1e052
LOK
635 }
636
a674fd68 637 if (!bReturn)
5477a250 638 CLibCEC::AddLog(CEC_LOG_ERROR, "failed to set the physical address");
f070564b 639 else
f070564b 640 SetPhysicalAddress(iPhysicalAddress);
a674fd68 641
16b1e052
LOK
642 return bReturn;
643}
644
45b97de7 645bool CCECProcessor::PhysicalAddressInUse(uint16_t iPhysicalAddress)
16b1e052 646{
9fd73dd4 647 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
16b1e052
LOK
648 {
649 if (m_busDevices[iPtr]->GetPhysicalAddress(false) == iPhysicalAddress)
650 return true;
651 }
652 return false;
653}
654
ab27363d 655bool CCECProcessor::TransmitInactiveSource(void)
abbca718 656{
60fa4578 657 if (!IsRunning())
f99bc831
LOK
658 return false;
659
dd18e809
LOK
660 if (!m_configuration.logicalAddresses.IsEmpty() && m_busDevices[m_configuration.logicalAddresses.primary])
661 return m_busDevices[m_configuration.logicalAddresses.primary]->TransmitInactiveSource();
cc60ab1c 662 return false;
abbca718
LOK
663}
664
9dee1670 665void CCECProcessor::LogOutput(const cec_command &data)
abbca718 666{
1d3ca3de 667 CStdString strTx;
57f45e6c
LOK
668 strTx.Format("<< %02x", ((uint8_t)data.initiator << 4) + (uint8_t)data.destination);
669 if (data.opcode_set)
670 strTx.AppendFormat(":%02x", (uint8_t)data.opcode);
9dee1670 671
06a1f7ce 672 for (uint8_t iPtr = 0; iPtr < data.parameters.size; iPtr++)
1d3ca3de 673 strTx.AppendFormat(":%02x", data.parameters[iPtr]);
5477a250 674 CLibCEC::AddLog(CEC_LOG_TRAFFIC, strTx.c_str());
9dee1670 675}
2abe74eb 676
06bfd4d7 677bool CCECProcessor::SetLogicalAddress(cec_logical_address iLogicalAddress)
abbca718 678{
f00ff009 679 CLockObject lock(m_mutex);
dd18e809 680 if (m_configuration.logicalAddresses.primary != iLogicalAddress)
06775107 681 {
5477a250 682 CLibCEC::AddLog(CEC_LOG_NOTICE, "<< setting primary logical address to %1x", iLogicalAddress);
dd18e809
LOK
683 m_configuration.logicalAddresses.primary = iLogicalAddress;
684 m_configuration.logicalAddresses.Set(iLogicalAddress);
685 return SetAckMask(m_configuration.logicalAddresses.AckMask());
06775107 686 }
2abe74eb 687
06bfd4d7 688 return true;
abbca718 689}
825ddb96 690
28fa6c97
LOK
691bool CCECProcessor::SetMenuState(cec_menu_state state, bool bSendUpdate /* = true */)
692{
693 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
694 {
dd18e809 695 if (m_configuration.logicalAddresses[iPtr])
28fa6c97
LOK
696 m_busDevices[iPtr]->SetMenuState(state);
697 }
698
699 if (bSendUpdate)
dd18e809 700 m_busDevices[m_configuration.logicalAddresses.primary]->TransmitMenuState(CECDEVICE_TV);
28fa6c97
LOK
701
702 return true;
703}
704
bebb19dc 705bool CCECProcessor::SetPhysicalAddress(uint16_t iPhysicalAddress, bool bSendUpdate /* = true */)
2492216a 706{
f070564b
LOK
707 bool bSendActiveView(false);
708 bool bReturn(false);
4d6f5ac7 709 cec_logical_addresses sendUpdatesTo;
ded7e7ce 710 sendUpdatesTo.Clear();
ff684fef 711
f070564b 712 {
f00ff009 713 CLockObject lock(m_mutex);
30b4aac0 714 m_configuration.iPhysicalAddress = iPhysicalAddress;
30a09f32 715 CLibCEC::AddLog(CEC_LOG_DEBUG, "setting physical address to '%4x'", iPhysicalAddress);
4f362964 716
dd18e809 717 if (!m_configuration.logicalAddresses.IsEmpty())
f070564b
LOK
718 {
719 bool bWasActiveSource(false);
720 for (uint8_t iPtr = 0; iPtr < 15; iPtr++)
dd18e809 721 if (m_configuration.logicalAddresses[iPtr])
f070564b
LOK
722 {
723 bWasActiveSource |= m_busDevices[iPtr]->IsActiveSource();
724 m_busDevices[iPtr]->SetInactiveSource();
725 m_busDevices[iPtr]->SetPhysicalAddress(iPhysicalAddress);
726 if (bSendUpdate)
4d6f5ac7 727 sendUpdatesTo.Set((cec_logical_address)iPtr);
f070564b
LOK
728 }
729
730 bSendActiveView = bWasActiveSource && bSendUpdate;
731 bReturn = true;
732 }
cc60ab1c 733 }
f070564b 734
4d6f5ac7
LOK
735 for (uint8_t iPtr = 0; iPtr < 15; iPtr++)
736 if (sendUpdatesTo[iPtr])
737 m_busDevices[iPtr]->TransmitPhysicalAddress();
738
f070564b
LOK
739 if (bSendActiveView)
740 SetActiveView();
741
32403cc3 742 if (bReturn)
7c5c5bf4
LOK
743 {
744 libcec_configuration config;
745 {
746 CLockObject lock(m_mutex);
747 config = m_configuration;
748 }
749
750 PersistConfiguration(&config);
751 CLibCEC::ConfigurationChanged(config);
752 }
32403cc3 753
f070564b 754 return bReturn;
1969b140
LOK
755}
756
8b7e5ff6
LOK
757bool CCECProcessor::SwitchMonitoring(bool bEnable)
758{
5477a250 759 CLibCEC::AddLog(CEC_LOG_NOTICE, "== %s monitoring mode ==", bEnable ? "enabling" : "disabling");
8b7e5ff6 760
855a3a98 761 {
f00ff009 762 CLockObject lock(m_mutex);
855a3a98 763 m_bMonitor = bEnable;
855a3a98
LOK
764 }
765
8b7e5ff6 766 if (bEnable)
06bfd4d7 767 return SetAckMask(0);
8b7e5ff6 768 else
dd18e809 769 return SetAckMask(m_configuration.logicalAddresses.AckMask());
8b7e5ff6
LOK
770}
771
57f45e6c
LOK
772bool CCECProcessor::PollDevice(cec_logical_address iAddress)
773{
774 if (iAddress != CECDEVICE_UNKNOWN && m_busDevices[iAddress])
95a73fa7 775 {
dd18e809 776 return m_configuration.logicalAddresses.primary == CECDEVICE_UNKNOWN ?
95a73fa7 777 m_busDevices[iAddress]->TransmitPoll(iAddress) :
dd18e809 778 m_busDevices[m_configuration.logicalAddresses.primary]->TransmitPoll(iAddress);
95a73fa7 779 }
57f45e6c
LOK
780 return false;
781}
782
5c73f7f7 783uint8_t CCECProcessor::VolumeUp(bool bSendRelease /* = true */)
04e637f9
LOK
784{
785 uint8_t status = 0;
37b0c572 786 if (IsPresentDevice(CECDEVICE_AUDIOSYSTEM))
5c73f7f7 787 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->VolumeUp(bSendRelease);
04e637f9
LOK
788
789 return status;
790}
791
5c73f7f7 792uint8_t CCECProcessor::VolumeDown(bool bSendRelease /* = true */)
04e637f9
LOK
793{
794 uint8_t status = 0;
37b0c572 795 if (IsPresentDevice(CECDEVICE_AUDIOSYSTEM))
5c73f7f7 796 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->VolumeDown(bSendRelease);
04e637f9
LOK
797
798 return status;
799}
800
5c73f7f7 801uint8_t CCECProcessor::MuteAudio(bool bSendRelease /* = true */)
04e637f9
LOK
802{
803 uint8_t status = 0;
37b0c572 804 if (IsPresentDevice(CECDEVICE_AUDIOSYSTEM))
5c73f7f7 805 status = ((CCECAudioSystem *)m_busDevices[CECDEVICE_AUDIOSYSTEM])->MuteAudio(bSendRelease);
04e637f9
LOK
806
807 return status;
808}
809
a75e3a5a 810CCECBusDevice *CCECProcessor::GetDeviceByPhysicalAddress(uint16_t iPhysicalAddress, bool bRefresh /* = false */, bool bSuppressPoll /* = false */) const
8ac9c610 811{
dd18e809
LOK
812 if (m_busDevices[m_configuration.logicalAddresses.primary]->GetPhysicalAddress(false) == iPhysicalAddress)
813 return m_busDevices[m_configuration.logicalAddresses.primary];
8ac9c610 814
b58d9277 815 CCECBusDevice *device = NULL;
8ac9c610
LOK
816 for (unsigned int iPtr = 0; iPtr < 16; iPtr++)
817 {
a75e3a5a 818 if (m_busDevices[iPtr]->GetPhysicalAddress(bRefresh, bSuppressPoll) == iPhysicalAddress)
8ac9c610
LOK
819 {
820 device = m_busDevices[iPtr];
821 break;
822 }
823 }
824
825 return device;
826}
827
a9232a79
LOK
828CCECBusDevice *CCECProcessor::GetDeviceByType(cec_device_type type) const
829{
830 CCECBusDevice *device = NULL;
831
7619faad 832 for (uint8_t iPtr = 0; iPtr < 16; iPtr++)
a9232a79 833 {
dd18e809 834 if (m_busDevices[iPtr]->m_type == type && m_configuration.logicalAddresses[iPtr])
a9232a79
LOK
835 {
836 device = m_busDevices[iPtr];
837 break;
838 }
839 }
840
841 return device;
842}
843
842262d8
LOK
844CCECBusDevice *CCECProcessor::GetPrimaryDevice(void) const
845{
846 CCECBusDevice *device(NULL);
dd18e809 847 cec_logical_address primary = m_configuration.logicalAddresses.primary;
842262d8
LOK
848 if (primary != CECDEVICE_UNKNOWN)
849 device = m_busDevices[primary];
850 return device;
851}
852
6a1c0009
LOK
853cec_version CCECProcessor::GetDeviceCecVersion(cec_logical_address iAddress)
854{
855 return m_busDevices[iAddress]->GetCecVersion();
856}
857
ed21be2a
LOK
858cec_osd_name CCECProcessor::GetDeviceOSDName(cec_logical_address iAddress)
859{
860 CStdString strOSDName = m_busDevices[iAddress]->GetOSDName();
861 cec_osd_name retVal;
862
863 snprintf(retVal.name, sizeof(retVal.name), "%s", strOSDName.c_str());
864 retVal.device = iAddress;
865
866 return retVal;
867}
868
a3269a0a
LOK
869bool CCECProcessor::GetDeviceMenuLanguage(cec_logical_address iAddress, cec_menu_language *language)
870{
cc60ab1c
LOK
871 if (m_busDevices[iAddress])
872 {
873 *language = m_busDevices[iAddress]->GetMenuLanguage();
5744fbba 874 return (strcmp(language->language, "???") != 0);
cc60ab1c
LOK
875 }
876 return false;
a3269a0a
LOK
877}
878
e186a843
LOK
879CStdString CCECProcessor::GetDeviceName(void) const
880{
881 CStdString strName;
882 strName = m_configuration.strDeviceName;
883 return strName;
884}
885
44c74256
LOK
886uint64_t CCECProcessor::GetDeviceVendorId(cec_logical_address iAddress)
887{
cc60ab1c
LOK
888 if (m_busDevices[iAddress])
889 return m_busDevices[iAddress]->GetVendorId();
890 return false;
44c74256
LOK
891}
892
eab72c40
LOK
893uint16_t CCECProcessor::GetDevicePhysicalAddress(cec_logical_address iAddress)
894{
895 if (m_busDevices[iAddress])
896 return m_busDevices[iAddress]->GetPhysicalAddress(false);
897 return false;
898}
899
e55f3f70
LOK
900cec_power_status CCECProcessor::GetDevicePowerStatus(cec_logical_address iAddress)
901{
cc60ab1c
LOK
902 if (m_busDevices[iAddress])
903 return m_busDevices[iAddress]->GetPowerStatus();
904 return CEC_POWER_STATUS_UNKNOWN;
e55f3f70
LOK
905}
906
b4b1b49b
LOK
907cec_logical_address CCECProcessor::GetActiveSource(void)
908{
909 for (uint8_t iPtr = 0; iPtr <= 11; iPtr++)
910 {
911 if (m_busDevices[iPtr]->IsActiveSource())
912 return (cec_logical_address)iPtr;
913 }
914
915 return CECDEVICE_UNKNOWN;
916}
917
918bool CCECProcessor::IsActiveSource(cec_logical_address iAddress)
919{
46dfe6c4
LOK
920 return iAddress > CECDEVICE_TV && iAddress < CECDEVICE_BROADCAST ?
921 m_busDevices[iAddress]->IsActiveSource() :
922 false;
b4b1b49b
LOK
923}
924
8d84e2c0 925bool CCECProcessor::Transmit(const cec_command &data)
825ddb96 926{
dd18e809 927 if (m_configuration.logicalAddresses[(uint8_t)data.destination])
c4287bcd
LOK
928 {
929 CLibCEC::AddLog(CEC_LOG_WARNING, "not sending data to myself!");
930 return false;
931 }
932
7cf8ba15 933 uint8_t iMaxTries(0);
eb35e4ca 934 {
7bb4ed43 935 CLockObject lock(m_mutex);
44a1d92a
LOK
936 if (IsStopped())
937 return false;
7bb4ed43 938 LogOutput(data);
5f316715 939 m_iLastTransmission = GetTimeMs();
44195125 940 if (!m_communication || !m_communication->IsOpen())
f9e01dac
LOK
941 {
942 CLibCEC::AddLog(CEC_LOG_ERROR, "cannot transmit command: connection closed");
7bb4ed43 943 return false;
f9e01dac 944 }
7cf8ba15 945 iMaxTries = m_busDevices[data.initiator]->GetHandler()->GetTransmitRetries() + 1;
2abe74eb
LOK
946 }
947
33dd87a9
MK
948 bool bRetry(true);
949 uint8_t iTries(0);
950 uint8_t iLineTimeout = m_iStandardLineTimeout;
951 cec_adapter_message_state adapterState = ADAPTER_MESSAGE_STATE_UNKNOWN;
952
953 while (bRetry && ++iTries < iMaxTries)
954 {
955 if (m_busDevices[data.initiator]->IsUnsupportedFeature(data.opcode))
956 return false;
957
958 adapterState = m_communication->Write(data, bRetry, iLineTimeout);
959 iLineTimeout = m_iRetryLineTimeout;
960 }
961
962 return adapterState == ADAPTER_MESSAGE_STATE_SENT_ACKED;
825ddb96 963}
abbca718 964
22b4e74a 965void CCECProcessor::TransmitAbort(cec_logical_address address, cec_opcode opcode, cec_abort_reason reason /* = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE */)
abbca718 966{
5477a250 967 CLibCEC::AddLog(CEC_LOG_DEBUG, "<< transmitting abort message");
9dee1670 968
06a1f7ce 969 cec_command command;
f8513317 970 // TODO
dd18e809 971 cec_command::Format(command, m_configuration.logicalAddresses.primary, address, CEC_OPCODE_FEATURE_ABORT);
ab1469a0
LOK
972 command.parameters.PushBack((uint8_t)opcode);
973 command.parameters.PushBack((uint8_t)reason);
9dee1670
LOK
974
975 Transmit(command);
abbca718
LOK
976}
977
b1f94db1 978void CCECProcessor::ParseCommand(const cec_command &command)
abbca718 979{
e9de9629 980 CStdString dataStr;
d297cbd4
LOK
981 dataStr.Format(">> %1x%1x", command.initiator, command.destination);
982 if (command.opcode_set == 1)
983 dataStr.AppendFormat(":%02x", command.opcode);
e9de9629
LOK
984 for (uint8_t iPtr = 0; iPtr < command.parameters.size; iPtr++)
985 dataStr.AppendFormat(":%02x", (unsigned int)command.parameters[iPtr]);
5477a250 986 CLibCEC::AddLog(CEC_LOG_TRAFFIC, dataStr.c_str());
dc113aca 987
7871d66e 988 if (!m_bMonitor && command.initiator >= CECDEVICE_TV && command.initiator <= CECDEVICE_BROADCAST)
e9de9629 989 m_busDevices[(uint8_t)command.initiator]->HandleCommand(command);
dc113aca
LOK
990}
991
6d858ba4
LOK
992cec_logical_addresses CCECProcessor::GetActiveDevices(void)
993{
994 cec_logical_addresses addresses;
988de7b9 995 addresses.Clear();
6d858ba4
LOK
996 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
997 {
998 if (m_busDevices[iPtr]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
999 addresses.Set((cec_logical_address) iPtr);
1000 }
1001 return addresses;
1002}
1003
37b0c572 1004bool CCECProcessor::IsPresentDevice(cec_logical_address address)
6d858ba4
LOK
1005{
1006 return m_busDevices[address]->GetStatus() == CEC_DEVICE_STATUS_PRESENT;
1007}
1008
37b0c572 1009bool CCECProcessor::IsPresentDeviceType(cec_device_type type)
6d858ba4 1010{
6d858ba4 1011 for (unsigned int iPtr = 0; iPtr < 15; iPtr++)
2813bd07
LOK
1012 {
1013 if (m_busDevices[iPtr]->GetType() == type && m_busDevices[iPtr]->GetStatus() == CEC_DEVICE_STATUS_PRESENT)
6d858ba4 1014 return true;
2813bd07
LOK
1015 }
1016
6d858ba4
LOK
1017 return false;
1018}
1019
0f23c85c
LOK
1020uint16_t CCECProcessor::GetPhysicalAddress(void) const
1021{
dd18e809
LOK
1022 if (!m_configuration.logicalAddresses.IsEmpty() && m_busDevices[m_configuration.logicalAddresses.primary])
1023 return m_busDevices[m_configuration.logicalAddresses.primary]->GetPhysicalAddress(false);
cc60ab1c 1024 return false;
0f23c85c
LOK
1025}
1026
06bfd4d7
LOK
1027bool CCECProcessor::SetAckMask(uint16_t iMask)
1028{
0b714871 1029 return m_communication ? m_communication->SetAckMask(iMask) : false;
06bfd4d7 1030}
a33794d8 1031
4bec9d79 1032bool CCECProcessor::TransmitKeypress(cec_logical_address iDestination, cec_user_control_code key, bool bWait /* = true */)
a33794d8 1033{
86869f8f 1034 return m_busDevices[iDestination]->TransmitKeypress(key, bWait);
a33794d8
LOK
1035}
1036
4bec9d79 1037bool CCECProcessor::TransmitKeyRelease(cec_logical_address iDestination, bool bWait /* = true */)
a33794d8 1038{
86869f8f 1039 return m_busDevices[iDestination]->TransmitKeyRelease(bWait);
a33794d8 1040}
7c63a480 1041
8670c970
LOK
1042bool CCECProcessor::EnablePhysicalAddressDetection(void)
1043{
1044 CLibCEC::AddLog(CEC_LOG_WARNING, "deprecated method %s called", __FUNCTION__);
1045 uint16_t iPhysicalAddress = m_communication->GetPhysicalAddress();
1046 if (iPhysicalAddress != 0)
1047 {
1048 m_configuration.bAutodetectAddress = 1;
1049 m_configuration.iPhysicalAddress = iPhysicalAddress;
1050 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
1051 m_configuration.iHDMIPort = 0;
1052 return SetPhysicalAddress(iPhysicalAddress);
1053 }
1054 return false;
1055}
1056
ca27e6cf
LOK
1057bool CCECProcessor::StandbyDevices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
1058{
1059 if (address == CECDEVICE_BROADCAST && m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_0)
1060 {
1061 bool bReturn(true);
1062 for (uint8_t iPtr = 0; iPtr <= 0xF; iPtr++)
1063 {
1064 if (m_configuration.powerOffDevices[iPtr])
e2c644d2
LOK
1065 {
1066 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - putting '%s' in standby mode", __FUNCTION__, ToString((cec_logical_address)iPtr));
ca27e6cf 1067 bReturn &= m_busDevices[iPtr]->Standby();
e2c644d2 1068 }
ca27e6cf
LOK
1069 }
1070 return bReturn;
1071 }
1072
1073 return m_busDevices[address]->Standby();
1074}
1075
1076bool CCECProcessor::PowerOnDevices(cec_logical_address address /* = CECDEVICE_BROADCAST */)
1077{
1078 if (address == CECDEVICE_BROADCAST && m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_0)
1079 {
1080 bool bReturn(true);
1081 for (uint8_t iPtr = 0; iPtr <= 0xF; iPtr++)
1082 {
e2c644d2
LOK
1083 if (m_configuration.wakeDevices[iPtr])
1084 {
1085 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - powering on '%s'", __FUNCTION__, ToString((cec_logical_address)iPtr));
ca27e6cf 1086 bReturn &= m_busDevices[iPtr]->PowerOn();
e2c644d2 1087 }
ca27e6cf
LOK
1088 }
1089 return bReturn;
1090 }
1091
1092 return m_busDevices[address]->PowerOn();
1093}
1094
3e61b350
LOK
1095const char *CCECProcessor::ToString(const cec_device_type type)
1096{
1097 switch (type)
1098 {
1099 case CEC_DEVICE_TYPE_AUDIO_SYSTEM:
1100 return "audio system";
1101 case CEC_DEVICE_TYPE_PLAYBACK_DEVICE:
1102 return "playback device";
1103 case CEC_DEVICE_TYPE_RECORDING_DEVICE:
1104 return "recording device";
1105 case CEC_DEVICE_TYPE_RESERVED:
1106 return "reserved";
1107 case CEC_DEVICE_TYPE_TUNER:
1108 return "tuner";
1109 case CEC_DEVICE_TYPE_TV:
1110 return "TV";
1111 default:
1112 return "unknown";
1113 }
1114}
1115
03ae897d
LOK
1116const char *CCECProcessor::ToString(const cec_menu_state state)
1117{
1118 switch (state)
1119 {
1120 case CEC_MENU_STATE_ACTIVATED:
1121 return "activated";
1122 case CEC_MENU_STATE_DEACTIVATED:
1123 return "deactivated";
1124 default:
1125 return "unknown";
1126 }
1127}
1128
1129const char *CCECProcessor::ToString(const cec_version version)
1130{
1131 switch (version)
1132 {
1133 case CEC_VERSION_1_2:
1134 return "1.2";
1135 case CEC_VERSION_1_2A:
1136 return "1.2a";
1137 case CEC_VERSION_1_3:
1138 return "1.3";
1139 case CEC_VERSION_1_3A:
1140 return "1.3a";
1141 case CEC_VERSION_1_4:
1142 return "1.4";
1143 default:
1144 return "unknown";
1145 }
1146}
1147
1148const char *CCECProcessor::ToString(const cec_power_status status)
1149{
1150 switch (status)
1151 {
1152 case CEC_POWER_STATUS_ON:
1153 return "on";
1154 case CEC_POWER_STATUS_STANDBY:
1155 return "standby";
1156 case CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY:
1157 return "in transition from on to standby";
1158 case CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON:
1159 return "in transition from standby to on";
1160 default:
1161 return "unknown";
1162 }
1163}
1164
1165const char *CCECProcessor::ToString(const cec_logical_address address)
1166{
1167 switch(address)
1168 {
1169 case CECDEVICE_AUDIOSYSTEM:
1170 return "Audio";
1171 case CECDEVICE_BROADCAST:
1172 return "Broadcast";
1173 case CECDEVICE_FREEUSE:
1174 return "Free use";
1175 case CECDEVICE_PLAYBACKDEVICE1:
1176 return "Playback 1";
1177 case CECDEVICE_PLAYBACKDEVICE2:
1178 return "Playback 2";
1179 case CECDEVICE_PLAYBACKDEVICE3:
1180 return "Playback 3";
1181 case CECDEVICE_RECORDINGDEVICE1:
1182 return "Recorder 1";
1183 case CECDEVICE_RECORDINGDEVICE2:
1184 return "Recorder 2";
1185 case CECDEVICE_RECORDINGDEVICE3:
1186 return "Recorder 3";
1187 case CECDEVICE_RESERVED1:
1188 return "Reserved 1";
1189 case CECDEVICE_RESERVED2:
1190 return "Reserved 2";
1191 case CECDEVICE_TUNER1:
1192 return "Tuner 1";
1193 case CECDEVICE_TUNER2:
1194 return "Tuner 2";
1195 case CECDEVICE_TUNER3:
1196 return "Tuner 3";
1197 case CECDEVICE_TUNER4:
1198 return "Tuner 4";
1199 case CECDEVICE_TV:
1200 return "TV";
1201 default:
1202 return "unknown";
1203 }
1204}
1205
1206const char *CCECProcessor::ToString(const cec_deck_control_mode mode)
1207{
1208 switch (mode)
1209 {
1210 case CEC_DECK_CONTROL_MODE_SKIP_FORWARD_WIND:
1211 return "skip forward wind";
1212 case CEC_DECK_CONTROL_MODE_EJECT:
1213 return "eject";
1214 case CEC_DECK_CONTROL_MODE_SKIP_REVERSE_REWIND:
1215 return "reverse rewind";
1216 case CEC_DECK_CONTROL_MODE_STOP:
1217 return "stop";
1218 default:
1219 return "unknown";
1220 }
1221}
1222
1223const char *CCECProcessor::ToString(const cec_deck_info status)
1224{
1225 switch (status)
1226 {
1227 case CEC_DECK_INFO_PLAY:
1228 return "play";
1229 case CEC_DECK_INFO_RECORD:
1230 return "record";
1231 case CEC_DECK_INFO_PLAY_REVERSE:
1232 return "play reverse";
1233 case CEC_DECK_INFO_STILL:
1234 return "still";
1235 case CEC_DECK_INFO_SLOW:
1236 return "slow";
1237 case CEC_DECK_INFO_SLOW_REVERSE:
1238 return "slow reverse";
1239 case CEC_DECK_INFO_FAST_FORWARD:
1240 return "fast forward";
1241 case CEC_DECK_INFO_FAST_REVERSE:
1242 return "fast reverse";
1243 case CEC_DECK_INFO_NO_MEDIA:
1244 return "no media";
1245 case CEC_DECK_INFO_STOP:
1246 return "stop";
1247 case CEC_DECK_INFO_SKIP_FORWARD_WIND:
1248 return "info skip forward wind";
1249 case CEC_DECK_INFO_SKIP_REVERSE_REWIND:
1250 return "info skip reverse rewind";
1251 case CEC_DECK_INFO_INDEX_SEARCH_FORWARD:
1252 return "info index search forward";
1253 case CEC_DECK_INFO_INDEX_SEARCH_REVERSE:
1254 return "info index search reverse";
1255 case CEC_DECK_INFO_OTHER_STATUS:
1256 return "other";
1257 default:
1258 return "unknown";
1259 }
1260}
1261
1262const char *CCECProcessor::ToString(const cec_opcode opcode)
1263{
1264 switch (opcode)
1265 {
1266 case CEC_OPCODE_ACTIVE_SOURCE:
1267 return "active source";
1268 case CEC_OPCODE_IMAGE_VIEW_ON:
1269 return "image view on";
1270 case CEC_OPCODE_TEXT_VIEW_ON:
1271 return "text view on";
1272 case CEC_OPCODE_INACTIVE_SOURCE:
1273 return "inactive source";
1274 case CEC_OPCODE_REQUEST_ACTIVE_SOURCE:
1275 return "request active source";
1276 case CEC_OPCODE_ROUTING_CHANGE:
1277 return "routing change";
1278 case CEC_OPCODE_ROUTING_INFORMATION:
1279 return "routing information";
1280 case CEC_OPCODE_SET_STREAM_PATH:
1281 return "set stream path";
1282 case CEC_OPCODE_STANDBY:
1283 return "standby";
1284 case CEC_OPCODE_RECORD_OFF:
1285 return "record off";
1286 case CEC_OPCODE_RECORD_ON:
1287 return "record on";
1288 case CEC_OPCODE_RECORD_STATUS:
1289 return "record status";
1290 case CEC_OPCODE_RECORD_TV_SCREEN:
1291 return "record tv screen";
1292 case CEC_OPCODE_CLEAR_ANALOGUE_TIMER:
1293 return "clear analogue timer";
1294 case CEC_OPCODE_CLEAR_DIGITAL_TIMER:
1295 return "clear digital timer";
1296 case CEC_OPCODE_CLEAR_EXTERNAL_TIMER:
1297 return "clear external timer";
1298 case CEC_OPCODE_SET_ANALOGUE_TIMER:
1299 return "set analogue timer";
1300 case CEC_OPCODE_SET_DIGITAL_TIMER:
1301 return "set digital timer";
1302 case CEC_OPCODE_SET_EXTERNAL_TIMER:
1303 return "set external timer";
1304 case CEC_OPCODE_SET_TIMER_PROGRAM_TITLE:
1305 return "set timer program title";
1306 case CEC_OPCODE_TIMER_CLEARED_STATUS:
1307 return "timer cleared status";
1308 case CEC_OPCODE_TIMER_STATUS:
1309 return "timer status";
1310 case CEC_OPCODE_CEC_VERSION:
1311 return "cec version";
1312 case CEC_OPCODE_GET_CEC_VERSION:
1313 return "get cec version";
1314 case CEC_OPCODE_GIVE_PHYSICAL_ADDRESS:
1315 return "give physical address";
1316 case CEC_OPCODE_GET_MENU_LANGUAGE:
1317 return "get menu language";
1318 case CEC_OPCODE_REPORT_PHYSICAL_ADDRESS:
1319 return "report physical address";
1320 case CEC_OPCODE_SET_MENU_LANGUAGE:
1321 return "set menu language";
1322 case CEC_OPCODE_DECK_CONTROL:
1323 return "deck control";
1324 case CEC_OPCODE_DECK_STATUS:
1325 return "deck status";
1326 case CEC_OPCODE_GIVE_DECK_STATUS:
1327 return "give deck status";
1328 case CEC_OPCODE_PLAY:
1329 return "play";
1330 case CEC_OPCODE_GIVE_TUNER_DEVICE_STATUS:
1331 return "give tuner status";
1332 case CEC_OPCODE_SELECT_ANALOGUE_SERVICE:
1333 return "select analogue service";
1334 case CEC_OPCODE_SELECT_DIGITAL_SERVICE:
1335 return "set digital service";
1336 case CEC_OPCODE_TUNER_DEVICE_STATUS:
1337 return "tuner device status";
1338 case CEC_OPCODE_TUNER_STEP_DECREMENT:
1339 return "tuner step decrement";
1340 case CEC_OPCODE_TUNER_STEP_INCREMENT:
1341 return "tuner step increment";
1342 case CEC_OPCODE_DEVICE_VENDOR_ID:
1343 return "device vendor id";
1344 case CEC_OPCODE_GIVE_DEVICE_VENDOR_ID:
1345 return "give device vendor id";
1346 case CEC_OPCODE_VENDOR_COMMAND:
1347 return "vendor command";
1348 case CEC_OPCODE_VENDOR_COMMAND_WITH_ID:
1349 return "vendor command with id";
1350 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN:
1351 return "vendor remote button down";
1352 case CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP:
1353 return "vendor remote button up";
1354 case CEC_OPCODE_SET_OSD_STRING:
1355 return "set osd string";
1356 case CEC_OPCODE_GIVE_OSD_NAME:
1357 return "give osd name";
1358 case CEC_OPCODE_SET_OSD_NAME:
1359 return "set osd name";
1360 case CEC_OPCODE_MENU_REQUEST:
1361 return "menu request";
1362 case CEC_OPCODE_MENU_STATUS:
1363 return "menu status";
1364 case CEC_OPCODE_USER_CONTROL_PRESSED:
1365 return "user control pressed";
1366 case CEC_OPCODE_USER_CONTROL_RELEASE:
1367 return "user control release";
1368 case CEC_OPCODE_GIVE_DEVICE_POWER_STATUS:
1369 return "give device power status";
1370 case CEC_OPCODE_REPORT_POWER_STATUS:
1371 return "report power status";
1372 case CEC_OPCODE_FEATURE_ABORT:
1373 return "feature abort";
1374 case CEC_OPCODE_ABORT:
1375 return "abort";
1376 case CEC_OPCODE_GIVE_AUDIO_STATUS:
1377 return "give audio status";
1378 case CEC_OPCODE_GIVE_SYSTEM_AUDIO_MODE_STATUS:
1379 return "give audio mode status";
1380 case CEC_OPCODE_REPORT_AUDIO_STATUS:
1381 return "report audio status";
1382 case CEC_OPCODE_SET_SYSTEM_AUDIO_MODE:
1383 return "set system audio mode";
1384 case CEC_OPCODE_SYSTEM_AUDIO_MODE_REQUEST:
1385 return "system audio mode request";
1386 case CEC_OPCODE_SYSTEM_AUDIO_MODE_STATUS:
1387 return "system audio mode status";
1388 case CEC_OPCODE_SET_AUDIO_RATE:
1389 return "set audio rate";
24dd566c
LOK
1390 case CEC_OPCODE_NONE:
1391 return "poll";
03ae897d
LOK
1392 default:
1393 return "UNKNOWN";
1394 }
1395}
1396
1397const char *CCECProcessor::ToString(const cec_system_audio_status mode)
1398{
1399 switch(mode)
1400 {
1401 case CEC_SYSTEM_AUDIO_STATUS_ON:
1402 return "on";
1403 case CEC_SYSTEM_AUDIO_STATUS_OFF:
1404 return "off";
1405 default:
1406 return "unknown";
1407 }
1408}
1409
1de6617c 1410const char *CCECProcessor::ToString(const cec_audio_status UNUSED(status))
03ae897d
LOK
1411{
1412 // TODO this is a mask
1413 return "TODO";
1414}
1415
1416const char *CCECProcessor::ToString(const cec_vendor_id vendor)
1417{
1418 switch (vendor)
1419 {
1420 case CEC_VENDOR_SAMSUNG:
1421 return "Samsung";
1422 case CEC_VENDOR_LG:
1423 return "LG";
1424 case CEC_VENDOR_PANASONIC:
1425 return "Panasonic";
1426 case CEC_VENDOR_PIONEER:
1427 return "Pioneer";
1428 case CEC_VENDOR_ONKYO:
1429 return "Onkyo";
1430 case CEC_VENDOR_YAMAHA:
1431 return "Yamaha";
ec0deac1
LOK
1432 case CEC_VENDOR_PHILIPS:
1433 return "Philips";
1a87cacc
LOK
1434 case CEC_VENDOR_SONY:
1435 return "Sony";
26555d6b
LOK
1436 case CEC_VENDOR_TOSHIBA:
1437 return "Toshiba";
03ae897d
LOK
1438 default:
1439 return "Unknown";
1440 }
1441}
1442
caca2d81
LOK
1443const char *CCECProcessor::ToString(const cec_client_version version)
1444{
1445 switch (version)
1446 {
1447 case CEC_CLIENT_VERSION_PRE_1_5:
1448 return "pre-1.5";
1449 case CEC_CLIENT_VERSION_1_5_0:
1450 return "1.5.0";
41e3372a
LOK
1451 case CEC_CLIENT_VERSION_1_5_1:
1452 return "1.5.1";
2e82cff0
LOK
1453 case CEC_CLIENT_VERSION_1_5_2:
1454 return "1.5.2";
e69d8f19
LOK
1455 case CEC_CLIENT_VERSION_1_5_3:
1456 return "1.5.3";
1457 case CEC_CLIENT_VERSION_1_6_0:
1458 return "1.6.0";
e4a7396c
LOK
1459 case CEC_CLIENT_VERSION_1_6_1:
1460 return "1.6.1";
0b714871
LOK
1461 case CEC_CLIENT_VERSION_1_6_2:
1462 return "1.6.2";
caca2d81
LOK
1463 default:
1464 return "Unknown";
1465 }
1466}
1467
3efda01a
LOK
1468const char *CCECProcessor::ToString(const cec_server_version version)
1469{
1470 switch (version)
1471 {
1472 case CEC_SERVER_VERSION_PRE_1_5:
1473 return "pre-1.5";
1474 case CEC_SERVER_VERSION_1_5_0:
1475 return "1.5.0";
41e3372a 1476 case CEC_SERVER_VERSION_1_5_1:
2e82cff0
LOK
1477 return "1.5.1";
1478 case CEC_SERVER_VERSION_1_5_2:
1479 return "1.5.2";
e69d8f19
LOK
1480 case CEC_SERVER_VERSION_1_5_3:
1481 return "1.5.3";
1482 case CEC_SERVER_VERSION_1_6_0:
1483 return "1.6.0";
e4a7396c
LOK
1484 case CEC_SERVER_VERSION_1_6_1:
1485 return "1.6.1";
0b714871
LOK
1486 case CEC_SERVER_VERSION_1_6_2:
1487 return "1.6.2";
3efda01a
LOK
1488 default:
1489 return "Unknown";
1490 }
1491}
1492
a2198e5e 1493bool CCECProcessor::StartBootloader(const char *strPort /* = NULL */)
1113cb7d 1494{
a2198e5e
LOK
1495 if (!m_communication && strPort)
1496 {
1497 bool bReturn(false);
1498 IAdapterCommunication *comm = new CUSBCECAdapterCommunication(this, strPort);
1499 CTimeout timeout(10000);
1500 int iConnectTry(0);
3c5b4d05 1501 while (timeout.TimeLeft() > 0 && (bReturn = comm->Open(timeout.TimeLeft() / CEC_CONNECT_TRIES, true)) == false)
a2198e5e
LOK
1502 {
1503 CLibCEC::AddLog(CEC_LOG_ERROR, "could not open a connection (try %d)", ++iConnectTry);
1504 comm->Close();
1505 Sleep(500);
1506 }
1507 if (comm->IsOpen())
1508 {
1509 bReturn = comm->StartBootloader();
1510 delete comm;
1511 }
1512 return bReturn;
1513 }
1514 else
1515 {
1516 return m_communication->StartBootloader();
1517 }
1113cb7d
LOK
1518}
1519
1520bool CCECProcessor::PingAdapter(void)
1521{
1522 return m_communication->PingAdapter();
1523}
6729ac71
LOK
1524
1525void CCECProcessor::HandlePoll(cec_logical_address initiator, cec_logical_address destination)
1526{
a75e3a5a
LOK
1527 if (destination < CECDEVICE_BROADCAST)
1528 m_busDevices[destination]->HandlePollFrom(initiator);
6729ac71
LOK
1529}
1530
7bb4ed43 1531bool CCECProcessor::HandleReceiveFailed(cec_logical_address initiator)
6729ac71 1532{
0cfdeb5a 1533 return !m_busDevices[initiator]->HandleReceiveFailed();
6729ac71 1534}
f42d3e0f
LOK
1535
1536bool CCECProcessor::SetStreamPath(uint16_t iPhysicalAddress)
1537{
1538 // stream path changes are sent by the TV
1539 return m_busDevices[CECDEVICE_TV]->GetHandler()->TransmitSetStreamPath(iPhysicalAddress);
1540}
d40928b5 1541
30b4aac0
LOK
1542bool CCECProcessor::SetConfiguration(const libcec_configuration *configuration)
1543{
30a09f32 1544 bool bReinit(false);
30b4aac0 1545 CCECBusDevice *primary = IsRunning() ? GetPrimaryDevice() : NULL;
30a09f32 1546 cec_device_type oldPrimaryType = primary ? primary->GetType() : CEC_DEVICE_TYPE_RECORDING_DEVICE;
f0154449 1547 m_configuration.clientVersion = configuration->clientVersion;
7c5c5bf4 1548 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using client version '%s'", __FUNCTION__, ToString((cec_client_version)configuration->clientVersion));
30b4aac0
LOK
1549
1550 // client version 1.5.0
1551
1552 // device types
8670c970 1553 bool bDeviceTypeChanged = IsRunning () && m_configuration.deviceTypes != configuration->deviceTypes;
30b4aac0 1554 m_configuration.deviceTypes = configuration->deviceTypes;
7c5c5bf4
LOK
1555 if (bDeviceTypeChanged)
1556 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using primary device type '%s'", __FUNCTION__, ToString(configuration->deviceTypes[0]));
30b4aac0 1557
30a09f32
LOK
1558 bool bPhysicalAddressChanged(false);
1559
8670c970 1560 // autodetect address
30a09f32
LOK
1561 bool bPhysicalAutodetected(false);
1562 if (IsRunning() && configuration->bAutodetectAddress == 1)
8670c970 1563 {
30a09f32
LOK
1564 uint16_t iPhysicalAddress = m_communication->GetPhysicalAddress();
1565 if (iPhysicalAddress != 0)
1566 {
1567 if (IsRunning())
1568 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - autodetected physical address '%4x'", __FUNCTION__, iPhysicalAddress);
7c5c5bf4
LOK
1569 else
1570 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using physical address '%x'", __FUNCTION__, iPhysicalAddress);
30a09f32
LOK
1571 bPhysicalAddressChanged = (m_configuration.iPhysicalAddress != iPhysicalAddress);
1572 m_configuration.iPhysicalAddress = iPhysicalAddress;
1573 m_configuration.iHDMIPort = 0;
1574 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
1575 bPhysicalAutodetected = true;
1576 }
8670c970
LOK
1577 }
1578
30b4aac0 1579 // physical address
8670c970
LOK
1580 if (!bPhysicalAutodetected)
1581 {
30a09f32
LOK
1582 if (configuration->iPhysicalAddress != 0)
1583 bPhysicalAddressChanged = IsRunning() && m_configuration.iPhysicalAddress != configuration->iPhysicalAddress;
2270ce69
MK
1584 if (bPhysicalAddressChanged)
1585 {
7c5c5bf4 1586 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - physical address '%x'", __FUNCTION__, configuration->iPhysicalAddress);
2270ce69
MK
1587 m_configuration.iPhysicalAddress = configuration->iPhysicalAddress;
1588 }
8670c970 1589 }
30b4aac0 1590
8670c970
LOK
1591 bool bHdmiPortChanged(false);
1592 if (!bPhysicalAutodetected && !bPhysicalAddressChanged)
1593 {
30a09f32 1594 // base device
8670c970 1595 bHdmiPortChanged = IsRunning() && m_configuration.baseDevice != configuration->baseDevice;
7c5c5bf4 1596 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using base device '%x'", __FUNCTION__, (int)configuration->baseDevice);
8670c970 1597 m_configuration.baseDevice = configuration->baseDevice;
30b4aac0 1598
30a09f32 1599 // hdmi port
8670c970 1600 bHdmiPortChanged |= IsRunning() && m_configuration.iHDMIPort != configuration->iHDMIPort;
7c5c5bf4 1601 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using HDMI port '%d'", __FUNCTION__, configuration->iHDMIPort);
8670c970
LOK
1602 m_configuration.iHDMIPort = configuration->iHDMIPort;
1603 }
1604 else
1605 {
7c5c5bf4 1606 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - resetting HDMI port and base device to defaults", __FUNCTION__);
30a09f32
LOK
1607 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
1608 m_configuration.iHDMIPort = 0;
8670c970 1609 }
30b4aac0 1610
30a09f32 1611 bReinit = bPhysicalAddressChanged || bHdmiPortChanged || bDeviceTypeChanged;
f0154449 1612
30b4aac0 1613 // device name
7c5c5bf4 1614 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - using OSD name '%s'", __FUNCTION__, configuration->strDeviceName);
30b4aac0
LOK
1615 snprintf(m_configuration.strDeviceName, 13, "%s", configuration->strDeviceName);
1616 if (primary && !primary->GetOSDName().Equals(m_configuration.strDeviceName))
1617 {
1618 primary->SetOSDName(m_configuration.strDeviceName);
f0154449 1619 if (!bReinit && IsRunning())
30b4aac0
LOK
1620 primary->TransmitOSDName(CECDEVICE_TV);
1621 }
1622
1623 // tv vendor id override
7c5c5bf4 1624 CLibCEC::AddLog(CEC_LOG_DEBUG, "%s - vendor id '%s'", __FUNCTION__, ToString((cec_vendor_id)configuration->tvVendor));
30b4aac0
LOK
1625 if (m_configuration.tvVendor != configuration->tvVendor)
1626 {
1627 m_configuration.tvVendor= configuration->tvVendor;
1628 m_busDevices[CECDEVICE_TV]->SetVendorId((uint64_t)m_configuration.tvVendor);
1629 }
1630
1631 // wake CEC devices
1632 if (m_configuration.wakeDevices != configuration->wakeDevices)
1633 {
1634 m_configuration.wakeDevices = configuration->wakeDevices;
f0154449 1635 if (!bReinit && IsRunning())
ca27e6cf 1636 PowerOnDevices();
30b4aac0
LOK
1637 }
1638
1639 // just copy these
4c42105f 1640 m_configuration.bUseTVMenuLanguage = configuration->bUseTVMenuLanguage;
3efda01a 1641 m_configuration.bActivateSource = configuration->bActivateSource;
30b4aac0 1642 m_configuration.bGetSettingsFromROM = configuration->bGetSettingsFromROM;
ca27e6cf 1643 m_configuration.powerOffDevices = configuration->powerOffDevices;
30b4aac0
LOK
1644 m_configuration.bPowerOffScreensaver = configuration->bPowerOffScreensaver;
1645 m_configuration.bPowerOffOnStandby = configuration->bPowerOffOnStandby;
1646
41e3372a
LOK
1647 // client version 1.5.1
1648 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_5_1)
1649 m_configuration.bSendInactiveSource = configuration->bSendInactiveSource;
1650
b98fc43d
LOK
1651 // client version 1.6.0
1652 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_6_0)
fa4b80df 1653 {
b98fc43d 1654 m_configuration.bPowerOffDevicesOnStandby = configuration->bPowerOffDevicesOnStandby;
fa4b80df
MK
1655 m_configuration.bShutdownOnStandby = configuration->bShutdownOnStandby;
1656 }
b98fc43d 1657
3ef17606
MK
1658 // client version 1.6.2
1659 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_6_2)
1660 {
1661 snprintf(m_configuration.strDeviceLanguage, 3, "%s", configuration->strDeviceLanguage);
1662 }
1663
30b4aac0
LOK
1664 // ensure that there is at least 1 device type set
1665 if (m_configuration.deviceTypes.IsEmpty())
1666 m_configuration.deviceTypes.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE);
1667
7c5c5bf4
LOK
1668 // persist the configuration
1669 if (IsRunning())
1670 m_communication->PersistConfiguration(&m_configuration);
1671
46dfe6c4 1672 if (bReinit || m_configuration.logicalAddresses.IsEmpty())
30b4aac0 1673 {
44a1d92a
LOK
1674 if (bDeviceTypeChanged)
1675 return ChangeDeviceType(oldPrimaryType, m_configuration.deviceTypes[0]);
1676 else if (bPhysicalAddressChanged)
1677 return SetPhysicalAddress(m_configuration.iPhysicalAddress);
8670c970 1678 else
f0154449 1679 return SetHDMIPort(m_configuration.baseDevice, m_configuration.iHDMIPort);
30b4aac0 1680 }
dd18e809 1681 else if (m_configuration.bActivateSource == 1 && IsRunning() && !IsActiveSource(m_configuration.logicalAddresses.primary))
c3c13157
LOK
1682 {
1683 // activate the source if we're not already the active source
1684 SetActiveSource(m_configuration.deviceTypes.types[0]);
1685 }
30b4aac0
LOK
1686
1687 return true;
1688}
1689
d40928b5
LOK
1690bool CCECProcessor::GetCurrentConfiguration(libcec_configuration *configuration)
1691{
30b4aac0 1692 // client version 1.5.0
30b4aac0
LOK
1693 snprintf(configuration->strDeviceName, 13, "%s", m_configuration.strDeviceName);
1694 configuration->deviceTypes = m_configuration.deviceTypes;
8670c970 1695 configuration->bAutodetectAddress = m_configuration.bAutodetectAddress;
30b4aac0
LOK
1696 configuration->iPhysicalAddress = m_configuration.iPhysicalAddress;
1697 configuration->baseDevice = m_configuration.baseDevice;
1698 configuration->iHDMIPort = m_configuration.iHDMIPort;
3efda01a
LOK
1699 configuration->clientVersion = m_configuration.clientVersion;
1700 configuration->serverVersion = m_configuration.serverVersion;
30b4aac0 1701 configuration->tvVendor = m_configuration.tvVendor;
3efda01a 1702
30b4aac0 1703 configuration->bGetSettingsFromROM = m_configuration.bGetSettingsFromROM;
3efda01a
LOK
1704 configuration->bUseTVMenuLanguage = m_configuration.bUseTVMenuLanguage;
1705 configuration->bActivateSource = m_configuration.bActivateSource;
1706 configuration->wakeDevices = m_configuration.wakeDevices;
ca27e6cf 1707 configuration->powerOffDevices = m_configuration.powerOffDevices;
30b4aac0
LOK
1708 configuration->bPowerOffScreensaver = m_configuration.bPowerOffScreensaver;
1709 configuration->bPowerOffOnStandby = m_configuration.bPowerOffOnStandby;
1710
41e3372a
LOK
1711 // client version 1.5.1
1712 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_5_1)
1713 configuration->bSendInactiveSource = m_configuration.bSendInactiveSource;
1714
dd18e809
LOK
1715 // client version 1.5.3
1716 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_5_3)
1717 configuration->logicalAddresses = m_configuration.logicalAddresses;
1718
e69d8f19 1719 // client version 1.6.0
b98fc43d
LOK
1720 if (configuration->clientVersion >= CEC_CLIENT_VERSION_1_6_0)
1721 {
1722 configuration->iFirmwareVersion = m_configuration.iFirmwareVersion;
1723 configuration->bPowerOffDevicesOnStandby = m_configuration.bPowerOffDevicesOnStandby;
fa4b80df 1724 configuration->bShutdownOnStandby = m_configuration.bShutdownOnStandby;
b98fc43d 1725 }
e69d8f19 1726
d40928b5
LOK
1727 return true;
1728}
224ea877
LOK
1729
1730bool CCECProcessor::CanPersistConfiguration(void)
1731{
0b714871 1732 return m_communication ? m_communication->GetFirmwareVersion() >= 2 : false;
224ea877
LOK
1733}
1734
1735bool CCECProcessor::PersistConfiguration(libcec_configuration *configuration)
1736{
0b714871 1737 return m_communication ? m_communication->PersistConfiguration(configuration) : false;
224ea877 1738}
3efda01a
LOK
1739
1740void CCECProcessor::RescanActiveDevices(void)
1741{
b78b4e33 1742 for (unsigned int iPtr = 0; iPtr < CECDEVICE_BROADCAST; iPtr++)
3efda01a
LOK
1743 m_busDevices[iPtr]->GetStatus(true);
1744}
f80cd208
LOK
1745
1746bool CCECProcessor::GetDeviceInformation(const char *strPort, libcec_configuration *config, uint32_t iTimeoutMs /* = 10000 */)
1747{
1748 if (!OpenConnection(strPort, 38400, iTimeoutMs, false))
1749 return false;
1750
1751 config->iFirmwareVersion = m_communication->GetFirmwareVersion();
1752 config->iPhysicalAddress = m_communication->GetPhysicalAddress();
1753
1754 delete m_communication;
f3b6afa4 1755 m_communication = NULL;
f80cd208
LOK
1756 return true;
1757}
b78b4e33
LOK
1758
1759bool CCECProcessor::TransmitPendingActiveSourceCommands(void)
1760{
1761 bool bReturn(true);
1762 for (unsigned int iPtr = 0; iPtr < CECDEVICE_BROADCAST; iPtr++)
1763 bReturn &= m_busDevices[iPtr]->TransmitPendingActiveSourceCommands();
1764 return bReturn;
1765}