cec: always persist a changed configuration when possible
[deb_libcec.git] / src / lib / CECClient.cpp
1 /*
2 * This file is part of the libCEC(R) library.
3 *
4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
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
33 #include "CECClient.h"
34 #include "CECProcessor.h"
35 #include "LibCEC.h"
36 #include "devices/CECPlaybackDevice.h"
37 #include "devices/CECAudioSystem.h"
38 #include "devices/CECTV.h"
39
40 using namespace CEC;
41 using namespace PLATFORM;
42
43 #define LIB_CEC m_processor->GetLib()
44 #define ToString(x) LIB_CEC->ToString(x)
45
46 CCECClient::CCECClient(CCECProcessor *processor, const libcec_configuration &configuration) :
47 m_processor(processor),
48 m_bInitialised(false),
49 m_bRegistered(false),
50 m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN),
51 m_buttontime(0)
52 {
53 // set the initial configuration
54 SetConfiguration(configuration);
55 }
56
57 CCECClient::~CCECClient(void)
58 {
59 // unregister the client
60 if (m_processor && IsRegistered())
61 m_processor->UnregisterClient(this);
62 }
63
64 bool CCECClient::IsInitialised(void)
65 {
66 CLockObject lock(m_mutex);
67 return m_bInitialised && m_processor;
68 }
69
70 void CCECClient::SetInitialised(bool bSetTo)
71 {
72 CLockObject lock(m_mutex);
73 m_bInitialised = bSetTo;
74 }
75
76 bool CCECClient::IsRegistered(void)
77 {
78 CLockObject lock(m_mutex);
79 return m_bRegistered && m_processor;
80 }
81
82 void CCECClient::SetRegistered(bool bSetTo)
83 {
84 CLockObject lock(m_mutex);
85 m_bRegistered = bSetTo;
86 }
87
88 bool CCECClient::OnRegister(void)
89 {
90 // return false if already initialised
91 if (IsInitialised())
92 return true;
93
94 // get all device we control
95 CECDEVICEVEC devices;
96 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
97
98 // return false when no devices were found
99 if (devices.empty())
100 {
101 LIB_CEC->AddLog(CEC_LOG_WARNING, "cannot find the primary device (logical address %x)", GetPrimaryLogicalAdddress());
102 return false;
103 }
104
105 // mark as initialised
106 SetInitialised(true);
107
108 // configure all devices
109 for (CECDEVICEVEC::iterator it = devices.begin(); it != devices.end(); it++)
110 {
111 // only set our OSD name for the primary device
112 if ((*it)->GetLogicalAddress() == GetPrimaryLogicalAdddress())
113 (*it)->SetOSDName(m_configuration.strDeviceName);
114
115 // set the default menu language for devices we control
116 (*it)->SetMenuLanguage(m_configuration.strDeviceLanguage);
117 }
118
119 // set the physical address
120 SetPhysicalAddress(m_configuration);
121
122 // ensure that we know the vendor id of the TV, so we are using the correct handler
123 m_processor->GetTV()->GetVendorId(GetPrimaryLogicalAdddress());
124
125 // make the primary device the active source if the option is set
126 if (m_configuration.bActivateSource == 1)
127 GetPrimaryDevice()->ActivateSource();
128
129 return true;
130 }
131
132 bool CCECClient::SetHDMIPort(const cec_logical_address iBaseDevice, const uint8_t iPort, bool bForce /* = false */)
133 {
134 bool bReturn(false);
135
136 // limit the HDMI port range to 1-15
137 if (iPort < CEC_MIN_HDMI_PORTNUMBER ||
138 iPort > CEC_MAX_HDMI_PORTNUMBER)
139 return bReturn;
140
141 LIB_CEC->AddLog(CEC_LOG_DEBUG, "setting HDMI port to %d on device %s (%d)", iPort, ToString(iBaseDevice), (int)iBaseDevice);
142
143 // update the configuration
144 {
145 CLockObject lock(m_mutex);
146 m_configuration.baseDevice = iBaseDevice;
147 m_configuration.iHDMIPort = iPort;
148 }
149
150 // don't continue if the connection isn't opened
151 if (!m_processor->CECInitialised() && !bForce)
152 return true;
153
154 // get the PA of the base device
155 uint16_t iPhysicalAddress(CEC_INVALID_PHYSICAL_ADDRESS);
156 CCECBusDevice *baseDevice = m_processor->GetDevice(iBaseDevice);
157 if (baseDevice)
158 iPhysicalAddress = baseDevice->GetPhysicalAddress(GetPrimaryLogicalAdddress());
159
160 // add our port number
161 if (iPhysicalAddress <= CEC_MAX_PHYSICAL_ADDRESS)
162 {
163 if (iPhysicalAddress == 0)
164 iPhysicalAddress += 0x1000 * iPort;
165 else if (iPhysicalAddress % 0x1000 == 0)
166 iPhysicalAddress += 0x100 * iPort;
167 else if (iPhysicalAddress % 0x100 == 0)
168 iPhysicalAddress += 0x10 * iPort;
169 else if (iPhysicalAddress % 0x10 == 0)
170 iPhysicalAddress += iPort;
171
172 bReturn = true;
173 }
174
175 // set the default address when something went wrong
176 if (!bReturn)
177 {
178 LIB_CEC->AddLog(CEC_LOG_WARNING, "failed to set the physical address to %04X, setting it to the default value %04X", iPhysicalAddress, CEC_DEFAULT_PHYSICAL_ADDRESS);
179 iPhysicalAddress = CEC_DEFAULT_PHYSICAL_ADDRESS;
180 }
181
182 // and set the address
183 SetDevicePhysicalAddress(iPhysicalAddress);
184
185 ConfigurationChanged(m_configuration);
186
187 return bReturn;
188 }
189
190 void CCECClient::ResetPhysicalAddress(void)
191 {
192 SetPhysicalAddress(m_configuration);
193 }
194
195 void CCECClient::SetPhysicalAddress(const libcec_configuration &configuration)
196 {
197 // try to autodetect the address
198 bool bPASet(false);
199 if (m_processor->CECInitialised() && configuration.bAutodetectAddress == 1)
200 bPASet = AutodetectPhysicalAddress();
201
202 // try to use physical address setting
203 if (!bPASet && CLibCEC::IsValidPhysicalAddress(configuration.iPhysicalAddress))
204 bPASet = SetPhysicalAddress(configuration.iPhysicalAddress);
205
206 // use the base device + hdmi port settings
207 if (!bPASet)
208 bPASet = SetHDMIPort(configuration.baseDevice, configuration.iHDMIPort);
209
210 // reset to defaults if something went wrong
211 if (!bPASet)
212 {
213 LIB_CEC->AddLog(CEC_LOG_DEBUG, "%s - resetting HDMI port and base device to defaults", __FUNCTION__);
214 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
215 m_configuration.iHDMIPort = CEC_HDMI_PORTNUMBER_NONE;
216 }
217 }
218
219 bool CCECClient::SetPhysicalAddress(const uint16_t iPhysicalAddress)
220 {
221 // update the configuration
222 {
223 CLockObject lock(m_mutex);
224 if (m_configuration.iPhysicalAddress == iPhysicalAddress)
225 {
226 LIB_CEC->AddLog(CEC_LOG_DEBUG, "physical address unchanged (%04X)", iPhysicalAddress);
227 return true;
228 }
229 else
230 {
231 m_configuration.iPhysicalAddress = iPhysicalAddress;
232 LIB_CEC->AddLog(CEC_LOG_DEBUG, "setting physical address to '%04X'", iPhysicalAddress);
233 }
234 }
235
236 // persist the new configuration
237 m_processor->PersistConfiguration(m_configuration);
238
239 // set the physical address for each device
240 SetDevicePhysicalAddress(iPhysicalAddress);
241
242 // and send back the updated configuration
243 ConfigurationChanged(m_configuration);
244
245 return true;
246 }
247
248 bool CCECClient::AllocateLogicalAddresses(void)
249 {
250 // reset all previous LAs that were set
251 m_configuration.logicalAddresses.Clear();
252
253 // display an error if no device types are set
254 if (m_configuration.deviceTypes.IsEmpty())
255 {
256 LIB_CEC->AddLog(CEC_LOG_ERROR, "no device types given");
257 return false;
258 }
259
260 // check each entry of the list
261 for (uint8_t iPtr = 0; iPtr < 5; iPtr++)
262 {
263 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
264 continue;
265
266 // find an LA for this type
267 cec_logical_address address(CECDEVICE_UNKNOWN);
268 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RECORDING_DEVICE)
269 address = AllocateLogicalAddressRecordingDevice();
270 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_TUNER)
271 address = AllocateLogicalAddressTuner();
272 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_PLAYBACK_DEVICE)
273 address = AllocateLogicalAddressPlaybackDevice();
274 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_AUDIO_SYSTEM)
275 address = AllocateLogicalAddressAudioSystem();
276
277 // display an error if no LA could be allocated
278 if (address == CECDEVICE_UNKNOWN)
279 {
280 LIB_CEC->AddLog(CEC_LOG_ERROR, "%s - failed to allocate device '%d', type '%s'", __FUNCTION__, iPtr, ToString(m_configuration.deviceTypes.types[iPtr]));
281 return false;
282 }
283
284 // display the registered LA
285 LIB_CEC->AddLog(CEC_LOG_DEBUG, "%s - device '%d', type '%s', LA '%X'", __FUNCTION__, iPtr, ToString(m_configuration.deviceTypes.types[iPtr]), address);
286 m_configuration.logicalAddresses.Set(address);
287 }
288
289 return true;
290 }
291
292 cec_logical_address CCECClient::AllocateLogicalAddressRecordingDevice(void)
293 {
294 cec_logical_address retVal(CECDEVICE_UNKNOWN);
295
296 LIB_CEC->AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'recording device'");
297 if (m_processor->TryLogicalAddress(CECDEVICE_RECORDINGDEVICE1))
298 retVal = CECDEVICE_RECORDINGDEVICE1;
299 else if (m_processor->TryLogicalAddress(CECDEVICE_RECORDINGDEVICE2))
300 retVal = CECDEVICE_RECORDINGDEVICE2;
301 else if (m_processor->TryLogicalAddress(CECDEVICE_RECORDINGDEVICE3))
302 retVal = CECDEVICE_RECORDINGDEVICE3;
303
304 return retVal;
305 }
306
307 cec_logical_address CCECClient::AllocateLogicalAddressTuner(void)
308 {
309 cec_logical_address retVal(CECDEVICE_UNKNOWN);
310
311 LIB_CEC->AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'tuner'");
312 if (m_processor->TryLogicalAddress(CECDEVICE_TUNER1))
313 retVal = CECDEVICE_TUNER1;
314 else if (m_processor->TryLogicalAddress(CECDEVICE_TUNER2))
315 retVal = CECDEVICE_TUNER2;
316 else if (m_processor->TryLogicalAddress(CECDEVICE_TUNER3))
317 retVal = CECDEVICE_TUNER3;
318 else if (m_processor->TryLogicalAddress(CECDEVICE_TUNER4))
319 retVal = CECDEVICE_TUNER4;
320
321 return retVal;
322 }
323
324 cec_logical_address CCECClient::AllocateLogicalAddressPlaybackDevice(void)
325 {
326 cec_logical_address retVal(CECDEVICE_UNKNOWN);
327
328 LIB_CEC->AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'playback device'");
329 if (m_processor->TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE1))
330 retVal = CECDEVICE_PLAYBACKDEVICE1;
331 else if (m_processor->TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE2))
332 retVal = CECDEVICE_PLAYBACKDEVICE2;
333 else if (m_processor->TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE3))
334 retVal = CECDEVICE_PLAYBACKDEVICE3;
335
336 return retVal;
337 }
338
339 cec_logical_address CCECClient::AllocateLogicalAddressAudioSystem(void)
340 {
341 cec_logical_address retVal(CECDEVICE_UNKNOWN);
342
343 LIB_CEC->AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'audiosystem'");
344 if (m_processor->TryLogicalAddress(CECDEVICE_AUDIOSYSTEM))
345 retVal = CECDEVICE_AUDIOSYSTEM;
346
347 return retVal;
348 }
349
350 CCECBusDevice *CCECClient::GetDeviceByType(const cec_device_type type) const
351 {
352 // get all devices that match our logical addresses
353 CECDEVICEVEC devices;
354 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
355
356 // filter the type we need
357 CCECDeviceMap::FilterType(type, devices);
358
359 return devices.empty() ?
360 NULL :
361 *devices.begin();
362 }
363
364 bool CCECClient::ChangeDeviceType(const cec_device_type from, const cec_device_type to)
365 {
366 LIB_CEC->AddLog(CEC_LOG_NOTICE, "changing device type '%s' into '%s'", ToString(from), ToString(to));
367
368 CLockObject lock(m_mutex);
369
370 // get the previous device that was allocated
371 CCECBusDevice *previousDevice = GetDeviceByType(from);
372 if (!previousDevice)
373 return false;
374
375 // change the type in the device type list
376 bool bChanged(false);
377 for (uint8_t iPtr = 0; iPtr < 5; iPtr++)
378 {
379 if (m_configuration.deviceTypes.types[iPtr] == CEC_DEVICE_TYPE_RESERVED)
380 continue;
381
382 if (m_configuration.deviceTypes.types[iPtr] == from)
383 {
384 bChanged = true;
385 m_configuration.deviceTypes.types[iPtr] = to;
386 }
387 else if (m_configuration.deviceTypes.types[iPtr] == to && bChanged)
388 {
389 // ensure that dupes are removed
390 m_configuration.deviceTypes.types[iPtr] = CEC_DEVICE_TYPE_RESERVED;
391 }
392 }
393
394 // re-register the client to set the new ackmask
395 if (!m_processor->RegisterClient(this))
396 return false;
397
398 return true;
399 }
400
401 bool CCECClient::SetLogicalAddress(const cec_logical_address iLogicalAddress)
402 {
403 CLockObject lock(m_mutex);
404 if (GetPrimaryLogicalAdddress() != iLogicalAddress)
405 {
406 {
407 CLockObject lock(m_mutex);
408 LIB_CEC->AddLog(CEC_LOG_NOTICE, "<< setting primary logical address to %1x", iLogicalAddress);
409 m_configuration.logicalAddresses.primary = iLogicalAddress;
410 m_configuration.logicalAddresses.Set(iLogicalAddress);
411 }
412 return m_processor->RegisterClient(this);
413 }
414
415 return true;
416 }
417
418 bool CCECClient::Transmit(const cec_command &data)
419 {
420 return m_processor ? m_processor->Transmit(data) : false;
421 }
422
423 bool CCECClient::SendPowerOnDevices(const cec_logical_address address /* = CECDEVICE_TV */)
424 {
425 // if the broadcast address if set as destination and the client version >=1.5.0, read the wakeDevices setting
426 if (address == CECDEVICE_BROADCAST && m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_0)
427 {
428 CECDEVICEVEC devices;
429 m_processor->GetDevices()->GetWakeDevices(m_configuration, devices);
430 return m_processor->PowerOnDevices(GetPrimaryLogicalAdddress(), devices);
431 }
432
433 return m_processor->PowerOnDevice(GetPrimaryLogicalAdddress(), address);
434 }
435
436 bool CCECClient::SendStandbyDevices(const cec_logical_address address /* = CECDEVICE_BROADCAST */)
437 {
438 // if the broadcast address if set as destination and the client version >=1.5.0, read the standbyDevices setting
439 if (address == CECDEVICE_BROADCAST && m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_0)
440 {
441 CECDEVICEVEC devices;
442 m_processor->GetDevices()->GetPowerOffDevices(m_configuration, devices);
443 return m_processor->StandbyDevices(GetPrimaryLogicalAdddress(), devices);
444 }
445
446 return m_processor->StandbyDevice(GetPrimaryLogicalAdddress(), address);
447 }
448
449 bool CCECClient::SendSetActiveSource(const cec_device_type type /* = CEC_DEVICE_TYPE_RESERVED */)
450 {
451 // get the devices that are controlled by us
452 CECDEVICEVEC devices;
453 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
454
455 // filter out the device that matches the given type
456 if (type != CEC_DEVICE_TYPE_RESERVED)
457 CCECDeviceMap::FilterType(type, devices);
458
459 // no devices left, re-fetch the list of devices that are controlled by us
460 if (devices.empty())
461 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
462
463 if (!devices.empty())
464 {
465 // get the first device from the list
466 CCECBusDevice *device = *devices.begin();
467
468 // and activate it
469 if (!m_processor->CECInitialised())
470 device->MarkAsActiveSource();
471 else if (device->HasValidPhysicalAddress())
472 return device->ActivateSource();
473 }
474
475 return false;
476 }
477
478 CCECPlaybackDevice *CCECClient::GetPlaybackDevice(void)
479 {
480 CCECPlaybackDevice *device(NULL);
481 CECDEVICEVEC devices;
482
483 // get the playback devices
484 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
485 CCECDeviceMap::FilterType(CEC_DEVICE_TYPE_PLAYBACK_DEVICE, devices);
486
487 // no matches, get the recording devices
488 if (devices.empty())
489 {
490 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
491 CCECDeviceMap::FilterType(CEC_DEVICE_TYPE_RECORDING_DEVICE, devices);
492 }
493
494 // get the first device that matches, and cast it to CCECPlaybackDevice
495 if (!devices.empty())
496 device = (*devices.begin())->AsPlaybackDevice();
497
498 return device;
499 }
500
501 cec_logical_address CCECClient::GetPrimaryLogicalAdddress(void)
502 {
503 CLockObject lock(m_mutex);
504 return m_configuration.logicalAddresses.primary;
505 }
506
507 CCECBusDevice *CCECClient::GetPrimaryDevice(void)
508 {
509 return m_processor->GetDevice(GetPrimaryLogicalAdddress());
510 }
511
512 bool CCECClient::SendSetDeckControlMode(const cec_deck_control_mode mode, bool bSendUpdate /* = true */)
513 {
514 // find a playback device that we control
515 CCECPlaybackDevice *device = GetPlaybackDevice();
516 if (device)
517 {
518 // and set the deck control mode if there is a match
519 device->SetDeckControlMode(mode);
520 if (bSendUpdate)
521 return device->TransmitDeckStatus(CECDEVICE_TV);
522 return true;
523 }
524
525 // no match
526 return false;
527 }
528
529 bool CCECClient::SendSetDeckInfo(const cec_deck_info info, bool bSendUpdate /* = true */)
530 {
531 // find a playback device that we control
532 CCECPlaybackDevice *device = GetPlaybackDevice();
533 if (device)
534 {
535 // and set the deck status if there is a match
536 device->SetDeckStatus(info);
537 if (bSendUpdate)
538 return device->AsPlaybackDevice()->TransmitDeckStatus(CECDEVICE_TV);
539 return true;
540 }
541
542 // no match
543 return false;
544 }
545
546 bool CCECClient::SendSetMenuState(const cec_menu_state state, bool bSendUpdate /* = true */)
547 {
548 CECDEVICEVEC devices;
549
550 // set the menu state for all devices that are controlled by us
551 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
552 for (CECDEVICEVEC::iterator it = devices.begin(); it != devices.end(); it++)
553 {
554 (*it)->SetMenuState(state);
555 if (bSendUpdate)
556 (*it)->TransmitMenuState(CECDEVICE_TV);
557 }
558
559 return true;
560 }
561
562 bool CCECClient::SendSetInactiveView(void)
563 {
564 CECDEVICEVEC devices;
565
566 // mark all devices that are controlled by us as inactive source
567 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
568 for (CECDEVICEVEC::iterator it = devices.begin(); it != devices.end(); it++)
569 {
570 if ((*it)->IsActiveSource())
571 {
572 (*it)->MarkAsInactiveSource();
573 return (*it)->TransmitInactiveSource();
574 }
575 }
576
577 return true;
578 }
579
580 bool CCECClient::SendSetOSDString(const cec_logical_address iLogicalAddress, const cec_display_control duration, const char *strMessage)
581 {
582 CCECBusDevice *primary = GetPrimaryDevice();
583 if (primary)
584 return primary->TransmitOSDString(iLogicalAddress, duration, strMessage);
585
586 return false;
587 }
588
589 cec_version CCECClient::GetDeviceCecVersion(const cec_logical_address iAddress)
590 {
591 CCECBusDevice *device = m_processor->GetDevice(iAddress);
592 if (device)
593 return device->GetCecVersion(GetPrimaryLogicalAdddress());
594 return CEC_VERSION_UNKNOWN;
595 }
596
597 bool CCECClient::GetDeviceMenuLanguage(const cec_logical_address iAddress, cec_menu_language &language)
598 {
599 CCECBusDevice *device = m_processor->GetDevice(iAddress);
600 if (device)
601 {
602 language = device->GetMenuLanguage(GetPrimaryLogicalAdddress());
603 return (strcmp(language.language, "???") != 0);
604 }
605 return false;
606 }
607
608 cec_osd_name CCECClient::GetDeviceOSDName(const cec_logical_address iAddress)
609 {
610 cec_osd_name retVal;
611 retVal.device = iAddress;
612 retVal.name[0] = 0;
613
614 CCECBusDevice *device = m_processor->GetDevice(iAddress);
615 if (device)
616 {
617 CStdString strOSDName = device->GetOSDName(GetPrimaryLogicalAdddress());
618 snprintf(retVal.name, sizeof(retVal.name), "%s", strOSDName.c_str());
619 retVal.device = iAddress;
620 }
621
622 return retVal;
623 }
624
625 uint16_t CCECClient::GetDevicePhysicalAddress(const cec_logical_address iAddress)
626 {
627 CCECBusDevice *device = m_processor->GetDevice(iAddress);
628 if (device)
629 return device->GetPhysicalAddress(GetPrimaryLogicalAdddress());
630 return CEC_INVALID_PHYSICAL_ADDRESS;
631 }
632
633 cec_power_status CCECClient::GetDevicePowerStatus(const cec_logical_address iAddress)
634 {
635 CCECBusDevice *device = m_processor->GetDevice(iAddress);
636 if (device)
637 return device->GetPowerStatus(GetPrimaryLogicalAdddress());
638 return CEC_POWER_STATUS_UNKNOWN;
639 }
640
641 uint64_t CCECClient::GetDeviceVendorId(const cec_logical_address iAddress)
642 {
643 CCECBusDevice *device = m_processor->GetDevice(iAddress);
644 if (device)
645 return device->GetVendorId(GetPrimaryLogicalAdddress());
646 return CEC_VENDOR_UNKNOWN;
647 }
648
649 uint8_t CCECClient::SendVolumeUp(bool bSendRelease /* = true */)
650 {
651 CCECBusDevice *device = GetPrimaryDevice();
652 CCECAudioSystem *audio = m_processor->GetAudioSystem();
653
654 return device && audio && audio->IsPresent() ?
655 audio->VolumeUp(device->GetLogicalAddress(), bSendRelease) :
656 (uint8_t)CEC_AUDIO_VOLUME_STATUS_UNKNOWN;
657 }
658
659 uint8_t CCECClient::SendVolumeDown(bool bSendRelease /* = true */)
660 {
661 CCECBusDevice *device = GetPrimaryDevice();
662 CCECAudioSystem *audio = m_processor->GetAudioSystem();
663
664 return device && audio && audio->IsPresent() ?
665 audio->VolumeDown(device->GetLogicalAddress(), bSendRelease) :
666 (uint8_t)CEC_AUDIO_VOLUME_STATUS_UNKNOWN;
667 }
668
669 uint8_t CCECClient::SendMuteAudio(void)
670 {
671 CCECBusDevice *device = GetPrimaryDevice();
672 CCECAudioSystem *audio = m_processor->GetAudioSystem();
673
674 return device && audio && audio->IsPresent() ?
675 audio->MuteAudio(device->GetLogicalAddress()) :
676 (uint8_t)CEC_AUDIO_VOLUME_STATUS_UNKNOWN;
677 }
678
679 bool CCECClient::SendKeypress(const cec_logical_address iDestination, const cec_user_control_code key, bool bWait /* = true */)
680 {
681 CCECBusDevice *device = GetPrimaryDevice();
682 CCECBusDevice *dest = m_processor->GetDevice(iDestination);
683
684 return device && dest ?
685 device->TransmitKeypress(GetPrimaryLogicalAdddress(), key, bWait) :
686 false;
687 }
688
689 bool CCECClient::SendKeyRelease(const cec_logical_address iDestination, bool bWait /* = true */)
690 {
691 CCECBusDevice *device = GetPrimaryDevice();
692 CCECBusDevice *dest = m_processor->GetDevice(iDestination);
693
694 return device && dest ?
695 device->TransmitKeyRelease(GetPrimaryLogicalAdddress(), bWait) :
696 false;
697 }
698
699 bool CCECClient::GetCurrentConfiguration(libcec_configuration &configuration)
700 {
701 CLockObject lock(m_mutex);
702
703 // client version 1.5.0
704 snprintf(configuration.strDeviceName, 13, "%s", m_configuration.strDeviceName);
705 configuration.deviceTypes = m_configuration.deviceTypes;
706 configuration.bAutodetectAddress = m_configuration.bAutodetectAddress;
707 configuration.iPhysicalAddress = m_configuration.iPhysicalAddress;
708 configuration.baseDevice = m_configuration.baseDevice;
709 configuration.iHDMIPort = m_configuration.iHDMIPort;
710 configuration.clientVersion = m_configuration.clientVersion;
711 configuration.serverVersion = m_configuration.serverVersion;
712 configuration.tvVendor = m_configuration.tvVendor;
713
714 configuration.bGetSettingsFromROM = m_configuration.bGetSettingsFromROM;
715 configuration.bUseTVMenuLanguage = m_configuration.bUseTVMenuLanguage;
716 configuration.bActivateSource = m_configuration.bActivateSource;
717 configuration.wakeDevices = m_configuration.wakeDevices;
718 configuration.powerOffDevices = m_configuration.powerOffDevices;
719 configuration.bPowerOffScreensaver = m_configuration.bPowerOffScreensaver;
720 configuration.bPowerOffOnStandby = m_configuration.bPowerOffOnStandby;
721
722 // client version 1.5.1
723 if (configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_1)
724 configuration.bSendInactiveSource = m_configuration.bSendInactiveSource;
725
726 // client version 1.5.3
727 if (configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_3)
728 configuration.logicalAddresses = m_configuration.logicalAddresses;
729
730 // client version 1.6.0
731 if (configuration.clientVersion >= CEC_CLIENT_VERSION_1_6_0)
732 {
733 configuration.iFirmwareVersion = m_configuration.iFirmwareVersion;
734 configuration.bPowerOffDevicesOnStandby = m_configuration.bPowerOffDevicesOnStandby;
735 configuration.bShutdownOnStandby = m_configuration.bShutdownOnStandby;
736 }
737
738 // client version 1.6.2
739 if (configuration.clientVersion >= CEC_CLIENT_VERSION_1_6_2)
740 {
741 memcpy(configuration.strDeviceLanguage, m_configuration.strDeviceLanguage, 3);
742 configuration.iFirmwareBuildDate = m_configuration.iFirmwareBuildDate;
743 }
744 return true;
745 }
746
747 bool CCECClient::SetConfiguration(const libcec_configuration &configuration)
748 {
749 bool bIsRunning(m_processor && m_processor->CECInitialised());
750 CCECBusDevice *primary = bIsRunning ? GetPrimaryDevice() : NULL;
751 uint16_t iPA = primary ? primary->GetCurrentPhysicalAddress() : CEC_INVALID_PHYSICAL_ADDRESS;
752
753 // update the callbacks
754 if (configuration.callbacks)
755 EnableCallbacks(configuration.callbackParam, configuration.callbacks);
756
757 // update the client version
758 SetClientVersion((cec_client_version)configuration.clientVersion);
759
760 // update the OSD name
761 CStdString strOSDName(configuration.strDeviceName);
762 SetOSDName(strOSDName);
763
764 // update the TV vendor override
765 SetTVVendorOverride((cec_vendor_id)configuration.tvVendor);
766
767 // just copy these
768 {
769 CLockObject lock(m_mutex);
770 m_configuration.bUseTVMenuLanguage = configuration.bUseTVMenuLanguage;
771 m_configuration.bActivateSource = configuration.bActivateSource;
772 m_configuration.bGetSettingsFromROM = configuration.bGetSettingsFromROM;
773 m_configuration.wakeDevices = configuration.wakeDevices;
774 m_configuration.powerOffDevices = configuration.powerOffDevices;
775 m_configuration.bPowerOffScreensaver = configuration.bPowerOffScreensaver;
776 m_configuration.bPowerOffOnStandby = configuration.bPowerOffOnStandby;
777
778 // client version 1.5.1
779 if (configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_1)
780 m_configuration.bSendInactiveSource = configuration.bSendInactiveSource;
781
782 // client version 1.6.0
783 if (configuration.clientVersion >= CEC_CLIENT_VERSION_1_6_0)
784 {
785 m_configuration.bPowerOffDevicesOnStandby = configuration.bPowerOffDevicesOnStandby;
786 m_configuration.bShutdownOnStandby = configuration.bShutdownOnStandby;
787 }
788
789 // client version 1.6.2
790 if (configuration.clientVersion >= CEC_CLIENT_VERSION_1_6_2)
791 {
792 memcpy(m_configuration.strDeviceLanguage, configuration.strDeviceLanguage, 3);
793 }
794
795 // ensure that there is at least 1 device type set
796 if (m_configuration.deviceTypes.IsEmpty())
797 m_configuration.deviceTypes.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE);
798 }
799
800 bool bNeedReinit(false);
801
802 // device types
803 if (SetDeviceTypes(configuration.deviceTypes))
804 {
805 // the device type changed. just copy the rest, and re-register
806 {
807 CLockObject lock(m_mutex);
808 m_configuration.iPhysicalAddress = configuration.iPhysicalAddress;
809 m_configuration.baseDevice = configuration.baseDevice;
810 m_configuration.iHDMIPort = configuration.iHDMIPort;
811 bNeedReinit = true;
812 }
813 }
814 else
815 {
816 // set the physical address
817 SetPhysicalAddress(configuration);
818 }
819
820 m_processor->PersistConfiguration(m_configuration);
821
822 if (!primary)
823 primary = GetPrimaryDevice();
824
825 if (bNeedReinit || !primary || primary->GetCurrentPhysicalAddress() != iPA)
826 {
827 // PA or device type changed
828 m_processor->RegisterClient(this);
829 }
830 else if (primary && configuration.bActivateSource == 1 && bIsRunning && !primary->IsActiveSource())
831 {
832 // activate the source if we're not already the active source
833 primary->ActivateSource();
834 }
835
836 return true;
837 }
838
839 void CCECClient::AddCommand(const cec_command &command)
840 {
841 CLockObject lock(m_mutex);
842
843 LIB_CEC->AddLog(CEC_LOG_NOTICE, ">> %s (%X) -> %s (%X): %s (%2X)", ToString(command.initiator), command.initiator, ToString(command.destination), command.destination, ToString(command.opcode), command.opcode);
844
845 if (m_configuration.callbacks && m_configuration.callbacks->CBCecCommand)
846 m_configuration.callbacks->CBCecCommand(m_configuration.callbackParam, command);
847 else if (!m_commandBuffer.Push(command))
848 LIB_CEC->AddLog(CEC_LOG_WARNING, "command buffer is full");
849 }
850
851 int CCECClient::MenuStateChanged(const cec_menu_state newState)
852 {
853 CLockObject lock(m_mutex);
854
855 LIB_CEC->AddLog(CEC_LOG_NOTICE, ">> %s: %s", ToString(CEC_OPCODE_MENU_REQUEST), ToString(newState));
856
857 if (m_configuration.callbacks &&
858 m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_6_2 &&
859 m_configuration.callbacks->CBCecMenuStateChanged)
860 return m_configuration.callbacks->CBCecMenuStateChanged(m_configuration.callbackParam, newState);
861
862 return 0;
863 }
864
865 void CCECClient::Alert(const libcec_alert type, const libcec_parameter &param)
866 {
867 CLockObject lock(m_mutex);
868
869 if (m_configuration.callbacks &&
870 m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_6_0 &&
871 m_configuration.callbacks->CBCecAlert)
872 m_configuration.callbacks->CBCecAlert(m_configuration.callbackParam, type, param);
873 }
874
875 void CCECClient::AddLog(const cec_log_message &message)
876 {
877 CLockObject lock(m_logMutex);
878 if (m_configuration.callbacks && m_configuration.callbacks->CBCecLogMessage)
879 m_configuration.callbacks->CBCecLogMessage(m_configuration.callbackParam, message);
880 else
881 m_logBuffer.Push(message);
882 }
883
884 void CCECClient::AddKey(void)
885 {
886 CLockObject lock(m_mutex);
887
888 if (m_iCurrentButton != CEC_USER_CONTROL_CODE_UNKNOWN)
889 {
890 cec_keypress key;
891
892 key.duration = (unsigned int) (GetTimeMs() - m_buttontime);
893 key.keycode = m_iCurrentButton;
894 LIB_CEC->AddLog(CEC_LOG_DEBUG, "key released: %1x", key.keycode);
895
896 if (m_configuration.callbacks && m_configuration.callbacks->CBCecKeyPress)
897 m_configuration.callbacks->CBCecKeyPress(m_configuration.callbackParam, key);
898 else
899 m_keyBuffer.Push(key);
900 m_iCurrentButton = CEC_USER_CONTROL_CODE_UNKNOWN;
901 }
902
903 m_buttontime = 0;
904 }
905
906 void CCECClient::AddKey(const cec_keypress &key)
907 {
908 CLockObject lock(m_mutex);
909
910 LIB_CEC->AddLog(CEC_LOG_DEBUG, "key pressed: %1x", key.keycode);
911
912 if (m_configuration.callbacks && m_configuration.callbacks->CBCecKeyPress)
913 m_configuration.callbacks->CBCecKeyPress(m_configuration.callbackParam, key);
914 else
915 m_keyBuffer.Push(key);
916
917 m_iCurrentButton = key.duration > 0 ? CEC_USER_CONTROL_CODE_UNKNOWN : key.keycode;
918 m_buttontime = key.duration > 0 ? 0 : GetTimeMs();
919 }
920
921 void CCECClient::SetCurrentButton(const cec_user_control_code iButtonCode)
922 {
923 // push a keypress to the buffer with 0 duration and another with the duration set when released
924 cec_keypress key;
925 key.duration = 0;
926 key.keycode = iButtonCode;
927
928 AddKey(key);
929 }
930
931 void CCECClient::CheckKeypressTimeout(void)
932 {
933 if (m_iCurrentButton != CEC_USER_CONTROL_CODE_UNKNOWN && GetTimeMs() - m_buttontime > CEC_BUTTON_TIMEOUT)
934 {
935 AddKey();
936 m_iCurrentButton = CEC_USER_CONTROL_CODE_UNKNOWN;
937 }
938 }
939
940 void CCECClient::ConfigurationChanged(const libcec_configuration &config)
941 {
942 CLockObject lock(m_mutex);
943
944 if (m_configuration.callbacks &&
945 m_configuration.clientVersion >= CEC_CLIENT_VERSION_1_5_0 &&
946 m_configuration.callbacks->CBCecConfigurationChanged &&
947 m_processor->CECInitialised())
948 m_configuration.callbacks->CBCecConfigurationChanged(m_configuration.callbackParam, config);
949 }
950
951 bool CCECClient::EnableCallbacks(void *cbParam, ICECCallbacks *callbacks)
952 {
953 CLockObject lock(m_mutex);
954 m_configuration.callbackParam = cbParam;
955 m_configuration.callbacks = callbacks;
956 return true;
957 }
958
959 bool CCECClient::PingAdapter(void)
960 {
961 return m_processor ? m_processor->PingAdapter() : false;
962 }
963
964 bool CCECClient::GetNextLogMessage(cec_log_message *message)
965 {
966 return (m_logBuffer.Pop(*message));
967 }
968
969 bool CCECClient::GetNextKeypress(cec_keypress *key)
970 {
971 return m_keyBuffer.Pop(*key);
972 }
973
974 bool CCECClient::GetNextCommand(cec_command *command)
975 {
976 return m_commandBuffer.Pop(*command);
977 }
978
979 CStdString CCECClient::GetConnectionInfo(void)
980 {
981 CStdString strLog;
982 strLog.Format("libCEC version = %s, client version = %s, firmware version = %d", ToString((cec_server_version)m_configuration.serverVersion), ToString((cec_client_version)m_configuration.clientVersion), m_configuration.iFirmwareVersion);
983 if (m_configuration.iFirmwareBuildDate != CEC_FW_BUILD_UNKNOWN)
984 {
985 time_t buildTime = (time_t)m_configuration.iFirmwareBuildDate;
986 strLog.AppendFormat(", firmware build date: %s", asctime(gmtime(&buildTime)));
987 strLog = strLog.Left((int)strLog.length() - 1); // strip \n added by asctime
988 strLog.append(" +0000");
989 }
990
991 // log the addresses that are being used
992 if (!m_configuration.logicalAddresses.IsEmpty())
993 {
994 strLog.append(", logical address(es) = ");
995 CECDEVICEVEC devices;
996 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
997 for (CECDEVICEVEC::iterator it = devices.begin(); it != devices.end(); it++)
998 strLog.AppendFormat("%s (%X) ", (*it)->GetLogicalAddressName(), (*it)->GetLogicalAddress());
999 }
1000
1001 if (!CLibCEC::IsValidPhysicalAddress(m_configuration.iPhysicalAddress))
1002 strLog.AppendFormat(", base device: %s (%X), HDMI port number: %d", ToString(m_configuration.baseDevice), m_configuration.baseDevice, m_configuration.iHDMIPort);
1003 else
1004 strLog.AppendFormat(", physical address: %04x", m_configuration.iPhysicalAddress);
1005
1006 return strLog;
1007 }
1008
1009 void CCECClient::SetTVVendorOverride(const cec_vendor_id id)
1010 {
1011 {
1012 CLockObject lock(m_mutex);
1013 m_configuration.tvVendor = id;
1014 }
1015
1016 if (id != CEC_VENDOR_UNKNOWN)
1017 {
1018 LIB_CEC->AddLog(CEC_LOG_DEBUG, "%s - vendor id '%s'", __FUNCTION__, ToString(id));
1019
1020 CCECBusDevice *tv = m_processor ? m_processor->GetTV() : NULL;
1021 if (tv)
1022 tv->SetVendorId((uint64_t)id);
1023 }
1024 }
1025
1026 cec_vendor_id CCECClient::GetTVVendorOverride(void)
1027 {
1028 CLockObject lock(m_mutex);
1029 return (cec_vendor_id)m_configuration.tvVendor;
1030 }
1031
1032 void CCECClient::SetOSDName(const CStdString &strDeviceName)
1033 {
1034 {
1035 CLockObject lock(m_mutex);
1036 snprintf(m_configuration.strDeviceName, 13, "%s", strDeviceName.c_str());
1037 }
1038
1039 LIB_CEC->AddLog(CEC_LOG_DEBUG, "%s - using OSD name '%s'", __FUNCTION__, strDeviceName.c_str());
1040
1041 CCECBusDevice *primary = GetPrimaryDevice();
1042 if (primary && !primary->GetCurrentOSDName().Equals(strDeviceName))
1043 {
1044 primary->SetOSDName(strDeviceName);
1045 if (m_processor && m_processor->CECInitialised())
1046 primary->TransmitOSDName(CECDEVICE_TV);
1047 }
1048 }
1049
1050 CStdString CCECClient::GetOSDName(void)
1051 {
1052 CLockObject lock(m_mutex);
1053 CStdString strOSDName(m_configuration.strDeviceName);
1054 return strOSDName;
1055 }
1056
1057 void CCECClient::SetWakeDevices(const cec_logical_addresses &addresses)
1058 {
1059 CLockObject lock(m_mutex);
1060 m_configuration.wakeDevices = addresses;
1061 }
1062
1063 cec_logical_addresses CCECClient::GetWakeDevices(void)
1064 {
1065 CLockObject lock(m_mutex);
1066 return m_configuration.wakeDevices;
1067 }
1068
1069 bool CCECClient::AutodetectPhysicalAddress(void)
1070 {
1071 bool bPhysicalAutodetected(false);
1072 uint16_t iPhysicalAddress = m_processor ? m_processor->GetDetectedPhysicalAddress() : CEC_INVALID_PHYSICAL_ADDRESS;
1073
1074 if (CLibCEC::IsValidPhysicalAddress(iPhysicalAddress))
1075 {
1076 LIB_CEC->AddLog(CEC_LOG_DEBUG, "%s - autodetected physical address '%04X'", __FUNCTION__, iPhysicalAddress);
1077
1078 CLockObject lock(m_mutex);
1079 m_configuration.iPhysicalAddress = iPhysicalAddress;
1080 m_configuration.iHDMIPort = CEC_HDMI_PORTNUMBER_NONE;
1081 m_configuration.baseDevice = CECDEVICE_UNKNOWN;
1082 bPhysicalAutodetected = true;
1083 }
1084
1085 SetDevicePhysicalAddress(iPhysicalAddress);
1086
1087 return bPhysicalAutodetected;
1088 }
1089
1090 void CCECClient::SetClientVersion(const cec_client_version version)
1091 {
1092 LIB_CEC->AddLog(CEC_LOG_DEBUG, "%s - using client version '%s'", __FUNCTION__, ToString(version));
1093
1094 CLockObject lock(m_mutex);
1095 m_configuration.clientVersion = (uint32_t)version;
1096 }
1097
1098 cec_client_version CCECClient::GetClientVersion(void)
1099 {
1100 CLockObject lock(m_mutex);
1101 return (cec_client_version)m_configuration.clientVersion;
1102 }
1103
1104 bool CCECClient::SetDeviceTypes(const cec_device_type_list &deviceTypes)
1105 {
1106 bool bNeedReinit(false);
1107
1108 {
1109 CLockObject lock(m_mutex);
1110 bNeedReinit = m_processor && m_processor->CECInitialised() &&
1111 (m_configuration.deviceTypes != deviceTypes);
1112 m_configuration.deviceTypes = deviceTypes;
1113 }
1114
1115 if (bNeedReinit)
1116 LIB_CEC->AddLog(CEC_LOG_DEBUG, "%s - using primary device type '%s'", __FUNCTION__, ToString(deviceTypes[0]));
1117
1118 return bNeedReinit;
1119 }
1120
1121 cec_device_type_list CCECClient::GetDeviceTypes(void)
1122 {
1123 cec_device_type_list retVal;
1124 CLockObject lock(m_mutex);
1125 retVal = m_configuration.deviceTypes;
1126 return retVal;
1127 }
1128
1129 bool CCECClient::SetDevicePhysicalAddress(const uint16_t iPhysicalAddress)
1130 {
1131 if (!CLibCEC::IsValidPhysicalAddress(iPhysicalAddress))
1132 return false;
1133
1134 // reconfigure all devices
1135 cec_logical_address reactivateSource(CECDEVICE_UNKNOWN);
1136 CECDEVICEVEC devices;
1137 m_processor->GetDevices()->GetByLogicalAddresses(devices, m_configuration.logicalAddresses);
1138 for (CECDEVICEVEC::iterator it = devices.begin(); it != devices.end(); it++)
1139 {
1140 // if this device was the active source, reactivate it afterwards
1141 if ((*it)->IsActiveSource())
1142 reactivateSource = (*it)->GetLogicalAddress();
1143
1144 // mark the device as inactive source
1145 if (IsInitialised())
1146 (*it)->MarkAsInactiveSource();
1147
1148 // set the new physical address
1149 (*it)->SetPhysicalAddress(iPhysicalAddress);
1150
1151 // and transmit it
1152 if (IsInitialised())
1153 (*it)->TransmitPhysicalAddress();
1154 }
1155
1156 // reactivate the previous active source
1157 if (reactivateSource != CECDEVICE_UNKNOWN &&
1158 m_processor->CECInitialised() &&
1159 IsInitialised())
1160 {
1161 CCECBusDevice *device = m_processor->GetDevice(reactivateSource);
1162 if (device)
1163 device->ActivateSource();
1164 }
1165
1166 return true;
1167 }
1168
1169 bool CCECClient::SwitchMonitoring(bool bEnable)
1170 {
1171 LIB_CEC->AddLog(CEC_LOG_NOTICE, "== %s monitoring mode ==", bEnable ? "enabling" : "disabling");
1172
1173 if (m_processor)
1174 {
1175 if (bEnable)
1176 return m_processor->UnregisterClient(this);
1177 else
1178 return m_processor->RegisterClient(this);
1179 }
1180
1181 return false;
1182 }
1183
1184 bool CCECClient::PollDevice(const cec_logical_address iAddress)
1185 {
1186 // try to find the primary device
1187 CCECBusDevice *primary = GetPrimaryDevice();
1188 // poll the destination, with the primary as source
1189 if (primary)
1190 return primary->TransmitPoll(iAddress);
1191
1192 return m_processor ? m_processor->PollDevice(iAddress) : false;
1193 }
1194
1195 cec_logical_addresses CCECClient::GetActiveDevices(void)
1196 {
1197 CECDEVICEVEC activeDevices;
1198 if (m_processor)
1199 m_processor->GetDevices()->GetActive(activeDevices);
1200 return CCECDeviceMap::ToLogicalAddresses(activeDevices);
1201 }
1202
1203 bool CCECClient::IsActiveDevice(const cec_logical_address iAddress)
1204 {
1205 cec_logical_addresses activeDevices = GetActiveDevices();
1206 return activeDevices.IsSet(iAddress);
1207 }
1208
1209 bool CCECClient::IsActiveDeviceType(const cec_device_type type)
1210 {
1211 CECDEVICEVEC activeDevices;
1212 if (m_processor)
1213 m_processor->GetDevices()->GetActive(activeDevices);
1214 CCECDeviceMap::FilterType(type, activeDevices);
1215 return !activeDevices.empty();
1216 }
1217
1218 cec_logical_address CCECClient::GetActiveSource(void)
1219 {
1220 return m_processor ? m_processor->GetActiveSource() : CECDEVICE_UNKNOWN;
1221 }
1222
1223 bool CCECClient::IsActiveSource(const cec_logical_address iAddress)
1224 {
1225 return m_processor ? m_processor->IsActiveSource(iAddress) : false;
1226 }
1227
1228 bool CCECClient::SetStreamPath(const cec_logical_address iAddress)
1229 {
1230 uint16_t iPhysicalAddress = GetDevicePhysicalAddress(iAddress);
1231 if (iPhysicalAddress != CEC_INVALID_PHYSICAL_ADDRESS)
1232 return SetStreamPath(iPhysicalAddress);
1233 return false;
1234 }
1235
1236 bool CCECClient::SetStreamPath(const uint16_t iPhysicalAddress)
1237 {
1238 return m_processor ? m_processor->SetStreamPath(iPhysicalAddress) : false;
1239 }
1240
1241 cec_logical_addresses CCECClient::GetLogicalAddresses(void)
1242 {
1243 cec_logical_addresses addresses;
1244 CLockObject lock(m_mutex);
1245 addresses = m_configuration.logicalAddresses;
1246 return addresses;
1247 }
1248
1249 bool CCECClient::CanPersistConfiguration(void)
1250 {
1251 return m_processor ? m_processor->CanPersistConfiguration() : false;
1252 }
1253
1254 bool CCECClient::PersistConfiguration(const libcec_configuration &configuration)
1255 {
1256 return m_processor ? m_processor->PersistConfiguration(configuration) : false;
1257 }
1258
1259 void CCECClient::RescanActiveDevices(void)
1260 {
1261 if (m_processor)
1262 m_processor->RescanActiveDevices();
1263 }
1264
1265 bool CCECClient::IsLibCECActiveSource(void)
1266 {
1267 bool bReturn(false);
1268 if (m_processor)
1269 {
1270 cec_logical_address activeSource = m_processor->GetActiveSource();
1271 CCECBusDevice *device = m_processor->GetDevice(activeSource);
1272 if (device)
1273 bReturn = device->IsHandledByLibCEC();
1274 }
1275 return bReturn;
1276 }