X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fdevices%2FCECBusDevice.cpp;h=7fe92a451236ec893e89ef47fd213e5ae164fb56;hb=9bc8934c6dac8efcd2f636b6f68798049f84deac;hp=8aa5e4bf908f2465bf70b570b92fd6efa4f12aa0;hpb=a3269a0a9e8973e29cfe073dd8e558aad173f984;p=deb_libcec.git diff --git a/src/lib/devices/CECBusDevice.cpp b/src/lib/devices/CECBusDevice.cpp index 8aa5e4b..7fe92a4 100644 --- a/src/lib/devices/CECBusDevice.cpp +++ b/src/lib/devices/CECBusDevice.cpp @@ -35,24 +35,36 @@ #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) m_processor->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_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_cecVersion(CEC_VERSION_UNKNOWN), + m_deviceStatus(CEC_DEVICE_STATUS_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) @@ -61,6 +73,126 @@ CCECBusDevice::~CCECBusDevice(void) 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_transmitMutex); + m_iLastActive = GetTimeMs(); + m_handler->HandleCommand(command); + if (m_deviceStatus != CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC) + m_deviceStatus = CEC_DEVICE_STATUS_PRESENT; + m_condition.Signal(); + return true; +} + +bool CCECBusDevice::PowerOn(void) +{ + 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); + if (m_processor->Transmit(command)) + { + { + CLockObject lock(&m_mutex); + m_powerStatus = CEC_POWER_STATUS_UNKNOWN; + } + cec_power_status status = GetPowerStatus(); + if (status == CEC_POWER_STATUS_STANDBY || status == CEC_POWER_STATUS_UNKNOWN) + { + SendKeypress(CEC_USER_CONTROL_CODE_POWER, true); + return SendKeyRelease(false); + } + return true; + } + + return false; +} + +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) +{ + CLockObject lock(&m_mutex); + if (GetStatus() == CEC_DEVICE_STATUS_PRESENT && + m_cecVersion == CEC_VERSION_UNKNOWN) + RequestCecVersion(); + + return m_cecVersion; +} + +bool CCECBusDevice::RequestCecVersion(void) +{ + bool bReturn(false); + 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_transmitMutex); + if (m_processor->Transmit(command)) + bReturn = m_condition.Wait(&m_transmitMutex, 1000); + } + return bReturn; +} + +uint64_t CCECBusDevice::GetLastCommandSent(void) const +{ + return GetTimeMs() - m_iLastCommandSent; +} + +const char* CCECBusDevice::GetLogicalAddressName(void) const +{ + return ToString(m_iLogicalAddress); +} + +cec_menu_language &CCECBusDevice::GetMenuLanguage(void) +{ + CLockObject lock(&m_mutex); + if (GetStatus() == CEC_DEVICE_STATUS_PRESENT && + !strcmp(m_menuLanguage.language, "???")) + RequestMenuLanguage(); + + return m_menuLanguage; +} + +bool CCECBusDevice::RequestMenuLanguage(void) +{ + bool bReturn(false); + 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_transmitMutex); + if (m_processor->Transmit(command)) + bReturn = m_condition.Wait(&m_transmitMutex, 1000); + } + return bReturn; +} + cec_logical_address CCECBusDevice::GetMyLogicalAddress(void) const { return m_processor->GetLogicalAddress(); @@ -71,332 +203,642 @@ uint16_t CCECBusDevice::GetMyPhysicalAddress(void) const return m_processor->GetPhysicalAddress(); } -void CCECBusDevice::AddLog(cec_log_level level, const CStdString &strMessage) +CStdString CCECBusDevice::GetOSDName(void) { - m_processor->AddLog(level, strMessage); + CLockObject lock(&m_mutex); + if (GetStatus() == CEC_DEVICE_STATUS_PRESENT && + m_strDeviceName.Equals(ToString(m_iLogicalAddress))) + RequestOSDName(); + + return m_strDeviceName; } -void CCECBusDevice::SetMenuLanguage(const cec_menu_language &language) +bool CCECBusDevice::RequestOSDName(void) { - if (language.device == m_iLogicalAddress) + bool bReturn(false); + if (!MyLogicalAddressContains(m_iLogicalAddress)) { CStdString strLog; - strLog.Format("device %d menu language set to '%s'", m_iLogicalAddress, language.language); - m_processor->AddLog(CEC_LOG_DEBUG, strLog); - m_menuLanguage = language; + strLog.Format("<< requesting OSD name of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_OSD_NAME); + CLockObject lock(&m_transmitMutex); + if (m_processor->Transmit(command)) + bReturn = m_condition.Wait(&m_transmitMutex, 1000); } + return bReturn; } -void CCECBusDevice::SetCecVersion(cec_version newVersion) +uint16_t CCECBusDevice::GetPhysicalAddress(bool bRefresh /* = true */) { - CStdString strLog; - m_cecVersion = newVersion; + CLockObject lock(&m_mutex); + if (GetStatus() == CEC_DEVICE_STATUS_PRESENT && + (m_iPhysicalAddress == 0xFFFF || bRefresh)) + { + if (!RequestPhysicalAddress()) + AddLog(CEC_LOG_ERROR, "failed to request the physical address"); + } + + return m_iPhysicalAddress; +} - switch (newVersion) +bool CCECBusDevice::RequestPhysicalAddress(void) +{ + bool bReturn(false); + if (!MyLogicalAddressContains(m_iLogicalAddress)) { - 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("<< requesting physical address of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); + cec_command command; + cec_command::Format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_GIVE_PHYSICAL_ADDRESS); + CLockObject lock(&m_transmitMutex); + if (m_processor->Transmit(command)) + bReturn = m_condition.Wait(&m_transmitMutex, 1000); } - AddLog(CEC_LOG_DEBUG, strLog); + return bReturn; } -void CCECBusDevice::SetVendorId(const cec_datapacket &data) +cec_power_status CCECBusDevice::GetPowerStatus(void) { - if (data.size < 3) + CLockObject lock(&m_mutex); + if (GetStatus() == CEC_DEVICE_STATUS_PRESENT && + m_powerStatus == CEC_POWER_STATUS_UNKNOWN) + RequestPowerStatus(); + + return m_powerStatus; +} + +bool CCECBusDevice::RequestPowerStatus(void) +{ + bool bReturn(false); + if (!MyLogicalAddressContains(m_iLogicalAddress)) { - AddLog(CEC_LOG_WARNING, "invalid vendor ID received"); - return; + 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_transmitMutex); + if (m_processor->Transmit(command)) + bReturn = m_condition.Wait(&m_transmitMutex, 1000); } + return bReturn; +} - uint64_t iVendorId = ((uint64_t)data[0] << 3) + - ((uint64_t)data[1] << 2) + - (uint64_t)data[2]; +cec_vendor_id CCECBusDevice::GetVendorId(void) +{ + CLockObject lock(&m_mutex); + if (GetStatus() == CEC_DEVICE_STATUS_PRESENT && + m_vendor == CEC_VENDOR_UNKNOWN) + RequestVendorId(); - SetVendorId(iVendorId, data.size >= 4 ? data[3] : 0); + return m_vendor; } -void CCECBusDevice::SetVendorId(uint64_t iVendorId, uint8_t iVendorClass /* = 0 */) +bool CCECBusDevice::RequestVendorId(void) { - m_iVendorId = iVendorId; - m_iVendorClass = iVendorClass; + bool bReturn(false); + 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); - switch (iVendorId) + CLockObject lock(&m_transmitMutex); + if (m_processor->Transmit(command)) + bReturn = m_condition.Wait(&m_transmitMutex, 1000); + } + return bReturn; +} + +const char *CCECBusDevice::GetVendorName(void) +{ + return ToString(GetVendorId()); +} + +bool CCECBusDevice::MyLogicalAddressContains(cec_logical_address address) const +{ + return m_processor->HasLogicalAddress(address); +} + +bool CCECBusDevice::NeedsPoll(void) +{ + bool bSendPoll(false); + switch (m_iLogicalAddress) { - case CEC_VENDOR_SAMSUNG: - if (m_handler->GetVendorId() != CEC_VENDOR_SAMSUNG) - { - delete m_handler; - m_handler = new CANCommandHandler(this); - } + case CECDEVICE_PLAYBACKDEVICE3: + if (m_processor->m_busDevices[CECDEVICE_PLAYBACKDEVICE2]->GetStatus() == CEC_DEVICE_STATUS_PRESENT) + bSendPoll = true; break; - case CEC_VENDOR_LG: - if (m_handler->GetVendorId() != CEC_VENDOR_LG) - { - delete m_handler; - m_handler = new CSLCommandHandler(this); - } + case CECDEVICE_PLAYBACKDEVICE2: + if (m_processor->m_busDevices[CECDEVICE_PLAYBACKDEVICE1]->GetStatus() == CEC_DEVICE_STATUS_PRESENT) + bSendPoll = true; + break; + case CECDEVICE_RECORDINGDEVICE3: + if (m_processor->m_busDevices[CECDEVICE_RECORDINGDEVICE2]->GetStatus() == CEC_DEVICE_STATUS_PRESENT) + bSendPoll = true; + break; + case CECDEVICE_RECORDINGDEVICE2: + if (m_processor->m_busDevices[CECDEVICE_RECORDINGDEVICE1]->GetStatus() == CEC_DEVICE_STATUS_PRESENT) + bSendPoll = true; + break; + case CECDEVICE_TUNER4: + if (m_processor->m_busDevices[CECDEVICE_TUNER3]->GetStatus() == CEC_DEVICE_STATUS_PRESENT) + bSendPoll = true; + break; + case CECDEVICE_TUNER3: + if (m_processor->m_busDevices[CECDEVICE_TUNER2]->GetStatus() == CEC_DEVICE_STATUS_PRESENT) + bSendPoll = true; + break; + case CECDEVICE_TUNER2: + if (m_processor->m_busDevices[CECDEVICE_TUNER1]->GetStatus() == CEC_DEVICE_STATUS_PRESENT) + bSendPoll = true; + break; + case CECDEVICE_AUDIOSYSTEM: + case CECDEVICE_PLAYBACKDEVICE1: + case CECDEVICE_RECORDINGDEVICE1: + case CECDEVICE_TUNER1: + case CECDEVICE_TV: + bSendPoll = true; break; default: - if (m_handler->GetVendorId() != CEC_VENDOR_UNKNOWN) - { - delete m_handler; - m_handler = new CCECCommandHandler(this); - } break; } + return bSendPoll; +} + +cec_bus_device_status CCECBusDevice::GetStatus(bool bForcePoll /* = false */) +{ + CLockObject lock(&m_writeMutex); + if (m_deviceStatus == CEC_DEVICE_STATUS_UNKNOWN || bForcePoll) + { + lock.Leave(); + bool bPollAcked(false); + if (bForcePoll || NeedsPoll()) + bPollAcked = m_processor->PollDevice(m_iLogicalAddress); + + lock.Lock(); + m_deviceStatus = bPollAcked ? CEC_DEVICE_STATUS_PRESENT : CEC_DEVICE_STATUS_NOT_PRESENT; + } + + return m_deviceStatus; +} + +//@} + +/** @name Setters */ +//@{ +void CCECBusDevice::SetCecVersion(const cec_version newVersion) +{ + m_cecVersion = newVersion; + CStdString strLog; - strLog.Format("device %d: vendor = %s (%06x) class = %2x", m_iLogicalAddress, GetVendorName(), GetVendorId(), GetVendorClass()); - m_processor->AddLog(CEC_LOG_DEBUG, strLog.c_str()); + strLog.Format("%s (%X): CEC version %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(newVersion)); + AddLog(CEC_LOG_DEBUG, strLog); } -bool CCECBusDevice::HandleCommand(const cec_command &command) +void CCECBusDevice::SetMenuLanguage(const cec_menu_language &language) { - CLockObject lock(&m_mutex); - m_iLastActive = GetTimeMs(); - m_handler->HandleCommand(command); - m_condition.Signal(); - return true; + CLockObject lock(&m_writeMutex); + 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::PollVendorId(void) +void CCECBusDevice::SetOSDName(CStdString strName) { - CLockObject lock(&m_mutex); - if (m_iLastActive > 0 && m_iLogicalAddress != CECDEVICE_BROADCAST && - m_iVendorId == CEC_VENDOR_UNKNOWN && - GetTimeMs() - m_iLastActive > 5000) + CLockObject lock(&m_writeMutex); + if (m_strDeviceName != strName) { - m_iLastActive = GetTimeMs(); + CStdString strLog; + strLog.Format(">> %s (%X): osd name set to '%s'", GetLogicalAddressName(), m_iLogicalAddress, strName); + m_processor->AddLog(CEC_LOG_DEBUG, strLog); + m_strDeviceName = strName; + } +} - cec_command command; - cec_command::format(command, GetMyLogicalAddress(), GetLogicalAddress(), CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); - command.ack_timeout = 0; - m_processor->Transmit(command); +void CCECBusDevice::SetMenuState(const cec_menu_state state) +{ + CLockObject lock(&m_writeMutex); + 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::SetPhysicalAddress(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */) +void CCECBusDevice::SetInactiveDevice(void) { - CStdString strLog; - strLog.Format(">> %i changed physical address from %04x to %04x", GetLogicalAddress(), m_iPhysicalAddress, iNewAddress); - AddLog(CEC_LOG_DEBUG, strLog.c_str()); + CLockObject lock(&m_writeMutex); + m_bActiveSource = false; +} + +void CCECBusDevice::SetActiveDevice(void) +{ + CLockObject lock(&m_writeMutex); + + for (int iPtr = 0; iPtr < 16; iPtr++) + if (iPtr != m_iLogicalAddress) + m_processor->m_busDevices[iPtr]->SetInactiveDevice(); - m_iPhysicalAddress = iNewAddress; + m_bActiveSource = true; + m_powerStatus = CEC_POWER_STATUS_ON; } -bool CCECBusDevice::PowerOn(void) +bool CCECBusDevice::TryLogicalAddress(void) { CStdString strLog; - strLog.Format("<< powering on device with logical address %d", (int8_t)m_iLogicalAddress); - AddLog(CEC_LOG_DEBUG, strLog.c_str()); + strLog.Format("trying logical address '%s'", GetLogicalAddressName()); + AddLog(CEC_LOG_DEBUG, strLog); - cec_command command; - cec_command::format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_IMAGE_VIEW_ON); + m_processor->SetAckMask(0x1 << m_iLogicalAddress); + if (!TransmitPoll(m_iLogicalAddress)) + { + strLog.Format("using logical address '%s'", GetLogicalAddressName()); + AddLog(CEC_LOG_NOTICE, strLog); + SetDeviceStatus(CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC); - return m_processor->Transmit(command); + return true; + } + + strLog.Format("logical address '%s' already taken", GetLogicalAddressName()); + AddLog(CEC_LOG_DEBUG, strLog); + SetDeviceStatus(CEC_DEVICE_STATUS_PRESENT); + return false; } -bool CCECBusDevice::Standby(void) +void CCECBusDevice::SetDeviceStatus(const cec_bus_device_status newStatus) { - CStdString strLog; - strLog.Format("<< putting device with logical address %d in standby mode", (int8_t)m_iLogicalAddress); - AddLog(CEC_LOG_DEBUG, strLog.c_str()); + CLockObject lock(&m_writeMutex); + switch (newStatus) + { + case CEC_DEVICE_STATUS_UNKNOWN: + m_iStreamPath = 0; + m_powerStatus = CEC_POWER_STATUS_UNKNOWN; + 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_deviceStatus = newStatus; + break; + case CEC_DEVICE_STATUS_HANDLED_BY_LIBCEC: + m_iStreamPath = 0; + m_powerStatus = CEC_POWER_STATUS_ON; + m_vendor = CEC_VENDOR_UNKNOWN; + m_menuState = CEC_MENU_STATE_ACTIVATED; + m_bActiveSource = false; + m_iLastCommandSent = 0; + m_iLastActive = 0; + m_cecVersion = CEC_VERSION_1_3A; + m_deviceStatus = newStatus; + break; + case CEC_DEVICE_STATUS_PRESENT: + case CEC_DEVICE_STATUS_NOT_PRESENT: + m_deviceStatus = newStatus; + break; + } +} - cec_command command; - cec_command::format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_STANDBY); +void CCECBusDevice::SetPhysicalAddress(uint16_t iNewAddress) +{ + CLockObject lock(&m_writeMutex); + if (iNewAddress > 0 && m_iPhysicalAddress != iNewAddress) + { + 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()); - return m_processor->Transmit(command); + m_iPhysicalAddress = iNewAddress; + } } -bool CCECBusDevice::SetOSDString(cec_display_control duration, const char *strMessage) +void CCECBusDevice::SetStreamPath(uint16_t iNewAddress, uint16_t iOldAddress /* = 0 */) { - CStdString strLog; - strLog.Format("<< display message '%s'", strMessage); - AddLog(CEC_LOG_NOTICE, strLog.c_str()); + CLockObject lock(&m_writeMutex); + if (iNewAddress > 0) + { + CStdString strLog; + strLog.Format(">> %s (%X): stream path changed from %04x to %04x", GetLogicalAddressName(), m_iLogicalAddress, iOldAddress == 0 ? m_iStreamPath : iOldAddress, iNewAddress); + AddLog(CEC_LOG_DEBUG, strLog.c_str()); - cec_command command; - cec_command::format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_SET_OSD_STRING); - command.parameters.push_back((uint8_t)duration); + m_iStreamPath = iNewAddress; - for (unsigned int iPtr = 0; iPtr < strlen(strMessage); iPtr++) - command.parameters.push_back(strMessage[iPtr]); + if (iNewAddress > 0) + { + lock.Leave(); + SetPowerStatus(CEC_POWER_STATUS_ON); + } + } +} - return m_processor->Transmit(command); +void CCECBusDevice::SetPowerStatus(const cec_power_status powerStatus) +{ + CLockObject lock(&m_writeMutex); + 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; + } } -bool CCECBusDevice::ReportCECVersion(void) +void CCECBusDevice::SetVendorId(uint64_t iVendorId) { - AddLog(CEC_LOG_NOTICE, "<< reporting CEC version as 1.3a"); + { + CLockObject lock(&m_writeMutex); + m_vendor = (cec_vendor_id)iVendorId; - cec_command command; - cec_command::format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_CEC_VERSION); - command.parameters.push_back(CEC_VERSION_1_3A); + switch (iVendorId) + { + case CEC_VENDOR_SAMSUNG: + if (m_handler->GetVendorId() != CEC_VENDOR_SAMSUNG) + { + delete m_handler; + m_handler = new CANCommandHandler(this); + } + break; + case CEC_VENDOR_LG: + if (m_handler->GetVendorId() != CEC_VENDOR_LG) + { + delete m_handler; + 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) + { + delete m_handler; + m_handler = new CCECCommandHandler(this); + } + break; + } + } - return m_processor->Transmit(command); + CStdString strLog; + strLog.Format("%s (%X): vendor = %s (%06x)", GetLogicalAddressName(), m_iLogicalAddress, ToString(m_vendor), m_vendor); + m_processor->AddLog(CEC_LOG_DEBUG, strLog.c_str()); } +//@} -bool CCECBusDevice::ReportDeckStatus(void) +/** @name Transmit methods */ +//@{ +bool CCECBusDevice::TransmitActiveSource(void) { - // need to support opcodes play and deck control before doing anything with this - AddLog(CEC_LOG_NOTICE, "<< deck status requested, feature abort"); - m_processor->TransmitAbort(m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); + CLockObject lock(&m_writeMutex); + 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)); + + lock.Leave(); + 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; } -bool CCECBusDevice::ReportMenuState(bool bActive /* = true */) +bool CCECBusDevice::TransmitCECVersion(cec_logical_address dest) { - if (bActive) - AddLog(CEC_LOG_NOTICE, "<< reporting menu state as active"); - else - AddLog(CEC_LOG_NOTICE, "<< reporting menu state as inactive"); + CLockObject lock(&m_writeMutex); + 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, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_MENU_STATUS); - command.parameters.push_back(bActive ? (uint8_t) CEC_MENU_STATE_ACTIVATED : (uint8_t) CEC_MENU_STATE_DEACTIVATED); + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_CEC_VERSION); + command.parameters.PushBack((uint8_t)m_cecVersion); + lock.Leave(); return m_processor->Transmit(command); } -bool CCECBusDevice::ReportOSDName(void) +bool CCECBusDevice::TransmitInactiveSource(void) { - const char *osdname = m_processor->GetDeviceName().c_str(); CStdString strLog; - strLog.Format("<< reporting OSD name as %s", osdname); - AddLog(CEC_LOG_NOTICE, strLog.c_str()); + strLog.Format("<< %s (%X) -> broadcast (F): inactive source", GetLogicalAddressName(), m_iLogicalAddress); + AddLog(CEC_LOG_NOTICE, strLog); cec_command command; - cec_command::format(command, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_SET_OSD_NAME); - for (unsigned int iPtr = 0; iPtr < strlen(osdname); iPtr++) - command.parameters.push_back(osdname[iPtr]); + cec_command::Format(command, m_iLogicalAddress, CECDEVICE_TV, CEC_OPCODE_INACTIVE_SOURCE); + command.parameters.PushBack((m_iPhysicalAddress >> 8) & 0xFF); + command.parameters.PushBack(m_iPhysicalAddress & 0xFF); return m_processor->Transmit(command); } -bool CCECBusDevice::ReportPowerState(bool bOn /* = true */) +bool CCECBusDevice::TransmitMenuState(cec_logical_address dest) { - if (bOn) - AddLog(CEC_LOG_NOTICE, "<< reporting \"On\" power status"); - else - AddLog(CEC_LOG_NOTICE, "<< reporting \"Off\" power status"); + 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, GetMyLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_REPORT_POWER_STATUS); - command.parameters.push_back(bOn ? (uint8_t) CEC_POWER_STATUS_ON : (uint8_t) CEC_POWER_STATUS_STANDBY); + 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::ReportVendorID(void) +bool CCECBusDevice::TransmitOSDName(cec_logical_address dest) { - AddLog(CEC_LOG_NOTICE, "<< vendor ID requested, feature abort"); - m_processor->TransmitAbort(m_iLogicalAddress, CEC_OPCODE_GIVE_DEVICE_VENDOR_ID); - return false; + CLockObject lock(&m_writeMutex); + 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)); + + lock.Leave(); + return m_processor->Transmit(command); } -bool CCECBusDevice::BroadcastActiveView(void) +bool CCECBusDevice::TransmitOSDString(cec_logical_address dest, cec_display_control duration, const char *strMessage) { - AddLog(CEC_LOG_DEBUG, "<< setting active view"); + CLockObject lock(&m_writeMutex); + 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, GetMyLogicalAddress(), CECDEVICE_BROADCAST, CEC_OPCODE_ACTIVE_SOURCE); - command.parameters.push_back((m_iPhysicalAddress >> 8) & 0xFF); - command.parameters.push_back(m_iPhysicalAddress & 0xFF); + 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]); + + lock.Leave(); return m_processor->Transmit(command); } -bool CCECBusDevice::BroadcastInactiveView(void) +bool CCECBusDevice::TransmitPhysicalAddress(void) { - AddLog(CEC_LOG_DEBUG, "<< setting inactive view"); + CLockObject lock(&m_writeMutex); + 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, GetMyLogicalAddress(), CECDEVICE_BROADCAST, CEC_OPCODE_INACTIVE_SOURCE); - command.parameters.push_back((m_iPhysicalAddress >> 8) & 0xFF); - command.parameters.push_back(m_iPhysicalAddress & 0xFF); + 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)); + lock.Leave(); return m_processor->Transmit(command); } -bool CCECBusDevice::BroadcastPhysicalAddress(void) +bool CCECBusDevice::TransmitPoll(cec_logical_address dest) { + bool bReturn(false); + if (dest == CECDEVICE_UNKNOWN) + dest = m_iLogicalAddress; + CStdString strLog; - strLog.Format("<< reporting physical address as %04x", m_iPhysicalAddress); + 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, GetMyLogicalAddress(), 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)); + cec_command::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_NONE); - return m_processor->Transmit(command); + { + CLockObject lock(&m_transmitMutex); + bReturn = m_processor->Transmit(command); + } + + AddLog(CEC_LOG_DEBUG, bReturn ? ">> POLL sent" : ">> POLL not sent"); + + if (bReturn) + { + CLockObject lock(&m_writeMutex); + m_iLastActive = GetTimeMs(); + } + + return bReturn; } -bool CCECBusDevice::BroadcastActiveSource(void) +bool CCECBusDevice::TransmitPowerState(cec_logical_address dest) { - AddLog(CEC_LOG_NOTICE, "<< broadcasting active source"); + CLockObject lock(&m_writeMutex); + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): %s", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest, ToString(m_powerStatus)); + AddLog(CEC_LOG_NOTICE, strLog.c_str()); cec_command command; - cec_command::format(command, GetMyLogicalAddress(), 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::Format(command, m_iLogicalAddress, dest, CEC_OPCODE_REPORT_POWER_STATUS); + command.parameters.PushBack((uint8_t) m_powerStatus); + lock.Leave(); return m_processor->Transmit(command); } -cec_version CCECBusDevice::GetCecVersion(void) +bool CCECBusDevice::TransmitVendorID(cec_logical_address dest) { - if (m_cecVersion == CEC_VERSION_UNKNOWN) + CLockObject lock(&m_writeMutex); + if (m_vendor == CEC_VENDOR_UNKNOWN) { - AddLog(CEC_LOG_NOTICE, "<< requesting CEC version"); - 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); + CStdString strLog; + strLog.Format("<< %s (%X) -> %s (%X): vendor id feature abort", GetLogicalAddressName(), m_iLogicalAddress, ToString(dest), dest); + AddLog(CEC_LOG_NOTICE, strLog); + + lock.Leave(); + 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); - return m_cecVersion; + 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)); + + lock.Leave(); + return m_processor->Transmit(command); + } } -cec_menu_language &CCECBusDevice::GetMenuLanguage(void) +bool CCECBusDevice::SendKeypress(cec_user_control_code key, bool bWait /* = false */) { - if (!strcmp(m_menuLanguage.language, "???")) + CLockObject lock(&m_transmitMutex); + cec_command command; + cec_command::Format(command, m_processor->GetLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_USER_CONTROL_PRESSED); + command.parameters.PushBack((uint8_t)key); + + if (bWait) { - AddLog(CEC_LOG_NOTICE, "<< requesting menu language"); - 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_condition.Wait(&m_transmitMutex, 1000); + return false; } - return m_menuLanguage; + return m_processor->Transmit(command); } -const char *CCECBusDevice::CECVendorIdToString(const uint64_t iVendorId) +bool CCECBusDevice::SendKeyRelease(bool bWait /* = false */) { - switch (iVendorId) + CLockObject lock(&m_transmitMutex); + cec_command command; + cec_command::Format(command, m_processor->GetLogicalAddress(), m_iLogicalAddress, CEC_OPCODE_USER_CONTROL_RELEASE); + + if (bWait) { - case CEC_VENDOR_SAMSUNG: - return "Samsung"; - case CEC_VENDOR_LG: - return "LG"; - default: - return "Unknown"; + if (m_processor->Transmit(command)) + return m_condition.Wait(&m_transmitMutex, 1000); + return false; + } + else + { + return m_processor->Transmit(command); } } +//@}