#include "util/threads.h"
#include "util/timeutils.h"
#include "CECDetect.h"
+#include "Communication.h"
using namespace CEC;
using namespace std;
*/
//@{
CCECParser::CCECParser(const char *strDeviceName, cec_logical_address iLogicalAddress /* = CECDEVICE_PLAYBACKDEVICE1 */, int iPhysicalAddress /* = CEC_DEFAULT_PHYSICAL_ADDRESS*/) :
- m_inbuf(NULL),
- m_iInbufSize(0),
- m_iInbufUsed(0),
m_iCurrentButton(CEC_USER_CONTROL_CODE_UNKNOWN),
m_physicaladdress(iPhysicalAddress),
m_iLogicalAddress(iLogicalAddress),
m_strDeviceName(strDeviceName),
m_bRunning(false)
{
- m_serialport = new CSerialPort;
+ m_communication = new CCommunication(this);
}
CCECParser::~CCECParser(void)
{
Close(0);
- m_serialport->Close();
- delete m_serialport;
+ m_communication->Close();
+ delete m_communication;
}
bool CCECParser::Open(const char *strPort, int iTimeoutMs /* = 10000 */)
{
- bool bReturn(false);
+ if (!m_communication)
+ return false;
- if (!(bReturn = m_serialport->Open(strPort, 38400)))
+ if (m_communication->IsOpen())
{
- CStdString strError;
- strError.Format("error opening serial port '%s': %s", strPort, m_serialport->GetError().c_str());
- AddLog(CEC_LOG_ERROR, strError);
- return bReturn;
+ AddLog(CEC_LOG_ERROR, "connection already open");
+ return false;
}
- //clear any input bytes
- uint8_t buff[1024];
- m_serialport->Read(buff, sizeof(buff), CEC_SETTLE_DOWN_TIME);
-
- if (bReturn)
- bReturn = SetLogicalAddress(m_iLogicalAddress);
+ if (!m_communication->Open(strPort, 38400, iTimeoutMs))
+ {
+ AddLog(CEC_LOG_ERROR, "could not open a connection");
+ return false;
+ }
- if (!bReturn)
+ if (!SetLogicalAddress(m_iLogicalAddress))
{
- CStdString strError;
- strError.Format("error opening serial port '%s': %s", strPort, m_serialport->GetError().c_str());
- AddLog(CEC_LOG_ERROR, strError);
- return bReturn;
+ AddLog(CEC_LOG_ERROR, "could not set the logical address");
+ return false;
}
- if (bReturn)
+ if (pthread_create(&m_thread, NULL, (void *(*) (void *))&CCECParser::ThreadHandler, (void *)this) == 0)
{
m_bRunning = true;
- if (pthread_create(&m_thread, NULL, (void *(*) (void *))&CCECParser::ThreadHandler, (void *)this) == 0)
- pthread_detach(m_thread);
- else
- m_bRunning = false;
+ AddLog(CEC_LOG_DEBUG, "processor thread created");
+ pthread_detach(m_thread);
+ return true;
+ }
+ else
+ {
+ AddLog(CEC_LOG_ERROR, "could not create a processor thread");
+ m_bRunning = false;
}
- return bReturn;
+ return false;
}
bool CCECParser::Close(int iTimeoutMs /* = 2000 */)
int64_t now = GetTimeMs();
while (m_bRunning)
{
- {
- CLockObject lock(&m_mutex, 1000);
- if (lock.IsLocked())
- {
- if (!ReadFromDevice(100))
- {
- m_bRunning = false;
- return false;
- }
- }
- }
+ cec_frame msg;
+ while (m_bRunning && m_communication->IsOpen() && m_communication->Read(msg, 500))
+ ParseMessage(msg);
- //AddLog(CEC_LOG_DEBUG, "processing messages");
- ProcessMessages();
now = GetTimeMs();
CheckKeypressTimeout(now);
CCondition::Sleep(50);
}
- AddLog(CEC_LOG_DEBUG, "reader thread terminated");
+ AddLog(CEC_LOG_DEBUG, "processor thread terminated");
m_bRunning = false;
m_exitCondition.Signal();
return true;
bool CCECParser::GetNextLogMessage(cec_log_message *message)
{
- return m_bRunning ? m_logBuffer.Pop(*message) : false;
+ return m_logBuffer.Pop(*message);
}
bool CCECParser::GetNextKeypress(cec_keypress *key)
bool CCECParser::TransmitFormatted(const cec_frame &data, bool bWaitForAck /* = true */, int64_t iTimeout /* = 2000 */)
{
- CLockObject lock(&m_mutex, iTimeout);
- if (!lock.IsLocked())
- {
- AddLog(CEC_LOG_ERROR, "could not get a write lock");
- return false;
- }
-
- if (m_serialport->Write(data) != data.size())
- {
- CStdString strError;
- strError.Format("error writing to serial port: %s", m_serialport->GetError().c_str());
- AddLog(CEC_LOG_ERROR, strError);
+ if (!m_communication || m_communication->Write(data) != data.size())
return false;
- }
- AddLog(CEC_LOG_DEBUG, "command sent");
CCondition::Sleep((int) data.size() * 24 /*data*/ + 5 /*start bit (4.5 ms)*/ + 50 /* to be on the safe side */);
if (bWaitForAck && !WaitForAck())
while (!bGotAck && !bError && (iTimeout <= 0 || iNow < iTargetTime))
{
- if (!ReadFromDevice((int) iTimeout))
- {
- AddLog(CEC_LOG_ERROR, "failed to read from device");
- return false;
- }
-
cec_frame msg;
- while (!bGotAck && !bError && GetMessage(msg, false))
+ while (!bGotAck && !bError && m_communication->Read(msg, iTimeout))
{
uint8_t iCode = msg[0] & ~(MSGCODE_FRAME_EOM | MSGCODE_FRAME_ACK);
return bGotAck && !bError;
}
-bool CCECParser::ReadFromDevice(int iTimeout)
-{
- uint8_t buff[1024];
- int iBytesRead = m_serialport->Read(buff, sizeof(buff), iTimeout);
- if (iBytesRead < 0)
- {
- CStdString strError;
- strError.Format("error reading from serial port: %s", m_serialport->GetError().c_str());
- AddLog(CEC_LOG_ERROR, strError);
- return false;
- }
- else if (iBytesRead > 0)
- AddData(buff, iBytesRead);
-
- return true;
-}
-
-void CCECParser::ProcessMessages(void)
-{
- cec_frame msg;
- while (m_bRunning && GetMessage(msg))
- ParseMessage(msg);
-}
-
-bool CCECParser::GetMessage(cec_frame &msg, bool bFromBuffer /* = true */)
-{
- if (bFromBuffer && m_frameBuffer.Pop(msg))
- return true;
-
- if (m_iInbufUsed < 1)
- return false;
-
- //search for first start of message
- int startpos = -1;
- for (int i = 0; i < m_iInbufUsed; i++)
- {
- if (m_inbuf[i] == MSGSTART)
- {
- startpos = i;
- break;
- }
- }
-
- if (startpos == -1)
- return false;
-
- //move anything from the first start of message to the beginning of the buffer
- if (startpos > 0)
- {
- memmove(m_inbuf, m_inbuf + startpos, m_iInbufUsed - startpos);
- m_iInbufUsed -= startpos;
- }
-
- if (m_iInbufUsed < 2)
- return false;
-
- //look for end of message
- startpos = -1;
- int endpos = -1;
- for (int i = 1; i < m_iInbufUsed; i++)
- {
- if (m_inbuf[i] == MSGEND)
- {
- endpos = i;
- break;
- }
- else if (m_inbuf[i] == MSGSTART)
- {
- startpos = i;
- break;
- }
- }
-
- if (startpos > 0) //we found a msgstart before msgend, this is not right, remove
- {
- AddLog(CEC_LOG_ERROR, "received MSGSTART before MSGEND");
- memmove(m_inbuf, m_inbuf + startpos, m_iInbufUsed - startpos);
- m_iInbufUsed -= startpos;
- return false;
- }
-
- if (endpos > 0) //found a MSGEND
- {
- msg.clear();
- bool isesc = false;
- for (int i = 1; i < endpos; i++)
- {
- if (isesc)
- {
- msg.push_back(m_inbuf[i] + (uint8_t)ESCOFFSET);
- isesc = false;
- }
- else if (m_inbuf[i] == MSGESC)
- {
- isesc = true;
- }
- else
- {
- msg.push_back(m_inbuf[i]);
- }
- }
-
- if (endpos + 1 < m_iInbufUsed)
- memmove(m_inbuf, m_inbuf + endpos + 1, m_iInbufUsed - endpos - 1);
-
- m_iInbufUsed -= endpos + 1;
-
- return true;
- }
-
- return false;
-}
-
void CCECParser::ParseMessage(cec_frame &msg)
{
if (msg.empty())
}
}
-void CCECParser::AddData(uint8_t *data, int iLen)
-{
- if (iLen + m_iInbufUsed > m_iInbufSize)
- {
- m_iInbufSize = iLen + m_iInbufUsed;
- m_inbuf = (uint8_t*)realloc(m_inbuf, m_iInbufSize);
- }
-
- memcpy(m_inbuf + m_iInbufUsed, data, iLen);
- m_iInbufUsed += iLen;
-}
-
void CCECParser::PushEscaped(cec_frame &vec, uint8_t byte)
{
if (byte >= MSGESC && byte != MSGSTART)
PushEscaped(output, (uint8_t)iMask);
output.push_back(MSGEND);
- if (m_serialport->Write(output) == -1)
+ if (m_communication->Write(output) == -1)
{
- strLog.Format("error writing to serial port: %s", m_serialport->GetError().c_str());
- AddLog(CEC_LOG_ERROR, strLog);
+ AddLog(CEC_LOG_ERROR, "could not set the ackmask");
return false;
}
namespace CEC
{
+ class CCommunication;
+
class CCECParser : public ICECDevice
{
public:
static void *ThreadHandler(CCECParser *parser);
bool Process(void);
+ void AddLog(cec_log_level level, const std::string &strMessage);
protected:
virtual bool TransmitFormatted(const cec_frame &data, bool bWaitForAck = true, int64_t iTimeout = (int64_t) 2000);
virtual void TransmitAbort(cec_logical_address address, cec_opcode opcode, ECecAbortReason reason = CEC_ABORT_REASON_UNRECOGNIZED_OPCODE);
private:
void AddKey(void);
void AddCommand(cec_logical_address source, cec_logical_address destination, cec_opcode opcode, cec_frame *parameters);
- void AddLog(cec_log_level level, const std::string &strMessage);
bool WaitForAck(int64_t iTimeout = (int64_t) 1000);
bool ReadFromDevice(int iTimeout);
void ProcessMessages(void);
void CheckKeypressTimeout(int64_t now);
- uint8_t* m_inbuf;
- int m_iInbufSize;
- int m_iInbufUsed;
- CSerialPort * m_serialport;
cec_frame m_currentframe;
cec_user_control_code m_iCurrentButton;
int64_t m_buttontime;
CMutex m_mutex;
CCondition m_exitCondition;
bool m_bRunning;
+ CCommunication *m_communication;
};
};
--- /dev/null
+/*
+ * This file is part of the libCEC(R) library.
+ *
+ * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
+ * libCEC(R) is an original work, containing original code.
+ *
+ * libCEC(R) is a trademark of Pulse-Eight Limited.
+ *
+ * This program is dual-licensed; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ *
+ * Alternatively, you can license this library under a commercial license,
+ * please contact Pulse-Eight Licensing for more information.
+ *
+ * For more information contact:
+ * Pulse-Eight Licensing <license@pulse-eight.com>
+ * http://www.pulse-eight.com/
+ * http://www.pulse-eight.net/
+ */
+
+#include "Communication.h"
+#include "CECParser.h"
+#include "libPlatform/serialport.h"
+#include "util/StdString.h"
+
+using namespace std;
+using namespace CEC;
+
+CCommunication::CCommunication(CCECParser *parser) :
+ m_parser(parser),
+ m_inbuf(NULL),
+ m_iInbufSize(0),
+ m_iInbufUsed(0),
+ m_bStarted(false),
+ m_bStop(false)
+{
+ m_port = new CSerialPort;
+}
+
+CCommunication::~CCommunication(void)
+{
+ m_port->Close();
+ m_port = NULL;
+}
+
+bool CCommunication::Open(const char *strPort, int iBaudRate /* = 38400 */, int iTimeoutMs /* = 10000 */)
+{
+ CLockObject lock(&m_commMutex);
+ if (m_bStarted)
+ return false;
+
+ if (!m_port->Open(strPort, iBaudRate))
+ {
+ CStdString strError;
+ strError.Format("error opening serial port '%s': %s", strPort, m_port->GetError().c_str());
+ m_parser->AddLog(CEC_LOG_ERROR, strError);
+ return false;
+ }
+
+ m_parser->AddLog(CEC_LOG_DEBUG, "connection opened");
+
+ //clear any input bytes
+ uint8_t buff[1024];
+ m_port->Read(buff, sizeof(buff), 50);
+
+ CCondition::Sleep(CEC_SETTLE_DOWN_TIME);
+
+ m_bStop = false;
+ m_bStarted = true;
+ if (pthread_create(&m_thread, NULL, (void *(*) (void *))&CCommunication::ReaderThreadHandler, (void *)this) == 0)
+ {
+ m_parser->AddLog(CEC_LOG_DEBUG, "reader thread created");
+ pthread_detach(m_thread);
+ return true;
+ }
+ else
+ {
+ m_parser->AddLog(CEC_LOG_DEBUG, "could not create a reader thread");
+ }
+
+ return false;
+}
+
+void *CCommunication::ReaderThreadHandler(CCommunication *comm)
+{
+ if (comm)
+ comm->ReaderProcess();
+
+ return NULL;
+}
+
+void CCommunication::Close(void)
+{
+ m_bStop = true;
+ pthread_join(m_thread, NULL);
+ m_port->Close();
+}
+
+void *CCommunication::ReaderProcess(void)
+{
+ while (!m_bStop)
+ {
+ if (!ReadFromDevice(250))
+ {
+ m_bStarted = false;
+ break;
+ }
+
+ CCondition::Sleep(50);
+ }
+
+ m_parser->AddLog(CEC_LOG_DEBUG, "reader thread terminated");
+
+ CLockObject lock(&m_commMutex);
+ m_bStarted = false;
+ return NULL;
+}
+
+bool CCommunication::ReadFromDevice(int iTimeout)
+{
+ uint8_t buff[1024];
+ CLockObject lock(&m_commMutex);
+ int iBytesRead = m_port->Read(buff, sizeof(buff), iTimeout);
+ lock.Leave();
+ if (iBytesRead < 0)
+ {
+ CStdString strError;
+ strError.Format("error reading from serial port: %s", m_port->GetError().c_str());
+ m_parser->AddLog(CEC_LOG_ERROR, strError);
+ return false;
+ }
+ else if (iBytesRead > 0)
+ AddData(buff, iBytesRead);
+
+ return true;
+}
+
+void CCommunication::AddData(uint8_t *data, int iLen)
+{
+ CLockObject lock(&m_bufferMutex);
+ if (iLen + m_iInbufUsed > m_iInbufSize)
+ {
+ m_iInbufSize = iLen + m_iInbufUsed;
+ m_inbuf = (uint8_t*)realloc(m_inbuf, m_iInbufSize);
+ }
+
+ memcpy(m_inbuf + m_iInbufUsed, data, iLen);
+ m_iInbufUsed += iLen;
+ lock.Leave();
+ m_condition.Signal();
+}
+
+bool CCommunication::Write(const cec_frame &data)
+{
+ CLockObject lock(&m_commMutex);
+
+ if (m_port->Write(data) != data.size())
+ {
+ CStdString strError;
+ strError.Format("error writing to serial port: %s", m_port->GetError().c_str());
+ m_parser->AddLog(CEC_LOG_ERROR, strError);
+ return false;
+ }
+
+ m_parser->AddLog(CEC_LOG_DEBUG, "command sent");
+ return true;
+}
+
+bool CCommunication::Read(cec_frame &msg, int iTimeout)
+{
+ CLockObject lock(&m_bufferMutex);
+
+ while (m_iInbufUsed < 1)
+ m_condition.Wait(&m_bufferMutex, iTimeout);
+
+ if (m_iInbufUsed < 1)
+ return false;
+
+ //search for first start of message
+ int startpos = -1;
+ for (int i = 0; i < m_iInbufUsed; i++)
+ {
+ if (m_inbuf[i] == MSGSTART)
+ {
+ startpos = i;
+ break;
+ }
+ }
+
+ if (startpos == -1)
+ return false;
+
+ //move anything from the first start of message to the beginning of the buffer
+ if (startpos > 0)
+ {
+ memmove(m_inbuf, m_inbuf + startpos, m_iInbufUsed - startpos);
+ m_iInbufUsed -= startpos;
+ }
+
+ if (m_iInbufUsed < 2)
+ return false;
+
+ //look for end of message
+ startpos = -1;
+ int endpos = -1;
+ for (int i = 1; i < m_iInbufUsed; i++)
+ {
+ if (m_inbuf[i] == MSGEND)
+ {
+ endpos = i;
+ break;
+ }
+ else if (m_inbuf[i] == MSGSTART)
+ {
+ startpos = i;
+ break;
+ }
+ }
+
+ if (startpos > 0) //we found a msgstart before msgend, this is not right, remove
+ {
+ m_parser->AddLog(CEC_LOG_ERROR, "received MSGSTART before MSGEND");
+ memmove(m_inbuf, m_inbuf + startpos, m_iInbufUsed - startpos);
+ m_iInbufUsed -= startpos;
+ return false;
+ }
+
+ if (endpos > 0) //found a MSGEND
+ {
+ msg.clear();
+ bool isesc = false;
+ for (int i = 1; i < endpos; i++)
+ {
+ if (isesc)
+ {
+ msg.push_back(m_inbuf[i] + (uint8_t)ESCOFFSET);
+ isesc = false;
+ }
+ else if (m_inbuf[i] == MSGESC)
+ {
+ isesc = true;
+ }
+ else
+ {
+ msg.push_back(m_inbuf[i]);
+ }
+ }
+
+ if (endpos + 1 < m_iInbufUsed)
+ memmove(m_inbuf, m_inbuf + endpos + 1, m_iInbufUsed - endpos - 1);
+
+ m_iInbufUsed -= endpos + 1;
+
+ return true;
+ }
+
+ return false;
+}
+
+std::string CCommunication::GetError(void) const
+{
+ return m_port->GetError();
+}
--- /dev/null
+#pragma once
+/*
+ * This file is part of the libCEC(R) library.
+ *
+ * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
+ * libCEC(R) is an original work, containing original code.
+ *
+ * libCEC(R) is a trademark of Pulse-Eight Limited.
+ *
+ * This program is dual-licensed; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ *
+ * Alternatively, you can license this library under a commercial license,
+ * please contact Pulse-Eight Licensing for more information.
+ *
+ * For more information contact:
+ * Pulse-Eight Licensing <license@pulse-eight.com>
+ * http://www.pulse-eight.com/
+ * http://www.pulse-eight.net/
+ */
+
+#include <queue>
+#include <stdio.h>
+#include "../../include/CECExports.h"
+#include "../../include/CECTypes.h"
+#include "util/buffer.h"
+
+class CSerialPort;
+
+namespace CEC
+{
+ class CCECParser;
+
+ class CCommunication
+ {
+ public:
+ CCommunication(CCECParser *parser);
+ virtual ~CCommunication();
+
+ bool Open(const char *strPort, int iBaudRate = 38400, int iTimeoutMs = 10000);
+ bool Read(cec_frame &msg, int iTimeout = 1000);
+ bool Write(const cec_frame &frame);
+ void Close(void);
+ bool IsOpen(void) const { return !m_bStop && m_bStarted; }
+ std::string GetError(void) const;
+
+ static void *ReaderThreadHandler(CCommunication *reader);
+ void *ReaderProcess(void);
+ private:
+ void AddData(uint8_t *data, int iLen);
+ bool ReadFromDevice(int iTimeout);
+
+ CSerialPort * m_port;
+ CCECParser * m_parser;
+ uint8_t* m_inbuf;
+ int m_iInbufSize;
+ int m_iInbufUsed;
+ bool m_bStarted;
+ bool m_bStop;
+ pthread_t m_thread;
+ CMutex m_commMutex;
+ CMutex m_bufferMutex;
+ CCondition m_condition;
+ };
+};
CECParserC.cpp \
CECDetect.cpp \
CECDetect.h \
+ Communication.cpp \
+ Communication.h \
../../include/CECExports.h \
../../include/CECExportsCpp.h \
../../include/CECExportsC.h \
}
CLockObject::~CLockObject(void)
+{
+ Leave();
+ m_mutex = NULL;
+}
+
+void CLockObject::Leave(void)
{
m_mutex->Unlock();
m_bLocked = false;
- m_mutex = NULL;
+}
+
+void CLockObject::Lock(void)
+{
+ m_mutex->Lock();
+ m_bLocked = true;
}
CCondition::CCondition(void)
~CLockObject(void);
bool IsLocked(void) const { return m_bLocked; }
+ void Leave(void);
+ void Lock(void);
private:
CMutex *m_mutex;