2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
34 #include "CECBusDevice.h"
36 #include "lib/CECProcessor.h"
37 #include "lib/CECClient.h"
38 #include "lib/implementations/ANCommandHandler.h"
39 #include "lib/implementations/CECCommandHandler.h"
40 #include "lib/implementations/SLCommandHandler.h"
41 #include "lib/implementations/VLCommandHandler.h"
42 #include "lib/LibCEC.h"
43 #include "lib/CECTypeUtils.h"
44 #include "lib/platform/util/timeutils.h"
45 #include "lib/platform/util/util.h"
47 #include "CECAudioSystem.h"
48 #include "CECPlaybackDevice.h"
49 #include "CECRecordingDevice.h"
55 using namespace PLATFORM
;
57 #define LIB_CEC m_processor->GetLib()
58 #define ToString(p) CCECTypeUtils::ToString(p)
60 CCECBusDevice::CCECBusDevice(CCECProcessor
*processor
, cec_logical_address iLogicalAddress
, uint16_t iPhysicalAddress
/* = CEC_INVALID_PHYSICAL_ADDRESS */) :
61 m_type (CEC_DEVICE_TYPE_RESERVED
),
62 m_iPhysicalAddress (iPhysicalAddress
),
63 m_iStreamPath (CEC_INVALID_PHYSICAL_ADDRESS
),
64 m_iLogicalAddress (iLogicalAddress
),
65 m_powerStatus (CEC_POWER_STATUS_UNKNOWN
),
66 m_processor (processor
),
67 m_vendor (CEC_VENDOR_UNKNOWN
),
68 m_bReplaceHandler (false),
69 m_menuState (CEC_MENU_STATE_ACTIVATED
),
70 m_bActiveSource (false),
72 m_iLastPowerStateUpdate (0),
73 m_cecVersion (CEC_VERSION_UNKNOWN
),
74 m_deviceStatus (CEC_DEVICE_STATUS_UNKNOWN
),
75 m_iHandlerUseCount (0),
76 m_bAwaitingReceiveFailed(false),
77 m_bVendorIdRequested (false),
78 m_waitForResponse (new CWaitForResponse
)
80 m_handler
= new CCECCommandHandler(this);
82 for (unsigned int iPtr
= 0; iPtr
< 4; iPtr
++)
83 m_menuLanguage
.language
[iPtr
] = '?';
84 m_menuLanguage
.language
[3] = 0;
85 m_menuLanguage
.device
= iLogicalAddress
;
87 m_strDeviceName
= ToString(m_iLogicalAddress
);
90 CCECBusDevice::~CCECBusDevice(void)
92 DELETE_AND_NULL(m_handler
);
93 DELETE_AND_NULL(m_waitForResponse
);
96 bool CCECBusDevice::ReplaceHandler(bool bActivateSource
/* = true */)
98 if (m_iLogicalAddress
== CECDEVICE_BROADCAST
)
101 bool bInitHandler(false);
103 CLockObject
lock(m_mutex
);
104 CLockObject
handlerLock(m_handlerMutex
);
105 if (m_iHandlerUseCount
> 0)
110 if (m_vendor
!= m_handler
->GetVendorId())
112 if (CCECCommandHandler::HasSpecificHandler(m_vendor
))
114 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "replacing the command handler for device '%s' (%x)", GetLogicalAddressName(), GetLogicalAddress());
116 int32_t iTransmitTimeout
= m_handler
->m_iTransmitTimeout
;
117 int32_t iTransmitWait
= m_handler
->m_iTransmitWait
;
118 int8_t iTransmitRetries
= m_handler
->m_iTransmitRetries
;
119 int64_t iActiveSourcePending
= m_handler
->m_iActiveSourcePending
;
121 DELETE_AND_NULL(m_handler
);
125 case CEC_VENDOR_SAMSUNG
:
126 m_handler
= new CANCommandHandler(this, iTransmitTimeout
, iTransmitWait
, iTransmitRetries
, iActiveSourcePending
);
129 m_handler
= new CSLCommandHandler(this, iTransmitTimeout
, iTransmitWait
, iTransmitRetries
, iActiveSourcePending
);
131 case CEC_VENDOR_PANASONIC
:
132 m_handler
= new CVLCommandHandler(this, iTransmitTimeout
, iTransmitWait
, iTransmitRetries
, iActiveSourcePending
);
135 m_handler
= new CCECCommandHandler(this, iTransmitTimeout
, iTransmitWait
, iTransmitRetries
, iActiveSourcePending
);
139 m_handler
->SetVendorId(m_vendor
);
147 CCECBusDevice
*primary
= GetProcessor()->GetPrimaryDevice();
148 if (primary
->GetLogicalAddress() != CECDEVICE_UNREGISTERED
)
150 m_handler
->InitHandler();
152 if (bActivateSource
&& IsHandledByLibCEC() && IsActiveSource())
153 m_handler
->ActivateSource();
162 CCECCommandHandler
*CCECBusDevice::GetHandler(void)
164 ReplaceHandler(false);
169 bool CCECBusDevice::HandleCommand(const cec_command
&command
)
171 bool bHandled(false);
173 /* update "last active" */
175 CLockObject
lock(m_mutex
);
176 m_iLastActive
= GetTimeMs();
180 /* handle the command */
181 bHandled
= m_handler
->HandleCommand(command
);
183 /* change status to present */
184 if (bHandled
&& GetLogicalAddress() != CECDEVICE_BROADCAST
)
186 CLockObject
lock(m_mutex
);
187 if (m_deviceStatus
!= CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
)
189 if (m_deviceStatus
!= CEC_DEVICE_STATUS_PRESENT
)
190 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "device %s (%x) status changed to present after command %s", GetLogicalAddressName(), (uint8_t)GetLogicalAddress(), ToString(command
.opcode
));
191 m_deviceStatus
= CEC_DEVICE_STATUS_PRESENT
;
199 const char* CCECBusDevice::GetLogicalAddressName(void) const
201 return ToString(m_iLogicalAddress
);
204 bool CCECBusDevice::IsPresent(void)
206 CLockObject
lock(m_mutex
);
207 return m_deviceStatus
== CEC_DEVICE_STATUS_PRESENT
;
210 bool CCECBusDevice::IsHandledByLibCEC(void)
212 CLockObject
lock(m_mutex
);
213 return m_deviceStatus
== CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
;
216 void CCECBusDevice::SetUnsupportedFeature(cec_opcode opcode
)
218 // some commands should never be marked as unsupported
219 if (opcode
== CEC_OPCODE_VENDOR_COMMAND
||
220 opcode
== CEC_OPCODE_VENDOR_COMMAND_WITH_ID
||
221 opcode
== CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN
||
222 opcode
== CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP
||
223 opcode
== CEC_OPCODE_ABORT
||
224 opcode
== CEC_OPCODE_FEATURE_ABORT
||
225 opcode
== CEC_OPCODE_NONE
)
229 CLockObject
lock(m_mutex
);
230 if (m_unsupportedFeatures
.find(opcode
) == m_unsupportedFeatures
.end())
232 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "marking opcode '%s' as unsupported feature for device '%s'", ToString(opcode
), GetLogicalAddressName());
233 m_unsupportedFeatures
.insert(opcode
);
237 // signal threads that are waiting for a reponse
239 SignalOpcode(cec_command::GetResponseOpcode(opcode
));
243 bool CCECBusDevice::IsUnsupportedFeature(cec_opcode opcode
)
245 CLockObject
lock(m_mutex
);
246 bool bUnsupported
= (m_unsupportedFeatures
.find(opcode
) != m_unsupportedFeatures
.end());
248 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "'%s' is marked as unsupported feature for device '%s'", ToString(opcode
), GetLogicalAddressName());
252 bool CCECBusDevice::TransmitKeypress(const cec_logical_address initiator
, cec_user_control_code key
, bool bWait
/* = true */)
255 bool bReturn
= m_handler
->TransmitKeypress(initiator
, m_iLogicalAddress
, key
, bWait
);
260 bool CCECBusDevice::TransmitKeyRelease(const cec_logical_address initiator
, bool bWait
/* = true */)
263 bool bReturn
= m_handler
->TransmitKeyRelease(initiator
, m_iLogicalAddress
, bWait
);
268 cec_version
CCECBusDevice::GetCecVersion(const cec_logical_address initiator
, bool bUpdate
/* = false */)
270 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
271 bool bRequestUpdate(false);
273 CLockObject
lock(m_mutex
);
274 bRequestUpdate
= bIsPresent
&&
275 (bUpdate
|| m_cecVersion
== CEC_VERSION_UNKNOWN
);
280 CheckVendorIdRequested(initiator
);
281 RequestCecVersion(initiator
);
284 CLockObject
lock(m_mutex
);
288 void CCECBusDevice::SetCecVersion(const cec_version newVersion
)
290 CLockObject
lock(m_mutex
);
291 if (m_cecVersion
!= newVersion
)
292 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): CEC version %s", GetLogicalAddressName(), m_iLogicalAddress
, ToString(newVersion
));
293 m_cecVersion
= newVersion
;
296 bool CCECBusDevice::RequestCecVersion(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
300 if (!IsHandledByLibCEC() &&
301 !IsUnsupportedFeature(CEC_OPCODE_GET_CEC_VERSION
))
304 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< requesting CEC version of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
305 bReturn
= m_handler
->TransmitRequestCecVersion(initiator
, m_iLogicalAddress
, bWaitForResponse
);
311 bool CCECBusDevice::TransmitCECVersion(const cec_logical_address destination
, bool bIsReply
)
315 CLockObject
lock(m_mutex
);
316 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): cec version %s", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, ToString(m_cecVersion
));
317 version
= m_cecVersion
;
321 bool bReturn
= m_handler
->TransmitCECVersion(m_iLogicalAddress
, destination
, version
, bIsReply
);
326 cec_menu_language
&CCECBusDevice::GetMenuLanguage(const cec_logical_address initiator
, bool bUpdate
/* = false */)
328 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
329 bool bRequestUpdate(false);
331 CLockObject
lock(m_mutex
);
332 bRequestUpdate
= (bIsPresent
&&
333 (bUpdate
|| !strcmp(m_menuLanguage
.language
, "???")));
338 CheckVendorIdRequested(initiator
);
339 RequestMenuLanguage(initiator
);
342 CLockObject
lock(m_mutex
);
343 return m_menuLanguage
;
346 void CCECBusDevice::SetMenuLanguage(const char *strLanguage
)
351 CLockObject
lock(m_mutex
);
352 if (strcmp(strLanguage
, m_menuLanguage
.language
))
354 memcpy(m_menuLanguage
.language
, strLanguage
, 3);
355 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): menu language set to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, m_menuLanguage
.language
);
359 void CCECBusDevice::SetMenuLanguage(const cec_menu_language
&language
)
361 if (language
.device
== m_iLogicalAddress
)
362 SetMenuLanguage(language
.language
);
365 bool CCECBusDevice::RequestMenuLanguage(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
369 if (!IsHandledByLibCEC() &&
370 !IsUnsupportedFeature(CEC_OPCODE_GET_MENU_LANGUAGE
))
373 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< requesting menu language of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
374 bReturn
= m_handler
->TransmitRequestMenuLanguage(initiator
, m_iLogicalAddress
, bWaitForResponse
);
380 bool CCECBusDevice::TransmitSetMenuLanguage(const cec_logical_address destination
, bool bIsReply
)
383 cec_menu_language language
;
385 CLockObject
lock(m_mutex
);
386 language
= m_menuLanguage
;
391 CLockObject
lock(m_mutex
);
392 lang
[0] = language
.language
[0];
393 lang
[1] = language
.language
[1];
394 lang
[2] = language
.language
[2];
398 if (lang
[0] == '?' && lang
[1] == '?' && lang
[2] == '?')
400 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): menu language feature abort", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
);
401 m_processor
->TransmitAbort(m_iLogicalAddress
, destination
, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
);
406 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> broadcast (F): menu language '%s'", GetLogicalAddressName(), m_iLogicalAddress
, lang
);
407 bReturn
= m_handler
->TransmitSetMenuLanguage(m_iLogicalAddress
, lang
, bIsReply
);
413 bool CCECBusDevice::TransmitOSDString(const cec_logical_address destination
, cec_display_control duration
, const char *strMessage
, bool bIsReply
)
416 if (!m_processor
->GetDevice(destination
)->IsUnsupportedFeature(CEC_OPCODE_SET_OSD_STRING
))
418 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): display OSD message '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, strMessage
);
420 bReturn
= m_handler
->TransmitOSDString(m_iLogicalAddress
, destination
, duration
, strMessage
, bIsReply
);
426 CStdString
CCECBusDevice::GetCurrentOSDName(void)
428 CLockObject
lock(m_mutex
);
429 return m_strDeviceName
;
432 CStdString
CCECBusDevice::GetOSDName(const cec_logical_address initiator
, bool bUpdate
/* = false */)
434 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
435 bool bRequestUpdate(false);
437 CLockObject
lock(m_mutex
);
438 bRequestUpdate
= bIsPresent
&&
439 (bUpdate
|| m_strDeviceName
.Equals(ToString(m_iLogicalAddress
))) &&
440 m_type
!= CEC_DEVICE_TYPE_TV
;
445 CheckVendorIdRequested(initiator
);
446 RequestOSDName(initiator
);
449 CLockObject
lock(m_mutex
);
450 return m_strDeviceName
;
453 void CCECBusDevice::SetOSDName(CStdString strName
)
455 CLockObject
lock(m_mutex
);
456 if (m_strDeviceName
!= strName
)
458 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): osd name set to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, strName
.c_str());
459 m_strDeviceName
= strName
;
463 bool CCECBusDevice::RequestOSDName(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
467 if (!IsHandledByLibCEC() &&
468 !IsUnsupportedFeature(CEC_OPCODE_GIVE_OSD_NAME
))
471 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< requesting OSD name of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
472 bReturn
= m_handler
->TransmitRequestOSDName(initiator
, m_iLogicalAddress
, bWaitForResponse
);
478 bool CCECBusDevice::TransmitOSDName(const cec_logical_address destination
, bool bIsReply
)
480 CStdString strDeviceName
;
482 CLockObject
lock(m_mutex
);
483 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): OSD name '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, m_strDeviceName
.c_str());
484 strDeviceName
= m_strDeviceName
;
488 bool bReturn
= m_handler
->TransmitOSDName(m_iLogicalAddress
, destination
, strDeviceName
, bIsReply
);
493 bool CCECBusDevice::HasValidPhysicalAddress(void)
495 CLockObject
lock(m_mutex
);
496 return CLibCEC::IsValidPhysicalAddress(m_iPhysicalAddress
);
499 uint16_t CCECBusDevice::GetCurrentPhysicalAddress(void)
501 CLockObject
lock(m_mutex
);
502 return m_iPhysicalAddress
;
505 uint16_t CCECBusDevice::GetPhysicalAddress(const cec_logical_address initiator
, bool bSuppressUpdate
/* = false */)
507 if (!bSuppressUpdate
)
509 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
510 bool bRequestUpdate(false);
512 CLockObject
lock(m_mutex
);
513 bRequestUpdate
= bIsPresent
&& m_iPhysicalAddress
== CEC_INVALID_PHYSICAL_ADDRESS
;
518 CheckVendorIdRequested(initiator
);
519 if (!RequestPhysicalAddress(initiator
))
520 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "failed to request the physical address");
524 CLockObject
lock(m_mutex
);
525 return m_iPhysicalAddress
;
528 bool CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress
)
530 CLockObject
lock(m_mutex
);
531 if (iNewAddress
> 0 && m_iPhysicalAddress
!= iNewAddress
)
533 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): physical address changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress
, m_iPhysicalAddress
, iNewAddress
);
534 m_iPhysicalAddress
= iNewAddress
;
539 bool CCECBusDevice::RequestPhysicalAddress(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
543 if (!IsHandledByLibCEC())
546 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< requesting physical address of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
547 bReturn
= m_handler
->TransmitRequestPhysicalAddress(initiator
, m_iLogicalAddress
, bWaitForResponse
);
553 bool CCECBusDevice::TransmitPhysicalAddress(bool bIsReply
)
555 uint16_t iPhysicalAddress
;
556 cec_device_type type
;
558 CLockObject
lock(m_mutex
);
559 if (m_iPhysicalAddress
== CEC_INVALID_PHYSICAL_ADDRESS
)
562 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> broadcast (F): physical adddress %4x", GetLogicalAddressName(), m_iLogicalAddress
, m_iPhysicalAddress
);
563 iPhysicalAddress
= m_iPhysicalAddress
;
568 bool bReturn
= m_handler
->TransmitPhysicalAddress(m_iLogicalAddress
, iPhysicalAddress
, type
, bIsReply
);
573 cec_power_status
CCECBusDevice::GetCurrentPowerStatus(void)
575 CLockObject
lock(m_mutex
);
576 return m_powerStatus
;
579 cec_power_status
CCECBusDevice::GetPowerStatus(const cec_logical_address initiator
, bool bUpdate
/* = false */)
581 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
582 bool bRequestUpdate(false);
584 CLockObject
lock(m_mutex
);
585 bRequestUpdate
= (bIsPresent
&&
586 (bUpdate
|| m_powerStatus
== CEC_POWER_STATUS_UNKNOWN
||
587 m_powerStatus
== CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
||
588 m_powerStatus
== CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY
||
589 GetTimeMs() - m_iLastPowerStateUpdate
>= CEC_POWER_STATE_REFRESH_TIME
));
594 CheckVendorIdRequested(initiator
);
595 RequestPowerStatus(initiator
);
598 CLockObject
lock(m_mutex
);
599 return m_powerStatus
;
602 void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus
)
604 CLockObject
lock(m_mutex
);
605 if (m_powerStatus
!= powerStatus
)
607 m_iLastPowerStateUpdate
= GetTimeMs();
608 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): power status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(m_powerStatus
), ToString(powerStatus
));
609 m_powerStatus
= powerStatus
;
613 bool CCECBusDevice::RequestPowerStatus(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
617 if (!IsHandledByLibCEC() &&
618 !IsUnsupportedFeature(CEC_OPCODE_GIVE_DEVICE_POWER_STATUS
))
621 bReturn
= m_handler
->TransmitRequestPowerStatus(initiator
, m_iLogicalAddress
, bWaitForResponse
);
627 bool CCECBusDevice::TransmitPowerState(const cec_logical_address destination
, bool bIsReply
)
629 cec_power_status state
;
631 CLockObject
lock(m_mutex
);
632 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): %s", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, ToString(m_powerStatus
));
633 state
= m_powerStatus
;
637 bool bReturn
= m_handler
->TransmitPowerState(m_iLogicalAddress
, destination
, state
, bIsReply
);
642 cec_vendor_id
CCECBusDevice::GetCurrentVendorId(void)
644 CLockObject
lock(m_mutex
);
648 cec_vendor_id
CCECBusDevice::GetVendorId(const cec_logical_address initiator
, bool bUpdate
/* = false */)
650 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
651 bool bRequestUpdate(false);
653 CLockObject
lock(m_mutex
);
654 bRequestUpdate
= (bIsPresent
&&
655 (bUpdate
|| m_vendor
== CEC_VENDOR_UNKNOWN
));
659 RequestVendorId(initiator
);
661 CLockObject
lock(m_mutex
);
665 const char *CCECBusDevice::GetVendorName(const cec_logical_address initiator
, bool bUpdate
/* = false */)
667 return ToString(GetVendorId(initiator
, bUpdate
));
670 bool CCECBusDevice::SetVendorId(uint64_t iVendorId
)
672 bool bVendorChanged(false);
675 CLockObject
lock(m_mutex
);
676 bVendorChanged
= (m_vendor
!= (cec_vendor_id
)iVendorId
);
677 m_vendor
= (cec_vendor_id
)iVendorId
;
681 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): vendor = %s (%06x)", GetLogicalAddressName(), m_iLogicalAddress
, ToString(m_vendor
), m_vendor
);
683 return bVendorChanged
;
686 bool CCECBusDevice::RequestVendorId(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
690 if (!IsHandledByLibCEC() && initiator
!= CECDEVICE_UNKNOWN
)
693 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
694 bReturn
= m_handler
->TransmitRequestVendorId(initiator
, m_iLogicalAddress
, bWaitForResponse
);
697 if (bWaitForResponse
)
698 ReplaceHandler(true);
703 bool CCECBusDevice::TransmitVendorID(const cec_logical_address destination
, bool bSendAbort
, bool bIsReply
)
708 CLockObject
lock(m_mutex
);
709 iVendorId
= (uint64_t)m_vendor
;
713 if (iVendorId
== CEC_VENDOR_UNKNOWN
)
717 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): vendor id feature abort", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
);
718 m_processor
->TransmitAbort(m_iLogicalAddress
, destination
, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
);
724 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): vendor id %s (%x)", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, ToString((cec_vendor_id
)iVendorId
), iVendorId
);
725 bReturn
= m_handler
->TransmitVendorID(m_iLogicalAddress
, iVendorId
, bIsReply
);
731 cec_bus_device_status
CCECBusDevice::GetStatus(bool bForcePoll
/* = false */, bool bSuppressPoll
/* = false */)
733 if (m_iLogicalAddress
== CECDEVICE_BROADCAST
)
734 return CEC_DEVICE_STATUS_NOT_PRESENT
;
736 cec_bus_device_status
status(CEC_DEVICE_STATUS_UNKNOWN
);
737 bool bNeedsPoll(false);
740 CLockObject
lock(m_mutex
);
741 status
= m_deviceStatus
;
742 bNeedsPoll
= !bSuppressPoll
&&
743 m_deviceStatus
!= CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
&&
746 // don't know the status
747 m_deviceStatus
== CEC_DEVICE_STATUS_UNKNOWN
||
748 // always poll the TV if it's marked as not present
749 (m_deviceStatus
== CEC_DEVICE_STATUS_NOT_PRESENT
&& m_iLogicalAddress
== CECDEVICE_TV
));
754 bool bPollAcked(false);
755 if (bNeedsPoll
&& NeedsPoll())
756 bPollAcked
= m_processor
->PollDevice(m_iLogicalAddress
);
758 status
= bPollAcked
? CEC_DEVICE_STATUS_PRESENT
: CEC_DEVICE_STATUS_NOT_PRESENT
;
759 SetDeviceStatus(status
);
765 void CCECBusDevice::SetDeviceStatus(const cec_bus_device_status newStatus
, cec_version libCECSpecVersion
/* = CEC_VERSION_1_4 */)
767 if (m_iLogicalAddress
== CECDEVICE_UNREGISTERED
)
771 CLockObject
lock(m_mutex
);
774 case CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
:
775 if (m_deviceStatus
!= newStatus
)
776 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): device status changed into 'handled by libCEC'", GetLogicalAddressName(), m_iLogicalAddress
);
777 SetPowerStatus (CEC_POWER_STATUS_ON
);
778 SetVendorId (CEC_VENDOR_UNKNOWN
);
779 SetMenuState (CEC_MENU_STATE_ACTIVATED
);
780 SetCecVersion (libCECSpecVersion
);
781 SetStreamPath (CEC_INVALID_PHYSICAL_ADDRESS
);
782 MarkAsInactiveSource();
784 m_deviceStatus
= newStatus
;
786 case CEC_DEVICE_STATUS_PRESENT
:
787 if (m_deviceStatus
!= newStatus
)
788 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): device status changed into 'present'", GetLogicalAddressName(), m_iLogicalAddress
);
789 m_deviceStatus
= newStatus
;
790 m_iLastActive
= GetTimeMs();
792 case CEC_DEVICE_STATUS_NOT_PRESENT
:
793 if (m_deviceStatus
!= newStatus
)
795 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): device status changed into 'not present'", GetLogicalAddressName(), m_iLogicalAddress
);
796 ResetDeviceStatus(true);
797 m_deviceStatus
= newStatus
;
807 void CCECBusDevice::ResetDeviceStatus(bool bClientUnregistered
/* = false */)
809 CLockObject
lock(m_mutex
);
810 SetPowerStatus (CEC_POWER_STATUS_UNKNOWN
);
811 SetVendorId (CEC_VENDOR_UNKNOWN
);
812 SetMenuState (CEC_MENU_STATE_ACTIVATED
);
813 SetCecVersion (CEC_VERSION_UNKNOWN
);
814 SetStreamPath (CEC_INVALID_PHYSICAL_ADDRESS
);
815 SetOSDName (ToString(m_iLogicalAddress
));
816 MarkAsInactiveSource(bClientUnregistered
);
819 m_bVendorIdRequested
= false;
820 m_unsupportedFeatures
.clear();
821 m_waitForResponse
->Clear();
823 if (m_deviceStatus
!= CEC_DEVICE_STATUS_UNKNOWN
)
824 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): device status changed into 'unknown'", GetLogicalAddressName(), m_iLogicalAddress
);
825 m_deviceStatus
= CEC_DEVICE_STATUS_UNKNOWN
;
828 bool CCECBusDevice::TransmitPoll(const cec_logical_address dest
, bool bUpdateDeviceStatus
)
831 cec_logical_address
destination(dest
);
832 if (destination
== CECDEVICE_UNKNOWN
)
833 destination
= m_iLogicalAddress
;
835 CCECBusDevice
*destDevice
= m_processor
->GetDevice(destination
);
836 if (destDevice
->m_deviceStatus
== CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
)
840 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): POLL", GetLogicalAddressName(), m_iLogicalAddress
, ToString(dest
), dest
);
841 bReturn
= m_handler
->TransmitPoll(m_iLogicalAddress
, destination
, false);
842 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, bReturn
? ">> POLL sent" : ">> POLL not sent");
844 if (bUpdateDeviceStatus
)
845 destDevice
->SetDeviceStatus(bReturn
? CEC_DEVICE_STATUS_PRESENT
: CEC_DEVICE_STATUS_NOT_PRESENT
);
851 void CCECBusDevice::HandlePoll(const cec_logical_address destination
)
853 if (destination
>= 0 && destination
< CECDEVICE_BROADCAST
)
855 CCECBusDevice
*device
= m_processor
->GetDevice(destination
);
857 device
->HandlePollFrom(m_iLogicalAddress
);
861 void CCECBusDevice::HandlePollFrom(const cec_logical_address initiator
)
863 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< POLL: %s (%x) -> %s (%x)", ToString(initiator
), initiator
, ToString(m_iLogicalAddress
), m_iLogicalAddress
);
864 m_bAwaitingReceiveFailed
= true;
867 bool CCECBusDevice::HandleReceiveFailed(void)
869 bool bReturn
= m_bAwaitingReceiveFailed
;
870 m_bAwaitingReceiveFailed
= false;
874 cec_menu_state
CCECBusDevice::GetMenuState(const cec_logical_address
UNUSED(initiator
))
876 CLockObject
lock(m_mutex
);
880 void CCECBusDevice::SetMenuState(const cec_menu_state state
)
882 CLockObject
lock(m_mutex
);
883 if (m_menuState
!= state
)
885 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): menu state set to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(m_menuState
));
890 bool CCECBusDevice::TransmitMenuState(const cec_logical_address dest
, bool bIsReply
)
892 cec_menu_state menuState
;
894 CLockObject
lock(m_mutex
);
895 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) -> %s (%X): menu state '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(dest
), dest
, ToString(m_menuState
));
896 menuState
= m_menuState
;
900 bool bReturn
= m_handler
->TransmitMenuState(m_iLogicalAddress
, dest
, menuState
, bIsReply
);
905 bool CCECBusDevice::ActivateSource(uint64_t iDelay
/* = 0 */)
907 MarkAsActiveSource();
912 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "sending active source message for '%s'", ToString(m_iLogicalAddress
));
913 bReturn
= m_handler
->ActivateSource();
917 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "scheduling active source message for '%s'", ToString(m_iLogicalAddress
));
918 m_handler
->ScheduleActivateSource(iDelay
);
924 bool CCECBusDevice::RequestActiveSource(bool bWaitForResponse
/* = true */)
928 if (IsHandledByLibCEC())
931 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< requesting active source");
933 bReturn
= m_handler
->TransmitRequestActiveSource(m_iLogicalAddress
, bWaitForResponse
);
939 void CCECBusDevice::MarkAsActiveSource(void)
941 bool bWasActivated(false);
943 // set the power status to powered on
944 SetPowerStatus(CEC_POWER_STATUS_ON
);
946 // mark this device as active source
948 CLockObject
lock(m_mutex
);
949 if (!m_bActiveSource
)
951 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "making %s (%x) the active source", GetLogicalAddressName(), m_iLogicalAddress
);
952 bWasActivated
= true;
955 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%x) was already marked as active source", GetLogicalAddressName(), m_iLogicalAddress
);
957 m_bActiveSource
= true;
960 // mark other devices as inactive sources
961 CECDEVICEVEC devices
;
962 m_processor
->GetDevices()->Get(devices
);
963 for (CECDEVICEVEC::iterator it
= devices
.begin(); it
!= devices
.end(); it
++)
964 if ((*it
)->GetLogicalAddress() != m_iLogicalAddress
)
965 (*it
)->MarkAsInactiveSource();
969 m_processor
->SetActiveSource(true, false);
970 CCECClient
*client
= GetClient();
972 client
->SourceActivated(m_iLogicalAddress
);
976 void CCECBusDevice::MarkAsInactiveSource(bool bClientUnregistered
/* = false */)
978 bool bWasDeactivated(false);
980 CLockObject
lock(m_mutex
);
983 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "marking %s (%X) as inactive source", GetLogicalAddressName(), m_iLogicalAddress
);
984 bWasDeactivated
= true;
986 m_bActiveSource
= false;
991 m_processor
->SetActiveSource(false, bClientUnregistered
);
992 CCECClient
*client
= GetClient();
994 client
->SourceDeactivated(m_iLogicalAddress
);
998 bool CCECBusDevice::TransmitActiveSource(bool bIsReply
)
1000 bool bSendActiveSource(false);
1001 uint16_t iPhysicalAddress(CEC_INVALID_PHYSICAL_ADDRESS
);
1004 CLockObject
lock(m_mutex
);
1005 if (!HasValidPhysicalAddress())
1007 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X) has an invalid physical address (%04x), not sending active source commands", GetLogicalAddressName(), m_iLogicalAddress
, m_iPhysicalAddress
);
1011 iPhysicalAddress
= m_iPhysicalAddress
;
1013 if (m_powerStatus
!= CEC_POWER_STATUS_ON
&& m_powerStatus
!= CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
)
1014 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) is not powered on", GetLogicalAddressName(), m_iLogicalAddress
);
1015 else if (m_bActiveSource
)
1017 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> broadcast (F): active source (%4x)", GetLogicalAddressName(), m_iLogicalAddress
, m_iPhysicalAddress
);
1018 bSendActiveSource
= true;
1021 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) is not the active source", GetLogicalAddressName(), m_iLogicalAddress
);
1024 bool bActiveSourceSent(false);
1025 if (bSendActiveSource
)
1028 bActiveSourceSent
= m_handler
->TransmitActiveSource(m_iLogicalAddress
, iPhysicalAddress
, bIsReply
);
1032 return bActiveSourceSent
;
1035 bool CCECBusDevice::TransmitImageViewOn(void)
1038 CLockObject
lock(m_mutex
);
1039 if (m_powerStatus
!= CEC_POWER_STATUS_ON
&& m_powerStatus
!= CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
)
1041 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) is not powered on", GetLogicalAddressName(), m_iLogicalAddress
);
1046 bool bImageViewOnSent(false);
1048 bImageViewOnSent
= m_handler
->TransmitImageViewOn(m_iLogicalAddress
, CECDEVICE_TV
);
1050 return bImageViewOnSent
;
1053 bool CCECBusDevice::TransmitInactiveSource(void)
1055 uint16_t iPhysicalAddress
;
1057 CLockObject
lock(m_mutex
);
1058 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> broadcast (F): inactive source", GetLogicalAddressName(), m_iLogicalAddress
);
1059 iPhysicalAddress
= m_iPhysicalAddress
;
1063 bool bReturn
= m_handler
->TransmitInactiveSource(m_iLogicalAddress
, iPhysicalAddress
);
1068 bool CCECBusDevice::TransmitPendingActiveSourceCommands(void)
1071 bool bReturn
= m_handler
->ActivateSource(true);
1076 void CCECBusDevice::SetActiveRoute(uint16_t iRoute
)
1078 CCECDeviceMap
* map
= m_processor
->GetDevices();
1082 CCECBusDevice
* previouslyActive
= map
->GetActiveSource();
1083 if (!previouslyActive
)
1086 CECDEVICEVEC devices
;
1087 m_processor
->GetDevices()->GetChildrenOf(devices
, this);
1089 for (CECDEVICEVEC::iterator it
= devices
.begin(); it
!= devices
.end(); it
++)
1091 if (!CCECTypeUtils::PhysicalAddressIsIncluded(iRoute
, (*it
)->GetCurrentPhysicalAddress()))
1092 (*it
)->MarkAsInactiveSource();
1096 void CCECBusDevice::SetStreamPath(uint16_t iNewAddress
, uint16_t iOldAddress
/* = CEC_INVALID_PHYSICAL_ADDRESS */)
1098 CLockObject
lock(m_mutex
);
1099 if (iNewAddress
!= m_iStreamPath
)
1101 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): stream path changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress
, iOldAddress
== 0 ? m_iStreamPath
: iOldAddress
, iNewAddress
);
1102 m_iStreamPath
= iNewAddress
;
1105 if (!LIB_CEC
->IsValidPhysicalAddress(iNewAddress
))
1108 CCECBusDevice
*device
= m_processor
->GetDeviceByPhysicalAddress(iNewAddress
);
1111 // if a device is found with the new physical address, mark it as active, which will automatically mark all other devices as inactive
1112 device
->MarkAsActiveSource();
1114 // respond with an active source message if this device is handled by libCEC
1115 if (device
->IsHandledByLibCEC())
1116 device
->TransmitActiveSource(true);
1120 // try to find the device with the old address, and mark it as inactive when found
1121 device
= m_processor
->GetDeviceByPhysicalAddress(iOldAddress
);
1123 device
->MarkAsInactiveSource();
1127 bool CCECBusDevice::PowerOn(const cec_logical_address initiator
)
1129 bool bReturn(false);
1130 GetVendorId(initiator
); // ensure that we got the vendor id, because the implementations vary per vendor
1133 cec_power_status currentStatus
;
1134 if (m_iLogicalAddress
== CECDEVICE_TV
||
1135 ((currentStatus
= GetPowerStatus(initiator
, false)) != CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
&&
1136 currentStatus
!= CEC_POWER_STATUS_ON
))
1138 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< powering on '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
1139 bReturn
= m_handler
->PowerOn(initiator
, m_iLogicalAddress
);
1143 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "'%s' (%X) is already '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(currentStatus
));
1150 bool CCECBusDevice::Standby(const cec_logical_address initiator
)
1152 GetVendorId(initiator
); // ensure that we got the vendor id, because the implementations vary per vendor
1154 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< putting '%s' (%X) in standby mode", GetLogicalAddressName(), m_iLogicalAddress
);
1156 bool bReturn
= m_handler
->TransmitStandby(initiator
, m_iLogicalAddress
);
1161 bool CCECBusDevice::NeedsPoll(void)
1163 bool bSendPoll(false);
1164 cec_logical_address
pollAddress(CECDEVICE_UNKNOWN
);
1165 switch (m_iLogicalAddress
)
1167 case CECDEVICE_PLAYBACKDEVICE3
:
1168 pollAddress
= CECDEVICE_PLAYBACKDEVICE2
;
1170 case CECDEVICE_PLAYBACKDEVICE2
:
1171 pollAddress
= CECDEVICE_PLAYBACKDEVICE1
;
1173 case CECDEVICE_RECORDINGDEVICE3
:
1174 pollAddress
= CECDEVICE_RECORDINGDEVICE2
;
1176 case CECDEVICE_RECORDINGDEVICE2
:
1177 pollAddress
= CECDEVICE_RECORDINGDEVICE1
;
1179 case CECDEVICE_TUNER4
:
1180 pollAddress
= CECDEVICE_TUNER3
;
1182 case CECDEVICE_TUNER3
:
1183 pollAddress
= CECDEVICE_TUNER2
;
1185 case CECDEVICE_TUNER2
:
1186 pollAddress
= CECDEVICE_TUNER1
;
1188 case CECDEVICE_AUDIOSYSTEM
:
1189 case CECDEVICE_PLAYBACKDEVICE1
:
1190 case CECDEVICE_RECORDINGDEVICE1
:
1191 case CECDEVICE_TUNER1
:
1199 if (!bSendPoll
&& pollAddress
!= CECDEVICE_UNKNOWN
)
1201 CCECBusDevice
*device
= m_processor
->GetDevice(pollAddress
);
1204 cec_bus_device_status status
= device
->GetStatus();
1205 bSendPoll
= (status
== CEC_DEVICE_STATUS_PRESENT
|| status
== CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
);
1216 void CCECBusDevice::CheckVendorIdRequested(const cec_logical_address initiator
)
1218 bool bRequestVendorId(false);
1220 CLockObject
lock(m_mutex
);
1221 bRequestVendorId
= !m_bVendorIdRequested
;
1222 m_bVendorIdRequested
= true;
1225 if (bRequestVendorId
)
1227 ReplaceHandler(false);
1228 GetVendorId(initiator
);
1233 CCECAudioSystem
*CCECBusDevice::AsAudioSystem(void)
1235 return AsAudioSystem(this);
1238 CCECPlaybackDevice
*CCECBusDevice::AsPlaybackDevice(void)
1240 return AsPlaybackDevice(this);
1243 CCECRecordingDevice
*CCECBusDevice::AsRecordingDevice(void)
1245 return AsRecordingDevice(this);
1248 CCECTuner
*CCECBusDevice::AsTuner(void)
1250 return AsTuner(this);
1253 CCECTV
*CCECBusDevice::AsTV(void)
1258 CCECAudioSystem
*CCECBusDevice::AsAudioSystem(CCECBusDevice
*device
)
1260 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
1261 return static_cast<CCECAudioSystem
*>(device
);
1265 CCECPlaybackDevice
*CCECBusDevice::AsPlaybackDevice(CCECBusDevice
*device
)
1268 (device
->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE
||
1269 device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
))
1270 return static_cast<CCECPlaybackDevice
*>(device
);
1274 CCECRecordingDevice
*CCECBusDevice::AsRecordingDevice(CCECBusDevice
*device
)
1276 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
)
1277 return static_cast<CCECRecordingDevice
*>(device
);
1281 CCECTuner
*CCECBusDevice::AsTuner(CCECBusDevice
*device
)
1283 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_TUNER
)
1284 return static_cast<CCECTuner
*>(device
);
1288 CCECTV
*CCECBusDevice::AsTV(CCECBusDevice
*device
)
1290 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_TV
)
1291 return static_cast<CCECTV
*>(device
);
1295 void CCECBusDevice::MarkBusy(void)
1297 CLockObject
handlerLock(m_handlerMutex
);
1298 ++m_iHandlerUseCount
;
1301 void CCECBusDevice::MarkReady(void)
1303 CLockObject
handlerLock(m_handlerMutex
);
1304 if (m_iHandlerUseCount
> 0)
1305 --m_iHandlerUseCount
;
1308 bool CCECBusDevice::TryLogicalAddress(cec_version libCECSpecVersion
/* = CEC_VERSION_1_4 */)
1310 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "trying logical address '%s'", GetLogicalAddressName());
1312 if (!TransmitPoll(m_iLogicalAddress
, false))
1314 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "using logical address '%s'", GetLogicalAddressName());
1315 SetDeviceStatus(CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
, libCECSpecVersion
);
1320 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "logical address '%s' already taken", GetLogicalAddressName());
1321 SetDeviceStatus(CEC_DEVICE_STATUS_PRESENT
);
1325 CCECClient
*CCECBusDevice::GetClient(void)
1327 return m_processor
->GetClient(m_iLogicalAddress
);
1330 void CCECBusDevice::SignalOpcode(cec_opcode opcode
)
1332 m_waitForResponse
->Received(opcode
);
1335 bool CCECBusDevice::WaitForOpcode(cec_opcode opcode
)
1337 return m_waitForResponse
->Wait(opcode
);