2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
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.
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.
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.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
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/
33 #include "../serialport.h"
34 #include "../baudrate.h"
35 #include "../timeutils.h"
40 void FormatWindowsError(int iErrorCode
, string
&strMessage
)
42 if (iErrorCode
!= ERROR_SUCCESS
)
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
);
51 CSerialPort::CSerialPort(void) :
52 m_handle(INVALID_HANDLE_VALUE
),
61 CSerialPort::~CSerialPort(void)
66 bool CSerialPort::Open(string name
, uint32_t baudrate
, uint8_t databits
, uint8_t stopbits
, uint8_t parity
)
68 CLockObject
lock(&m_mutex
);
69 m_handle
= CreateFile(name
.c_str(), GENERIC_READ
| GENERIC_WRITE
, 0, NULL
, OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, 0);
70 if (m_handle
== INVALID_HANDLE_VALUE
)
72 m_error
= "Unable to open COM port";
73 FormatWindowsError(GetLastError(), m_error
);
77 COMMCONFIG commConfig
= {0};
78 DWORD dwSize
= sizeof(commConfig
);
79 commConfig
.dwSize
= dwSize
;
80 if (GetDefaultCommConfig(name
.c_str(), &commConfig
,&dwSize
))
82 if (!SetCommConfig(m_handle
, &commConfig
,dwSize
))
84 m_error
= "unable to set default config";
85 FormatWindowsError(GetLastError(), m_error
);
90 m_error
= "unable to get default config";
91 FormatWindowsError(GetLastError(), m_error
);
94 if (!SetupComm(m_handle
, 64, 64))
96 m_error
= "unable to set up the com port";
97 FormatWindowsError(GetLastError(), m_error
);
100 m_iDatabits
= databits
;
101 m_iStopbits
= stopbits
;
103 if (!SetBaudRate(baudrate
))
105 m_error
= "unable to set baud rate";
106 FormatWindowsError(GetLastError(), m_error
);
111 if (!SetTimeouts(false))
113 m_error
= "unable to set timeouts";
114 FormatWindowsError(GetLastError(), m_error
);
123 bool CSerialPort::SetTimeouts(bool bBlocking
)
125 if (m_handle
== INVALID_HANDLE_VALUE
)
129 if (!GetCommTimeouts(m_handle
, &cto
))
131 m_error
= "GetCommTimeouts failed";
132 FormatWindowsError(GetLastError(), m_error
);
138 cto
.ReadIntervalTimeout
= 0;
139 cto
.ReadTotalTimeoutConstant
= 0;
140 cto
.ReadTotalTimeoutMultiplier
= 0;
144 cto
.ReadIntervalTimeout
= MAXDWORD
;
145 cto
.ReadTotalTimeoutConstant
= 0;
146 cto
.ReadTotalTimeoutMultiplier
= 0;
149 if (!SetCommTimeouts(m_handle
, &cto
))
151 m_error
= "SetCommTimeouts failed";
152 FormatWindowsError(GetLastError(), m_error
);
159 void CSerialPort::Close(void)
161 CLockObject
lock(&m_mutex
);
164 CloseHandle(m_handle
);
169 int8_t CSerialPort::Write(CCECAdapterMessagePtr data
)
171 CLockObject
lock(&m_mutex
);
172 DWORD iBytesWritten
= 0;
176 if (!WriteFile(m_handle
, data
->packet
.data
, data
->size(), &iBytesWritten
, NULL
))
178 m_error
= "Error while writing to COM port";
179 FormatWindowsError(GetLastError(), m_error
);
183 return (int8_t)iBytesWritten
;
186 int32_t CSerialPort::Read(uint8_t* data
, uint32_t len
, uint64_t iTimeoutMs
/* = 0 */)
188 CLockObject
lock(&m_mutex
);
190 DWORD iBytesRead
= 0;
193 m_error
= "Error while reading from COM port: invalid handle";
197 if(!ReadFile(m_handle
, data
, len
, &iBytesRead
, NULL
) != 0)
199 m_error
= "unable to read from device";
200 FormatWindowsError(GetLastError(), m_error
);
205 iReturn
= (int32_t) iBytesRead
;
211 bool CSerialPort::SetBaudRate(uint32_t baudrate
)
213 int32_t rate
= IntToBaudrate(baudrate
);
215 m_iBaudrate
= baudrate
> 0 ? baudrate
: 0;
220 memset(&dcb
,0,sizeof(dcb
));
221 dcb
.DCBlength
= sizeof(dcb
);
222 dcb
.BaudRate
= IntToBaudrate(m_iBaudrate
);
224 dcb
.fDtrControl
= DTR_CONTROL_DISABLE
;
225 dcb
.fRtsControl
= RTS_CONTROL_DISABLE
;
226 dcb
.fOutxCtsFlow
= false;
227 dcb
.fOutxDsrFlow
= false;
230 dcb
.fAbortOnError
= true;
232 if (m_iParity
== PAR_NONE
)
233 dcb
.Parity
= NOPARITY
;
234 else if (m_iParity
== PAR_EVEN
)
235 dcb
.Parity
= EVENPARITY
;
237 dcb
.Parity
= ODDPARITY
;
239 if (m_iStopbits
== 2)
240 dcb
.StopBits
= TWOSTOPBITS
;
242 dcb
.StopBits
= ONESTOPBIT
;
244 dcb
.ByteSize
= m_iDatabits
;
246 if(!SetCommState(m_handle
,&dcb
))
248 m_error
= "SetCommState failed";
249 FormatWindowsError(GetLastError(), m_error
);
256 bool CSerialPort::IsOpen()
258 CLockObject
lock(&m_mutex
);