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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: fcgibuf.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 19:49:17  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CGI___FCGIBUF__HPP
  10. #define CGI___FCGIBUF__HPP
  11. /*  $Id: fcgibuf.hpp,v 1000.0 2003/10/29 19:49:17 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.  * Author: Eugene Vasilchenko
  37.  *
  38.  * File Description:
  39.  *   Adapter class between C++ and FastCGI streams.
  40.  *
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. class FCGX_Stream;
  44. BEGIN_NCBI_SCOPE
  45. class CCgiObuffer : public IO_PREFIX::streambuf
  46. {
  47. public:
  48.     CCgiObuffer(FCGX_Stream* out);
  49.     virtual ~CCgiObuffer(void);
  50.     virtual CT_INT_TYPE overflow(CT_INT_TYPE c);
  51.     virtual int         sync(void);
  52. private:
  53.     FCGX_Stream* m_out;
  54. };
  55. class CCgiIbuffer : public IO_PREFIX::streambuf
  56. {
  57. public:
  58.     CCgiIbuffer(FCGX_Stream* in);
  59.     virtual CT_INT_TYPE underflow(void);
  60. private:
  61.     FCGX_Stream* m_in;
  62. };
  63. END_NCBI_SCOPE
  64. /*
  65.  * ---------------------------------------------------------------------------
  66.  * $Log: fcgibuf.hpp,v $
  67.  * Revision 1000.0  2003/10/29 19:49:17  gouriano
  68.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  69.  *
  70.  * Revision 1.10  2003/10/16 15:18:55  lavr
  71.  * Multiple flush bug fixed from R1.13
  72.  *
  73.  * Revision 1.8  2003/10/09 20:57:06  lavr
  74.  * Bugfixes for the attempt to make I/O buffers fully buffered on top
  75.  * of respective implementations of FCGI buffers in the FCGI library
  76.  *
  77.  * Revision 1.6  2003/10/07 14:40:28  lavr
  78.  * CCgiIBuffer: made buffered on internal FGCX_Stream storage
  79.  * CCgiOBuffer: buffering is done entirely on internal FGCX_Stream storage
  80.  * Log moved to end; guard macro standardized
  81.  *
  82.  * Revision 1.5  2001/10/15 18:26:32  ucko
  83.  * Implement sync; fix a typo
  84.  *
  85.  * Revision 1.4  1999/10/21 14:50:49  sandomir
  86.  * optimization for overflow() (internal buffer added)
  87.  *
  88.  * Revision 1.3  1999/06/08 21:36:29  vakatov
  89.  * #HAVE_NO_CHAR_TRAITS::  use "CT_XXX_TYPE" instead of "xxx_type" for
  90.  * xxx = { "int", "char", "pos", "off" }
  91.  *
  92.  * Revision 1.2  1999/04/28 16:54:19  vasilche
  93.  * Implemented stream input processing for FastCGI applications.
  94.  *
  95.  * Revision 1.1  1999/04/27 14:49:49  vasilche
  96.  * Added FastCGI interface.
  97.  * CNcbiContext renamed to CCgiContext.
  98.  *
  99.  * ===========================================================================
  100.  */
  101. #endif  /* CGI___FCGIBUF__HPP */