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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: rwstream.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:38:46  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef UTIL___RWSTREAM__HPP
  10. #define UTIL___RWSTREAM__HPP
  11. /*  $Id: rwstream.hpp,v 1000.3 2004/06/01 19:38:46 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 streams
  40.  *
  41.  */
  42. /// @file rwstream.hpp
  43. /// Reader-writer based streams
  44. /// @sa IReader, IWriter, IReaderWriter, CRWStreambuf
  45. #include <util/rwstreambuf.hpp>
  46. BEGIN_NCBI_SCOPE
  47. /// Reader-based stream
  48. class CRStream : public CNcbiIstream
  49. {
  50. public:
  51.     CRStream(IReader*                 r,
  52.              streamsize               buf_size = 0,
  53.              CT_CHAR_TYPE*            buf = 0,
  54.              CRWStreambuf::TOwnership own = 0) :
  55.         CNcbiIstream(0), m_Sb(r, 0, buf_size, buf, own)
  56.     {
  57.         init(&m_Sb);
  58.     }
  59. #ifdef AUTOMATIC_STREAMBUF_DESTRUCTION
  60.     ~CRStream()
  61.     {
  62.         rdbuf(0);
  63.     }
  64. #endif
  65. private:
  66.     CRWStreambuf m_Sb;
  67. };
  68. /// Writer-based stream
  69. class CWStream : public CNcbiOstream
  70. {
  71. public:
  72.     CWStream(IWriter*                 w,
  73.              streamsize               buf_size = 0,
  74.              CT_CHAR_TYPE*            buf = 0,
  75.              CRWStreambuf::TOwnership own = 0) :
  76.         CNcbiOstream(0), m_Sb(0, w, buf_size, buf, own)
  77.     {
  78.         init(&m_Sb);
  79.     }
  80. #ifdef AUTOMATIC_STREAMBUF_DESTRUCTION
  81.     ~CWStream()
  82.     {
  83.         rdbuf(0);
  84.     }
  85. #endif
  86. private:
  87.     CRWStreambuf m_Sb;
  88. };
  89. /// Reader-writer based stream
  90. class CRWStream : public CNcbiIostream
  91. {
  92. public:
  93.     CRWStream(IReaderWriter*           rw,
  94.               streamsize               buf_size = 0,
  95.               CT_CHAR_TYPE*            buf = 0,
  96.               CRWStreambuf::TOwnership own = 0) :
  97.         CNcbiIostream(0), m_Sb(rw, buf_size, buf)
  98.     {
  99.         init(&m_Sb);
  100.     }
  101. #ifdef AUTOMATIC_STREAMBUF_DESTRUCTION
  102.     ~CRWStream()
  103.     {
  104.         rdbuf(0);
  105.     }
  106. #endif
  107. private:
  108.     CRWStreambuf m_Sb;
  109. };
  110. END_NCBI_SCOPE
  111. /*
  112.  * ===========================================================================
  113.  * $Log: rwstream.hpp,v $
  114.  * Revision 1000.3  2004/06/01 19:38:46  gouriano
  115.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  116.  *
  117.  * Revision 1.6  2004/05/24 19:54:35  lavr
  118.  * Added stream dtors for AUTOMATIC_STREAMBUF_DESTRUCTION case
  119.  *
  120.  * Revision 1.5  2004/05/17 15:48:45  lavr
  121.  * Ownership argument added to stream constructors
  122.  *
  123.  * Revision 1.4  2004/01/15 20:05:32  lavr
  124.  * Use 0 as a default buffer size in stream constructors
  125.  *
  126.  * Revision 1.3  2003/11/12 17:44:26  lavr
  127.  * Uniformed file layout
  128.  *
  129.  * Revision 1.2  2003/10/22 19:15:15  lavr
  130.  * Explicit calls for iostream constructors added
  131.  *
  132.  * Revision 1.1  2003/10/22 18:14:31  lavr
  133.  * Initial revision
  134.  *
  135.  * ===========================================================================
  136.  */
  137. #endif /* UTIL___RWSTREAM__HPP */