cec: clean up lib/platform
[deb_libcec.git] / src / lib / platform / windows / serialport.cpp
CommitLineData
abbca718
LOK
1/*
2 * This file is part of the libCEC(R) library.
3 *
b492c10e 4 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
abbca718
LOK
5 * libCEC(R) is an original work, containing original code.
6 *
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
8 *
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 *
23 *
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
26 *
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
31 */
32
ba65909d
LOK
33#include "../sockets/serialport.h"
34#include "../util/baudrate.h"
35#include "../util/timeutils.h"
abbca718
LOK
36
37using namespace std;
f00ff009 38using namespace PLATFORM;
abbca718 39
99666519 40void FormatWindowsError(int iErrorCode, CStdString &strMessage)
abbca718
LOK
41{
42 if (iErrorCode != ERROR_SUCCESS)
43 {
44 char strAddMessage[1024];
45 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, iErrorCode, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), strAddMessage, 1024, NULL);
46 strMessage.append(": ");
47 strMessage.append(strAddMessage);
48 }
49}
50
99666519 51bool SetTimeouts(serial_socket_t socket, int* iError, bool bBlocking)
abbca718 52{
99666519
LOK
53 if (socket == INVALID_HANDLE_VALUE)
54 return false;
55
56 COMMTIMEOUTS cto;
57 if (!GetCommTimeouts(socket, &cto))
58 {
59 *iError = GetLastError();
60 return false;
61 }
62
63 if (bBlocking)
64 {
65 cto.ReadIntervalTimeout = 0;
66 cto.ReadTotalTimeoutConstant = 0;
67 cto.ReadTotalTimeoutMultiplier = 0;
68 }
69 else
70 {
71 cto.ReadIntervalTimeout = MAXDWORD;
72 cto.ReadTotalTimeoutConstant = 0;
73 cto.ReadTotalTimeoutMultiplier = 0;
74 }
75
76 if (!SetCommTimeouts(socket, &cto))
77 {
78 *iError = GetLastError();
79 return false;
80 }
81
82 return true;
abbca718
LOK
83}
84
99666519 85void CSerialSocket::Close(void)
abbca718 86{
99666519
LOK
87 SerialSocketClose(m_socket);
88}
89
90void CSerialSocket::Shutdown(void)
91{
92 SerialSocketClose(m_socket);
93}
94
95ssize_t CSerialSocket::Write(void* data, size_t len)
96{
97 return SerialSocketWrite(m_socket, &m_iError, data, len);
98}
99
100ssize_t CSerialSocket::Read(void* data, size_t len, uint64_t iTimeoutMs /* = 0 */)
101{
102 return SerialSocketRead(m_socket, &m_iError, data, len, iTimeoutMs);
103}
104
105bool CSerialSocket::Open(uint64_t iTimeoutMs /* = 0 */)
106{
107 iTimeoutMs = 0;
108 CStdString strComPath = "\\\\.\\" + m_strName;
f00ff009 109 CLockObject lock(m_mutex);
99666519
LOK
110 m_socket = CreateFile(strComPath.c_str(), GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
111 if (m_socket == INVALID_HANDLE_VALUE)
abbca718 112 {
24048d57
LOK
113 m_strError = "Unable to open COM port";
114 FormatWindowsError(GetLastError(), m_strError);
abbca718
LOK
115 return false;
116 }
117
118 COMMCONFIG commConfig = {0};
119 DWORD dwSize = sizeof(commConfig);
120 commConfig.dwSize = dwSize;
ff50391c 121 if (GetDefaultCommConfig(strComPath.c_str(), &commConfig,&dwSize))
abbca718 122 {
99666519 123 if (!SetCommConfig(m_socket, &commConfig,dwSize))
abbca718 124 {
24048d57
LOK
125 m_strError = "unable to set default config";
126 FormatWindowsError(GetLastError(), m_strError);
abbca718
LOK
127 }
128 }
129 else
130 {
24048d57
LOK
131 m_strError = "unable to get default config";
132 FormatWindowsError(GetLastError(), m_strError);
abbca718
LOK
133 }
134
99666519 135 if (!SetupComm(m_socket, 64, 64))
abbca718 136 {
24048d57
LOK
137 m_strError = "unable to set up the com port";
138 FormatWindowsError(GetLastError(), m_strError);
abbca718
LOK
139 }
140
99666519 141 if (!SetBaudRate(m_iBaudrate))
abbca718 142 {
24048d57
LOK
143 m_strError = "unable to set baud rate";
144 FormatWindowsError(GetLastError(), m_strError);
abbca718
LOK
145 Close();
146 return false;
147 }
148
99666519 149 if (!SetTimeouts(m_socket, &m_iError, false))
abbca718 150 {
24048d57
LOK
151 m_strError = "unable to set timeouts";
152 FormatWindowsError(GetLastError(), m_strError);
abbca718
LOK
153 Close();
154 return false;
155 }
156
157 m_bIsOpen = true;
158 return m_bIsOpen;
159}
160
99666519 161bool CSerialSocket::SetBaudRate(uint32_t baudrate)
abbca718 162{
8bca69de
LOK
163 int32_t rate = IntToBaudrate(baudrate);
164 if (rate < 0)
165 m_iBaudrate = baudrate > 0 ? baudrate : 0;
166 else
167 m_iBaudrate = rate;
abbca718
LOK
168
169 DCB dcb;
170 memset(&dcb,0,sizeof(dcb));
171 dcb.DCBlength = sizeof(dcb);
b9187cc6 172 dcb.BaudRate = IntToBaudrate(m_iBaudrate);
abbca718
LOK
173 dcb.fBinary = true;
174 dcb.fDtrControl = DTR_CONTROL_DISABLE;
175 dcb.fRtsControl = RTS_CONTROL_DISABLE;
176 dcb.fOutxCtsFlow = false;
177 dcb.fOutxDsrFlow = false;
178 dcb.fOutX = false;
179 dcb.fInX = false;
180 dcb.fAbortOnError = true;
181
99666519 182 if (m_iParity == SERIAL_PARITY_NONE)
abbca718 183 dcb.Parity = NOPARITY;
99666519 184 else if (m_iParity == SERIAL_PARITY_EVEN)
abbca718
LOK
185 dcb.Parity = EVENPARITY;
186 else
187 dcb.Parity = ODDPARITY;
188
99666519 189 if (m_iStopbits == SERIAL_STOP_BITS_TWO)
abbca718
LOK
190 dcb.StopBits = TWOSTOPBITS;
191 else
192 dcb.StopBits = ONESTOPBIT;
193
99666519 194 dcb.ByteSize = (BYTE)m_iDatabits;
abbca718 195
99666519 196 if(!SetCommState(m_socket,&dcb))
abbca718 197 {
24048d57
LOK
198 m_strError = "SetCommState failed";
199 FormatWindowsError(GetLastError(), m_strError);
abbca718
LOK
200 return false;
201 }
202
203 return true;
204}