rwstreambuf.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: rwstreambuf.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:38:49  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef UTIL___RWSTREAMBUF__HPP
  10. #define UTIL___RWSTREAMBUF__HPP
  11. /*  $Id: rwstreambuf.hpp,v 1000.3 2004/06/01 19:38:49 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Anton Lavrentiev
  37.  *
  38.  * File Description:
  39.  *   Reader-writer based stream buffer
  40.  *
  41.  */
  42. /// @file rwstreambuf.hpp
  43. /// Reader-writer based stream buffer
  44. /// @sa IReader, IWriter, IReaderWriter
  45. #include <util/reader_writer.hpp>
  46. #include <util/stream_utils.hpp>
  47. #include <corelib/ncbistre.hpp>
  48. #ifdef NCBI_COMPILER_MIPSPRO
  49. #  define CRWStreambufBase CMIPSPRO_ReadsomeTolerantStreambuf
  50. #else
  51. #  define CRWStreambufBase CNcbiStreambuf
  52. #endif/*NCBI_COMPILER_MIPSPRO*/
  53. BEGIN_NCBI_SCOPE
  54. /// Reader-writer based stream buffer.
  55. class NCBI_XUTIL_EXPORT CRWStreambuf : public CRWStreambufBase
  56. {
  57. public:
  58.     /// Which of the objects (passed in the constructor) should be
  59.     /// deleted on this object's destruction.
  60.     /// NOTE:  if the reader and writer are in fact the same object, it will
  61.     ///        not be deleted twice.
  62.     enum EOwnership {
  63.         fOwnReader = 1 << 1,    // own the underlying reader
  64.         fOwnWriter = 1 << 2,    // own the underlying writer
  65.         fOwnAll    = fOwnReader + fOwnWriter
  66.     };
  67.     typedef int TOwnership;     // bitwise OR of EOwnership
  68.     CRWStreambuf(IReaderWriter* rw = 0,
  69.                  streamsize     buf_size = 0,
  70.                  CT_CHAR_TYPE*  buf = 0,
  71.                  TOwnership     own = 0);
  72.     CRWStreambuf(IReader*       r,
  73.                  IWriter*       w,
  74.                  streamsize     buf_size = 0,
  75.                  CT_CHAR_TYPE*  buf = 0,
  76.                  TOwnership     own = 0);
  77.     virtual ~CRWStreambuf();
  78. protected:
  79.     virtual CT_INT_TYPE overflow(CT_INT_TYPE c);
  80.     virtual CT_INT_TYPE underflow(void);
  81.     virtual streamsize  xsgetn(CT_CHAR_TYPE* s, streamsize n);
  82.     virtual streamsize  showmanyc(void);
  83.     virtual int         sync(void);
  84.     /// Note: setbuf(0, 0) has no effect
  85.     virtual CNcbiStreambuf* setbuf(CT_CHAR_TYPE* buf, streamsize buf_size);
  86. protected:
  87.     TOwnership     m_OwnRW;
  88.     IReader*       m_Reader;
  89.     IWriter*       m_Writer;
  90.     CT_CHAR_TYPE*  m_ReadBuf;
  91.     CT_CHAR_TYPE*  m_WriteBuf;
  92.     streamsize     m_BufSize;
  93.     bool           m_OwnBuf;
  94.     CT_CHAR_TYPE   x_Buf;
  95. };
  96. END_NCBI_SCOPE
  97. /*
  98.  * ===========================================================================
  99.  * $Log: rwstreambuf.hpp,v $
  100.  * Revision 1000.3  2004/06/01 19:38:49  gouriano
  101.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  102.  *
  103.  * Revision 1.7  2004/05/17 15:47:59  lavr
  104.  * Reader/Writer ownership added
  105.  *
  106.  * Revision 1.6  2004/01/20 20:33:21  lavr
  107.  * Fix typo in the log
  108.  *
  109.  * Revision 1.5  2004/01/15 20:04:39  lavr
  110.  * kDefaultBufferSize removed from class declaration
  111.  *
  112.  * Revision 1.4  2004/01/09 17:38:36  lavr
  113.  * Define internal 1-byte buffer used for unbuffered streams
  114.  *
  115.  * Revision 1.3  2003/11/12 17:44:32  lavr
  116.  * Uniformed file layout
  117.  *
  118.  * Revision 1.2  2003/10/23 16:16:46  vasilche
  119.  * Added Windows export modifiers.
  120.  *
  121.  * Revision 1.1  2003/10/22 18:14:31  lavr
  122.  * Initial revision
  123.  *
  124.  * ===========================================================================
  125.  */
  126. #endif /* UTIL___RWSTREAMBUF__HPP */