123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- #ifndef _BACKWARD_STRSTREAM
- #define _BACKWARD_STRSTREAM
- #include "backward_warning.h"
- #include <iosfwd>
- #include <ios>
- #include <istream>
- #include <ostream>
- #include <string>
- namespace std _GLIBCXX_VISIBILITY(default)
- {
- _GLIBCXX_BEGIN_NAMESPACE_VERSION
-
-
- class strstreambuf : public basic_streambuf<char, char_traits<char> >
- {
- public:
-
- typedef char_traits<char> _Traits;
- typedef basic_streambuf<char, _Traits> _Base;
- public:
-
- explicit strstreambuf(streamsize __initial_capacity = 0);
- strstreambuf(void* (*__alloc)(size_t), void (*__free)(void*));
- strstreambuf(char* __get, streamsize __n, char* __put = 0) throw ();
- strstreambuf(signed char* __get, streamsize __n, signed char* __put = 0) throw ();
- strstreambuf(unsigned char* __get, streamsize __n, unsigned char* __put=0) throw ();
- strstreambuf(const char* __get, streamsize __n) throw ();
- strstreambuf(const signed char* __get, streamsize __n) throw ();
- strstreambuf(const unsigned char* __get, streamsize __n) throw ();
- virtual ~strstreambuf();
- public:
- void freeze(bool = true) throw ();
- char* str() throw ();
- _GLIBCXX_PURE int pcount() const throw ();
- protected:
- virtual int_type overflow(int_type __c = _Traits::eof());
- virtual int_type pbackfail(int_type __c = _Traits::eof());
- virtual int_type underflow();
- virtual _Base* setbuf(char* __buf, streamsize __n);
- virtual pos_type seekoff(off_type __off, ios_base::seekdir __dir,
- ios_base::openmode __mode
- = ios_base::in | ios_base::out);
- virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
- = ios_base::in | ios_base::out);
- private:
- strstreambuf&
- operator=(const strstreambuf&);
- strstreambuf(const strstreambuf&);
-
- char* _M_alloc(size_t);
- void _M_free(char*);
-
- void _M_setup(char* __get, char* __put, streamsize __n) throw ();
- private:
-
- void* (*_M_alloc_fun)(size_t);
- void (*_M_free_fun)(void*);
- bool _M_dynamic : 1;
- bool _M_frozen : 1;
- bool _M_constant : 1;
- };
-
- class istrstream : public basic_istream<char>
- {
- public:
- explicit istrstream(char*);
- explicit istrstream(const char*);
- istrstream(char* , streamsize);
- istrstream(const char*, streamsize);
- virtual ~istrstream();
- _GLIBCXX_CONST strstreambuf* rdbuf() const throw ();
- char* str() throw ();
- private:
- strstreambuf _M_buf;
- };
-
- class ostrstream : public basic_ostream<char>
- {
- public:
- ostrstream();
- ostrstream(char*, int, ios_base::openmode = ios_base::out);
- virtual ~ostrstream();
- _GLIBCXX_CONST strstreambuf* rdbuf() const throw ();
- void freeze(bool = true) throw();
- char* str() throw ();
- _GLIBCXX_PURE int pcount() const throw ();
- private:
- strstreambuf _M_buf;
- };
-
- class strstream : public basic_iostream<char>
- {
- public:
- typedef char char_type;
- typedef char_traits<char>::int_type int_type;
- typedef char_traits<char>::pos_type pos_type;
- typedef char_traits<char>::off_type off_type;
- strstream();
- strstream(char*, int, ios_base::openmode = ios_base::in | ios_base::out);
- virtual ~strstream();
- _GLIBCXX_CONST strstreambuf* rdbuf() const throw ();
- void freeze(bool = true) throw ();
- _GLIBCXX_PURE int pcount() const throw ();
- char* str() throw ();
- private:
- strstreambuf _M_buf;
- };
- _GLIBCXX_END_NAMESPACE_VERSION
- }
- #endif
|