SerialPort.cpp
上传用户:skyblue117
上传日期:2013-02-13
资源大小:53k
文件大小:17k
源码类别:

串口编程

开发平台:

Visual C++

  1. /*
  2. ** FILENAME CSerialPort.cpp
  3. **
  4. ** PURPOSE This class can read, write and watch one serial port.
  5. ** It sends messages to its owner when something happends on the port
  6. ** The class creates a thread for reading and writing so the main
  7. ** program is not blocked.
  8. **
  9. ** CREATION DATE 15-09-1997
  10. ** LAST MODIFICATION 12-11-1997
  11. **
  12. ** AUTHOR Remon Spekreijse
  13. **
  14. **
  15. */
  16. #include "stdafx.h"
  17. #include "SerialPort.h"
  18. #include <assert.h>
  19.  
  20. //
  21. // Constructor
  22. //
  23. CSerialPort::CSerialPort()
  24. {
  25. m_hComm = NULL;
  26. // initialize overlapped structure members to zero
  27. m_ov.Offset = 0;
  28. m_ov.OffsetHigh = 0;
  29. // create events
  30. m_ov.hEvent = NULL;
  31. m_hWriteEvent = NULL;
  32. m_hShutdownEvent = NULL;
  33. m_szWriteBuffer = NULL;
  34. m_bThreadAlive = FALSE;
  35. }
  36. //
  37. // Delete dynamic memory
  38. //
  39. CSerialPort::~CSerialPort()
  40. {
  41. do
  42. {
  43. SetEvent(m_hShutdownEvent);
  44. } while (m_bThreadAlive);
  45. TRACE("Thread endedn");
  46. delete [] m_szWriteBuffer;
  47. }
  48. void CSerialPort::find()
  49. {
  50. }
  51. //
  52. // Initialize the port. This can be port 1 to 4.
  53. //
  54. BOOL CSerialPort::InitPort(CWnd* pPortOwner, // the owner (CWnd) of the port (receives message)
  55.    UINT  portnr, // portnumber (1..4)
  56.    UINT  baud, // baudrate
  57.    char  parity, // parity 
  58.    UINT  databits, // databits 
  59.    UINT  stopbits, // stopbits 
  60.    DWORD dwCommEvents, // EV_RXCHAR, EV_CTS etc
  61.    UINT  writebuffersize) // size to the writebuffer
  62. {
  63. assert(portnr > 0 && portnr < 5);
  64. assert(pPortOwner != NULL);
  65. // if the thread is alive: Kill
  66. if (m_bThreadAlive)
  67. {
  68. do
  69. {
  70. SetEvent(m_hShutdownEvent);
  71. } while (m_bThreadAlive);
  72. TRACE("Thread endedn");
  73. }
  74. // create manual events,ResetEvent sets all event to nosignal,baijie
  75. if (m_ov.hEvent != NULL)
  76. ResetEvent(m_ov.hEvent);
  77. m_ov.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
  78. if (m_hWriteEvent != NULL)
  79. ResetEvent(m_hWriteEvent);
  80. m_hWriteEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
  81. if (m_hShutdownEvent != NULL)
  82. ResetEvent(m_hShutdownEvent);
  83. m_hShutdownEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
  84. //m_hShutdownEvent is used for the port is closed ,baijie
  85. // initialize the event objects
  86. m_hEventArray[0] = m_hShutdownEvent; // highest priority
  87. m_hEventArray[1] = m_ov.hEvent;
  88. m_hEventArray[2] = m_hWriteEvent;
  89. // initialize critical section
  90. InitializeCriticalSection(&m_csCommunicationSync);
  91. // set buffersize for writing and save the owner
  92. m_pOwner = pPortOwner;
  93. if (m_szWriteBuffer != NULL)
  94. delete [] m_szWriteBuffer;
  95. m_szWriteBuffer = new char[writebuffersize];
  96. m_nPortNr = portnr;
  97. m_nWriteBufferSize = writebuffersize;
  98. m_dwCommEvents = dwCommEvents;
  99. BOOL bResult = FALSE;
  100. char *szPort = new char[50];
  101. char *szBaud = new char[50];
  102. // now it critical!
  103. EnterCriticalSection(&m_csCommunicationSync);
  104. // if the port is already opened: close it
  105. if (m_hComm != NULL)
  106. {
  107. CloseHandle(m_hComm);
  108. m_hComm = NULL;
  109. }
  110. // prepare port strings
  111. sprintf(szPort, "COM%d", portnr);
  112. sprintf(szBaud, "baud=%d parity=%c data=%d stop=%d", baud, parity, databits, stopbits);
  113. // get a handle to the port
  114. m_hComm = CreateFile(szPort, // communication port string (COMX)
  115.      GENERIC_READ | GENERIC_WRITE, // read/write types
  116.      0, // comm devices must be opened with exclusive access
  117.      NULL, // no security attributes
  118.      OPEN_EXISTING, // comm devices must use OPEN_EXISTING
  119.      FILE_FLAG_OVERLAPPED, // Async I/O
  120.      0); // template must be 0 for comm devices
  121. if (m_hComm == INVALID_HANDLE_VALUE)
  122. {
  123. // port not found
  124. delete [] szPort;
  125. delete [] szBaud;
  126. return FALSE;
  127. }
  128. // set the timeout values
  129. m_CommTimeouts.ReadIntervalTimeout = 1000;
  130. m_CommTimeouts.ReadTotalTimeoutMultiplier = 1000;
  131. m_CommTimeouts.ReadTotalTimeoutConstant = 1000;
  132. m_CommTimeouts.WriteTotalTimeoutMultiplier = 1000;
  133. m_CommTimeouts.WriteTotalTimeoutConstant = 1000;
  134. // configure
  135. if (SetCommTimeouts(m_hComm, &m_CommTimeouts))
  136. {    
  137. if (SetCommMask(m_hComm, dwCommEvents))
  138. {
  139. if (GetCommState(m_hComm, &m_dcb))
  140. {
  141. m_dcb.fRtsControl = RTS_CONTROL_ENABLE; // set RTS bit high!
  142. if (BuildCommDCB(szBaud, &m_dcb))
  143. {
  144. if (SetCommState(m_hComm, &m_dcb))
  145. ; // normal operation... continue
  146. else
  147. ProcessErrorMessage("SetCommState()");
  148. }
  149. else
  150. ProcessErrorMessage("BuildCommDCB()");
  151. }
  152. else
  153. ProcessErrorMessage("GetCommState()");
  154. }
  155. else
  156. ProcessErrorMessage("SetCommMask()");
  157. }
  158. else
  159. ProcessErrorMessage("SetCommTimeouts()");
  160. delete [] szPort;
  161. delete [] szBaud;
  162. // flush the port
  163. PurgeComm(m_hComm, PURGE_RXCLEAR | PURGE_TXCLEAR | PURGE_RXABORT | PURGE_TXABORT);
  164. // release critical section
  165. LeaveCriticalSection(&m_csCommunicationSync);
  166. TRACE("Initialisation for communicationport %d completed.nUse Startmonitor to communicate.n", portnr);
  167. return TRUE;
  168. }
  169. //
  170. //  The CommThread Function.
  171. //
  172. UINT CSerialPort::CommThread(LPVOID pParam)
  173. {
  174. // Cast the void pointer passed to the thread back to
  175. // a pointer of CSerialPort class
  176. CSerialPort *port = (CSerialPort*)pParam;
  177. // Set the status variable in the dialog class to
  178. // TRUE to indicate the thread is running.
  179. port->m_bThreadAlive = TRUE;
  180. // Misc. variables
  181. DWORD BytesTransfered = 0; 
  182. DWORD Event = 0;
  183. DWORD CommEvent = 0;
  184. DWORD dwError = 0;
  185. COMSTAT comstat;
  186. BOOL  bResult = TRUE;
  187. // Clear comm buffers at startup
  188. if (port->m_hComm) // check if the port is opened
  189. PurgeComm(port->m_hComm, PURGE_RXCLEAR | PURGE_TXCLEAR | PURGE_RXABORT | PURGE_TXABORT);
  190. // begin forever loop.  This loop will run as long as the thread is alive.
  191. for (;;) 
  192. // Make a call to WaitCommEvent().  This call will return immediatly
  193. // because our port was created as an async port (FILE_FLAG_OVERLAPPED
  194. // and an m_OverlappedStructerlapped structure specified).  This call will cause the 
  195. // m_OverlappedStructerlapped element m_OverlappedStruct.hEvent, which is part of the
  196. //m_hEventArray to 
  197. // be placed in a non-signeled state if there are no bytes available to be read,
  198. // or to a signeled state if there are bytes available.  If this event handle 
  199. // is set to the non-signeled state, it will be set to signeled when a 
  200. // character arrives at the port.
  201. // we do this for each port!
  202. bResult = WaitCommEvent(port->m_hComm, &Event, &port->m_ov);
  203. if (!bResult)  
  204. // If WaitCommEvent() returns FALSE, process the last error to determin
  205. // the reason..
  206. switch (dwError = GetLastError()) 
  207. case ERROR_IO_PENDING: 
  208. // This is a normal return value if there are no bytes
  209. // to read at the port.
  210. // Do nothing and continue
  211. break;
  212. }
  213. case 87:
  214. {
  215. // Under Windows NT, this value is returned for some reason.
  216. // I have not investigated why, but it is also a valid reply
  217. // Also do nothing and continue.
  218. break;
  219. }
  220. default:
  221. {
  222. // All other error codes indicate a serious error has
  223. // occured.  Process this error.
  224. port->ProcessErrorMessage("WaitCommEvent()");
  225. break;
  226. }
  227. }
  228. }
  229. else
  230. {
  231. // If WaitCommEvent() returns TRUE, check to be sure there are
  232. // actually bytes in the buffer to read.  
  233. //
  234. // If you are reading more than one byte at a time from the buffer 
  235. // (which this program does not do) you will have the situation occur 
  236. // where the first byte to arrive will cause the WaitForMultipleObjects() 
  237. // function to stop waiting.  The WaitForMultipleObjects() function 
  238. // resets the event handle in m_OverlappedStruct.hEvent to the non-signelead state
  239. // as it returns.  
  240. //
  241. // If in the time between the reset of this event and the call to 
  242. // ReadFile() more bytes arrive, the m_OverlappedStruct.hEvent handle will be set again
  243. // to the signeled state. When the call to ReadFile() occurs, it will 
  244. // read all of the bytes from the buffer, and the program will
  245. // loop back around to WaitCommEvent().
  246. // 
  247. // At this point you will be in the situation where m_OverlappedStruct.hEvent is set,
  248. // but there are no bytes available to read.  If you proceed and call
  249. // ReadFile(), it will return immediatly due to the async port setup, but
  250. // GetOverlappedResults() will not return until the next character arrives.
  251. //
  252. // It is not desirable for the GetOverlappedResults() function to be in 
  253. // this state.  The thread shutdown event (event 0) and the WriteFile()
  254. // event (Event2) will not work if the thread is blocked by GetOverlappedResults().
  255. //
  256. // The solution to this is to check the buffer with a call to ClearCommError().
  257. // This call will reset the event handle, and if there are no bytes to read
  258. // we can loop back through WaitCommEvent() again, then proceed.
  259. // If there are really bytes to read, do nothing and proceed.
  260. bResult = ClearCommError(port->m_hComm, &dwError, &comstat);
  261. if (comstat.cbInQue == 0)
  262. continue;
  263. } // end if bResult
  264. // Main wait function.  This function will normally block the thread
  265. // until one of nine events occur that require action.
  266. Event = WaitForMultipleObjects(3, port->m_hEventArray, FALSE, INFINITE);
  267. switch (Event)
  268. {
  269. case 0:
  270. {
  271. // Shutdown event.  This is event zero so it will be
  272. // the higest priority and be serviced first.
  273.   port->m_bThreadAlive = FALSE;
  274. // Kill this thread.  break is not needed, but makes me feel better.
  275. AfxEndThread(100);
  276. break;
  277. }
  278. case 1: // read event
  279. {
  280. GetCommMask(port->m_hComm, &CommEvent);
  281. if (CommEvent & EV_CTS)
  282. ::SendMessage(port->m_pOwner->m_hWnd, WM_COMM_CTS_DETECTED, (WPARAM) 0, (LPARAM) port->m_nPortNr);
  283. if (CommEvent & EV_RXFLAG)
  284. ::SendMessage(port->m_pOwner->m_hWnd, WM_COMM_RXFLAG_DETECTED, (WPARAM) 0, (LPARAM) port->m_nPortNr);
  285. if (CommEvent & EV_BREAK)
  286. ::SendMessage(port->m_pOwner->m_hWnd, WM_COMM_BREAK_DETECTED, (WPARAM) 0, (LPARAM) port->m_nPortNr);
  287. if (CommEvent & EV_ERR)
  288. ::SendMessage(port->m_pOwner->m_hWnd, WM_COMM_ERR_DETECTED, (WPARAM) 0, (LPARAM) port->m_nPortNr);
  289. if (CommEvent & EV_RING)
  290. ::SendMessage(port->m_pOwner->m_hWnd, WM_COMM_RING_DETECTED, (WPARAM) 0, (LPARAM) port->m_nPortNr);
  291. if (CommEvent & EV_RXCHAR)
  292. // Receive character event from port.
  293. ReceiveChar(port, comstat);
  294. break;
  295. }  
  296. case 2: // write event
  297. {
  298. // Write character event from port
  299. WriteChar(port);
  300. break;
  301. }
  302. } // end switch
  303. } // close forever loop
  304. return 0;
  305. }
  306. //
  307. // start comm watching
  308. //
  309. BOOL CSerialPort::StartMonitoring()
  310. {
  311. if (!(m_Thread = AfxBeginThread(CommThread, this)))//parameter is pointer to CSerialPort
  312. return FALSE;
  313. TRACE("Thread startedn");
  314. return TRUE;
  315. }
  316. //
  317. // Restart the comm thread
  318. //
  319. BOOL CSerialPort::RestartMonitoring()
  320. {
  321. TRACE("Thread resumedn");
  322. m_Thread->ResumeThread();
  323. return TRUE;
  324. }
  325. //
  326. // Suspend the comm thread
  327. //
  328. BOOL CSerialPort::StopMonitoring()
  329. {
  330. TRACE("Thread suspendedn");
  331. m_Thread->SuspendThread(); 
  332. return TRUE;
  333. }
  334. //
  335. // If there is a error, give the right message
  336. //
  337. void CSerialPort::ProcessErrorMessage(char* ErrorText)
  338. {
  339. char *Temp = new char[200];
  340. LPVOID lpMsgBuf;
  341. FormatMessage( 
  342. FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
  343. NULL,
  344. GetLastError(),
  345. MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
  346. (LPTSTR) &lpMsgBuf,
  347. 0,
  348. NULL 
  349. );
  350. sprintf(Temp, "WARNING:  %s Failed with the following error: n%snPort: %dn", (char*)ErrorText, lpMsgBuf, m_nPortNr); 
  351. MessageBox(NULL, Temp, "Application Error", MB_ICONSTOP);
  352. LocalFree(lpMsgBuf);
  353. delete[] Temp;
  354. }
  355. //
  356. // Write a character.
  357. //
  358. void CSerialPort::WriteChar(CSerialPort* port)
  359. {
  360. BOOL bWrite = TRUE;
  361. BOOL bResult = TRUE;
  362. DWORD BytesSent = 0;
  363. ResetEvent(port->m_hWriteEvent);
  364. // Gain ownership of the critical section
  365. EnterCriticalSection(&port->m_csCommunicationSync);
  366. if (bWrite)
  367. {
  368. // Initailize variables
  369. port->m_ov.Offset = 0;
  370. port->m_ov.OffsetHigh = 0;
  371. // Clear buffer
  372. PurgeComm(port->m_hComm, PURGE_RXCLEAR | PURGE_TXCLEAR | PURGE_RXABORT | PURGE_TXABORT);
  373. bResult = WriteFile(port->m_hComm, // Handle to COMM Port
  374. port->m_szWriteBuffer, // Pointer to message buffer in calling finction
  375. strlen((char*)port->m_szWriteBuffer), // Length of message to send
  376. &BytesSent, // Where to store the number of bytes sent
  377. &port->m_ov); // Overlapped structure
  378. // deal with any error codes
  379. if (!bResult)  
  380. {
  381. DWORD dwError = GetLastError();
  382. switch (dwError)
  383. {
  384. case ERROR_IO_PENDING:
  385. {
  386. // continue to GetOverlappedResults()
  387. BytesSent = 0;
  388. bWrite = FALSE;
  389. break;
  390. }
  391. default:
  392. {
  393. // all other error codes
  394. port->ProcessErrorMessage("WriteFile()");
  395. }
  396. }
  397. else
  398. {
  399. LeaveCriticalSection(&port->m_csCommunicationSync);
  400. }
  401. } // end if(bWrite)
  402. if (!bWrite)
  403. {
  404. bWrite = TRUE;
  405. bResult = GetOverlappedResult(port->m_hComm, // Handle to COMM port 
  406.   &port->m_ov, // Overlapped structure
  407.   &BytesSent, // Stores number of bytes sent
  408.   TRUE);  // Wait flag
  409. LeaveCriticalSection(&port->m_csCommunicationSync);
  410. // deal with the error code 
  411. if (!bResult)  
  412. {
  413. port->ProcessErrorMessage("GetOverlappedResults() in WriteFile()");
  414. }
  415. } // end if (!bWrite)
  416. // Verify that the data size send equals what we tried to send
  417. if (BytesSent != strlen((char*)port->m_szWriteBuffer))
  418. {
  419. TRACE("WARNING: WriteFile() error.. Bytes Sent: %d; Message Length: %dn", BytesSent, strlen((char*)port->m_szWriteBuffer));
  420. }
  421. }
  422. //
  423. // Character received. Inform the owner
  424. //
  425. void CSerialPort::ReceiveChar(CSerialPort* port, COMSTAT comstat)
  426. {
  427. BOOL  bRead = TRUE; 
  428. BOOL  bResult = TRUE;
  429. DWORD dwError = 0;
  430. DWORD BytesRead = 0;
  431. unsigned char RXBuff;
  432. for (;;) 
  433. // Gain ownership of the comm port critical section.
  434. // This process guarantees no other part of this program 
  435. // is using the port object. 
  436. EnterCriticalSection(&port->m_csCommunicationSync);
  437. // ClearCommError() will update the COMSTAT structure and
  438. // clear any other errors.
  439. bResult = ClearCommError(port->m_hComm, &dwError, &comstat);
  440. LeaveCriticalSection(&port->m_csCommunicationSync);
  441. // start forever loop.  I use this type of loop because I
  442. // do not know at runtime how many loops this will have to
  443. // run. My solution is to start a forever loop and to
  444. // break out of it when I have processed all of the
  445. // data available.  Be careful with this approach and
  446. // be sure your loop will exit.
  447. // My reasons for this are not as clear in this sample 
  448. // as it is in my production code, but I have found this 
  449. // solutiion to be the most efficient way to do this.
  450. if (comstat.cbInQue == 0)
  451. {
  452. // break out when all bytes have been read
  453. break;
  454. }
  455. EnterCriticalSection(&port->m_csCommunicationSync);
  456. if (bRead)
  457. {
  458. bResult = ReadFile(port->m_hComm, // Handle to COMM port 
  459.    &RXBuff, // RX Buffer Pointer
  460.    1, // Read one byte
  461.    &BytesRead, // Stores number of bytes read
  462.    &port->m_ov); // pointer to the m_ov structure
  463. // deal with the error code 
  464. if (!bResult)  
  465. switch (dwError = GetLastError()) 
  466. case ERROR_IO_PENDING: 
  467. // asynchronous i/o is still in progress 
  468. // Proceed on to GetOverlappedResults();
  469. bRead = FALSE;
  470. break;
  471. }
  472. default:
  473. {
  474. // Another error has occured.  Process this error.
  475. port->ProcessErrorMessage("ReadFile()");
  476. break;
  477. }
  478. }
  479. else
  480. {
  481. // ReadFile() returned complete. It is not necessary to call GetOverlappedResults()
  482. bRead = TRUE;
  483. }
  484. }  // close if (bRead)
  485. if (!bRead)
  486. {
  487. bRead = TRUE;
  488. bResult = GetOverlappedResult(port->m_hComm, // Handle to COMM port 
  489.   &port->m_ov, // Overlapped structure
  490.   &BytesRead, // Stores number of bytes read
  491.   TRUE);  // Wait flag
  492. // deal with the error code 
  493. if (!bResult)  
  494. {
  495. port->ProcessErrorMessage("GetOverlappedResults() in ReadFile()");
  496. }
  497. }  // close if (!bRead)
  498. LeaveCriticalSection(&port->m_csCommunicationSync);
  499. // notify parent that a byte was received
  500. ::SendMessage((port->m_pOwner)->m_hWnd, WM_COMM_RXCHAR, (WPARAM) RXBuff, (LPARAM) port->m_nPortNr);
  501. } // end forever loop
  502. }
  503. //
  504. // Write a string to the port
  505. //
  506. void CSerialPort::WriteToPort(char* string)
  507. {
  508. assert(m_hComm != 0);
  509. memset(m_szWriteBuffer, 0, sizeof(m_szWriteBuffer));
  510. strcpy(m_szWriteBuffer, string);
  511. // set event for write
  512. SetEvent(m_hWriteEvent);
  513. }
  514. //
  515. // Return the device control block
  516. //
  517. DCB CSerialPort::GetDCB()
  518. {
  519. return m_dcb;
  520. }
  521. //
  522. // Return the communication event masks
  523. //
  524. DWORD CSerialPort::GetCommEvents()
  525. {
  526. return m_dwCommEvents;
  527. }
  528. //
  529. // Return the output buffer size
  530. //
  531. DWORD CSerialPort::GetWriteBufferSize()
  532. {
  533. return m_nWriteBufferSize;
  534. }