internals.hpp 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. // ----------------------------------------------------------------------------
  2. // internals.hpp : internal structs : stream_format_state, format_item.
  3. // included by format.hpp
  4. // ----------------------------------------------------------------------------
  5. // Copyright Samuel Krempp 2003. Use, modification, and distribution are
  6. // subject to the Boost Software License, Version 1.0. (See accompanying
  7. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. // See http://www.boost.org/libs/format for library home page
  9. // ----------------------------------------------------------------------------
  10. #ifndef BOOST_FORMAT_INTERNALS_HPP
  11. #define BOOST_FORMAT_INTERNALS_HPP
  12. #include <string>
  13. #include <boost/assert.hpp>
  14. #include <boost/optional.hpp>
  15. #include <boost/limits.hpp>
  16. #include <boost/format/detail/compat_workarounds.hpp>
  17. #include <boost/format/alt_sstream.hpp> // used as a dummy stream
  18. namespace boost {
  19. namespace io {
  20. namespace detail {
  21. //---- stream_format_state --------------------------------------------------//
  22. // set of params that define the format state of a stream
  23. template<class Ch, class Tr>
  24. struct stream_format_state
  25. {
  26. typedef BOOST_IO_STD basic_ios<Ch, Tr> basic_ios;
  27. stream_format_state(Ch fill) { reset(fill); }
  28. // stream_format_state(const basic_ios& os) { set_by_stream(os); }
  29. void reset(Ch fill); //- sets to default state.
  30. void set_by_stream(const basic_ios& os); //- sets to os's state.
  31. void apply_on(basic_ios & os, //- applies format_state to the stream
  32. boost::io::detail::locale_t * loc_default = 0) const;
  33. template<class T>
  34. void apply_manip(T manipulator) //- modifies state by applying manipulator
  35. { apply_manip_body<Ch, Tr, T>( *this, manipulator) ; }
  36. // --- data ---
  37. std::streamsize width_;
  38. std::streamsize precision_;
  39. Ch fill_;
  40. std::ios_base::fmtflags flags_;
  41. std::ios_base::iostate rdstate_;
  42. std::ios_base::iostate exceptions_;
  43. boost::optional<boost::io::detail::locale_t> loc_;
  44. };
  45. //---- format_item ---------------------------------------------------------//
  46. // stores all parameters that can be specified in format strings
  47. template<class Ch, class Tr, class Alloc>
  48. struct format_item
  49. {
  50. enum pad_values { zeropad = 1, spacepad =2, centered=4, tabulation = 8 };
  51. // 1. if zeropad is set, all other bits are not,
  52. // 2. if tabulation is set, all others are not.
  53. // centered and spacepad can be mixed freely.
  54. enum arg_values { argN_no_posit = -1, // non-positional directive. will set argN later
  55. argN_tabulation = -2, // tabulation directive. (no argument read)
  56. argN_ignored = -3 // ignored directive. (no argument read)
  57. };
  58. typedef BOOST_IO_STD basic_ios<Ch, Tr> basic_ios;
  59. typedef detail::stream_format_state<Ch, Tr> stream_format_state;
  60. typedef ::std::basic_string<Ch, Tr, Alloc> string_type;
  61. format_item(Ch fill) :argN_(argN_no_posit), fmtstate_(fill),
  62. truncate_(max_streamsize()), pad_scheme_(0) {}
  63. void reset(Ch fill);
  64. void compute_states(); // sets states according to truncate and pad_scheme.
  65. static std::streamsize max_streamsize() {
  66. return (std::numeric_limits<std::streamsize>::max)();
  67. }
  68. // --- data ---
  69. int argN_; //- argument number (starts at 0, eg : %1 => argN=0)
  70. // negative values for items that don't process an argument
  71. string_type res_; //- result of the formatting of this item
  72. string_type appendix_; //- piece of string between this item and the next
  73. stream_format_state fmtstate_;// set by parsing, is only affected by modify_item
  74. std::streamsize truncate_;//- is set for directives like %.5s that ask truncation
  75. unsigned int pad_scheme_;//- several possible padding schemes can mix. see pad_values
  76. };
  77. //--- Definitions ------------------------------------------------------------
  78. // - stream_format_state:: -------------------------------------------------
  79. template<class Ch, class Tr>
  80. void stream_format_state<Ch,Tr>:: apply_on (basic_ios & os,
  81. boost::io::detail::locale_t * loc_default) const {
  82. // If a locale is available, set it first. "os.fill(fill_);" may chrash otherwise.
  83. #if !defined(BOOST_NO_STD_LOCALE)
  84. if(loc_)
  85. os.imbue(loc_.get());
  86. else if(loc_default)
  87. os.imbue(*loc_default);
  88. #else
  89. (void) loc_default; // keep compiler quiet if we don't support locales
  90. #endif
  91. // set the state of this stream according to our params
  92. if(width_ != -1)
  93. os.width(width_);
  94. if(precision_ != -1)
  95. os.precision(precision_);
  96. if(fill_ != 0)
  97. os.fill(fill_);
  98. os.flags(flags_);
  99. os.clear(rdstate_);
  100. os.exceptions(exceptions_);
  101. }
  102. template<class Ch, class Tr>
  103. void stream_format_state<Ch,Tr>:: set_by_stream(const basic_ios& os) {
  104. // set our params according to the state of this stream
  105. flags_ = os.flags();
  106. width_ = os.width();
  107. precision_ = os.precision();
  108. fill_ = os.fill();
  109. rdstate_ = os.rdstate();
  110. exceptions_ = os.exceptions();
  111. }
  112. template<class Ch, class Tr, class T>
  113. void apply_manip_body( stream_format_state<Ch, Tr>& self,
  114. T manipulator) {
  115. // modify our params according to the manipulator
  116. basic_oaltstringstream<Ch, Tr> ss;
  117. self.apply_on( ss );
  118. ss << manipulator;
  119. self.set_by_stream( ss );
  120. }
  121. template<class Ch, class Tr> inline
  122. void stream_format_state<Ch,Tr>:: reset(Ch fill) {
  123. // set our params to standard's default state. cf 27.4.4.1 of the C++ norm
  124. width_=0; precision_=6;
  125. fill_=fill; // default is widen(' '), but we cant compute it without the locale
  126. flags_ = std::ios_base::dec | std::ios_base::skipws;
  127. // the adjust_field part is left equal to 0, which means right.
  128. exceptions_ = std::ios_base::goodbit;
  129. rdstate_ = std::ios_base::goodbit;
  130. }
  131. // --- format_item:: --------------------------------------------------------
  132. template<class Ch, class Tr, class Alloc>
  133. void format_item<Ch, Tr, Alloc>::
  134. reset (Ch fill) {
  135. argN_=argN_no_posit; truncate_ = max_streamsize(); pad_scheme_ =0;
  136. res_.resize(0); appendix_.resize(0);
  137. fmtstate_.reset(fill);
  138. }
  139. template<class Ch, class Tr, class Alloc>
  140. void format_item<Ch, Tr, Alloc>::
  141. compute_states() {
  142. // reflect pad_scheme_ on fmt_state_
  143. // because some pad_schemes has complex consequences on several state params.
  144. if(pad_scheme_ & zeropad) {
  145. // ignore zeropad in left alignment :
  146. if(fmtstate_.flags_ & std::ios_base::left) {
  147. BOOST_ASSERT(!(fmtstate_.flags_ &(std::ios_base::adjustfield ^std::ios_base::left)));
  148. // only left bit might be set. (not right, nor internal)
  149. pad_scheme_ = pad_scheme_ & (~zeropad);
  150. }
  151. else {
  152. pad_scheme_ &= ~spacepad; // printf ignores spacepad when zeropadding
  153. fmtstate_.fill_='0';
  154. fmtstate_.flags_ = (fmtstate_.flags_ & ~std::ios_base::adjustfield)
  155. | std::ios_base::internal;
  156. // removes all adjustfield bits, and adds internal.
  157. }
  158. }
  159. if(pad_scheme_ & spacepad) {
  160. if(fmtstate_.flags_ & std::ios_base::showpos)
  161. pad_scheme_ &= ~spacepad;
  162. }
  163. }
  164. } } } // namespaces boost :: io :: detail
  165. #endif // BOOST_FORMAT_INTERNALS_HPP