2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
33 #include "CECBusDevice.h"
34 #include "../CECProcessor.h"
35 #include "../implementations/ANCommandHandler.h"
36 #include "../implementations/CECCommandHandler.h"
37 #include "../implementations/SLCommandHandler.h"
38 #include "../implementations/VLCommandHandler.h"
39 #include "../LibCEC.h"
40 #include "../platform/util/timeutils.h"
42 #include "CECAudioSystem.h"
43 #include "CECPlaybackDevice.h"
44 #include "CECRecordingDevice.h"
50 using namespace PLATFORM
;
52 #define LIB_CEC m_processor->GetLib()
53 #define ToString(p) LIB_CEC->ToString(p)
55 CCECBusDevice::CCECBusDevice(CCECProcessor
*processor
, cec_logical_address iLogicalAddress
, uint16_t iPhysicalAddress
/* = CEC_INVALID_PHYSICAL_ADDRESS */) :
56 m_type (CEC_DEVICE_TYPE_RESERVED
),
57 m_iPhysicalAddress (iPhysicalAddress
),
58 m_iStreamPath (CEC_INVALID_PHYSICAL_ADDRESS
),
59 m_iLogicalAddress (iLogicalAddress
),
60 m_powerStatus (CEC_POWER_STATUS_UNKNOWN
),
61 m_processor (processor
),
62 m_vendor (CEC_VENDOR_UNKNOWN
),
63 m_bReplaceHandler (false),
64 m_menuState (CEC_MENU_STATE_ACTIVATED
),
65 m_bActiveSource (false),
67 m_iLastPowerStateUpdate (0),
68 m_cecVersion (CEC_VERSION_UNKNOWN
),
69 m_deviceStatus (CEC_DEVICE_STATUS_UNKNOWN
),
70 m_iHandlerUseCount (0),
71 m_bAwaitingReceiveFailed(false),
72 m_bVendorIdRequested (false)
74 m_handler
= new CCECCommandHandler(this);
76 for (unsigned int iPtr
= 0; iPtr
< 4; iPtr
++)
77 m_menuLanguage
.language
[iPtr
] = '?';
78 m_menuLanguage
.language
[3] = 0;
79 m_menuLanguage
.device
= iLogicalAddress
;
81 m_strDeviceName
= ToString(m_iLogicalAddress
);
84 CCECBusDevice::~CCECBusDevice(void)
89 bool CCECBusDevice::ReplaceHandler(bool bActivateSource
/* = true */)
91 bool bInitHandler(false);
93 CTryLockObject
lock(m_mutex
);
97 CLockObject
handlerLock(m_handlerMutex
);
98 if (m_iHandlerUseCount
> 0)
103 if (m_vendor
!= m_handler
->GetVendorId())
105 if (CCECCommandHandler::HasSpecificHandler(m_vendor
))
107 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "replacing the command handler for device '%s' (%x)", GetLogicalAddressName(), GetLogicalAddress());
112 case CEC_VENDOR_SAMSUNG
:
113 m_handler
= new CANCommandHandler(this);
116 m_handler
= new CSLCommandHandler(this);
118 case CEC_VENDOR_PANASONIC
:
119 m_handler
= new CVLCommandHandler(this);
122 m_handler
= new CCECCommandHandler(this);
126 m_handler
->SetVendorId(m_vendor
);
134 m_handler
->InitHandler();
136 if (bActivateSource
&& IsHandledByLibCEC() && IsActiveSource())
137 m_handler
->ActivateSource();
145 bool CCECBusDevice::HandleCommand(const cec_command
&command
)
147 bool bHandled(false);
149 /* update "last active" */
151 CLockObject
lock(m_mutex
);
152 m_iLastActive
= GetTimeMs();
154 /* don't call GetStatus() here, just read the value with the mutex locked */
155 if (m_deviceStatus
!= CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
&& command
.opcode_set
== 1)
156 m_deviceStatus
= CEC_DEVICE_STATUS_PRESENT
;
161 /* handle the command */
162 bHandled
= m_handler
->HandleCommand(command
);
164 /* change status to present */
165 if (bHandled
&& GetLogicalAddress() != CECDEVICE_BROADCAST
)
167 CLockObject
lock(m_mutex
);
168 if (m_deviceStatus
!= CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
)
170 if (m_deviceStatus
!= CEC_DEVICE_STATUS_PRESENT
)
171 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "device %s (%x) status changed to present after command %s", GetLogicalAddressName(), (uint8_t)GetLogicalAddress(), ToString(command
.opcode
));
172 m_deviceStatus
= CEC_DEVICE_STATUS_PRESENT
;
180 const char* CCECBusDevice::GetLogicalAddressName(void) const
182 return ToString(m_iLogicalAddress
);
185 bool CCECBusDevice::IsPresent(void)
187 CLockObject
lock(m_mutex
);
188 return m_deviceStatus
== CEC_DEVICE_STATUS_PRESENT
;
191 bool CCECBusDevice::IsHandledByLibCEC(void)
193 CLockObject
lock(m_mutex
);
194 return m_deviceStatus
== CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
;
197 void CCECBusDevice::SetUnsupportedFeature(cec_opcode opcode
)
199 // some commands should never be marked as unsupported
200 if (opcode
== CEC_OPCODE_VENDOR_COMMAND
||
201 opcode
== CEC_OPCODE_VENDOR_COMMAND_WITH_ID
||
202 opcode
== CEC_OPCODE_VENDOR_REMOTE_BUTTON_DOWN
||
203 opcode
== CEC_OPCODE_VENDOR_REMOTE_BUTTON_UP
||
204 opcode
== CEC_OPCODE_ABORT
||
205 opcode
== CEC_OPCODE_FEATURE_ABORT
||
206 opcode
== CEC_OPCODE_NONE
)
210 CLockObject
lock(m_mutex
);
211 if (m_unsupportedFeatures
.find(opcode
) == m_unsupportedFeatures
.end())
213 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "marking opcode '%s' as unsupported feature for device '%s'", ToString(opcode
), GetLogicalAddressName());
214 m_unsupportedFeatures
.insert(opcode
);
218 // signal threads that are waiting for a reponse
220 m_handler
->SignalOpcode(cec_command::GetResponseOpcode(opcode
));
224 bool CCECBusDevice::IsUnsupportedFeature(cec_opcode opcode
)
226 CLockObject
lock(m_mutex
);
227 bool bUnsupported
= (m_unsupportedFeatures
.find(opcode
) != m_unsupportedFeatures
.end());
229 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "'%s' is marked as unsupported feature for device '%s'", ToString(opcode
), GetLogicalAddressName());
233 bool CCECBusDevice::TransmitKeypress(const cec_logical_address initiator
, cec_user_control_code key
, bool bWait
/* = true */)
236 bool bReturn
= m_handler
->TransmitKeypress(initiator
, m_iLogicalAddress
, key
, bWait
);
241 bool CCECBusDevice::TransmitKeyRelease(const cec_logical_address initiator
, bool bWait
/* = true */)
244 bool bReturn
= m_handler
->TransmitKeyRelease(initiator
, m_iLogicalAddress
, bWait
);
249 cec_version
CCECBusDevice::GetCecVersion(const cec_logical_address initiator
, bool bUpdate
/* = false */)
251 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
252 bool bRequestUpdate(false);
254 CLockObject
lock(m_mutex
);
255 bRequestUpdate
= bIsPresent
&&
256 (bUpdate
|| m_cecVersion
== CEC_VERSION_UNKNOWN
);
261 CheckVendorIdRequested(initiator
);
262 RequestCecVersion(initiator
);
265 CLockObject
lock(m_mutex
);
269 void CCECBusDevice::SetCecVersion(const cec_version newVersion
)
271 CLockObject
lock(m_mutex
);
272 if (m_cecVersion
!= newVersion
)
273 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): CEC version %s", GetLogicalAddressName(), m_iLogicalAddress
, ToString(newVersion
));
274 m_cecVersion
= newVersion
;
277 bool CCECBusDevice::RequestCecVersion(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
281 if (!IsHandledByLibCEC() &&
282 !IsUnsupportedFeature(CEC_OPCODE_GET_CEC_VERSION
))
285 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< requesting CEC version of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
286 bReturn
= m_handler
->TransmitRequestCecVersion(initiator
, m_iLogicalAddress
, bWaitForResponse
);
292 bool CCECBusDevice::TransmitCECVersion(const cec_logical_address destination
)
296 CLockObject
lock(m_mutex
);
297 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): cec version %s", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, ToString(m_cecVersion
));
298 version
= m_cecVersion
;
302 bool bReturn
= m_handler
->TransmitCECVersion(m_iLogicalAddress
, destination
, version
);
307 cec_menu_language
&CCECBusDevice::GetMenuLanguage(const cec_logical_address initiator
, bool bUpdate
/* = false */)
309 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
310 bool bRequestUpdate(false);
312 CLockObject
lock(m_mutex
);
313 bRequestUpdate
= (bIsPresent
&&
314 (bUpdate
|| !strcmp(m_menuLanguage
.language
, "???")));
319 CheckVendorIdRequested(initiator
);
320 RequestMenuLanguage(initiator
);
323 CLockObject
lock(m_mutex
);
324 return m_menuLanguage
;
327 void CCECBusDevice::SetMenuLanguage(const char *strLanguage
)
332 CLockObject
lock(m_mutex
);
333 if (strcmp(strLanguage
, m_menuLanguage
.language
))
335 memcpy(m_menuLanguage
.language
, strLanguage
, 3);
336 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %s (%X): menu language set to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, m_menuLanguage
.language
);
340 void CCECBusDevice::SetMenuLanguage(const cec_menu_language
&language
)
342 if (language
.device
== m_iLogicalAddress
)
343 SetMenuLanguage(language
.language
);
346 bool CCECBusDevice::RequestMenuLanguage(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
350 if (!IsHandledByLibCEC() &&
351 !IsUnsupportedFeature(CEC_OPCODE_GET_MENU_LANGUAGE
))
354 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< requesting menu language of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
355 bReturn
= m_handler
->TransmitRequestMenuLanguage(initiator
, m_iLogicalAddress
, bWaitForResponse
);
361 bool CCECBusDevice::TransmitSetMenuLanguage(const cec_logical_address destination
)
364 cec_menu_language language
;
366 CLockObject
lock(m_mutex
);
367 language
= m_menuLanguage
;
372 CLockObject
lock(m_mutex
);
373 lang
[0] = language
.language
[0];
374 lang
[1] = language
.language
[1];
375 lang
[2] = language
.language
[2];
379 if (lang
[0] == '?' && lang
[1] == '?' && lang
[2] == '?')
381 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): Menu language feature abort", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
);
382 m_processor
->TransmitAbort(m_iLogicalAddress
, destination
, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
);
387 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> broadcast (F): Menu language '%s'", GetLogicalAddressName(), m_iLogicalAddress
, lang
);
388 bReturn
= m_handler
->TransmitSetMenuLanguage(m_iLogicalAddress
, lang
);
394 bool CCECBusDevice::TransmitOSDString(const cec_logical_address destination
, cec_display_control duration
, const char *strMessage
)
397 if (!m_processor
->GetDevice(destination
)->IsUnsupportedFeature(CEC_OPCODE_SET_OSD_STRING
))
399 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): display OSD message '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, strMessage
);
401 bReturn
= m_handler
->TransmitOSDString(m_iLogicalAddress
, destination
, duration
, strMessage
);
407 CStdString
CCECBusDevice::GetOSDName(const cec_logical_address initiator
, bool bUpdate
/* = false */)
409 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
410 bool bRequestUpdate(false);
412 CLockObject
lock(m_mutex
);
413 bRequestUpdate
= bIsPresent
&&
414 (bUpdate
|| m_strDeviceName
.Equals(ToString(m_iLogicalAddress
))) &&
415 m_type
!= CEC_DEVICE_TYPE_TV
;
420 CheckVendorIdRequested(initiator
);
421 RequestOSDName(initiator
);
424 CLockObject
lock(m_mutex
);
425 return m_strDeviceName
;
428 void CCECBusDevice::SetOSDName(CStdString strName
)
430 CLockObject
lock(m_mutex
);
431 if (m_strDeviceName
!= strName
)
433 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %s (%X): osd name set to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, strName
.c_str());
434 m_strDeviceName
= strName
;
438 bool CCECBusDevice::RequestOSDName(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
442 if (!IsHandledByLibCEC() &&
443 !IsUnsupportedFeature(CEC_OPCODE_GIVE_OSD_NAME
))
446 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< requesting OSD name of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
447 bReturn
= m_handler
->TransmitRequestOSDName(initiator
, m_iLogicalAddress
, bWaitForResponse
);
453 bool CCECBusDevice::TransmitOSDName(const cec_logical_address destination
)
455 CStdString strDeviceName
;
457 CLockObject
lock(m_mutex
);
458 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): OSD name '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, m_strDeviceName
.c_str());
459 strDeviceName
= m_strDeviceName
;
463 bool bReturn
= m_handler
->TransmitOSDName(m_iLogicalAddress
, destination
, strDeviceName
);
468 bool CCECBusDevice::HasValidPhysicalAddress(void)
470 CLockObject
lock(m_mutex
);
471 return CLibCEC::IsValidPhysicalAddress(m_iPhysicalAddress
);
474 uint16_t CCECBusDevice::GetCurrentPhysicalAddress(void)
476 CLockObject
lock(m_mutex
);
477 return m_iPhysicalAddress
;
480 uint16_t CCECBusDevice::GetPhysicalAddress(const cec_logical_address initiator
, bool bSuppressUpdate
/* = false */)
482 if (!bSuppressUpdate
)
484 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
485 bool bRequestUpdate(false);
487 CLockObject
lock(m_mutex
);
488 bRequestUpdate
= bIsPresent
&& m_iPhysicalAddress
== CEC_INVALID_PHYSICAL_ADDRESS
;
493 CheckVendorIdRequested(initiator
);
494 if (!RequestPhysicalAddress(initiator
))
495 LIB_CEC
->AddLog(CEC_LOG_ERROR
, "failed to request the physical address");
499 CLockObject
lock(m_mutex
);
500 return m_iPhysicalAddress
;
503 bool CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress
)
505 CLockObject
lock(m_mutex
);
506 if (iNewAddress
> 0 && m_iPhysicalAddress
!= iNewAddress
)
508 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %s (%X): physical address changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress
, m_iPhysicalAddress
, iNewAddress
);
509 m_iPhysicalAddress
= iNewAddress
;
514 bool CCECBusDevice::RequestPhysicalAddress(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
518 if (!IsHandledByLibCEC())
521 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< requesting physical address of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
522 bReturn
= m_handler
->TransmitRequestPhysicalAddress(initiator
, m_iLogicalAddress
, bWaitForResponse
);
528 bool CCECBusDevice::TransmitPhysicalAddress(void)
530 uint16_t iPhysicalAddress
;
531 cec_device_type type
;
533 CLockObject
lock(m_mutex
);
534 if (m_iPhysicalAddress
== CEC_INVALID_PHYSICAL_ADDRESS
)
537 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> broadcast (F): physical adddress %4x", GetLogicalAddressName(), m_iLogicalAddress
, m_iPhysicalAddress
);
538 iPhysicalAddress
= m_iPhysicalAddress
;
543 bool bReturn
= m_handler
->TransmitPhysicalAddress(m_iLogicalAddress
, iPhysicalAddress
, type
);
548 cec_power_status
CCECBusDevice::GetCurrentPowerStatus(void)
550 CLockObject
lock(m_mutex
);
551 return m_powerStatus
;
554 cec_power_status
CCECBusDevice::GetPowerStatus(const cec_logical_address initiator
, bool bUpdate
/* = false */)
556 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
557 bool bRequestUpdate(false);
559 CLockObject
lock(m_mutex
);
560 bRequestUpdate
= (bIsPresent
&&
561 (bUpdate
|| m_powerStatus
== CEC_POWER_STATUS_UNKNOWN
||
562 m_powerStatus
== CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
||
563 m_powerStatus
== CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY
||
564 GetTimeMs() - m_iLastPowerStateUpdate
>= CEC_POWER_STATE_REFRESH_TIME
));
569 CheckVendorIdRequested(initiator
);
570 RequestPowerStatus(initiator
);
573 CLockObject
lock(m_mutex
);
574 return m_powerStatus
;
577 void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus
)
579 CLockObject
lock(m_mutex
);
580 if (m_powerStatus
!= powerStatus
)
582 m_iLastPowerStateUpdate
= GetTimeMs();
583 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %s (%X): power status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(m_powerStatus
), ToString(powerStatus
));
584 m_powerStatus
= powerStatus
;
588 bool CCECBusDevice::RequestPowerStatus(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
592 if (!IsHandledByLibCEC() &&
593 !IsUnsupportedFeature(CEC_OPCODE_GIVE_DEVICE_POWER_STATUS
))
596 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< requesting power status of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
597 bReturn
= m_handler
->TransmitRequestPowerStatus(initiator
, m_iLogicalAddress
, bWaitForResponse
);
603 bool CCECBusDevice::TransmitPowerState(const cec_logical_address destination
)
605 cec_power_status state
;
607 CLockObject
lock(m_mutex
);
608 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): %s", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, ToString(m_powerStatus
));
609 state
= m_powerStatus
;
613 bool bReturn
= m_handler
->TransmitPowerState(m_iLogicalAddress
, destination
, state
);
618 cec_vendor_id
CCECBusDevice::GetCurrentVendorId(void)
620 CLockObject
lock(m_mutex
);
624 cec_vendor_id
CCECBusDevice::GetVendorId(const cec_logical_address initiator
, bool bUpdate
/* = false */)
626 bool bIsPresent(GetStatus() == CEC_DEVICE_STATUS_PRESENT
);
627 bool bRequestUpdate(false);
629 CLockObject
lock(m_mutex
);
630 bRequestUpdate
= (bIsPresent
&&
631 (bUpdate
|| m_vendor
== CEC_VENDOR_UNKNOWN
));
635 RequestVendorId(initiator
);
637 CLockObject
lock(m_mutex
);
641 const char *CCECBusDevice::GetVendorName(const cec_logical_address initiator
, bool bUpdate
/* = false */)
643 return ToString(GetVendorId(initiator
, bUpdate
));
646 bool CCECBusDevice::SetVendorId(uint64_t iVendorId
)
648 bool bVendorChanged(false);
651 CLockObject
lock(m_mutex
);
652 bVendorChanged
= (m_vendor
!= (cec_vendor_id
)iVendorId
);
653 m_vendor
= (cec_vendor_id
)iVendorId
;
657 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%X): vendor = %s (%06x)", GetLogicalAddressName(), m_iLogicalAddress
, ToString(m_vendor
), m_vendor
);
659 return bVendorChanged
;
662 bool CCECBusDevice::RequestVendorId(const cec_logical_address initiator
, bool bWaitForResponse
/* = true */)
666 if (!IsHandledByLibCEC() && initiator
!= CECDEVICE_UNKNOWN
)
669 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
670 bReturn
= m_handler
->TransmitRequestVendorId(initiator
, m_iLogicalAddress
, bWaitForResponse
);
673 if (bWaitForResponse
)
674 ReplaceHandler(true);
679 bool CCECBusDevice::TransmitVendorID(const cec_logical_address destination
, bool bSendAbort
/* = true */)
684 CLockObject
lock(m_mutex
);
685 iVendorId
= (uint64_t)m_vendor
;
689 if (iVendorId
== CEC_VENDOR_UNKNOWN
)
693 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): vendor id feature abort", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
);
694 m_processor
->TransmitAbort(m_iLogicalAddress
, destination
, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID
);
700 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): vendor id %s (%x)", GetLogicalAddressName(), m_iLogicalAddress
, ToString(destination
), destination
, ToString((cec_vendor_id
)iVendorId
), iVendorId
);
701 bReturn
= m_handler
->TransmitVendorID(m_iLogicalAddress
, iVendorId
);
707 cec_bus_device_status
CCECBusDevice::GetStatus(bool bForcePoll
/* = false */, bool bSuppressPoll
/* = false */)
709 cec_bus_device_status
status(CEC_DEVICE_STATUS_UNKNOWN
);
710 bool bNeedsPoll(false);
713 CLockObject
lock(m_mutex
);
714 status
= m_deviceStatus
;
715 bNeedsPoll
= !bSuppressPoll
&&
716 (bForcePoll
|| m_deviceStatus
== CEC_DEVICE_STATUS_UNKNOWN
);
721 bool bPollAcked(false);
722 if (bNeedsPoll
&& NeedsPoll())
723 bPollAcked
= m_processor
->PollDevice(m_iLogicalAddress
);
725 status
= bPollAcked
? CEC_DEVICE_STATUS_PRESENT
: CEC_DEVICE_STATUS_NOT_PRESENT
;
726 SetDeviceStatus(status
);
732 void CCECBusDevice::SetDeviceStatus(const cec_bus_device_status newStatus
)
735 CLockObject
lock(m_mutex
);
738 case CEC_DEVICE_STATUS_UNKNOWN
:
739 if (m_deviceStatus
!= newStatus
)
740 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "device status of %s changed into 'unknown'", ToString(m_iLogicalAddress
));
742 m_deviceStatus
= newStatus
;
744 case CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
:
745 if (m_deviceStatus
!= newStatus
)
746 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "device status of %s changed into 'handled by libCEC'", ToString(m_iLogicalAddress
));
747 SetPowerStatus (CEC_POWER_STATUS_ON
);
748 SetVendorId (CEC_VENDOR_UNKNOWN
);
749 SetMenuState (CEC_MENU_STATE_ACTIVATED
);
750 SetCecVersion (CEC_VERSION_1_3A
);
751 SetStreamPath (CEC_INVALID_PHYSICAL_ADDRESS
);
752 MarkAsInactiveSource();
754 m_deviceStatus
= newStatus
;
756 case CEC_DEVICE_STATUS_PRESENT
:
757 if (m_deviceStatus
!= newStatus
)
758 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "device status of %s changed into 'present'", ToString(m_iLogicalAddress
));
759 m_deviceStatus
= newStatus
;
761 case CEC_DEVICE_STATUS_NOT_PRESENT
:
762 if (m_deviceStatus
!= newStatus
)
764 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "device status of %s changed into 'not present'", ToString(m_iLogicalAddress
));
766 m_deviceStatus
= newStatus
;
773 void CCECBusDevice::ResetDeviceStatus(void)
775 CLockObject
lock(m_mutex
);
776 SetPowerStatus (CEC_POWER_STATUS_UNKNOWN
);
777 SetVendorId (CEC_VENDOR_UNKNOWN
);
778 SetMenuState (CEC_MENU_STATE_ACTIVATED
);
779 SetCecVersion (CEC_VERSION_UNKNOWN
);
780 SetStreamPath (CEC_INVALID_PHYSICAL_ADDRESS
);
781 SetOSDName (ToString(m_iLogicalAddress
));
782 MarkAsInactiveSource();
784 m_bVendorIdRequested
= false;
785 m_unsupportedFeatures
.clear();
788 bool CCECBusDevice::TransmitPoll(const cec_logical_address dest
)
791 cec_logical_address
destination(dest
);
792 if (destination
== CECDEVICE_UNKNOWN
)
793 destination
= m_iLogicalAddress
;
795 CCECBusDevice
*destDevice
= m_processor
->GetDevice(destination
);
796 if (destDevice
->m_deviceStatus
== CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
)
800 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): POLL", GetLogicalAddressName(), m_iLogicalAddress
, ToString(dest
), dest
);
801 bReturn
= m_handler
->TransmitPoll(m_iLogicalAddress
, destination
);
802 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, bReturn
? ">> POLL sent" : ">> POLL not sent");
804 CLockObject
lock(m_mutex
);
807 m_iLastActive
= GetTimeMs();
808 destDevice
->m_deviceStatus
= CEC_DEVICE_STATUS_PRESENT
;
811 destDevice
->m_deviceStatus
= CEC_DEVICE_STATUS_NOT_PRESENT
;
817 void CCECBusDevice::HandlePoll(const cec_logical_address destination
)
819 if (destination
>= 0 && destination
< CECDEVICE_BROADCAST
)
821 CCECBusDevice
*device
= m_processor
->GetDevice(destination
);
823 device
->HandlePollFrom(m_iLogicalAddress
);
827 void CCECBusDevice::HandlePollFrom(const cec_logical_address initiator
)
829 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< POLL: %s (%x) -> %s (%x)", ToString(initiator
), initiator
, ToString(m_iLogicalAddress
), m_iLogicalAddress
);
830 m_bAwaitingReceiveFailed
= true;
833 bool CCECBusDevice::HandleReceiveFailed(void)
835 bool bReturn
= m_bAwaitingReceiveFailed
;
836 m_bAwaitingReceiveFailed
= false;
840 cec_menu_state
CCECBusDevice::GetMenuState(const cec_logical_address
UNUSED(initiator
))
842 CLockObject
lock(m_mutex
);
846 void CCECBusDevice::SetMenuState(const cec_menu_state state
)
848 CLockObject
lock(m_mutex
);
849 if (m_menuState
!= state
)
851 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %s (%X): menu state set to '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(m_menuState
));
856 bool CCECBusDevice::TransmitMenuState(const cec_logical_address dest
)
858 cec_menu_state menuState
;
860 CLockObject
lock(m_mutex
);
861 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> %s (%X): menu state '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(dest
), dest
, ToString(m_menuState
));
862 menuState
= m_menuState
;
866 bool bReturn
= m_handler
->TransmitMenuState(m_iLogicalAddress
, dest
, menuState
);
871 bool CCECBusDevice::ActivateSource(void)
873 MarkAsActiveSource();
874 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "activating source '%s'", ToString(m_iLogicalAddress
));
876 bool bReturn
= m_handler
->ActivateSource();
881 bool CCECBusDevice::RequestActiveSource(bool bWaitForResponse
/* = true */)
885 if (IsHandledByLibCEC())
888 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< requesting active source");
890 bReturn
= m_handler
->TransmitRequestActiveSource(m_iLogicalAddress
, bWaitForResponse
);
896 void CCECBusDevice::MarkAsActiveSource(void)
898 CLockObject
lock(m_mutex
);
899 if (!m_bActiveSource
)
900 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "making %s (%x) the active source", GetLogicalAddressName(), m_iLogicalAddress
);
902 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "%s (%x) was already marked as active source", GetLogicalAddressName(), m_iLogicalAddress
);
904 CECDEVICEVEC devices
;
905 m_processor
->GetDevices()->Get(devices
);
906 for (CECDEVICEVEC::iterator it
= devices
.begin(); it
!= devices
.end(); it
++)
907 if ((*it
)->GetLogicalAddress() != m_iLogicalAddress
)
908 (*it
)->MarkAsInactiveSource();
910 m_bActiveSource
= true;
911 SetPowerStatus(CEC_POWER_STATUS_ON
);
914 void CCECBusDevice::MarkAsInactiveSource(void)
917 CLockObject
lock(m_mutex
);
919 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "marking %s (%X) as inactive source", GetLogicalAddressName(), m_iLogicalAddress
);
920 m_bActiveSource
= false;
924 bool CCECBusDevice::TransmitActiveSource(void)
926 bool bSendActiveSource(false);
929 CLockObject
lock(m_mutex
);
930 if (m_powerStatus
!= CEC_POWER_STATUS_ON
&& m_powerStatus
!= CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
)
931 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) is not powered on", GetLogicalAddressName(), m_iLogicalAddress
);
932 else if (m_bActiveSource
)
934 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> broadcast (F): active source (%4x)", GetLogicalAddressName(), m_iLogicalAddress
, m_iPhysicalAddress
);
935 bSendActiveSource
= true;
938 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) is not the active source", GetLogicalAddressName(), m_iLogicalAddress
);
941 if (bSendActiveSource
)
944 m_handler
->TransmitActiveSource(m_iLogicalAddress
, m_iPhysicalAddress
);
952 bool CCECBusDevice::TransmitImageViewOn(void)
955 CLockObject
lock(m_mutex
);
956 if (m_powerStatus
!= CEC_POWER_STATUS_ON
&& m_powerStatus
!= CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
)
958 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< %s (%X) is not powered on", GetLogicalAddressName(), m_iLogicalAddress
);
964 m_handler
->TransmitImageViewOn(m_iLogicalAddress
, CECDEVICE_TV
);
969 bool CCECBusDevice::TransmitInactiveSource(void)
971 uint16_t iPhysicalAddress
;
973 CLockObject
lock(m_mutex
);
974 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< %s (%X) -> broadcast (F): inactive source", GetLogicalAddressName(), m_iLogicalAddress
);
975 iPhysicalAddress
= m_iPhysicalAddress
;
979 bool bReturn
= m_handler
->TransmitInactiveSource(m_iLogicalAddress
, iPhysicalAddress
);
984 bool CCECBusDevice::TransmitPendingActiveSourceCommands(void)
987 bool bReturn
= m_handler
->TransmitPendingActiveSourceCommands();
992 void CCECBusDevice::SetStreamPath(uint16_t iNewAddress
, uint16_t iOldAddress
/* = CEC_INVALID_PHYSICAL_ADDRESS */)
994 CLockObject
lock(m_mutex
);
995 if (iNewAddress
!= m_iStreamPath
)
997 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, ">> %s (%X): stream path changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress
, iOldAddress
== 0 ? m_iStreamPath
: iOldAddress
, iNewAddress
);
998 m_iStreamPath
= iNewAddress
;
1001 if (!LIB_CEC
->IsValidPhysicalAddress(iNewAddress
))
1004 CCECBusDevice
*device
= m_processor
->GetDeviceByPhysicalAddress(iNewAddress
);
1007 // if a device is found with the new physical address, mark it as active, which will automatically mark all other devices as inactive
1008 device
->MarkAsActiveSource();
1012 // try to find the device with the old address, and mark it as inactive when found
1013 device
= m_processor
->GetDeviceByPhysicalAddress(iOldAddress
);
1015 device
->MarkAsInactiveSource();
1019 bool CCECBusDevice::PowerOn(const cec_logical_address initiator
)
1021 bool bReturn(false);
1022 GetVendorId(initiator
); // ensure that we got the vendor id, because the implementations vary per vendor
1025 cec_power_status currentStatus
= GetPowerStatus(initiator
, false);
1026 if (currentStatus
!= CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
&&
1027 currentStatus
!= CEC_POWER_STATUS_ON
)
1029 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "<< powering on '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress
);
1030 if (m_handler
->PowerOn(initiator
, m_iLogicalAddress
))
1032 SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON
);
1038 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "'%s' (%X) is already '%s'", GetLogicalAddressName(), m_iLogicalAddress
, ToString(currentStatus
));
1045 bool CCECBusDevice::Standby(const cec_logical_address initiator
)
1047 GetVendorId(initiator
); // ensure that we got the vendor id, because the implementations vary per vendor
1049 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "<< putting '%s' (%X) in standby mode", GetLogicalAddressName(), m_iLogicalAddress
);
1051 bool bReturn
= m_handler
->TransmitStandby(initiator
, m_iLogicalAddress
);
1056 bool CCECBusDevice::NeedsPoll(void)
1058 bool bSendPoll(false);
1059 cec_logical_address
pollAddress(CECDEVICE_UNKNOWN
);
1060 switch (m_iLogicalAddress
)
1062 case CECDEVICE_PLAYBACKDEVICE3
:
1063 pollAddress
= CECDEVICE_PLAYBACKDEVICE2
;
1065 case CECDEVICE_PLAYBACKDEVICE2
:
1066 pollAddress
= CECDEVICE_PLAYBACKDEVICE1
;
1068 case CECDEVICE_RECORDINGDEVICE3
:
1069 pollAddress
= CECDEVICE_RECORDINGDEVICE2
;
1071 case CECDEVICE_RECORDINGDEVICE2
:
1072 pollAddress
= CECDEVICE_RECORDINGDEVICE1
;
1074 case CECDEVICE_TUNER4
:
1075 pollAddress
= CECDEVICE_TUNER3
;
1077 case CECDEVICE_TUNER3
:
1078 pollAddress
= CECDEVICE_TUNER2
;
1080 case CECDEVICE_TUNER2
:
1081 pollAddress
= CECDEVICE_TUNER1
;
1083 case CECDEVICE_AUDIOSYSTEM
:
1084 case CECDEVICE_PLAYBACKDEVICE1
:
1085 case CECDEVICE_RECORDINGDEVICE1
:
1086 case CECDEVICE_TUNER1
:
1094 if (!bSendPoll
&& pollAddress
!= CECDEVICE_UNKNOWN
)
1096 CCECBusDevice
*device
= m_processor
->GetDevice(pollAddress
);
1099 cec_bus_device_status status
= device
->GetStatus();
1100 bSendPoll
= (status
== CEC_DEVICE_STATUS_PRESENT
|| status
== CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
);
1111 void CCECBusDevice::CheckVendorIdRequested(const cec_logical_address initiator
)
1113 bool bRequestVendorId(false);
1115 CLockObject
lock(m_mutex
);
1116 bRequestVendorId
= !m_bVendorIdRequested
;
1117 m_bVendorIdRequested
= true;
1120 if (bRequestVendorId
)
1122 ReplaceHandler(false);
1123 GetVendorId(initiator
);
1128 CCECAudioSystem
*CCECBusDevice::AsAudioSystem(void)
1130 return AsAudioSystem(this);
1133 CCECPlaybackDevice
*CCECBusDevice::AsPlaybackDevice(void)
1135 return AsPlaybackDevice(this);
1138 CCECRecordingDevice
*CCECBusDevice::AsRecordingDevice(void)
1140 return AsRecordingDevice(this);
1143 CCECTuner
*CCECBusDevice::AsTuner(void)
1145 return AsTuner(this);
1148 CCECTV
*CCECBusDevice::AsTV(void)
1153 CCECAudioSystem
*CCECBusDevice::AsAudioSystem(CCECBusDevice
*device
)
1155 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_AUDIO_SYSTEM
)
1156 return static_cast<CCECAudioSystem
*>(device
);
1160 CCECPlaybackDevice
*CCECBusDevice::AsPlaybackDevice(CCECBusDevice
*device
)
1163 (device
->GetType() == CEC_DEVICE_TYPE_PLAYBACK_DEVICE
||
1164 device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
))
1165 return static_cast<CCECPlaybackDevice
*>(device
);
1169 CCECRecordingDevice
*CCECBusDevice::AsRecordingDevice(CCECBusDevice
*device
)
1171 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_RECORDING_DEVICE
)
1172 return static_cast<CCECRecordingDevice
*>(device
);
1176 CCECTuner
*CCECBusDevice::AsTuner(CCECBusDevice
*device
)
1178 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_TUNER
)
1179 return static_cast<CCECTuner
*>(device
);
1183 CCECTV
*CCECBusDevice::AsTV(CCECBusDevice
*device
)
1185 if (device
&& device
->GetType() == CEC_DEVICE_TYPE_TV
)
1186 return static_cast<CCECTV
*>(device
);
1190 void CCECBusDevice::MarkBusy(void)
1192 CLockObject
handlerLock(m_handlerMutex
);
1193 ++m_iHandlerUseCount
;
1196 void CCECBusDevice::MarkReady(void)
1198 CLockObject
handlerLock(m_handlerMutex
);
1199 if (m_iHandlerUseCount
> 0)
1200 --m_iHandlerUseCount
;
1203 bool CCECBusDevice::TryLogicalAddress(void)
1205 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "trying logical address '%s'", GetLogicalAddressName());
1207 if (!TransmitPoll(m_iLogicalAddress
))
1209 LIB_CEC
->AddLog(CEC_LOG_NOTICE
, "using logical address '%s'", GetLogicalAddressName());
1210 SetDeviceStatus(CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC
);
1215 LIB_CEC
->AddLog(CEC_LOG_DEBUG
, "logical address '%s' already taken", GetLogicalAddressName());
1216 SetDeviceStatus(CEC_DEVICE_STATUS_PRESENT
);
1220 CCECClient
*CCECBusDevice::GetClient(void)
1222 return m_processor
->GetClient(m_iLogicalAddress
);