X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2FLibCEC.cpp;h=0c4b89de220d0a7ebff81bc0f4e5189d20a84718;hb=78e8010a91b23bd33c547937870d3240c641815f;hp=87759c153926d5343a7e8cb0be3f12e76e1e7d97;hpb=f7e6ba706d8e9ded6d65139da93309b22fd3d4ed;p=deb_libcec.git diff --git a/src/lib/LibCEC.cpp b/src/lib/LibCEC.cpp index 87759c1..0c4b89d 100644 --- a/src/lib/LibCEC.cpp +++ b/src/lib/LibCEC.cpp @@ -41,7 +41,8 @@ using namespace std; using namespace CEC; -CLibCEC::CLibCEC(const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, int iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */) : +CLibCEC::CLibCEC(const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */) : + m_iStartTime(GetTimeMs()), m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN), m_buttontime(0) { @@ -51,17 +52,25 @@ CLibCEC::CLibCEC(const char *strDeviceName, cec_logical_address iLogicalAddress CLibCEC::~CLibCEC(void) { + Close(); delete m_cec; m_cec = NULL; delete m_comm; m_comm = NULL; + + m_logBuffer.Clear(); + m_keyBuffer.Clear(); + m_commandBuffer.Clear(); } -bool CLibCEC::Open(const char *strPort, int iTimeoutMs /* = 10000 */) +bool CLibCEC::Open(const char *strPort, uint32_t iTimeoutMs /* = 10000 */) { if (!m_comm) + { + AddLog(CEC_LOG_ERROR, "no comm port"); return false; + } if (m_comm->IsOpen()) { @@ -69,7 +78,17 @@ bool CLibCEC::Open(const char *strPort, int iTimeoutMs /* = 10000 */) return false; } - if (!m_comm->Open(strPort, 38400, iTimeoutMs)) + int64_t iNow = GetTimeMs(); + int64_t iTarget = iNow + iTimeoutMs; + + bool bOpened(false); + while (!bOpened && iNow < iTarget) + { + bOpened = m_comm->Open(strPort, 38400, iTimeoutMs); + iNow = GetTimeMs(); + } + + if (!bOpened) { AddLog(CEC_LOG_ERROR, "could not open a connection"); return false; @@ -87,20 +106,12 @@ bool CLibCEC::Open(const char *strPort, int iTimeoutMs /* = 10000 */) void CLibCEC::Close(void) { if (m_cec) - { m_cec->StopThread(); - delete m_cec; - m_cec = NULL; - } if (m_comm) - { m_comm->Close(); - delete m_comm; - m_comm = NULL; - } } -int CLibCEC::FindAdapters(std::vector &deviceList, const char *strDevicePath /* = NULL */) +int8_t CLibCEC::FindAdapters(cec_adapter *deviceList, uint8_t iBufSize, const char *strDevicePath /* = NULL */) { CStdString strDebug; if (strDevicePath) @@ -109,7 +120,7 @@ int CLibCEC::FindAdapters(std::vector &deviceList, const char *strD strDebug.Format("trying to autodetect all CEC adapters"); AddLog(CEC_LOG_DEBUG, strDebug); - return CAdapterDetection::FindAdapters(deviceList, strDevicePath); + return CAdapterDetection::FindAdapters(deviceList, iBufSize, strDevicePath); } bool CLibCEC::PingAdapter(void) @@ -122,19 +133,19 @@ bool CLibCEC::StartBootloader(void) return m_comm ? m_comm->StartBootloader() : false; } -int CLibCEC::GetMinVersion(void) +int8_t CLibCEC::GetMinVersion(void) { return CEC_MIN_VERSION; } -int CLibCEC::GetLibVersion(void) +int8_t CLibCEC::GetLibVersion(void) { return CEC_LIB_VERSION; } bool CLibCEC::GetNextLogMessage(cec_log_message *message) { - return m_logBuffer.Pop(*message); + return (m_logBuffer.Pop(*message)); } bool CLibCEC::GetNextKeypress(cec_keypress *key) @@ -147,7 +158,7 @@ bool CLibCEC::GetNextCommand(cec_command *command) return m_commandBuffer.Pop(*command); } -bool CLibCEC::Transmit(const cec_frame &data, bool bWaitForAck /* = true */) +bool CLibCEC::Transmit(const cec_command &data, bool bWaitForAck /* = true */) { return m_cec ? m_cec->Transmit(data, bWaitForAck) : false; } @@ -179,10 +190,14 @@ bool CLibCEC::SetInactiveView(void) void CLibCEC::AddLog(cec_log_level level, const string &strMessage) { - cec_log_message message; - message.level = level; - message.message.assign(strMessage.c_str()); - m_logBuffer.Push(message); + if (m_cec) + { + cec_log_message message; + message.level = level; + message.time = GetTimeMs() - m_iStartTime; + snprintf(message.message, sizeof(message.message), "%s", strMessage.c_str()); + m_logBuffer.Push(message); + } } void CLibCEC::AddKey(void) @@ -190,6 +205,7 @@ void CLibCEC::AddKey(void) if (m_iCurrentButton != CEC_USER_CONTROL_CODE_UNKNOWN) { cec_keypress key; + key.duration = (unsigned int) (GetTimeMs() - m_buttontime); key.keycode = m_iCurrentButton; m_keyBuffer.Push(key); @@ -198,18 +214,12 @@ void CLibCEC::AddKey(void) } } -void CLibCEC::AddCommand(cec_logical_address source, cec_logical_address destination, cec_opcode opcode, cec_frame *parameters) +void CLibCEC::AddCommand(cec_command &command) { - cec_command command; - command.source = source; - command.destination = destination; - command.opcode = opcode; - if (parameters) - command.parameters = *parameters; if (m_commandBuffer.Push(command)) { CStdString strDebug; - strDebug.Format("stored command '%d' in the command buffer. buffer size = %d", opcode, m_commandBuffer.Size()); + strDebug.Format("stored command '%2x' in the command buffer. buffer size = %d", command.opcode, m_commandBuffer.Size()); AddLog(CEC_LOG_DEBUG, strDebug); } else @@ -233,7 +243,14 @@ void CLibCEC::SetCurrentButton(cec_user_control_code iButtonCode) m_buttontime = GetTimeMs(); } -DECLSPEC void * CECCreate(const char *strDeviceName, CEC::cec_logical_address iLogicalAddress /*= CEC::CECDEVICE_PLAYBACKDEVICE1 */, int iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */) +void * CECCreate(const char *strDeviceName, CEC::cec_logical_address iLogicalAddress /*= CEC::CECDEVICE_PLAYBACKDEVICE1 */, uint16_t iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS */) { return static_cast< void* > (new CLibCEC(strDeviceName, iLogicalAddress, iPhysicalAddress)); } + +void CECDestroy(CEC::ICECAdapter *instance) +{ + CLibCEC *lib = static_cast< CLibCEC* > (instance); + if (lib) + delete lib; +}