]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - 6/contrib/libstdc++/include/bits/sstream.tcc
merge fix for boot-time hang on centos' xen
[FreeBSD/FreeBSD.git] / 6 / contrib / libstdc++ / include / bits / sstream.tcc
1 // String based streams -*- C++ -*-
2
3 // Copyright (C) 1997, 1998, 1999, 2001, 2002, 2003
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING.  If not, write to the Free
19 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 // USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction.  Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License.  This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 //
32 // ISO C++ 14882: 27.7  String-based streams
33 //
34
35 #ifndef _SSTREAM_TCC
36 #define _SSTREAM_TCC 1
37
38 #pragma GCC system_header
39
40 #include <sstream>
41
42 namespace std
43 {
44   template <class _CharT, class _Traits, class _Alloc>
45     typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
46     basic_stringbuf<_CharT, _Traits, _Alloc>::
47     pbackfail(int_type __c)
48     {
49       int_type __ret = traits_type::eof();
50       const bool __testeof = traits_type::eq_int_type(__c, __ret);
51
52       if (this->eback() < this->gptr())
53         {
54           const bool __testeq = traits_type::eq(traits_type::to_char_type(__c),
55                                                 this->gptr()[-1]);
56           this->gbump(-1);
57
58           // Try to put back __c into input sequence in one of three ways.
59           // Order these tests done in is unspecified by the standard.
60           if (!__testeof && __testeq)
61             __ret = __c;
62           else if (__testeof)
63             __ret = traits_type::not_eof(__c);
64           else
65             {
66               *this->gptr() = traits_type::to_char_type(__c);
67               __ret = __c;
68             }
69         }
70       return __ret;
71     }
72
73   template <class _CharT, class _Traits, class _Alloc>
74     typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
75     basic_stringbuf<_CharT, _Traits, _Alloc>::
76     overflow(int_type __c)
77     {
78       const bool __testout = this->_M_mode & ios_base::out;
79       if (__builtin_expect(!__testout, false))
80         return traits_type::eof();
81
82       const bool __testeof = traits_type::eq_int_type(__c, traits_type::eof());
83       if (__builtin_expect(__testeof, false))
84         return traits_type::not_eof(__c);
85
86       const __size_type __capacity = _M_string.capacity();
87       const __size_type __max_size = _M_string.max_size();
88       const bool __testput = this->pptr() < this->epptr();
89       if (__builtin_expect(!__testput && __capacity == __max_size, false))
90         return traits_type::eof();
91
92       // Try to append __c into output sequence in one of two ways.
93       // Order these tests done in is unspecified by the standard.
94       if (!__testput)
95         {
96           // NB: Start ostringstream buffers at 512 chars. This is an
97           // experimental value (pronounced "arbitrary" in some of the
98           // hipper english-speaking countries), and can be changed to
99           // suit particular needs.
100           // Then, in virtue of DR 169 (TC) we are allowed to grow more
101           // than one char.
102           const __size_type __opt_len = std::max(__size_type(2 * __capacity),
103                                                  __size_type(512));
104           const __size_type __len = std::min(__opt_len, __max_size);
105           __string_type __tmp;
106           __tmp.reserve(__len);
107           __tmp.assign(_M_string.data(), this->epptr() - this->pbase());
108           _M_string.swap(__tmp);
109           _M_sync(const_cast<char_type*>(_M_string.data()),
110                   this->gptr() - this->eback(), this->pptr() - this->pbase());
111         }
112       return this->sputc(traits_type::to_char_type(__c));
113     }
114
115   template <class _CharT, class _Traits, class _Alloc>
116     typename basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
117     basic_stringbuf<_CharT, _Traits, _Alloc>::
118     underflow()
119     {
120       int_type __ret = traits_type::eof();
121       const bool __testin = this->_M_mode & ios_base::in;
122       if (__testin)
123         {
124           // Update egptr() to match the actual string end.
125           _M_update_egptr();
126
127           if (this->gptr() < this->egptr())
128             __ret = traits_type::to_int_type(*this->gptr());
129         }
130       return __ret;
131     }
132
133   template <class _CharT, class _Traits, class _Alloc>
134     typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
135     basic_stringbuf<_CharT, _Traits, _Alloc>::
136     seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode)
137     {
138       pos_type __ret =  pos_type(off_type(-1));
139       bool __testin = (ios_base::in & this->_M_mode & __mode) != 0;
140       bool __testout = (ios_base::out & this->_M_mode & __mode) != 0;
141       const bool __testboth = __testin && __testout && __way != ios_base::cur;
142       __testin &= !(__mode & ios_base::out);
143       __testout &= !(__mode & ios_base::in);
144
145       // _GLIBCXX_RESOLVE_LIB_DEFECTS
146       // 453. basic_stringbuf::seekoff need not always fail for an empty stream.
147       const char_type* __beg = __testin ? this->eback() : this->pbase();
148       if ((__beg || !__off) && (__testin || __testout || __testboth))
149         {
150           _M_update_egptr();
151
152           off_type __newoffi = 0;
153           off_type __newoffo = 0;
154           if (__way == ios_base::cur)
155             {
156               __newoffi = this->gptr() - __beg;
157               __newoffo = this->pptr() - __beg;
158             }
159           else if (__way == ios_base::end)
160             __newoffo = __newoffi = this->egptr() - __beg;
161
162           if ((__testin || __testboth)
163               && __newoffi + __off >= 0
164               && this->egptr() - __beg >= __newoffi + __off)
165             {
166               this->gbump((__beg + __newoffi + __off) - this->gptr());
167               __ret = pos_type(__newoffi);
168             }
169           if ((__testout || __testboth)
170               && __newoffo + __off >= 0
171               && this->egptr() - __beg >= __newoffo + __off)
172             {
173               this->pbump((__beg + __newoffo + __off) - this->pptr());
174               __ret = pos_type(__newoffo);
175             }
176         }
177       return __ret;
178     }
179
180   template <class _CharT, class _Traits, class _Alloc>
181     typename basic_stringbuf<_CharT, _Traits, _Alloc>::pos_type
182     basic_stringbuf<_CharT, _Traits, _Alloc>::
183     seekpos(pos_type __sp, ios_base::openmode __mode)
184     {
185       pos_type __ret =  pos_type(off_type(-1));
186       const bool __testin = (ios_base::in & this->_M_mode & __mode) != 0;
187       const bool __testout = (ios_base::out & this->_M_mode & __mode) != 0;
188
189       const char_type* __beg = __testin ? this->eback() : this->pbase();
190       if (__beg)
191         {
192           _M_update_egptr();
193
194           off_type __pos(__sp);
195           const bool __testpos = 0 <= __pos
196                                  && __pos <=  this->egptr() - __beg;
197           if ((__testin || __testout) && __testpos)
198             {
199               if (__testin)
200                 this->gbump((__beg + __pos) - this->gptr());
201               if (__testout)
202                 this->pbump((__beg + __pos) - this->pptr());
203               __ret = __sp;
204             }
205         }
206       return __ret;
207     }
208
209   // Inhibit implicit instantiations for required instantiations,
210   // which are defined via explicit instantiations elsewhere.
211   // NB:  This syntax is a GNU extension.
212 #if _GLIBCXX_EXTERN_TEMPLATE
213   extern template class basic_stringbuf<char>;
214   extern template class basic_istringstream<char>;
215   extern template class basic_ostringstream<char>;
216   extern template class basic_stringstream<char>;
217
218 #ifdef _GLIBCXX_USE_WCHAR_T
219   extern template class basic_stringbuf<wchar_t>;
220   extern template class basic_istringstream<wchar_t>;
221   extern template class basic_ostringstream<wchar_t>;
222   extern template class basic_stringstream<wchar_t>;
223 #endif
224 #endif
225 } // namespace std
226
227 #endif