X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECBusDevice.cpp;h=dc6d4f8832c1ff477d74244279cd5f334a01a65d;hb=c686413b0994df7037af7f08751a58f2d84045d4;hp=665d7fdc893bccc5591887908c80c8d909be3b77;hpb=d7be392ade9384eb26adcb062cf52e40efe6c4ee;p=deb_libcec.git diff --git a/src/lib/devices/CECBusDevice.cpp b/src/lib/devices/CECBusDevice.cpp index 665d7fd..dc6d4f8 100644 --- a/src/lib/devices/CECBusDevice.cpp +++ b/src/lib/devices/CECBusDevice.cpp @@ -42,13 +42,16 @@ using namespace CEC; CCECBusDevice::CCECBusDevice(CCECProcessor *processor, cec_logical_address iLogicalAddress, uint16_t iPhysicalAddress) : m_iPhysicalAddress(iPhysicalAddress), + m_iStreamPath(0), m_iLogicalAddress(iLogicalAddress), m_powerStatus(CEC_POWER_STATUS_UNKNOWN), m_processor(processor), m_bMenuActive(true), + m_bActiveSource(false), m_iVendorClass(CEC_VENDOR_UNKNOWN), + m_iLastCommandSent(0), m_iLastActive(0), - m_cecVersion(CEC_VERSION_1_3A) + m_cecVersion(CEC_VERSION_UNKNOWN) { m_handler = new CCECCommandHandler(this); @@ -59,7 +62,7 @@ CCECBusDevice::CCECBusDevice(CCECProcessor *processor, cec_logical_address iLogi m_vendor.vendor = CEC_VENDOR_UNKNOWN; m_type = CEC_DEVICE_TYPE_RESERVED; - m_strDeviceName = "Unknown"; + m_strDeviceName = CCECCommandHandler::ToString(m_iLogicalAddress); } CCECBusDevice::~CCECBusDevice(void) @@ -87,9 +90,13 @@ void CCECBusDevice::PollVendorId(void) CLockObject lock(&m_mutex); if (m_iLastActive > 0 && m_iLogicalAddress != CECDEVICE_BROADCAST && m_vendor.vendor == CEC_VENDOR_UNKNOWN && - GetTimeMs() - m_iLastActive > 5000) + GetTimeMs() - m_iLastCommandSent > 5000 && + !m_processor->IsMonitoring()) { - m_iLastActive = GetTimeMs(); + 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); @@ -100,20 +107,29 @@ void CCECBusDevice::PollVendorId(void) bool CCECBusDevice::PowerOn(void) { - CStdString strLog; - strLog.Format("<< powering on device with logical address %d", (int8_t)m_iLogicalAddress); - AddLog(CEC_LOG_DEBUG, strLog.c_str()); + 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()); - cec_command command; - cec_command::format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_IMAGE_VIEW_ON); + SetPowerStatus(CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON); - return m_processor->Transmit(command); + 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 device with logical address %d in standby mode", (int8_t)m_iLogicalAddress); + strLog.Format("<< putting '%s' (%X) in standby mode", GetLogicalAddressName(), m_iLogicalAddress); AddLog(CEC_LOG_DEBUG, strLog.c_str()); cec_command command; @@ -130,7 +146,9 @@ cec_version CCECBusDevice::GetCecVersion(void) { if (!MyLogicalAddressContains(m_iLogicalAddress)) { - AddLog(CEC_LOG_NOTICE, "<< requesting CEC version"); + 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); @@ -142,13 +160,20 @@ cec_version CCECBusDevice::GetCecVersion(void) return m_cecVersion; } +const char* CCECBusDevice::GetLogicalAddressName(void) const +{ + return CCECCommandHandler::ToString(m_iLogicalAddress); +} + cec_menu_language &CCECBusDevice::GetMenuLanguage(void) { if (!strcmp(m_menuLanguage.language, "???")) { if (!MyLogicalAddressContains(m_iLogicalAddress)) { - AddLog(CEC_LOG_NOTICE, "<< requesting menu language"); + 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); @@ -176,7 +201,9 @@ cec_power_status CCECBusDevice::GetPowerStatus(void) { if (!MyLogicalAddressContains(m_iLogicalAddress)) { - AddLog(CEC_LOG_NOTICE, "<< requesting power status"); + 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); @@ -194,7 +221,9 @@ const cec_vendor &CCECBusDevice::GetVendor(void) { if (!MyLogicalAddressContains(m_iLogicalAddress)) { - AddLog(CEC_LOG_NOTICE, "<< requesting vendor ID"); + 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); @@ -218,28 +247,10 @@ bool CCECBusDevice::MyLogicalAddressContains(cec_logical_address address) const //@{ void CCECBusDevice::SetCecVersion(const cec_version newVersion) { - CStdString strLog; m_cecVersion = newVersion; - switch (newVersion) - { - case CEC_VERSION_1_2: - strLog.Format("device %d reports CEC version 1.2", m_iLogicalAddress); - break; - case CEC_VERSION_1_2A: - strLog.Format("device %d reports CEC version 1.2a", m_iLogicalAddress); - break; - case CEC_VERSION_1_3: - strLog.Format("device %d reports CEC version 1.3", m_iLogicalAddress); - break; - case CEC_VERSION_1_3A: - strLog.Format("device %d reports CEC version 1.3a", m_iLogicalAddress); - break; - default: - strLog.Format("device %d reports an unknown CEC version", m_iLogicalAddress); - m_cecVersion = CEC_VERSION_UNKNOWN; - break; - } + CStdString strLog; + strLog.Format("%s (%X): CEC version %s", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(newVersion)); AddLog(CEC_LOG_DEBUG, strLog); } @@ -248,48 +259,48 @@ void CCECBusDevice::SetMenuLanguage(const cec_menu_language &language) if (language.device == m_iLogicalAddress) { CStdString strLog; - strLog.Format("device %d menu language set to '%s'", m_iLogicalAddress, language.language); + 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::SetPhysicalAddress(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */) +void CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress) { if (iNewAddress > 0) { CStdString strLog; - strLog.Format(">> %i changed physical address from %04x to %04x", m_iLogicalAddress, m_iPhysicalAddress, iNewAddress); + 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::SetPowerStatus(const cec_power_status powerStatus) +void CCECBusDevice::SetStreamPath(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */) { - if (m_powerStatus != powerStatus) + if (iNewAddress > 0) { CStdString strLog; - strLog.Format("device %d power status changed from %2x to %2x", m_iLogicalAddress, m_powerStatus, powerStatus); - m_processor->AddLog(CEC_LOG_DEBUG, strLog); - m_powerStatus = powerStatus; + 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::SetVendorId(const cec_datapacket &data) +void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus) { - if (data.size < 3) + if (m_powerStatus != powerStatus) { - AddLog(CEC_LOG_WARNING, "invalid vendor ID received"); - return; + CStdString strLog; + strLog.Format(">> %s (%X): power status changed from '%s' to '%s'", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(m_powerStatus), CCECCommandHandler::ToString(powerStatus)); + m_processor->AddLog(CEC_LOG_DEBUG, strLog); + m_powerStatus = powerStatus; } - - uint64_t iVendorId = ((uint64_t)data[0] << 3) + - ((uint64_t)data[1] << 2) + - (uint64_t)data[2]; - - SetVendorId(iVendorId, data.size >= 4 ? data[3] : 0); } void CCECBusDevice::SetVendorId(uint64_t iVendorId, uint8_t iVendorClass /* = 0 */) @@ -330,7 +341,7 @@ void CCECBusDevice::SetVendorId(uint64_t iVendorId, uint8_t iVendorClass /* = 0 } CStdString strLog; - strLog.Format("device %d: vendor = %s (%06x) class = %2x", m_iLogicalAddress, GetVendorName(), GetVendorId(), GetVendorClass()); + strLog.Format("%s (%X): vendor = %s (%06x) class = %2x", GetLogicalAddressName(), m_iLogicalAddress, GetVendorName(), GetVendorId(), GetVendorClass()); m_processor->AddLog(CEC_LOG_DEBUG, strLog.c_str()); } //@} @@ -339,78 +350,52 @@ void CCECBusDevice::SetVendorId(uint64_t iVendorId, uint8_t iVendorClass /* = 0 //@{ bool CCECBusDevice::TransmitActiveSource(void) { - CStdString strLog; - strLog.Format("<< %x -> broadcast: active source", m_iLogicalAddress); - AddLog(CEC_LOG_NOTICE, strLog); - - cec_command command; - cec_command::format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE); - command.parameters.push_back((uint8_t) ((m_iPhysicalAddress >> 8) & 0xFF)); - command.parameters.push_back((uint8_t) (m_iPhysicalAddress & 0xFF)); - - return m_processor->Transmit(command); -} + 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); -bool CCECBusDevice::TransmitActiveView(void) -{ - CStdString strLog; - strLog.Format("<< %x -> broadcast: active view", m_iLogicalAddress); - AddLog(CEC_LOG_NOTICE, strLog); + cec_command command; + cec_command::format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE); + command.parameters.push_back((uint8_t) ((m_iPhysicalAddress >> 8) & 0xFF)); + command.parameters.push_back((uint8_t) (m_iPhysicalAddress & 0xFF)); - cec_command command; - cec_command::format(command, m_iLogicalAddress, CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE); - command.parameters.push_back((m_iPhysicalAddress >> 8) & 0xFF); - command.parameters.push_back(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 m_processor->Transmit(command); + return false; } bool CCECBusDevice::TransmitCECVersion(cec_logical_address dest) { CStdString strLog; - strLog.Format("<< %x -> %x: cec version ", m_iLogicalAddress, dest); - switch (m_cecVersion) - { - case CEC_VERSION_1_2: - strLog.append("1.2"); - break; - case CEC_VERSION_1_2A: - strLog.append("1.2a"); - break; - case CEC_VERSION_1_3: - strLog.append("1.3"); - break; - case CEC_VERSION_1_3A: - strLog.append("1.3a"); - break; - default: - strLog.append("unknown"); - break; - } + strLog.Format("<< %s (%X) -> %s (%X): cec version %s", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest, CCECCommandHandler::ToString(m_cecVersion)); AddLog(CEC_LOG_NOTICE, strLog); cec_command command; cec_command::format(command, m_iLogicalAddress, dest, CEC_OPCODE_CEC_VERSION); - command.parameters.push_back(m_cecVersion); + command.parameters.push_back((uint8_t)m_cecVersion); return m_processor->Transmit(command); } -bool CCECBusDevice::TransmitDeckStatus(cec_logical_address dest) -{ - // need to support opcodes play and deck control before doing anything with this - CStdString strLog; - strLog.Format("<< %x -> %x: deck status feature abort", m_iLogicalAddress, dest); - AddLog(CEC_LOG_NOTICE, strLog); - - m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); - return false; -} - bool CCECBusDevice::TransmitInactiveView(void) { CStdString strLog; - strLog.Format("<< %x -> broadcast: inactive view", m_iLogicalAddress); + strLog.Format("<< %s (%X) -> broadcast (F): inactive view", GetLogicalAddressName(), m_iLogicalAddress); AddLog(CEC_LOG_NOTICE, strLog); cec_command command; @@ -424,7 +409,7 @@ bool CCECBusDevice::TransmitInactiveView(void) bool CCECBusDevice::TransmitMenuState(cec_logical_address dest) { CStdString strLog; - strLog.Format("<< %x -> %x: ", m_iLogicalAddress, dest); + strLog.Format("<< %s (%X) -> %s (%X): ", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest); if (m_bMenuActive) strLog.append("menu active"); else @@ -441,7 +426,7 @@ bool CCECBusDevice::TransmitMenuState(cec_logical_address dest) bool CCECBusDevice::TransmitOSDName(cec_logical_address dest) { CStdString strLog; - strLog.Format("<< %x -> %x: OSD name '%s'", m_iLogicalAddress, dest, m_strDeviceName.c_str()); + strLog.Format("<< %s (%X) -> %s (%X): OSD name '%s'", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest, m_strDeviceName.c_str()); AddLog(CEC_LOG_NOTICE, strLog.c_str()); cec_command command; @@ -455,7 +440,7 @@ bool CCECBusDevice::TransmitOSDName(cec_logical_address dest) bool CCECBusDevice::TransmitOSDString(cec_logical_address dest, cec_display_control duration, const char *strMessage) { CStdString strLog; - strLog.Format("<< %x -> %x: display OSD message '%s'", m_iLogicalAddress, dest, strMessage); + strLog.Format("<< %s (%X) -> %s (%X): display OSD message '%s'", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest, strMessage); AddLog(CEC_LOG_NOTICE, strLog.c_str()); cec_command command; @@ -474,14 +459,14 @@ bool CCECBusDevice::TransmitOSDString(cec_logical_address dest, cec_display_cont bool CCECBusDevice::TransmitPhysicalAddress(void) { CStdString strLog; - strLog.Format("<< %x -> broadcast: physical adddress %4x", m_iLogicalAddress, m_iPhysicalAddress); + 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.push_back((uint8_t) ((m_iPhysicalAddress >> 8) & 0xFF)); command.parameters.push_back((uint8_t) (m_iPhysicalAddress & 0xFF)); - command.parameters.push_back((uint8_t) (CEC_DEVICE_TYPE_PLAYBACK_DEVICE)); + command.parameters.push_back((uint8_t) (m_type)); return m_processor->Transmit(command); } @@ -494,7 +479,7 @@ bool CCECBusDevice::TransmitPoll(cec_logical_address dest) dest = m_iLogicalAddress; CStdString strLog; - strLog.Format("<< %x -> %x: POLL", m_iLogicalAddress, dest); + strLog.Format("<< %s (%X) -> %s (%X): POLL", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest); AddLog(CEC_LOG_NOTICE, strLog.c_str()); cec_command command; @@ -509,31 +494,9 @@ bool CCECBusDevice::TransmitPoll(cec_logical_address dest) bool CCECBusDevice::TransmitPowerState(cec_logical_address dest) { CStdString strLog; - strLog.Format("<< %x -> %x: ", m_iLogicalAddress, dest); - - switch (m_powerStatus) - { - case CEC_POWER_STATUS_ON: - strLog.append("powered on"); - break; - case CEC_POWER_STATUS_STANDBY: - strLog.append("in standby mode"); - break; - case CEC_POWER_STATUS_IN_TRANSITION_ON_TO_STANDBY: - strLog.append("in transition from on to standby"); - break; - case CEC_POWER_STATUS_IN_TRANSITION_STANDBY_TO_ON: - strLog.append("in transition from standby to on"); - break; - default: - strLog.append("power state unknown"); - break; - } + strLog.Format("<< %s (%X) -> %s (%X): %s", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest, CCECCommandHandler::ToString(m_powerStatus)); AddLog(CEC_LOG_NOTICE, strLog.c_str()); - strLog.Format("<< reporting power status '%d'", m_powerStatus); - AddLog(CEC_LOG_NOTICE, strLog); - cec_command command; cec_command::format(command, m_iLogicalAddress, dest, CEC_OPCODE_REPORT_POWER_STATUS); command.parameters.push_back((uint8_t) m_powerStatus); @@ -544,7 +507,7 @@ bool CCECBusDevice::TransmitPowerState(cec_logical_address dest) bool CCECBusDevice::TransmitVendorID(cec_logical_address dest) { CStdString strLog; - strLog.Format("<< %x -> %x: vendor id feature abort", m_iLogicalAddress, dest); + strLog.Format("<< %s (%X) -> %s (%X): vendor id feature abort", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest); AddLog(CEC_LOG_NOTICE, strLog); m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID);