#include "devices/CECRecordingDevice.h"
#include "devices/CECTuner.h"
#include "devices/CECTV.h"
+#include "implementations/CECCommandHandler.h"
#include "LibCEC.h"
#include "util/StdString.h"
#include "platform/timeutils.h"
return false;
}
-bool CCECProcessor::TryLogicalAddress(cec_logical_address address, const char *strLabel, unsigned int iIndex)
+bool CCECProcessor::TryLogicalAddress(cec_logical_address address, unsigned int iIndex)
{
+ const char *strLabel = CCECCommandHandler::ToString(address);
CStdString strLog;
strLog.Format("trying logical address '%s'", strLabel);
AddLog(CEC_LOG_DEBUG, strLog);
bool CCECProcessor::FindLogicalAddressRecordingDevice(unsigned int iIndex)
{
AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'recording device'");
- return TryLogicalAddress(CECDEVICE_RECORDINGDEVICE1, "recording 1", iIndex) ||
- TryLogicalAddress(CECDEVICE_RECORDINGDEVICE2, "recording 2", iIndex) ||
- TryLogicalAddress(CECDEVICE_RECORDINGDEVICE3, "recording 3", iIndex);
+ return TryLogicalAddress(CECDEVICE_RECORDINGDEVICE1, iIndex) ||
+ TryLogicalAddress(CECDEVICE_RECORDINGDEVICE2, iIndex) ||
+ TryLogicalAddress(CECDEVICE_RECORDINGDEVICE3, iIndex);
}
bool CCECProcessor::FindLogicalAddressTuner(unsigned int iIndex)
{
AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'tuner'");
- return TryLogicalAddress(CECDEVICE_TUNER1, "tuner 1", iIndex) ||
- TryLogicalAddress(CECDEVICE_TUNER2, "tuner 2", iIndex) ||
- TryLogicalAddress(CECDEVICE_TUNER3, "tuner 3", iIndex) ||
- TryLogicalAddress(CECDEVICE_TUNER4, "tuner 4", iIndex);
+ return TryLogicalAddress(CECDEVICE_TUNER1, iIndex) ||
+ TryLogicalAddress(CECDEVICE_TUNER2, iIndex) ||
+ TryLogicalAddress(CECDEVICE_TUNER3, iIndex) ||
+ TryLogicalAddress(CECDEVICE_TUNER4, iIndex);
}
bool CCECProcessor::FindLogicalAddressPlaybackDevice(unsigned int iIndex)
{
AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'playback device'");
- return TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE1, "playback 1", iIndex) ||
- TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE2, "playback 2", iIndex) ||
- TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE3, "playback 3", iIndex);
+ return TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE1, iIndex) ||
+ TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE2, iIndex) ||
+ TryLogicalAddress(CECDEVICE_PLAYBACKDEVICE3, iIndex);
}
bool CCECProcessor::FindLogicalAddressAudioSystem(unsigned int iIndex)
{
AddLog(CEC_LOG_DEBUG, "detecting logical address for type 'audio'");
- return TryLogicalAddress(CECDEVICE_AUDIOSYSTEM, "audio", iIndex);
+ return TryLogicalAddress(CECDEVICE_AUDIOSYSTEM, iIndex);
}
bool CCECProcessor::FindLogicalAddresses(void)
m_vendor.vendor = CEC_VENDOR_UNKNOWN;
m_type = CEC_DEVICE_TYPE_RESERVED;
- m_strDeviceName = "Unknown";
+ m_strDeviceName = CCECCommandHandler::ToString(m_iLogicalAddress);
}
CCECBusDevice::~CCECBusDevice(void)
!m_processor->IsMonitoring())
{
CStdString strLog;
- strLog.Format("<< requesting vendor ID of device %x", m_iLogicalAddress);
+ strLog.Format("<< requesting vendor ID of '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
AddLog(CEC_LOG_NOTICE, strLog);
m_iLastActive = GetTimeMs();
bool CCECBusDevice::PowerOn(void)
{
CStdString strLog;
- strLog.Format("<< powering on device with logical address %d", (int8_t)m_iLogicalAddress);
+ strLog.Format("<< powering on '%s' (%X)", GetLogicalAddressName(), m_iLogicalAddress);
AddLog(CEC_LOG_DEBUG, strLog.c_str());
cec_command command;
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;
if (!MyLogicalAddressContains(m_iLogicalAddress))
{
CStdString strLog;
- strLog.Format("<< requesting CEC version of device %x", m_iLogicalAddress);
+ 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);
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))
{
CStdString strLog;
- strLog.Format("<< requesting menu language of device %x", m_iLogicalAddress);
+ 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);
if (!MyLogicalAddressContains(m_iLogicalAddress))
{
CStdString strLog;
- strLog.Format("<< requesting power status of device %x", m_iLogicalAddress);
+ 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);
if (!MyLogicalAddressContains(m_iLogicalAddress))
{
CStdString strLog;
- strLog.Format("<< requesting vendor ID of device %x", m_iLogicalAddress);
+ 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 (newVersion)
{
case CEC_VERSION_1_2:
- strLog.Format("device %d: CEC version 1.2", m_iLogicalAddress);
+ strLog.Format("%s (%X): CEC version 1.2", GetLogicalAddressName(), m_iLogicalAddress);
break;
case CEC_VERSION_1_2A:
- strLog.Format("device %d: CEC version 1.2a", m_iLogicalAddress);
+ strLog.Format("%s (%X): CEC version 1.2a", GetLogicalAddressName(), m_iLogicalAddress);
break;
case CEC_VERSION_1_3:
- strLog.Format("device %d: CEC version 1.3", m_iLogicalAddress);
+ strLog.Format("%s (%X): CEC version 1.3", GetLogicalAddressName(), m_iLogicalAddress);
break;
case CEC_VERSION_1_3A:
- strLog.Format("device %d: CEC version 1.3a", m_iLogicalAddress);
+ strLog.Format("%s (%X): CEC version 1.3a", GetLogicalAddressName(), m_iLogicalAddress);
break;
default:
- strLog.Format("device %d: unknown CEC version", m_iLogicalAddress);
+ strLog.Format("%s (%X): unknown CEC version", GetLogicalAddressName(), m_iLogicalAddress);
m_cecVersion = CEC_VERSION_UNKNOWN;
break;
}
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;
}
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;
if (iNewAddress > 0)
{
CStdString strLog;
- strLog.Format(">> %i stream path from %04x to %04x", m_iLogicalAddress, iOldAddress, iNewAddress);
+ 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 (m_powerStatus != powerStatus)
{
CStdString strLog;
- strLog.Format("device %d power status changed from %2x to %2x", m_iLogicalAddress, m_powerStatus, powerStatus);
+ strLog.Format(">> %s (%X): power status changed from %2x to %2x", GetLogicalAddressName(), m_iLogicalAddress, m_powerStatus, powerStatus);
m_processor->AddLog(CEC_LOG_DEBUG, strLog);
m_powerStatus = powerStatus;
}
}
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());
}
//@}
if (m_bActiveSource)
{
CStdString strLog;
- strLog.Format("<< %x -> broadcast: active source (%4x)", m_iLogicalAddress, m_iPhysicalAddress);
+ strLog.Format("<< %s (%X) -> broadcast (F): active source (%4x)", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress);
AddLog(CEC_LOG_NOTICE, strLog);
cec_command command;
else
{
CStdString strLog;
- strLog.Format("<< %x is not the active source", m_iLogicalAddress);
+ strLog.Format("<< %s (%X) is not the active source", GetLogicalAddressName(), m_iLogicalAddress);
AddLog(CEC_LOG_DEBUG, strLog);
}
bool CCECBusDevice::TransmitActiveView(void)
{
CStdString strLog;
- strLog.Format("<< %x -> broadcast: active view (%4x)", m_iLogicalAddress, m_iPhysicalAddress);
+ strLog.Format("<< %s (%X) -> broadcast (F): active view (%4x)", GetLogicalAddressName(), m_iLogicalAddress, m_iPhysicalAddress);
AddLog(CEC_LOG_NOTICE, strLog);
cec_command command;
bool CCECBusDevice::TransmitCECVersion(cec_logical_address dest)
{
CStdString strLog;
- strLog.Format("<< %x -> %x: cec version ", m_iLogicalAddress, dest);
+ strLog.Format("<< %s (%X) -> %s (%X): cec version ", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest);
switch (m_cecVersion)
{
case CEC_VERSION_1_2:
{
// 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);
+ strLog.Format("<< %s (%X) -> %s (%X): deck status feature abort", GetLogicalAddressName(), m_iLogicalAddress, CCECCommandHandler::ToString(dest), dest);
AddLog(CEC_LOG_NOTICE, strLog);
m_processor->TransmitAbort(dest, CEC_OPCODE_GIVE_DECK_STATUS);
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;
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
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;
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;
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;
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;
bool CCECBusDevice::TransmitPowerState(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);
switch (m_powerStatus)
{
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);