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

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 __STRSTREAM_H
  22. #define __STRSTREAM_H
  23. #ifdef __GNUG__
  24. #pragma interface
  25. #endif
  26. #include <iostream.h>
  27. #include <strfile.h>
  28. extern "C++" {
  29. class strstreambuf : public streambuf
  30. {
  31.   struct _IO_str_fields _s;
  32.   friend class istrstream;
  33.     void init_dynamic(_IO_alloc_type alloc, _IO_free_type free,
  34.       int initial_size = 0);
  35.     void init_static(char *ptr, int size, char *pstart);
  36.     void init_readonly(const char *ptr, int size);
  37.   protected:
  38.     virtual int overflow(int = EOF);
  39.     virtual int underflow();
  40.     virtual int pbackfail(int c);
  41.   public:
  42.     virtual ~strstreambuf();
  43.     strstreambuf() { init_dynamic(0, 0); }
  44.     strstreambuf(int initial_size) { init_dynamic(0, 0, initial_size); }
  45.     strstreambuf(void *(*alloc)(_IO_size_t), void (*free)(void*))
  46. { init_dynamic(alloc, free); }
  47.     strstreambuf(char *ptr, int size, char *pstart = NULL)
  48. { init_static(ptr, size, pstart); }
  49.     strstreambuf(unsigned char *ptr, int size, unsigned char *pstart = NULL)
  50. { init_static((char*)ptr, size, (char*)pstart); }
  51.     strstreambuf(const char *ptr, int size)
  52. { init_readonly(ptr, size); }
  53.     strstreambuf(const unsigned char *ptr, int size)
  54. { init_readonly((const char*)ptr, size); }
  55.     strstreambuf(signed char *ptr, int size, signed char *pstart = NULL)
  56. { init_static((char*)ptr, size, (char*)pstart); }
  57.     strstreambuf(const signed char *ptr, int size)
  58. { init_readonly((const char*)ptr, size); }
  59.     // Note: frozen() is always true if !_IO_STR_DYNAMIC(this).
  60.     int frozen() { return _flags & _IO_USER_BUF ? 1 : 0; }
  61.     void freeze(int n=1)
  62. { if (_IO_STR_DYNAMIC(this))
  63.     { if (n) _flags |= _IO_USER_BUF; else _flags &= ~_IO_USER_BUF; } }
  64.     _IO_ssize_t pcount();
  65.     char *str();
  66.     virtual streampos seekoff(streamoff, _seek_dir, int mode=ios::in|ios::out);
  67. };
  68. class strstreambase : virtual public ios {
  69.   protected:
  70.     strstreambuf __my_sb;
  71.   public:
  72.     strstreambuf* rdbuf() { return &__my_sb; }
  73.   protected:
  74.     strstreambase() { init (&__my_sb); }
  75.     strstreambase(char *cp, int n, int mode=ios::out);
  76. };
  77. class istrstream : public strstreambase, public istream {
  78.   public:
  79.     istrstream(const char*, int=0);
  80. };
  81. class ostrstream : public strstreambase, public ostream {
  82.   public:
  83.     ostrstream() { }
  84.     ostrstream(char *cp, int n, int mode=ios::out) :strstreambase(cp,n,mode){}
  85.     _IO_ssize_t pcount() { return ((strstreambuf*)_strbuf)->pcount(); }
  86.     char *str() { return ((strstreambuf*)_strbuf)->str(); }
  87.     void freeze(int n = 1) { ((strstreambuf*)_strbuf)->freeze(n); }
  88.     int frozen() { return ((strstreambuf*)_strbuf)->frozen(); }
  89. };
  90. class strstream : public strstreambase, public iostream {
  91.   public:
  92.   strstream() { }
  93.     strstream(char *cp, int n, int mode=ios::out) :strstreambase(cp,n,mode){}
  94.     _IO_ssize_t pcount() { return ((strstreambuf*)_strbuf)->pcount(); }
  95.     char *str() { return ((strstreambuf*)_strbuf)->str(); }
  96.     void freeze(int n = 1) { ((strstreambuf*)_strbuf)->freeze(n); }
  97.     int frozen() { return ((strstreambuf*)_strbuf)->frozen(); }
  98. };
  99. } // extern "C++"
  100. #endif /*!__STRSTREAM_H*/