serial.cxx
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:3k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * serial.cxx
  3.  *
  4.  * Asynchronous Serial I/O channel class.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: serial.cxx,v $
  30.  * Revision 1.4  1998/11/30 12:32:26  robertj
  31.  * Split serial channel and modem, modem to components library.
  32.  *
  33.  * Revision 1.3  1998/09/23 06:22:38  robertj
  34.  * Added open source copyright license.
  35.  *
  36.  * Revision 1.2  1996/04/15 10:57:59  robertj
  37.  * Moved some functions from INL to serial.cxx so unix linker can make smaller executables.
  38.  *
  39.  * Revision 1.1  1996/04/14 02:54:14  robertj
  40.  * Initial revision
  41.  *
  42.  */
  43. #include <ptlib.h>
  44. #include <ptlib/serchan.h>
  45. #include <ctype.h>
  46. ///////////////////////////////////////////////////////////////////////////////
  47. // PSerialChannel
  48. PSerialChannel::PSerialChannel()
  49. {
  50.   Construct();
  51. }
  52. PSerialChannel::PSerialChannel(const PString & port, DWORD speed, BYTE data,
  53.        Parity parity, BYTE stop, FlowControl inputFlow, FlowControl outputFlow)
  54. {
  55.   Construct();
  56.   Open(port, speed, data, parity, stop, inputFlow, outputFlow);
  57. }
  58. PSerialChannel::PSerialChannel(PConfig & cfg)
  59. {
  60.   Construct();
  61.   Open(cfg);
  62. }
  63. PSerialChannel::~PSerialChannel()
  64. {
  65.   Close();
  66. }
  67. static const char PortName[] = "PortName";
  68. static const char PortSpeed[] = "PortSpeed";
  69. static const char PortDataBits[] = "PortDataBits";
  70. static const char PortParity[] = "PortParity";
  71. static const char PortStopBits[] = "PortStopBits";
  72. static const char PortInputFlow[] = "PortInputFlow";
  73. static const char PortOutputFlow[] = "PortOutputFlow";
  74. BOOL PSerialChannel::Open(PConfig & cfg)
  75. {
  76.   PStringList ports = GetPortNames();
  77.   return Open(cfg.GetString(PortName, ports[0]),
  78.               cfg.GetInteger(PortSpeed, 9600),
  79.               (BYTE)cfg.GetInteger(PortDataBits, 8),
  80.               (PSerialChannel::Parity)cfg.GetInteger(PortParity, 1),
  81.               (BYTE)cfg.GetInteger(PortStopBits, 1),
  82.               (PSerialChannel::FlowControl)cfg.GetInteger(PortInputFlow, 1),
  83.               (PSerialChannel::FlowControl)cfg.GetInteger(PortOutputFlow, 1));
  84. }
  85. void PSerialChannel::SaveSettings(PConfig & cfg)
  86. {
  87.   cfg.SetString(PortName, GetName());
  88.   cfg.SetInteger(PortSpeed, GetSpeed());
  89.   cfg.SetInteger(PortDataBits, GetDataBits());
  90.   cfg.SetInteger(PortParity, GetParity());
  91.   cfg.SetInteger(PortStopBits, GetStopBits());
  92.   cfg.SetInteger(PortInputFlow, GetInputFlowControl());
  93.   cfg.SetInteger(PortOutputFlow, GetOutputFlowControl());
  94. }
  95. void PSerialChannel::ClearDTR()
  96. {
  97.   SetDTR(FALSE);
  98. }
  99. void PSerialChannel::ClearRTS()
  100. {
  101.   SetRTS(FALSE);
  102. }
  103. void PSerialChannel::ClearBreak()
  104. {
  105.   SetBreak(FALSE);
  106. }
  107. // End Of File ///////////////////////////////////////////////////////////////