/* * Copyright (c) 1999 * Silicon Graphics Computer Systems, Inc. * * Copyright (c) 1999 * Boris Fomitchev * * This material is provided "as is", with absolutely no warranty expressed * or implied. Any use is at your own risk. * * Permission to use or copy this software for any purpose is hereby granted * without fee, provided the above notices are retained on all copies. * Permission to modify the code and to distribute modified code is granted, * provided the above notices are retained, and a notice that the code was * modified is included with the above copyright notice. * */ #ifndef __SGI_STL_ISTREAM_H #define __SGI_STL_ISTREAM_H #include #include // Needed as a base class of basic_iostream. // includes , which in turn // includes . #include // Helper functions that allow char traits // to be used as function objects. __STL_BEGIN_NAMESPACE template basic_istream<_CharT, _Traits>& __STL_CALL _M_get_num(basic_istream<_CharT, _Traits>& __that, _Number& __val); #if defined (__STL_USE_TEMPLATE_EXPORT) || defined(__MRC__) || defined(__SC__) template class _Isentry; #endif struct _No_Skip_WS {}; // Dummy class used by sentry. //---------------------------------------------------------------------- // Class basic_istream, a class that performs formatted input through // a stream buffer. // The second template parameter, _Traits, defaults to char_traits<_CharT>. // The default is declared in header , and it isn't declared here // because C++ language rules do not allow it to be declared twice. template class basic_istream : virtual public basic_ios<_CharT, _Traits> { public: // Types typedef _CharT char_type; typedef typename _Traits::int_type int_type; typedef typename _Traits::pos_type pos_type; typedef typename _Traits::off_type off_type; typedef _Traits traits_type; typedef basic_ios<_CharT, _Traits> _Basic_ios; typedef basic_istream<_CharT, _Traits> _Self; typedef basic_ios<_CharT, _Traits>& (__STL_CALL *__ios_fn)(basic_ios<_CharT, _Traits>&); typedef ios_base& (__STL_CALL *__ios_base_fn)(ios_base&); typedef _Self& (__STL_CALL *__istream_fn)(_Self&); public: // Constructor and destructor. explicit basic_istream(basic_streambuf<_CharT, _Traits>* __buf) : basic_ios<_CharT, _Traits>(), _M_gcount(0) { this->init(__buf); } ~basic_istream() {}; public: // Nested sentry class. public: // Hooks for manipulators. The arguments are // function pointers. _Self& operator>> (__istream_fn __f) { return __f(*this); } _Self& operator>> (__ios_fn __f) { __f(*this); return *this; } _Self& operator>> (__ios_base_fn __f) { __f(*this); return *this; } public: // Formatted input of numbers. _Self& operator>> (short& __val) { return _M_get_num(*this, __val); } _Self& operator>> (unsigned short& __val) { return _M_get_num(*this, __val); } _Self& operator>> (int& __val) { return _M_get_num(*this, __val); } _Self& operator>> (unsigned int& __val) { return _M_get_num(*this, __val); } _Self& operator>> (long& __val) { return _M_get_num(*this, __val); } _Self& operator>> (unsigned long& __val) { return _M_get_num(*this, __val); } #ifdef __STL_LONG_LONG _Self& operator>> (long long& __val) { return _M_get_num(*this, __val); } _Self& operator>> (unsigned long long& __val) { return _M_get_num(*this, __val); } #endif _Self& operator>> (float& __val) { return _M_get_num(*this, __val); } _Self& operator>> (double& __val) { return _M_get_num(*this, __val); } _Self& operator>> (long double& __val) { return _M_get_num(*this, __val); } # ifndef __STL_NO_BOOL _Self& operator>> (bool& __val) { return _M_get_num(*this, __val); } # endif _Self& operator>> (void*& __val) { return _M_get_num(*this, __val); } public: // Copying characters into a streambuf. _Self& operator>>(basic_streambuf<_CharT, _Traits>*); public: // Unformatted input. streamsize gcount() const { return _M_gcount; } int_type peek(); public: // get() for single characters int_type get(); _Self& get(char_type& __c); public: // get() for character arrays. _Self& get(char_type* __s, streamsize __n, char_type __delim); _Self& get(char_type* __s, streamsize __n) { return get(__s, __n, this->widen('\n')); } public: // get() for streambufs _Self& get(basic_streambuf<_CharT, _Traits>& __buf, char_type __delim); _Self& get(basic_streambuf<_CharT, _Traits>& __buf) { return get(__buf, this->widen('\n')); } public: // getline() _Self& getline(char_type* __s, streamsize __n, char_type delim); _Self& getline(char_type* __s, streamsize __n) { return getline(__s, __n, this->widen('\n')); } public: // read(), readsome(), ignore() _Self& ignore(); _Self& ignore(streamsize __n); #if (defined (__STL_MSVC) && __STL_MSVC < 1200) inline #endif _Self& ignore(streamsize __n, int_type __delim); _Self& read(char_type* __s, streamsize __n); streamsize readsome(char_type* __s, streamsize __n); public: // putback _Self& putback(char_type __c); _Self& unget(); public: // Positioning and buffer control. int sync(); pos_type tellg(); _Self& seekg(pos_type __pos); _Self& seekg(off_type, ios_base::seekdir); public: // Helper functions for non-member extractors. void _M_formatted_get(_CharT& __c); void _M_formatted_get(_CharT* __s); void _M_skip_whitespace(bool __set_failbit); private: // Number of characters extracted by the streamsize _M_gcount; // most recent unformatted input function. public: #if defined (__STL_USE_TEMPLATE_EXPORT) || defined(__MRC__) || defined(__SC__) // If we are using DLL specs, we have not to use inner classes // end class declaration here typedef _Isentry<_CharT, _Traits> sentry; }; # define sentry _Isentry template class _Isentry { typedef _Isentry<_CharT, _Traits> _Self; # else class sentry { typedef sentry _Self; #endif private: bool _M_ok; basic_streambuf<_CharT, _Traits>* _M_buf; // Helper functions for constructor. void _M_init_skip(basic_istream<_CharT, _Traits>& __is) { if (__is.good()) { if (__is.tie()) __is.tie()->flush(); __is._M_skip_whitespace(true); } if (!__is.good()) __is.setstate(ios_base::failbit); _M_ok = __is.good(); } void _M_init_noskip(basic_istream<_CharT, _Traits>& __is){ if (__is.good()) { if (__is.tie()) __is.tie()->flush(); if (!_M_buf) __is.setstate(ios_base::badbit); } else __is.setstate(ios_base::failbit); _M_ok = __is.good(); } public: typedef _Traits traits_type; explicit sentry(basic_istream<_CharT, _Traits>& __is, bool __noskipws = false) : _M_buf(__is.rdbuf()) { if (__noskipws || !(__is.flags() & ios_base::skipws)) _M_init_noskip(__is); else _M_init_skip(__is); } // Calling this constructor is the same as calling the previous one with // __noskipws = true, except that it doesn't require a runtime test. sentry(basic_istream<_CharT, _Traits>& __is, _No_Skip_WS) : _M_buf(__is.rdbuf()) { _M_init_noskip(__is); } ~sentry() {} operator bool() const { return _M_ok; } private: // Disable assignment and copy constructor. sentry(const _Self&) {} void operator=(const _Self&) {} }; # if defined (__STL_USE_TEMPLATE_EXPORT) || defined(__MRC__) || defined(__SC__) # undef sentry # else // close basic_istream class definition here }; # endif # if defined (__STL_USE_TEMPLATE_EXPORT) __STL_EXPORT_TEMPLATE_CLASS _Isentry >; __STL_EXPORT_TEMPLATE_CLASS basic_istream >; # if ! defined (__STL_NO_WCHAR_T) __STL_EXPORT_TEMPLATE_CLASS _Isentry >; __STL_EXPORT_TEMPLATE_CLASS basic_istream >; # endif # endif /* __STL_USE_TEMPLATE_EXPORT */ // Non-member character and string extractor functions. template inline basic_istream<_CharT, _Traits>& __STL_CALL operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c) { __in._M_formatted_get(__c); return __in; } template inline basic_istream& __STL_CALL operator>>(basic_istream& __in, unsigned char& __c) { __in._M_formatted_get(__REINTERPRET_CAST(char&,__c)); return __in; } template inline basic_istream& __STL_CALL operator>>(basic_istream& __in, signed char& __c) { __in._M_formatted_get(__REINTERPRET_CAST(char&,__c)); return __in; } template inline basic_istream<_CharT, _Traits>& __STL_CALL operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s) { __in._M_formatted_get(__s); return __in; } template inline basic_istream& __STL_CALL operator>>(basic_istream& __in, unsigned char* __s) { __in._M_formatted_get(__REINTERPRET_CAST(char*,__s)); return __in; } template inline basic_istream& __STL_CALL operator>>(basic_istream& __in, signed char* __s) { __in._M_formatted_get(__REINTERPRET_CAST(char*,__s)); return __in; } //---------------------------------------------------------------------- // Function object structs used by some member functions. template struct _Is_wspace { typedef typename _Traits::char_type argument_type; typedef bool result_type; const ctype* _M_ctype; _Is_wspace(const ctype* __c_type) : _M_ctype(__c_type) {} bool operator()(argument_type __c) const { return _M_ctype->is(ctype_base::space, __c); } }; template struct _Is_wspace_null { typedef typename _Traits::char_type argument_type; typedef bool result_type; const ctype* _M_ctype; _Is_wspace_null(const ctype* __c_type) : _M_ctype(__c_type) {} bool operator()(argument_type __c) const { return _Traits::eq(__c, argument_type()) || _M_ctype->is(ctype_base::space, __c); } }; template struct _Scan_for_wspace { typedef typename _Traits::char_type char_type; typedef char_type* first_argument_type; typedef char_type* second_argument_type; typedef char_type* result_type; const ctype* _M_ctype; _Scan_for_wspace(const ctype* __ctype) : _M_ctype(__ctype) {} const char_type* operator()(const char_type* __first, const char_type* __last) const { return _M_ctype->scan_is(ctype_base::space, __first, __last); } }; template struct _Scan_wspace_null { typedef typename _Traits::char_type char_type; typedef char_type* first_argument_type; typedef char_type* second_argument_type; typedef char_type* result_type; const ctype* _M_ctype; _Scan_wspace_null(const ctype* __c_type) : _M_ctype(__c_type) {} const char_type* operator()(const char_type* __first, const char_type* __last) const { __last = find_if(__first, __last, bind2nd(_Eq_traits<_Traits>(), char_type())); return _M_ctype->scan_is(ctype_base::space, __first, __last); } }; template struct _Scan_for_not_wspace { typedef typename _Traits::char_type char_type; typedef char_type* first_argument_type; typedef char_type* second_argument_type; typedef char_type* result_type; const ctype* _M_ctype; _Scan_for_not_wspace(const ctype* __c_type) : _M_ctype(__c_type) {} const char_type* operator()(const char_type* __first, const char_type* __last) const { return _M_ctype->scan_not(ctype_base::space, __first, __last); } }; template struct _Scan_for_char_val { typedef typename _Traits::char_type char_type; typedef char_type* first_argument_type; typedef char_type* second_argument_type; typedef char_type* result_type; char_type _M_val; _Scan_for_char_val(char_type __value) : _M_val(__value) {} const char_type* operator()(const char_type* __first, const char_type* __last) const { return find_if(__first, __last, bind2nd(_Eq_traits<_Traits>(), _M_val)); } }; template struct _Scan_for_int_val { typedef typename _Traits::char_type char_type; typedef typename _Traits::int_type int_type; typedef char_type* first_argument_type; typedef char_type* second_argument_type; typedef char_type* result_type; int_type _M_val; _Scan_for_int_val(int_type __value) : _M_val(__value) {} const char_type* operator()(const char_type* __first, const char_type* __last) const { return find_if(__first, __last, bind2nd(_Eq_int_traits<_Traits>(), _M_val)); } }; // Helper function: try to push back a character to a streambuf, // return true if the pushback succeeded. Does not throw. #if !(defined(__MRC__)||defined(__SC__)) //*TY 02/26/2000 - template bool __STL_CALL __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) { #else template //*TY 02/26/2000 - added _Buf, removed _Traits bool __STL_CALL __pushback(_Buf* __buf, _CharT __c) //*TY 02/26/2000 - simplified parameter type { typedef typename _Buf::traits_type _Traits; #endif bool ret; __STL_TRY { const typename _Traits::int_type __eof = _Traits::eof(); ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof); } __STL_CATCH_ALL { ret = false; } return ret; } //---------------------------------------------------------------------- // istream manipulator. template basic_istream<_CharT, _Traits>& __STL_CALL ws(basic_istream<_CharT, _Traits>& __is) { typedef typename basic_istream<_CharT, _Traits>::sentry _Sentry; _Sentry __sentry(__is, _No_Skip_WS()); // Don't skip whitespace. if (__sentry) __is._M_skip_whitespace(false); return __is; } //---------------------------------------------------------------------- // Class iostream. template class __STL_CLASS_DECLSPEC basic_iostream : public basic_istream<_CharT, _Traits>, public basic_ostream<_CharT, _Traits> { public: typedef basic_ios<_CharT, _Traits> _Basic_ios; explicit basic_iostream(basic_streambuf<_CharT, _Traits>* __buf); virtual ~basic_iostream(); }; # if defined (__STL_USE_TEMPLATE_EXPORT) __STL_EXPORT_TEMPLATE_CLASS basic_iostream >; # if ! defined (__STL_NO_WCHAR_T) __STL_EXPORT_TEMPLATE_CLASS basic_iostream >; # endif # endif /* __STL_USE_TEMPLATE_EXPORT */ __STL_END_NAMESPACE # if !defined (__STL_LINK_TIME_INSTANTIATION) # include # endif #endif /* __SGI_STL_ISTREAM_H */ // Local Variables: // mode:C++ // End: