Update contrib.
1 // ----------------------------------------------------------------------------
2 // internals.hpp : internal structs : stream_format_state, format_item.
3 // included by format.hpp
4 // ----------------------------------------------------------------------------
6 // Copyright Samuel Krempp 2003. Use, modification, and distribution are
7 // subject to the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10 // See http://www.boost.org/libs/format for library home page
12 // ----------------------------------------------------------------------------
14 #ifndef BOOST_FORMAT_INTERNALS_HPP
15 #define BOOST_FORMAT_INTERNALS_HPP
19 #include <boost/assert.hpp>
20 #include <boost/optional.hpp>
21 #include <boost/limits.hpp>
22 #include <boost/format/detail/compat_workarounds.hpp>
23 #include <boost/format/alt_sstream.hpp> // used as a dummy stream
30 //---- stream_format_state --------------------------------------------------//
32 // set of params that define the format state of a stream
33 template<class Ch, class Tr>
34 struct stream_format_state
36 typedef BOOST_IO_STD basic_ios<Ch, Tr> basic_ios;
38 stream_format_state(Ch fill) { reset(fill); }
39 // stream_format_state(const basic_ios& os) { set_by_stream(os); }
41 void reset(Ch fill); //- sets to default state.
42 void set_by_stream(const basic_ios& os); //- sets to os's state.
43 void apply_on(basic_ios & os, //- applies format_state to the stream
44 boost::io::detail::locale_t * loc_default = 0) const;
46 void apply_manip(T manipulator) //- modifies state by applying manipulator
47 { apply_manip_body<Ch, Tr, T>( *this, manipulator) ; }
50 std::streamsize width_;
51 std::streamsize precision_;
53 std::ios_base::fmtflags flags_;
54 std::ios_base::iostate rdstate_;
55 std::ios_base::iostate exceptions_;
56 boost::optional<boost::io::detail::locale_t> loc_;
60 //---- format_item ---------------------------------------------------------//
62 // stores all parameters that can be specified in format strings
63 template<class Ch, class Tr, class Alloc>
66 enum pad_values { zeropad = 1, spacepad =2, centered=4, tabulation = 8 };
67 // 1. if zeropad is set, all other bits are not,
68 // 2. if tabulation is set, all others are not.
69 // centered and spacepad can be mixed freely.
70 enum arg_values { argN_no_posit = -1, // non-positional directive. will set argN later
71 argN_tabulation = -2, // tabulation directive. (no argument read)
72 argN_ignored = -3 // ignored directive. (no argument read)
74 typedef BOOST_IO_STD basic_ios<Ch, Tr> basic_ios;
75 typedef detail::stream_format_state<Ch, Tr> stream_format_state;
76 typedef ::std::basic_string<Ch, Tr, Alloc> string_type;
78 format_item(Ch fill) :argN_(argN_no_posit), fmtstate_(fill),
79 truncate_(max_streamsize()), pad_scheme_(0) {}
81 void compute_states(); // sets states according to truncate and pad_scheme.
83 static std::streamsize max_streamsize() {
84 return (std::numeric_limits<std::streamsize>::max)();
88 int argN_; //- argument number (starts at 0, eg : %1 => argN=0)
89 // negative values for items that don't process an argument
90 string_type res_; //- result of the formatting of this item
91 string_type appendix_; //- piece of string between this item and the next
93 stream_format_state fmtstate_;// set by parsing, is only affected by modify_item
95 std::streamsize truncate_;//- is set for directives like %.5s that ask truncation
96 unsigned int pad_scheme_;//- several possible padding schemes can mix. see pad_values
101 //--- Definitions ------------------------------------------------------------
103 // - stream_format_state:: -------------------------------------------------
104 template<class Ch, class Tr>
105 void stream_format_state<Ch,Tr>:: apply_on (basic_ios & os,
106 boost::io::detail::locale_t * loc_default) const {
107 // set the state of this stream according to our params
111 os.precision(precision_);
116 os.exceptions(exceptions_);
117 #if !defined(BOOST_NO_STD_LOCALE)
119 os.imbue(loc_.get());
121 os.imbue(*loc_default);
125 template<class Ch, class Tr>
126 void stream_format_state<Ch,Tr>:: set_by_stream(const basic_ios& os) {
127 // set our params according to the state of this stream
130 precision_ = os.precision();
132 rdstate_ = os.rdstate();
133 exceptions_ = os.exceptions();
137 template<class Ch, class Tr, class T>
138 void apply_manip_body( stream_format_state<Ch, Tr>& self,
140 // modify our params according to the manipulator
141 basic_oaltstringstream<Ch, Tr> ss;
144 self.set_by_stream( ss );
147 template<class Ch, class Tr> inline
148 void stream_format_state<Ch,Tr>:: reset(Ch fill) {
149 // set our params to standard's default state. cf § 27.4.4.1 of the C++ norm
150 width_=0; precision_=6;
151 fill_=fill; // default is widen(' '), but we cant compute it without the locale
152 flags_ = std::ios_base::dec | std::ios_base::skipws;
153 // the adjust_field part is left equal to 0, which means right.
154 exceptions_ = std::ios_base::goodbit;
155 rdstate_ = std::ios_base::goodbit;
159 // --- format_item:: --------------------------------------------------------
161 template<class Ch, class Tr, class Alloc>
162 void format_item<Ch, Tr, Alloc>::
164 argN_=argN_no_posit; truncate_ = max_streamsize(); pad_scheme_ =0;
165 res_.resize(0); appendix_.resize(0);
166 fmtstate_.reset(fill);
169 template<class Ch, class Tr, class Alloc>
170 void format_item<Ch, Tr, Alloc>::
172 // reflect pad_scheme_ on fmt_state_
173 // because some pad_schemes has complex consequences on several state params.
174 if(pad_scheme_ & zeropad) {
175 // ignore zeropad in left alignment :
176 if(fmtstate_.flags_ & std::ios_base::left) {
177 BOOST_ASSERT(!(fmtstate_.flags_ &(std::ios_base::adjustfield ^std::ios_base::left)));
178 // only left bit might be set. (not right, nor internal)
179 pad_scheme_ = pad_scheme_ & (~zeropad);
182 pad_scheme_ &= ~spacepad; // printf ignores spacepad when zeropadding
184 fmtstate_.flags_ = (fmtstate_.flags_ & ~std::ios_base::adjustfield)
185 | std::ios_base::internal;
186 // removes all adjustfield bits, and adds internal.
189 if(pad_scheme_ & spacepad) {
190 if(fmtstate_.flags_ & std::ios_base::showpos)
191 pad_scheme_ &= ~spacepad;
196 } } } // namespaces boost :: io :: detail
199 #endif // BOOST_FORMAT_INTERNALS_HPP