X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECBusDevice.cpp;h=1fca4a513f04ce99073210d31c0586e806a8374e;hb=88e5de6f3e5f0f0ff13f47490c364aa68b5e773c;hp=f89d730c47d56b1ba70e3d74a70ab6eedf43b5cf;hpb=eafa9d4684e6298481b82923799a750b26852da1;p=deb_libcec.git diff --git a/src/lib/devices/CECBusDevice.cpp b/src/lib/devices/CECBusDevice.cpp index f89d730..1fca4a5 100644 --- a/src/lib/devices/CECBusDevice.cpp +++ b/src/lib/devices/CECBusDevice.cpp @@ -35,26 +35,157 @@ #include "../implementations/ANCommandHandler.h" #include "../implementations/CECCommandHandler.h" #include "../implementations/SLCommandHandler.h" +#include "../implementations/VLCommandHandler.h" #include "../platform/timeutils.h" using namespace CEC; +#define ToString(p) CCECCommandHandler::ToString(p) + CCECBusDevice::CCECBusDevice(CCECProcessor *processor, cec_logical_address iLogicalAddress, uint16_t iPhysicalAddress) : + m_type(CEC_DEVICE_TYPE_RESERVED), m_iPhysicalAddress(iPhysicalAddress), + m_iStreamPath(0), m_iLogicalAddress(iLogicalAddress), + m_powerStatus(CEC_POWER_STATUS_UNKNOWN), m_processor(processor), - m_iVendorId(0), - m_iVendorClass(CEC_VENDOR_UNKNOWN), - m_iLastActive(0) + m_vendor(CEC_VENDOR_UNKNOWN), + m_menuState(CEC_MENU_STATE_ACTIVATED), + m_bActiveSource(false), + m_iLastCommandSent(0), + m_iLastActive(0), + m_cecVersion(CEC_VERSION_UNKNOWN) { m_handler = new CCECCommandHandler(this); + + for (unsigned int iPtr = 0; iPtr < 4; iPtr++) + m_menuLanguage.language[iPtr] = '?'; + m_menuLanguage.language[3] = 0; + m_menuLanguage.device = iLogicalAddress; + + m_strDeviceName = ToString(m_iLogicalAddress); } CCECBusDevice::~CCECBusDevice(void) { + m_condition.Broadcast(); delete m_handler; } +void CCECBusDevice::AddLog(cec_log_level level, const CStdString &strMessage) +{ + m_processor->AddLog(level, strMessage); +} + +bool CCECBusDevice::HandleCommand(const cec_command &command) +{ + CLockObject lock(&m_mutex); + m_iLastActive = GetTimeMs(); + m_handler->HandleCommand(command); + m_condition.Signal(); + return true; +} + +void CCECBusDevice::PollVendorId(void) +{ + CLockObject lock(&m_mutex); + if (m_iLastActive > 0 && m_iLogicalAddress != CECDEVICE_BROADCAST && + m_vendor == CEC_VENDOR_UNKNOWN && + GetTimeMs() - m_iLastCommandSent > 5000 && + !m_processor->IsMonitoring()) + { + CStdString strLog; + strLog.Format("<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + m_iLastCommandSent = GetTimeMs(); + + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); + if (m_processor->Transmit(command)) + m_condition.Wait(&m_mutex, 1000); + } +} + +bool CCECBusDevice::PowerOn(void) +{ + cec_power_status current = GetPowerStatus(); + if (current != CEC_POWER_STATUS_ON && + current != CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON) + { + CStdString strLog; + strLog.Format("<< powering on '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); + + SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON); + + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_IMAGE_VIEW_ON); + + return m_processor->Transmit(command); + } + + return true; +} + +bool CCECBusDevice::Standby(void) +{ + CStdString strLog; + strLog.Format("<< putting '%s' (%X) in standby mode", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); + + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_STANDBY); + + return m_processor->Transmit(command); +} + +/** @name Getters */ +//@{ +cec_version CCECBusDevice::GetCecVersion(void) +{ + if (m_cecVersion == CEC_VERSION_UNKNOWN) + { + if (!MyLogicalAddressContains(m_iLogicalAddress)) + { + CStdString strLog; + strLog.Format("<< requesting CEC version of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GET_CEC_VERSION); + CLockObject lock(&m_mutex); + if (m_processor->Transmit(command)) + m_condition.Wait(&m_mutex, 1000); + } + } + + return m_cecVersion; +} + +const char* CCECBusDevice::GetLogicalAddressName(void) const +{ + return ToString(m_iLogicalAddress); +} + +cec_menu_language &CCECBusDevice::GetMenuLanguage(void) +{ + if (!strcmp(m_menuLanguage.language, "???")) + { + if (!MyLogicalAddressContains(m_iLogicalAddress)) + { + CStdString strLog; + strLog.Format("<< requesting menu language of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GET_MENU_LANGUAGE); + CLockObject lock(&m_mutex); + if (m_processor->Transmit(command)) + m_condition.Wait(&m_mutex, 1000); + } + } + + return m_menuLanguage; +} + cec_logical_address CCECBusDevice::GetMyLogicalAddress(void) const { return m_processor->GetLogicalAddress(); @@ -65,15 +196,134 @@ uint16_t CCECBusDevice::GetMyPhysicalAddress(void) const return m_processor->GetPhysicalAddress(); } -void CCECBusDevice::AddLog(cec_log_level level, const CStdString &strMessage) +cec_power_status CCECBusDevice::GetPowerStatus(void) { - m_processor->AddLog(level, strMessage); + if (m_powerStatus == CEC_POWER_STATUS_UNKNOWN) + { + if (!MyLogicalAddressContains(m_iLogicalAddress)) + { + CStdString strLog; + strLog.Format("<< requesting power status of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_POWER_STATUS); + CLockObject lock(&m_mutex); + if (m_processor->Transmit(command)) + m_condition.Wait(&m_mutex, 1000); + } + } + + return m_powerStatus; +} + +const cec_vendor_id CCECBusDevice::GetVendorId(void) +{ + if (m_vendor == CEC_VENDOR_UNKNOWN) + { + if (!MyLogicalAddressContains(m_iLogicalAddress)) + { + CStdString strLog; + strLog.Format("<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); + CLockObject lock(&m_mutex); + + if (m_processor->Transmit(command)) + m_condition.Wait(&m_mutex, 1000); + } + } + + return m_vendor; +} + +const char *CCECBusDevice::GetVendorName(void) +{ + GetVendorId(); + return ToString(m_vendor); +} + +bool CCECBusDevice::MyLogicalAddressContains(cec_logical_address address) const +{ + return m_processor->HasLogicalAddress(address); +} + +//@} + +/** @name Setters */ +//@{ +void CCECBusDevice::SetCecVersion(const cec_version newVersion) +{ + m_cecVersion = newVersion; + + CStdString strLog; + strLog.Format("%s (%X): CEC version %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(newVersion)); + AddLog(CEC_LOG_DEBUG, strLog); +} + +void CCECBusDevice::SetMenuLanguage(const cec_menu_language &language) +{ + if (language.device == m_iLogicalAddress) + { + CStdString strLog; + strLog.Format(">> %s (%X): menu language set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, language.language); + m_processor->AddLog(CEC_LOG_DEBUG, strLog); + m_menuLanguage = language; + } +} + +void CCECBusDevice::SetMenuState(const cec_menu_state state) +{ + if (m_menuState != state) + { + CStdString strLog; + strLog.Format(">> %s (%X): menu state set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_menuState)); + m_processor->AddLog(CEC_LOG_DEBUG, strLog); + m_menuState = state; + } } -void CCECBusDevice::SetVendorId(uint64_t iVendorId, uint8_t iVendorClass /* = 0 */) +void CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress) { - m_iVendorId = iVendorId; - m_iVendorClass = iVendorClass; + if (iNewAddress > 0) + { + CStdString strLog; + strLog.Format(">> %s (%X): physical address changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress, iNewAddress); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); + + m_iPhysicalAddress = iNewAddress; + } +} + +void CCECBusDevice::SetStreamPath(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */) +{ + if (iNewAddress > 0) + { + CStdString strLog; + strLog.Format(">> %s (%X): stream path changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress, iOldAddress, iNewAddress); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); + + m_iStreamPath = iNewAddress; + + if (iNewAddress > 0) + SetPowerStatus(CEC_POWER_STATUS_ON); + } +} + +void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus) +{ + if (m_powerStatus != powerStatus) + { + CStdString strLog; + strLog.Format(">> %s (%X): power status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_powerStatus), ToString(powerStatus)); + m_processor->AddLog(CEC_LOG_DEBUG, strLog); + m_powerStatus = powerStatus; + } +} + +void CCECBusDevice::SetVendorId(uint64_t iVendorId) +{ + m_vendor = (cec_vendor_id)iVendorId; switch (iVendorId) { @@ -91,6 +341,13 @@ void CCECBusDevice::SetVendorId(uint64_t iVendorId, uint8_t iVendorClass /* = 0 m_handler = new CSLCommandHandler(this); } break; + case CEC_VENDOR_PANASONIC: + if (m_handler->GetVendorId() != CEC_VENDOR_PANASONIC) + { + delete m_handler; + m_handler = new CVLCommandHandler(this); + } + break; default: if (m_handler->GetVendorId() != CEC_VENDOR_UNKNOWN) { @@ -101,50 +358,190 @@ void CCECBusDevice::SetVendorId(uint64_t iVendorId, uint8_t iVendorClass /* = 0 } CStdString strLog; - strLog.Format("device %d: vendor = %s (%04x) class = %2x", m_iLogicalAddress, GetVendorName(), GetVendorId(), GetVendorClass()); + strLog.Format("%s (%X): vendor = %s (%06x)", GetLogicalAddressName(), m_iLogicalAddress, GetVendorName(), GetVendorId()); m_processor->AddLog(CEC_LOG_DEBUG, strLog.c_str()); } +//@} -bool CCECBusDevice::HandleCommand(const cec_command &command) +/** @name Transmit methods */ +//@{ +bool CCECBusDevice::TransmitActiveSource(void) { - CLockObject lock(&m_mutex); - m_iLastActive = GetTimeMs(); - m_handler->HandleCommand(command); - return true; + if (m_powerStatus != CEC_POWER_STATUS_ON) + { + CStdString strLog; + strLog.Format("<< %s (%X) is not powered on", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_DEBUG, strLog); + } + else if (m_bActiveSource) + { + CStdString strLog; + strLog.Format("<< %s (%X) -> broadcast (F): active source (%4x)", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE); + command.parameters.PushBack((uint8_t) ((m_iPhysicalAddress >> 8) & 0xFF)); + command.parameters.PushBack((uint8_t) (m_iPhysicalAddress & 0xFF)); + + return m_processor->Transmit(command); + } + else + { + CStdString strLog; + strLog.Format("<< %s (%X) is not the active source", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_DEBUG, strLog); + } + + return false; } -void CCECBusDevice::PollVendorId(void) +bool CCECBusDevice::TransmitCECVersion(cec_logical_address dest) +{ + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): cec version %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_cecVersion)); + AddLog(CEC_LOG_NOTICE, strLog); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_CEC_VERSION); + command.parameters.PushBack((uint8_t)m_cecVersion); + + return m_processor->Transmit(command); +} + +bool CCECBusDevice::TransmitInactiveView(void) +{ + CStdString strLog; + strLog.Format("<< %s (%X) -> broadcast (F): inactive view", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_INACTIVE_SOURCE); + command.parameters.PushBack((m_iPhysicalAddress >> 8) & 0xFF); + command.parameters.PushBack(m_iPhysicalAddress & 0xFF); + + return m_processor->Transmit(command); +} + +bool CCECBusDevice::TransmitMenuState(cec_logical_address dest) { + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): menu state '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_menuState)); + AddLog(CEC_LOG_NOTICE, strLog); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_MENU_STATUS); + command.parameters.PushBack((uint8_t)m_menuState); + + return m_processor->Transmit(command); +} + +bool CCECBusDevice::TransmitOSDName(cec_logical_address dest) +{ + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): OSD name '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, m_strDeviceName.c_str()); + AddLog(CEC_LOG_NOTICE, strLog.c_str()); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_SET_OSD_NAME); + for (unsigned int iPtr = 0; iPtr < m_strDeviceName.length(); iPtr++) + command.parameters.PushBack(m_strDeviceName.at(iPtr)); + + return m_processor->Transmit(command); +} + +bool CCECBusDevice::TransmitOSDString(cec_logical_address dest, cec_display_control duration, const char *strMessage) +{ + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): display OSD message '%s'", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, strMessage); + AddLog(CEC_LOG_NOTICE, strLog.c_str()); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_SET_OSD_STRING); + command.parameters.PushBack((uint8_t)duration); + + unsigned int iLen = strlen(strMessage); + if (iLen > 13) iLen = 13; + + for (unsigned int iPtr = 0; iPtr < iLen; iPtr++) + command.parameters.PushBack(strMessage[iPtr]); + + return m_processor->Transmit(command); +} + +bool CCECBusDevice::TransmitPhysicalAddress(void) +{ + CStdString strLog; + strLog.Format("<< %s (%X) -> broadcast (F): physical adddress %4x", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress); + AddLog(CEC_LOG_NOTICE, strLog.c_str()); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_REPORT_PHYSICAL_ADDRESS); + command.parameters.PushBack((uint8_t) ((m_iPhysicalAddress >> 8) & 0xFF)); + command.parameters.PushBack((uint8_t) (m_iPhysicalAddress & 0xFF)); + command.parameters.PushBack((uint8_t) (m_type)); + + return m_processor->Transmit(command); +} + +bool CCECBusDevice::TransmitPoll(cec_logical_address dest) +{ + bool bReturn(false); + + if (dest == CECDEVICE_UNKNOWN) + dest = m_iLogicalAddress; + + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): POLL", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest); + AddLog(CEC_LOG_NOTICE, strLog.c_str()); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_NONE); CLockObject lock(&m_mutex); - if (m_iLastActive > 0 && m_iVendorId == CEC_VENDOR_UNKNOWN && - GetTimeMs() - m_iLastActive > 5000) - { - m_iLastActive = GetTimeMs(); - cec_command command; - cec_command::format(command, GetMyLogicalAddress(), GetLogicalAddress(), CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); - m_processor->Transmit(command, false); - } + bReturn = m_processor->Transmit(command); + AddLog(CEC_LOG_DEBUG, bReturn ? ">> POLL sent" : ">> POLL not sent"); + return bReturn; } -void CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */) +bool CCECBusDevice::TransmitPowerState(cec_logical_address dest) { CStdString strLog; - strLog.Format(">> %i changed physical address from %04x to %04x", GetLogicalAddress(), m_iPhysicalAddress, iNewAddress); - AddLog(CEC_LOG_DEBUG, strLog.c_str()); + strLog.Format("<< %s (%X) -> %s (%X): %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_powerStatus)); + AddLog(CEC_LOG_NOTICE, strLog.c_str()); - m_iPhysicalAddress = iNewAddress; + cec_command command; + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_REPORT_POWER_STATUS); + command.parameters.PushBack((uint8_t) m_powerStatus); + + return m_processor->Transmit(command); } -const char *CCECBusDevice::CECVendorIdToString(const uint64_t iVendorId) +bool CCECBusDevice::TransmitVendorID(cec_logical_address dest) { - switch (iVendorId) + if (m_vendor == CEC_VENDOR_UNKNOWN) { - case CEC_VENDOR_SAMSUNG: - return "Samsung"; - case CEC_VENDOR_LG: - return "LG"; - default: - return "Unknown"; + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): vendor id feature abort", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest); + AddLog(CEC_LOG_NOTICE, strLog); + + m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); + return false; + } + else + { + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): vendor id %s (%x)", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_vendor), (uint64_t)m_vendor); + AddLog(CEC_LOG_NOTICE, strLog); + + cec_command command; + cec_command::Format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_DEVICE_VENDOR_ID); + + command.parameters.PushBack((uint8_t) (((uint64_t)m_vendor >> 16) & 0xFF)); + command.parameters.PushBack((uint8_t) (((uint64_t)m_vendor >> 8) & 0xFF)); + command.parameters.PushBack((uint8_t) ((uint64_t)m_vendor & 0xFF)); + + return m_processor->Transmit(command); } } +//@}