X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Flib%2Fplatform%2Fposix%2Fserialport.cpp;h=3764a1567f9673a26aedfaa0ba1192cfe4884145;hb=ae0f8fe4a09c5a4a3bb8fef267c6146d6df9d1e0;hp=5557064555be90200cc2eeb7873522f6c1de9359;hpb=996665192725398172263999b88c63663d11db04;p=deb_libcec.git diff --git a/src/lib/platform/posix/serialport.cpp b/src/lib/platform/posix/serialport.cpp index 5557064..3764a15 100644 --- a/src/lib/platform/posix/serialport.cpp +++ b/src/lib/platform/posix/serialport.cpp @@ -37,7 +37,7 @@ #include "../util/baudrate.h" #include "../posix/os-socket.h" -#if defined(__APPLE__) +#if defined(__APPLE__) || defined(__FreeBSD__) #ifndef XCASE #define XCASE 0 #endif @@ -47,60 +47,95 @@ #ifndef IUCLC #define IUCLC 0 #endif +#else +#include #endif + using namespace std; using namespace PLATFORM; +inline bool RemoveLock(const char *strDeviceName) +{ + #if !defined(__APPLE__) && !defined(__FreeBSD__) + return dev_unlock(strDeviceName, 0) == 0; + #endif +} + void CSerialSocket::Close(void) { - SocketClose(m_socket); + if (IsOpen()) + { + SocketClose(m_socket); + RemoveLock(m_strName.c_str()); + } } void CSerialSocket::Shutdown(void) { - SocketClose(m_socket); + if (IsOpen()) + { + SocketClose(m_socket); + RemoveLock(m_strName.c_str()); + } } ssize_t CSerialSocket::Write(void* data, size_t len) { - return SocketWrite(m_socket, &m_iError, data, len); + return IsOpen() ? SocketWrite(m_socket, &m_iError, data, len) : -1; } ssize_t CSerialSocket::Read(void* data, size_t len, uint64_t iTimeoutMs /* = 0 */) { - return SocketRead(m_socket, &m_iError, data, len, iTimeoutMs); + return IsOpen() ? SocketRead(m_socket, &m_iError, data, len, iTimeoutMs) : -1; } //setting all this stuff up is a pain in the ass bool CSerialSocket::Open(uint64_t iTimeoutMs /* = 0 */) { iTimeoutMs = 0; - CLockObject lock(m_mutex); + if (IsOpen()) + { + m_iError = EINVAL; + return false; + } if (m_iDatabits != SERIAL_DATA_BITS_FIVE && m_iDatabits != SERIAL_DATA_BITS_SIX && m_iDatabits != SERIAL_DATA_BITS_SEVEN && m_iDatabits != SERIAL_DATA_BITS_EIGHT) { m_strError = "Databits has to be between 5 and 8"; + m_iError = EINVAL; return false; } if (m_iStopbits != SERIAL_STOP_BITS_ONE && m_iStopbits != SERIAL_STOP_BITS_TWO) { m_strError = "Stopbits has to be 1 or 2"; + m_iError = EINVAL; return false; } if (m_iParity != SERIAL_PARITY_NONE && m_iParity != SERIAL_PARITY_EVEN && m_iParity != SERIAL_PARITY_ODD) { m_strError = "Parity has to be none, even or odd"; + m_iError = EINVAL; + return false; + } + + #if !defined(__APPLE__) && !defined(__FreeBSD__) + if (dev_lock(m_strName.c_str()) != 0) + { + m_strError = "Couldn't lock the serial port"; + m_iError = EBUSY; return false; } + #endif m_socket = open(m_strName.c_str(), O_RDWR | O_NOCTTY | O_NDELAY); if (m_socket == INVALID_SERIAL_SOCKET_VALUE) { m_strError = strerror(errno); + RemoveLock(m_strName.c_str()); return false; } @@ -147,6 +182,7 @@ bool CSerialSocket::Open(uint64_t iTimeoutMs /* = 0 */) if (tcsetattr(m_socket, TCSANOW, &m_options) != 0) { m_strError = strerror(errno); + RemoveLock(m_strName.c_str()); return false; }