stdiostream.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:3k
源码类别:

STL

开发平台:

Visual C++

  1. /* This is part of libio/iostream, providing -*- C++ -*- input/output.
  2. Copyright (C) 1993 Free Software Foundation
  3. This file is part of the GNU IO Library.  This library is free
  4. software; you can redistribute it and/or modify it under the
  5. terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this library; see the file COPYING.  If not, write to the Free
  14. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  15. As a special exception, if you link this library with files
  16. compiled with a GNU compiler to produce an executable, this does not cause
  17. the resulting executable to be covered by the GNU General Public License.
  18. This exception does not however invalidate any other reasons why
  19. the executable file might be covered by the GNU General Public License. */
  20. /* Written by Per Bothner (bothner@cygnus.com). */
  21. #ifndef _STDIOSTREAM_H
  22. #define _STDIOSTREAM_H
  23. #ifdef __GNUG__
  24. #pragma interface
  25. #endif
  26. #include <iostream.h>
  27. #include <stdio.h>
  28. extern "C++" {
  29. class stdiobuf : public filebuf {
  30.   protected:
  31.     FILE *_file;
  32.   public:
  33.     FILE* stdiofile() const { return _file; }
  34.     stdiobuf(FILE *);
  35.     ~stdiobuf();
  36.     int buffered () const { return _flags & _IO_UNBUFFERED ? 0 : 1; }
  37.     void buffered (int);
  38.     virtual streamsize sys_read(char*, streamsize);
  39.     virtual streampos sys_seek(streamoff, _seek_dir);
  40.     virtual streamsize sys_write(const char*, streamsize);
  41.     virtual int sys_close();
  42.     virtual int sync();
  43.     virtual int overflow(int c = EOF);
  44.     streamsize xsputn(const char* s, streamsize n);
  45. };
  46. class istdiostream : public istream
  47. {
  48. private:
  49.   stdiobuf _file;
  50. public:
  51.   istdiostream (FILE* __f) : istream(), _file(__f) { init(&_file); }
  52.   stdiobuf* rdbuf()/* const */ { return &_file; }
  53.   int buffered () const { return _file.buffered (); }
  54.   void buffered (int _i) { _file.buffered (_i); }
  55. };
  56. class ostdiostream : public ostream
  57. {
  58. private:
  59.   stdiobuf _file;
  60. public:
  61.   ostdiostream (FILE* __f) : ostream(), _file(__f) { init(&_file); }
  62.   stdiobuf* rdbuf() /* const */ { return &_file; }
  63.   int buffered () const { return _file.buffered (); }
  64.   void buffered (int _i) { _file.buffered (_i); }
  65. };
  66. } // extern "C++"
  67. #endif /* !_STDIOSTREAM_H */