source: NonGTP/Boost/boost/tuple/tuple_io.hpp @ 857

Revision 857, 14.1 KB checked in by igarcia, 18 years ago (diff)
Line 
1// tuple_io.hpp --------------------------------------------------------------
2
3// Copyright (C) 2001 Jaakko Järvi (jaakko.jarvi@cs.utu.fi)
4//               2001 Gary Powell (gary.powell@sierra.com)
5//
6// Distributed under the Boost Software License, Version 1.0. (See
7// accompanying file LICENSE_1_0.txt or copy at
8// http://www.boost.org/LICENSE_1_0.txt)
9// For more information, see http://www.boost.org
10
11// ----------------------------------------------------------------------------
12
13#ifndef BOOST_TUPLE_IO_HPP
14#define BOOST_TUPLE_IO_HPP
15
16
17// add to boost/config.hpp
18// for now
19# if defined __GNUC__
20#   if (__GNUC__ == 2 && __GNUC_MINOR__ <= 97)
21#define BOOST_NO_TEMPLATED_STREAMS
22#endif
23#endif // __GNUC__
24
25#if defined BOOST_NO_TEMPLATED_STREAMS
26#include <iostream>
27#else
28#include <istream>
29#include <ostream>
30#endif 
31
32#include "boost/tuple/tuple.hpp"
33
34// This is ugly: one should be using twoargument isspace since whitspace can
35// be locale dependent, in theory at least.
36// not all libraries implement have the two-arg version, so we need to
37// use the one-arg one, which one should get with <cctype> but there seem
38// to be exceptions to this.
39
40#if !defined (BOOST_NO_STD_LOCALE)
41
42#include <locale> // for two-arg isspace
43
44#else
45
46#include <cctype> // for one-arg (old) isspace
47#include <ctype.h> // Metrowerks does not find one-arg isspace from cctype
48
49#endif
50
51namespace boost {
52namespace tuples {
53
54namespace detail {
55
56class format_info {
57public:   
58
59   enum manipulator_type { open, close, delimiter };
60   BOOST_STATIC_CONSTANT(int, number_of_manipulators = delimiter + 1);
61private:
62   
63   static int get_stream_index (int m)
64   {
65     static const int stream_index[number_of_manipulators]
66        = { std::ios::xalloc(), std::ios::xalloc(), std::ios::xalloc() };
67
68     return stream_index[m];
69   }
70
71   format_info(const format_info&);
72   format_info();   
73
74
75public:
76
77#if defined (BOOST_NO_TEMPLATED_STREAMS)
78   static char get_manipulator(std::ios& i, manipulator_type m) {
79     char c = static_cast<char>(i.iword(get_stream_index(m)));
80     
81     // parentheses and space are the default manipulators
82     if (!c) {
83       switch(m) {
84         case detail::format_info::open : c = '('; break;
85         case detail::format_info::close : c = ')'; break;
86         case detail::format_info::delimiter : c = ' '; break;
87       }
88     }
89     return c;
90   }
91
92   static void set_manipulator(std::ios& i, manipulator_type m, char c) {
93      i.iword(get_stream_index(m)) = static_cast<long>(c);
94   }
95#else
96   template<class CharType, class CharTrait>
97   static CharType get_manipulator(std::basic_ios<CharType, CharTrait>& i,
98                                   manipulator_type m) {
99     // The manipulators are stored as long.
100     // A valid instanitation of basic_stream allows CharType to be any POD,
101     // hence, the static_cast may fail (it fails if long is not convertible
102     // to CharType
103     CharType c = static_cast<CharType>(i.iword(get_stream_index(m)) );
104     // parentheses and space are the default manipulators
105     if (!c) {
106       switch(m) {
107         case detail::format_info::open :  c = i.widen('('); break;
108         case detail::format_info::close : c = i.widen(')'); break;
109         case detail::format_info::delimiter : c = i.widen(' '); break;
110       }
111     }
112     return c;
113   }
114
115
116   template<class CharType, class CharTrait>
117   static void set_manipulator(std::basic_ios<CharType, CharTrait>& i,
118                               manipulator_type m, CharType c) {
119     // The manipulators are stored as long.
120     // A valid instanitation of basic_stream allows CharType to be any POD,
121     // hence, the static_cast may fail (it fails if CharType is not
122     // convertible long.
123      i.iword(get_stream_index(m)) = static_cast<long>(c);
124   }
125#endif // BOOST_NO_TEMPLATED_STREAMS
126};
127
128} // end of namespace detail
129 
130template<class CharType>   
131class tuple_manipulator {
132  const detail::format_info::manipulator_type mt;
133  CharType f_c;
134public:
135  explicit tuple_manipulator(detail::format_info::manipulator_type m,
136                             const char c = 0)
137     : mt(m), f_c(c) {}
138 
139#if defined (BOOST_NO_TEMPLATED_STREAMS)
140  void set(std::ios &io) const {
141     detail::format_info::set_manipulator(io, mt, f_c);
142  }
143#else
144#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
145   template<class CharType2, class CharTrait>
146  void set(std::basic_ios<CharType2, CharTrait> &io) const {
147     detail::format_info::set_manipulator(io, mt, f_c);
148  }
149#else
150   template<class CharTrait>
151  void set(std::basic_ios<CharType, CharTrait> &io) const {
152     detail::format_info::set_manipulator(io, mt, f_c);
153  }
154#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
155#endif // BOOST_NO_TEMPLATED_STREAMS
156};
157
158#if defined (BOOST_NO_TEMPLATED_STREAMS)
159inline std::ostream&
160operator<<(std::ostream& o, const tuple_manipulator<char>& m) {
161  m.set(o);
162  return o;
163}
164
165inline std::istream&
166operator>>(std::istream& i, const tuple_manipulator<char>& m) {
167  m.set(i);
168  return i;
169}
170
171#else
172
173template<class CharType, class CharTrait>
174inline std::basic_ostream<CharType, CharTrait>&
175operator<<(std::basic_ostream<CharType, CharTrait>& o, const tuple_manipulator<CharType>& m) {
176  m.set(o);
177  return o;
178}
179
180template<class CharType, class CharTrait>
181inline std::basic_istream<CharType, CharTrait>&
182operator>>(std::basic_istream<CharType, CharTrait>& i, const tuple_manipulator<CharType>& m) {
183  m.set(i);
184  return i;
185}
186
187#endif   // BOOST_NO_TEMPLATED_STREAMS
188   
189template<class CharType>
190inline tuple_manipulator<CharType> set_open(const CharType c) {
191   return tuple_manipulator<CharType>(detail::format_info::open, c);
192}
193
194template<class CharType>
195inline tuple_manipulator<CharType> set_close(const CharType c) {
196   return tuple_manipulator<CharType>(detail::format_info::close, c);
197}
198
199template<class CharType>
200inline tuple_manipulator<CharType> set_delimiter(const CharType c) {
201   return tuple_manipulator<CharType>(detail::format_info::delimiter, c);
202}
203
204
205
206   
207   
208// -------------------------------------------------------------
209// printing tuples to ostream in format (a b c)
210// parentheses and space are defaults, but can be overriden with manipulators
211// set_open, set_close and set_delimiter
212   
213namespace detail {
214
215// Note: The order of the print functions is critical
216// to let a conforming compiler  find and select the correct one.
217
218#if defined (BOOST_NO_TEMPLATED_STREAMS)
219
220#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
221template<class T1>
222inline std::ostream& print(std::ostream& o, const cons<T1, null_type>& t) {
223  return o << t.head;
224}
225#endif // BOOST_NO_TEMPLATED_STREAMS
226 
227inline std::ostream& print(std::ostream& o, const null_type&) { return o; }
228
229template<class T1, class T2>
230inline std::ostream&
231print(std::ostream& o, const cons<T1, T2>& t) {
232 
233  const char d = format_info::get_manipulator(o, format_info::delimiter);
234   
235  o << t.head;
236
237#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
238  if (tuples::length<T2>::value == 0)
239    return o;
240#endif  // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
241  o << d;
242 
243  return print(o, t.tail );
244
245}
246
247
248
249#else
250
251#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
252template<class CharType, class CharTrait, class T1>
253inline std::basic_ostream<CharType, CharTrait>&
254print(std::basic_ostream<CharType, CharTrait>& o, const cons<T1, null_type>& t) {
255  return o << t.head;
256}
257#endif  // !BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
258
259 
260template<class CharType, class CharTrait>
261inline std::basic_ostream<CharType, CharTrait>&
262print(std::basic_ostream<CharType, CharTrait>& o, const null_type&) {
263  return o;
264}
265
266template<class CharType, class CharTrait, class T1, class T2>
267inline std::basic_ostream<CharType, CharTrait>&
268print(std::basic_ostream<CharType, CharTrait>& o, const cons<T1, T2>& t) {
269 
270  const CharType d = format_info::get_manipulator(o, format_info::delimiter);
271   
272  o << t.head;
273
274#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
275  if (tuples::length<T2>::value == 0)
276    return o;
277#endif  // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
278  o << d;
279
280  return print(o, t.tail);
281}
282
283#endif  // BOOST_NO_TEMPLATED_STREAMS
284
285} // namespace detail
286
287#if defined (BOOST_NO_TEMPLATED_STREAMS)
288template<class T1, class T2>
289inline std::ostream& operator<<(std::ostream& o, const cons<T1, T2>& t) {
290  if (!o.good() ) return o;
291 
292  const char l =
293    detail::format_info::get_manipulator(o, detail::format_info::open);
294  const char r =
295    detail::format_info::get_manipulator(o, detail::format_info::close);
296   
297  o << l;
298 
299  detail::print(o, t); 
300
301  o << r;
302
303  return o;
304}
305
306#else
307
308template<class CharType, class CharTrait, class T1, class T2>
309inline std::basic_ostream<CharType, CharTrait>&
310operator<<(std::basic_ostream<CharType, CharTrait>& o,
311           const cons<T1, T2>& t) {
312  if (!o.good() ) return o;
313 
314  const CharType l =
315    detail::format_info::get_manipulator(o, detail::format_info::open);
316  const CharType r =
317    detail::format_info::get_manipulator(o, detail::format_info::close);
318   
319  o << l;   
320
321  detail::print(o, t); 
322
323  o << r;
324
325  return o;
326}
327#endif // BOOST_NO_TEMPLATED_STREAMS
328
329   
330// -------------------------------------------------------------
331// input stream operators
332
333namespace detail {
334
335#if defined (BOOST_NO_TEMPLATED_STREAMS)
336
337inline std::istream&
338extract_and_check_delimiter(
339  std::istream& is, format_info::manipulator_type del)
340{
341  const char d = format_info::get_manipulator(is, del);
342
343#if defined (BOOST_NO_STD_LOCALE)
344  const bool is_delimiter = !isspace(d);
345#else
346  const bool is_delimiter = (!std::isspace(d, is.getloc()) );           
347#endif
348
349  char c;
350  if (is_delimiter) {
351    is >> c;
352    if (c!=d) {
353      is.setstate(std::ios::failbit);
354    }
355  }
356  return is;
357}
358
359
360// Note: The order of the read functions is critical to let a
361// (conforming?) compiler find and select the correct one.
362
363#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
364template<class T1>
365inline  std::istream &
366read (std::istream &is, cons<T1, null_type>& t1) {
367
368  if (!is.good()) return is;   
369   
370  return is >> t1.head ;
371}
372#else
373inline std::istream& read(std::istream& i, const null_type&) { return i; }
374#endif // !BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
375   
376template<class T1, class T2>
377inline std::istream&
378read(std::istream &is, cons<T1, T2>& t1) {
379
380  if (!is.good()) return is;
381   
382  is >> t1.head;
383
384#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
385  if (tuples::length<T2>::value == 0)
386    return is;
387#endif  // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
388
389  extract_and_check_delimiter(is, format_info::delimiter);
390
391  return read(is, t1.tail);
392}
393
394} // end namespace detail
395
396inline std::istream&
397operator>>(std::istream &is, null_type&) {
398
399  if (!is.good() ) return is;
400
401  detail::extract_and_check_delimiter(is, detail::format_info::open);
402  detail::extract_and_check_delimiter(is, detail::format_info::close);
403
404  return is;
405}
406
407
408template<class T1, class T2>
409inline std::istream&
410operator>>(std::istream& is, cons<T1, T2>& t1) {
411
412  if (!is.good() ) return is;
413
414  detail::extract_and_check_delimiter(is, detail::format_info::open);
415                     
416  detail::read(is, t1);
417   
418  detail::extract_and_check_delimiter(is, detail::format_info::close);
419
420  return is;
421}
422
423
424
425#else
426
427template<class CharType, class CharTrait>
428inline std::basic_istream<CharType, CharTrait>&
429extract_and_check_delimiter(
430  std::basic_istream<CharType, CharTrait> &is, format_info::manipulator_type del)
431{
432  const CharType d = format_info::get_manipulator(is, del);
433
434#if defined (BOOST_NO_STD_LOCALE)
435  const bool is_delimiter = !isspace(d);
436#elif defined ( __BORLANDC__ )
437  const bool is_delimiter = !std::use_facet< std::ctype< CharType > >
438    (is.getloc() ).is( std::ctype_base::space, d);
439#else
440  const bool is_delimiter = (!std::isspace(d, is.getloc()) );           
441#endif
442
443  CharType c;
444  if (is_delimiter) {
445    is >> c;
446    if (c!=d) {
447      is.setstate(std::ios::failbit);
448    }
449  }
450  return is;
451}
452
453   
454#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
455template<class CharType, class CharTrait, class T1>
456inline  std::basic_istream<CharType, CharTrait> &
457read (std::basic_istream<CharType, CharTrait> &is, cons<T1, null_type>& t1) {
458
459  if (!is.good()) return is;   
460   
461  return is >> t1.head;
462}
463#else
464template<class CharType, class CharTrait>
465inline std::basic_istream<CharType, CharTrait>&
466read(std::basic_istream<CharType, CharTrait>& i, const null_type&) { return i; }
467
468#endif // !BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
469
470template<class CharType, class CharTrait, class T1, class T2>
471inline std::basic_istream<CharType, CharTrait>&
472read(std::basic_istream<CharType, CharTrait> &is, cons<T1, T2>& t1) {
473
474  if (!is.good()) return is;
475   
476  is >> t1.head;
477
478#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
479  if (tuples::length<T2>::value == 0)
480    return is;
481#endif  // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
482
483  extract_and_check_delimiter(is, format_info::delimiter);
484
485  return read(is, t1.tail);
486}
487
488} // end namespace detail
489
490
491template<class CharType, class CharTrait>
492inline std::basic_istream<CharType, CharTrait>&
493operator>>(std::basic_istream<CharType, CharTrait> &is, null_type&) {
494
495  if (!is.good() ) return is;
496
497  detail::extract_and_check_delimiter(is, detail::format_info::open);
498  detail::extract_and_check_delimiter(is, detail::format_info::close);
499
500  return is;
501}
502
503template<class CharType, class CharTrait, class T1, class T2>
504inline std::basic_istream<CharType, CharTrait>&
505operator>>(std::basic_istream<CharType, CharTrait>& is, cons<T1, T2>& t1) {
506
507  if (!is.good() ) return is;
508
509  detail::extract_and_check_delimiter(is, detail::format_info::open);
510                     
511  detail::read(is, t1);
512   
513  detail::extract_and_check_delimiter(is, detail::format_info::close);
514
515  return is;
516}
517
518#endif // BOOST_NO_TEMPLATED_STREAMS
519
520} // end of namespace tuples
521} // end of namespace boost
522
523#endif // BOOST_TUPLE_IO_HPP
524
525
Note: See TracBrowser for help on using the repository browser.