X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECPlaybackDevice.cpp;h=1beed4f37221cdfdce1e74127b07c377afcf7198;hb=ebefc26c10d68ba9ced2a30c896dccc81c6c2eeb;hp=112ebf778513c45cc3a44bf008ea36ebf8f3f2d4;hpb=5606e90bb3c5a85ab8e29e639e8248581247699e;p=deb_libcec.git diff --git a/src/lib/devices/CECPlaybackDevice.cpp b/src/lib/devices/CECPlaybackDevice.cpp index 112ebf7..1beed4f 100644 --- a/src/lib/devices/CECPlaybackDevice.cpp +++ b/src/lib/devices/CECPlaybackDevice.cpp @@ -1,7 +1,7 @@ /* * This file is part of the libCEC(R) library. * - * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved. + * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved. * libCEC(R) is an original work, containing original code. * * libCEC(R) is a trademark of Pulse-Eight Limited. @@ -33,12 +33,15 @@ #include "CECPlaybackDevice.h" #include "../implementations/CECCommandHandler.h" #include "../CECProcessor.h" +#include "../LibCEC.h" +#include "../CECTypeUtils.h" using namespace CEC; +using namespace PLATFORM; -#define ToString(p) m_processor->ToString(p) +#define ToString(p) CCECTypeUtils::ToString(p) -CCECPlaybackDevice::CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress /* = 0 */) : +CCECPlaybackDevice::CCECPlaybackDevice(CCECProcessor *processor, cec_logical_address address, uint16_t iPhysicalAddress /* = CEC_INVALID_PHYSICAL_ADDRESS */) : CCECBusDevice(processor, address, iPhysicalAddress), m_deckStatus(CEC_DECK_INFO_STOP), m_deckControlMode(CEC_DECK_CONTROL_MODE_STOP) @@ -46,54 +49,54 @@ CCECPlaybackDevice::CCECPlaybackDevice(CCECProcessor *processor, cec_logical_add m_type = CEC_DEVICE_TYPE_PLAYBACK_DEVICE; } -cec_deck_info CCECPlaybackDevice::GetDeckStatus(void) +cec_deck_info CCECPlaybackDevice::GetDeckStatus(const cec_logical_address UNUSED(initiator)) { - CLockObject lock(&m_mutex); + CLockObject lock(m_mutex); return m_deckStatus; } void CCECPlaybackDevice::SetDeckStatus(cec_deck_info deckStatus) { - CLockObject lock(&m_writeMutex); - if (m_deckStatus != deckStatus && m_deckStatus != CEC_DECK_INFO_OTHER_STATUS_LG) + CLockObject lock(m_mutex); + if (m_deckStatus != deckStatus) { - CStdString strLog; - strLog.Format(">> %s (%X): deck status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_deckStatus), ToString(deckStatus)); - AddLog(CEC_LOG_DEBUG, strLog.c_str()); - + m_processor->GetLib()->AddLog(CEC_LOG_DEBUG, ">> %s (%X): deck status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_deckStatus), ToString(deckStatus)); m_deckStatus = deckStatus; } } -cec_deck_control_mode CCECPlaybackDevice::GetDeckControlMode(void) +cec_deck_control_mode CCECPlaybackDevice::GetDeckControlMode(const cec_logical_address UNUSED(initiator)) { - CLockObject lock(&m_mutex); + CLockObject lock(m_mutex); return m_deckControlMode; } void CCECPlaybackDevice::SetDeckControlMode(cec_deck_control_mode mode) { - CLockObject lock(&m_writeMutex); + CLockObject lock(m_mutex); if (m_deckControlMode != mode) { - CStdString strLog; - strLog.Format(">> %s (%X): deck control mode changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_deckControlMode), ToString(mode)); - AddLog(CEC_LOG_DEBUG, strLog.c_str()); - + m_processor->GetLib()->AddLog(CEC_LOG_DEBUG, ">> %s (%X): deck control mode changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_deckControlMode), ToString(mode)); m_deckControlMode = mode; } } bool CCECPlaybackDevice::TransmitDeckStatus(cec_logical_address dest) { - CLockObject lock(&m_writeMutex); - CStdString strLog; - strLog.Format("<< %s (%X) -> %s (%X): deck status '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_deckStatus)); - AddLog(CEC_LOG_NOTICE, strLog); + cec_deck_info state; + { + CLockObject lock(m_mutex); + m_processor->GetLib()->AddLog(CEC_LOG_NOTICE, "<< %s (%X) -> %s (%X): deck status '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_deckStatus)); + state = m_deckStatus; + } - cec_command command; - cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_DECK_STATUS); - command.PushBack((uint8_t)m_deckStatus); + return m_handler->TransmitDeckStatus(m_iLogicalAddress, dest, state); +} - return m_processor->Transmit(command); +void CCECPlaybackDevice::ResetDeviceStatus(void) +{ + CLockObject lock(m_mutex); + m_deckStatus = CEC_DECK_INFO_STOP; + m_deckControlMode = CEC_DECK_CONTROL_MODE_STOP; + CCECBusDevice::ResetDeviceStatus(); }