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

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * serchan.h
  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: serchan.h,v $
  30.  * Revision 1.8  1998/11/30 02:55:29  robertj
  31.  * New directory structure
  32.  *
  33.  * Revision 1.7  1998/09/24 03:30:22  robertj
  34.  * Added open software license.
  35.  *
  36.  * Revision 1.6  1996/08/08 10:09:12  robertj
  37.  * Directory structure changes for common files.
  38.  *
  39.  * Revision 1.5  1995/03/12 04:59:59  robertj
  40.  * Re-organisation of DOS/WIN16 and WIN32 platforms to maximise common code.
  41.  * Used built-in equate for WIN32 API (_WIN32).
  42.  *
  43.  * Revision 1.4  1994/08/04  13:08:43  robertj
  44.  * Added DCB so can set parameters on closed channel.
  45.  *
  46.  * Revision 1.3  1994/07/17  11:01:04  robertj
  47.  * Ehancements, implementation, bug fixes etc.
  48.  *
  49.  * Revision 1.2  1994/07/02  03:18:09  robertj
  50.  * Using system timers for serial channel timeouts.
  51.  *
  52.  * Revision 1.1  1994/06/25  12:13:01  robertj
  53.  * Initial revision
  54.  *
  55.  */
  56. #ifndef _PSERIALCHANNEL
  57. #include "....serchan.h"
  58.   public:
  59.     // Overrides from class PChannel
  60.     virtual PString GetName() const;
  61.       // Return the name of the channel.
  62.       
  63.     virtual BOOL Read(void * buf, PINDEX len);
  64.       // Low level read from the channel. This function will block until the
  65.       // requested number of characters were read.
  66.     virtual BOOL Write(const void * buf, PINDEX len);
  67.       // Low level write to the channel. This function will block until the
  68.       // requested number of characters were written.
  69.     virtual BOOL Close();
  70.       // Close the channel.
  71.   private:
  72.     BOOL SetCommsParam(DWORD speed, BYTE data, Parity parity,
  73.                      BYTE stop, FlowControl inputFlow, FlowControl outputFlow);
  74.   // Member variables
  75. #if defined(_WIN32)
  76.     HANDLE  commsResource;
  77.     PString portName;
  78. #else
  79.     static BOOL IsReadBlocked(PObject * obj);
  80.     static BOOL IsWriteBlocked(PObject * obj);
  81.     PTimer readTimer;
  82.     PTimer writeTimer;
  83. #endif
  84. #if defined(_WINDOWS) || defined(_WIN32)
  85.     enum { InputQueueSize = 2048, OutputQueueSize = 1024 };
  86.     DCB deviceControlBlock;
  87. #else
  88.     BYTE biosParm;
  89. #endif
  90. };
  91. #endif