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

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. #ifndef _IOSTREAM_H
  21. #ifdef __GNUG__
  22. #pragma interface
  23. #endif
  24. #define _IOSTREAM_H
  25. #include <streambuf.h>
  26. extern "C++" {
  27. class istream; class ostream;
  28. typedef ios& (*__manip)(ios&);
  29. typedef istream& (*__imanip)(istream&);
  30. typedef ostream& (*__omanip)(ostream&);
  31. extern istream& ws(istream& ins);
  32. extern ostream& flush(ostream& outs);
  33. extern ostream& endl(ostream& outs);
  34. extern ostream& ends(ostream& outs);
  35. class ostream : virtual public ios
  36. {
  37.     // NOTE: If fields are changed, you must fix _fake_ostream in stdstreams.C!
  38.     void do_osfx();
  39.   public:
  40.     ostream() { }
  41.     ostream(streambuf* sb, ostream* tied=NULL);
  42.     int opfx() {
  43. if (!good()) return 0;
  44. else { if (_tie) _tie->flush(); _IO_flockfile(_strbuf); return 1;} }
  45.     void osfx() { _IO_funlockfile(_strbuf);
  46.   if (flags() & (ios::unitbuf|ios::stdio))
  47.       do_osfx(); }
  48.     ostream& flush();
  49.     ostream& put(char c) { _strbuf->sputc(c); return *this; }
  50. #ifdef _STREAM_COMPAT
  51.     /* Temporary binary compatibility.  REMOVE IN NEXT RELEASE. */
  52.     ostream& put(unsigned char c) { return put((char)c); }
  53.     ostream& put(signed char c) { return put((char)c); }
  54. #endif
  55.     ostream& write(const char *s, streamsize n);
  56.     ostream& write(const unsigned char *s, streamsize n)
  57.       { return write((const char*)s, n);}
  58.     ostream& write(const signed char *s, streamsize n)
  59.       { return write((const char*)s, n);}
  60.     ostream& write(const void *s, streamsize n)
  61.       { return write((const char*)s, n);}
  62.     ostream& seekp(streampos);
  63.     ostream& seekp(streamoff, _seek_dir);
  64.     streampos tellp();
  65.     ostream& form(const char *format ...);
  66.     ostream& vform(const char *format, _IO_va_list args);
  67.     ostream& operator<<(char c);
  68.     ostream& operator<<(unsigned char c) { return (*this) << (char)c; }
  69.     ostream& operator<<(signed char c) { return (*this) << (char)c; }
  70.     ostream& operator<<(const char *s);
  71.     ostream& operator<<(const unsigned char *s)
  72. { return (*this) << (const char*)s; }
  73.     ostream& operator<<(const signed char *s)
  74. { return (*this) << (const char*)s; }
  75.     ostream& operator<<(const void *p);
  76.     ostream& operator<<(int n);
  77.     ostream& operator<<(unsigned int n);
  78.     ostream& operator<<(long n);
  79.     ostream& operator<<(unsigned long n);
  80. #if defined(__GNUC__)
  81.     __extension__ ostream& operator<<(long long n);
  82.     __extension__ ostream& operator<<(unsigned long long n);
  83. #endif
  84.     ostream& operator<<(short n) {return operator<<((int)n);}
  85.     ostream& operator<<(unsigned short n) {return operator<<((unsigned int)n);}
  86. #if _G_HAVE_BOOL
  87.     ostream& operator<<(bool b) { return operator<<((int)b); }
  88. #endif
  89.     ostream& operator<<(double n);
  90.     ostream& operator<<(float n) { return operator<<((double)n); }
  91. #if _G_HAVE_LONG_DOUBLE_IO
  92.     ostream& operator<<(long double n);
  93. #else
  94.     ostream& operator<<(long double n) { return operator<<((double)n); }
  95. #endif
  96.     ostream& operator<<(__omanip func) { return (*func)(*this); }
  97.     ostream& operator<<(__manip func) {(*func)(*this); return *this;}
  98.     ostream& operator<<(streambuf*);
  99. #ifdef _STREAM_COMPAT
  100.     streambuf* ostreambuf() const { return _strbuf; }
  101. #endif
  102. };
  103. class istream : virtual public ios
  104. {
  105.     // NOTE: If fields are changed, you must fix _fake_istream in stdstreams.C!
  106. protected:
  107.     _IO_size_t _gcount;
  108.     int _skip_ws();
  109.   public:
  110.     istream(): _gcount (0) { }
  111.     istream(streambuf* sb, ostream*tied=NULL);
  112.     istream& get(char* ptr, int len, char delim = 'n');
  113.     istream& get(unsigned char* ptr, int len, char delim = 'n')
  114. { return get((char*)ptr, len, delim); }
  115.     istream& get(char& c);
  116.     istream& get(unsigned char& c) { return get((char&)c); }
  117.     istream& getline(char* ptr, int len, char delim = 'n');
  118.     istream& getline(unsigned char* ptr, int len, char delim = 'n')
  119. { return getline((char*)ptr, len, delim); }
  120.     istream& get(signed char& c)  { return get((char&)c); }
  121.     istream& get(signed char* ptr, int len, char delim = 'n')
  122. { return get((char*)ptr, len, delim); }
  123.     istream& getline(signed char* ptr, int len, char delim = 'n')
  124. { return getline((char*)ptr, len, delim); }
  125.     istream& read(char *ptr, streamsize n);
  126.     istream& read(unsigned char *ptr, streamsize n)
  127.       { return read((char*)ptr, n); }
  128.     istream& read(signed char *ptr, streamsize n)
  129.       { return read((char*)ptr, n); }
  130.     istream& read(void *ptr, streamsize n)
  131.       { return read((char*)ptr, n); }
  132.     istream& get(streambuf& sb, char delim = 'n');
  133.     istream& gets(char **s, char delim = 'n');
  134.     int ipfx(int need = 0) {
  135. if (!good()) { set(ios::failbit); return 0; }
  136. else {
  137.   _IO_flockfile(_strbuf);
  138.   if (_tie && (need == 0 || rdbuf()->in_avail() < need)) _tie->flush();
  139.   if (!need && (flags() & ios::skipws)) return _skip_ws();
  140.   else return 1;
  141. }
  142.     }
  143.     int ipfx0() { // Optimized version of ipfx(0).
  144. if (!good()) { set(ios::failbit); return 0; }
  145. else {
  146.   _IO_flockfile(_strbuf);
  147.   if (_tie) _tie->flush();
  148.   if (flags() & ios::skipws) return _skip_ws();
  149.   else return 1;
  150. }
  151.     }
  152.     int ipfx1() { // Optimized version of ipfx(1).
  153. if (!good()) { set(ios::failbit); return 0; }
  154. else {
  155.   _IO_flockfile(_strbuf);
  156.   if (_tie && rdbuf()->in_avail() == 0) _tie->flush();
  157.   return 1;
  158. }
  159.     }
  160.     void isfx() { _IO_funlockfile(_strbuf); }
  161.     int get() { if (!ipfx1()) return EOF;
  162. else { int ch = _strbuf->sbumpc();
  163.        if (ch == EOF) set(ios::eofbit);
  164.        return ch;
  165.      } }
  166.     int peek();
  167.     _IO_size_t gcount() { return _gcount; }
  168.     istream& ignore(int n=1, int delim = EOF);
  169.     int sync ();
  170.     istream& seekg(streampos);
  171.     istream& seekg(streamoff, _seek_dir);
  172.     streampos tellg();
  173.     istream& putback(char ch) {
  174. if (good() && _strbuf->sputbackc(ch) == EOF) clear(ios::badbit);
  175. return *this;}
  176.     istream& unget() {
  177. if (good() && _strbuf->sungetc() == EOF) clear(ios::badbit);
  178. return *this;}
  179.     istream& scan(const char *format ...);
  180.     istream& vscan(const char *format, _IO_va_list args);
  181. #ifdef _STREAM_COMPAT
  182.     istream& unget(char ch) { return putback(ch); }
  183.     int skip(int i);
  184.     streambuf* istreambuf() const { return _strbuf; }
  185. #endif
  186.     istream& operator>>(char*);
  187.     istream& operator>>(unsigned char* p) { return operator>>((char*)p); }
  188.     istream& operator>>(signed char*p) { return operator>>((char*)p); }
  189.     istream& operator>>(char& c);
  190.     istream& operator>>(unsigned char& c) {return operator>>((char&)c);}
  191.     istream& operator>>(signed char& c) {return operator>>((char&)c);}
  192.     istream& operator>>(int&);
  193.     istream& operator>>(long&);
  194. #if defined(__GNUC__)
  195.     __extension__ istream& operator>>(long long&);
  196.     __extension__ istream& operator>>(unsigned long long&);
  197. #endif
  198.     istream& operator>>(short&);
  199.     istream& operator>>(unsigned int&);
  200.     istream& operator>>(unsigned long&);
  201.     istream& operator>>(unsigned short&);
  202. #if _G_HAVE_BOOL
  203.     istream& operator>>(bool&);
  204. #endif
  205.     istream& operator>>(float&);
  206.     istream& operator>>(double&);
  207.     istream& operator>>(long double&);
  208.     istream& operator>>( __manip func) {(*func)(*this); return *this;}
  209.     istream& operator>>(__imanip func) { return (*func)(*this); }
  210.     istream& operator>>(streambuf*);
  211. };
  212. class iostream : public istream, public ostream
  213. {
  214.   public:
  215.     iostream() { }
  216.     iostream(streambuf* sb, ostream*tied=NULL);
  217. };
  218. class _IO_istream_withassign : public istream {
  219. public:
  220.   _IO_istream_withassign& operator=(istream&);
  221.   _IO_istream_withassign& operator=(_IO_istream_withassign& rhs)
  222.     { return operator= (static_cast<istream&> (rhs)); }
  223. };
  224. class _IO_ostream_withassign : public ostream {
  225. public:
  226.   _IO_ostream_withassign& operator=(ostream&);
  227.   _IO_ostream_withassign& operator=(_IO_ostream_withassign& rhs)
  228.     { return operator= (static_cast<ostream&> (rhs)); }
  229. };
  230. extern _IO_istream_withassign cin;
  231. // clog->rdbuf() == cerr->rdbuf()
  232. extern _IO_ostream_withassign cout, cerr;
  233. extern _IO_ostream_withassign clog
  234. #if _G_CLOG_CONFLICT
  235. __asm__ ("__IO_clog")
  236. #endif
  237. ;
  238. extern istream& lock(istream& ins);
  239. extern istream& unlock(istream& ins);
  240. extern ostream& lock(ostream& outs);
  241. extern ostream& unlock(ostream& outs);
  242. struct Iostream_init { } ;  // Compatibility hack for AT&T library.
  243. inline ios& dec(ios& i)
  244. { i.setf(ios::dec, ios::dec|ios::hex|ios::oct); return i; }
  245. inline ios& hex(ios& i)
  246. { i.setf(ios::hex, ios::dec|ios::hex|ios::oct); return i; }
  247. inline ios& oct(ios& i)
  248. { i.setf(ios::oct, ios::dec|ios::hex|ios::oct); return i; }
  249. } // extern "C++"
  250. #endif /*!_IOSTREAM_H*/