feed_args.hpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // feed_args.hpp : functions for processing each argument
3 // (feed, feed_manip, and distribute)
4 // ----------------------------------------------------------------------------
5 
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)
9 
10 // See http://www.boost.org/libs/format for library home page
11 
12 // ----------------------------------------------------------------------------
13 
14 #ifndef BOOST_FORMAT_FEED_ARGS_HPP
15 #define BOOST_FORMAT_FEED_ARGS_HPP
16 
17 #include <boost/config.hpp>
18 #include <boost/assert.hpp>
20 
22 #include <boost/format/group.hpp>
24 
25 namespace boost {
26 namespace io {
27 namespace detail {
28 
29  template<class Ch, class Tr, class Alloc>
30  void mk_str( std::basic_string<Ch,Tr, Alloc> & res,
31  const Ch * beg,
32  typename std::basic_string<Ch,Tr,Alloc>::size_type size,
33  std::streamsize w,
34  const Ch fill_char,
35  std::ios_base::fmtflags f,
36  const Ch prefix_space, // 0 if no space-padding
37  bool center)
38  // applies centered/left/right padding to the string [beg, beg+size[
39  // Effects : the result is placed in res.
40  {
41  typedef typename std::basic_string<Ch,Tr,Alloc>::size_type size_type;
42  res.resize(0);
43  if(w<=0 || static_cast<size_type>(w) <=size) {
44  // no need to pad.
45  res.reserve(size + !!prefix_space);
46  if(prefix_space)
47  res.append(1, prefix_space);
48  if (size)
49  res.append(beg, size);
50  }
51  else {
52  std::streamsize n=static_cast<std::streamsize>(w-size-!!prefix_space);
53  std::streamsize n_after = 0, n_before = 0;
54  res.reserve(static_cast<size_type>(w)); // allocate once for the 2 inserts
55  if(center)
56  n_after = n/2, n_before = n - n_after;
57  else
58  if(f & std::ios_base::left)
59  n_after = n;
60  else
61  n_before = n;
62  // now make the res string :
63  if(n_before) res.append(static_cast<size_type>(n_before), fill_char);
64  if(prefix_space)
65  res.append(1, prefix_space);
66  if (size)
67  res.append(beg, size);
68  if(n_after) res.append(static_cast<size_type>(n_after), fill_char);
69  }
70  } // -mk_str(..)
71 
72 
73 #if BOOST_WORKAROUND(__DECCXX_VER, BOOST_TESTED_AT(60590042))
74 // __DECCXX needs to be tricked to disambiguate this simple overload..
75 // the trick is in "boost/format/msvc_disambiguater.hpp"
76 
77  template< class Ch, class Tr, class T> inline
78  void put_head (BOOST_IO_STD basic_ostream<Ch, Tr> & os, const T& x ) {
80  }
81  template< class Ch, class Tr, class T> inline
82  void put_last (BOOST_IO_STD basic_ostream<Ch, Tr> & os, const T& x ) {
84  }
85 
86 #else
87 
88  template< class Ch, class Tr, class T> inline
89  void put_head (BOOST_IO_STD basic_ostream<Ch, Tr> &, const T& ) {
90  }
91 
92  template< class Ch, class Tr, class T> inline
93  void put_head( BOOST_IO_STD basic_ostream<Ch, Tr> & os, const group1<T>& x ) {
94  os << group_head(x.a1_); // send the first N-1 items, not the last
95  }
96 
97  template< class Ch, class Tr, class T> inline
98  void put_last( BOOST_IO_STD basic_ostream<Ch, Tr> & os, const T& x ) {
99  os << x ;
100  }
101 
102  template< class Ch, class Tr, class T> inline
103  void put_last( BOOST_IO_STD basic_ostream<Ch, Tr> & os, const group1<T>& x ) {
104  os << group_last(x.a1_); // this selects the last element
105  }
106 
107 #ifndef BOOST_NO_OVERLOAD_FOR_NON_CONST
108  template< class Ch, class Tr, class T> inline
109  void put_head( BOOST_IO_STD basic_ostream<Ch, Tr> &, T& ) {
110  }
111 
112  template< class Ch, class Tr, class T> inline
113  void put_last( BOOST_IO_STD basic_ostream<Ch, Tr> & os, T& x) {
114  os << x ;
115  }
116 #endif
117 #endif // -__DECCXX workaround
118 
119  template< class Ch, class Tr, class T>
120  void call_put_head(BOOST_IO_STD basic_ostream<Ch, Tr> & os, const void* x) {
122  }
123 
124  template< class Ch, class Tr, class T>
125  void call_put_last(BOOST_IO_STD basic_ostream<Ch, Tr> & os, const void* x) {
126  put_last(os, *(T*)x);
127  }
128 
129  template< class Ch, class Tr>
130  struct put_holder {
131  template<class T>
133  : arg(&t),
134  put_head(&call_put_head<Ch, Tr, T>),
135  put_last(&call_put_last<Ch, Tr, T>)
136  {}
137  const void* arg;
138  void (*put_head)(BOOST_IO_STD basic_ostream<Ch, Tr> & os, const void* x);
139  void (*put_last)(BOOST_IO_STD basic_ostream<Ch, Tr> & os, const void* x);
140  };
141 
142  template< class Ch, class Tr> inline
143  void put_head( BOOST_IO_STD basic_ostream<Ch, Tr> & os, const put_holder<Ch, Tr>& t) {
144  t.put_head(os, t.arg);
145  }
146 
147  template< class Ch, class Tr> inline
148  void put_last( BOOST_IO_STD basic_ostream<Ch, Tr> & os, const put_holder<Ch, Tr>& t) {
149  t.put_last(os, t.arg);
150  }
151 
152 
153  template< class Ch, class Tr, class Alloc, class T>
154  void put( T x,
155  const format_item<Ch, Tr, Alloc>& specs,
158  io::detail::locale_t *loc_p = NULL)
159  {
160 #ifdef BOOST_MSVC
161  // If std::min<unsigned> or std::max<unsigned> are already instantiated
162  // at this point then we get a blizzard of warning messages when we call
163  // those templates with std::size_t as arguments. Weird and very annoyning...
164 #pragma warning(push)
165 #pragma warning(disable:4267)
166 #endif
167  // does the actual conversion of x, with given params, into a string
168  // using the supplied stringbuf.
169 
170  typedef typename basic_format<Ch, Tr, Alloc>::string_type string_type;
171  typedef typename basic_format<Ch, Tr, Alloc>::format_item_t format_item_t;
172  typedef typename string_type::size_type size_type;
173 
175  specs.fmtstate_.apply_on(oss, loc_p);
176 
177  // the stream format state can be modified by manipulators in the argument :
178  put_head( oss, x );
179  // in case x is a group, apply the manip part of it,
180  // in order to find width
181 
182  const std::ios_base::fmtflags fl=oss.flags();
183  const bool internal = (fl & std::ios_base::internal) != 0;
184  const std::streamsize w = oss.width();
185  const bool two_stepped_padding= internal && (w!=0);
186 
187  res.resize(0);
188  if(! two_stepped_padding) {
189  if(w>0) // handle padding via mk_str, not natively in stream
190  oss.width(0);
191  put_last( oss, x);
192  const Ch * res_beg = buf.pbase();
193  Ch prefix_space = 0;
194  if(specs.pad_scheme_ & format_item_t::spacepad)
195  if(buf.pcount()== 0 ||
196  (res_beg[0] !=oss.widen('+') && res_beg[0] !=oss.widen('-') ))
197  prefix_space = oss.widen(' ');
198  size_type res_size = (std::min)(
199  static_cast<size_type>(specs.truncate_ - !!prefix_space),
200  buf.pcount() );
201  mk_str(res, res_beg, res_size, w, oss.fill(), fl,
202  prefix_space, (specs.pad_scheme_ & format_item_t::centered) !=0 );
203  }
204  else { // 2-stepped padding
205  // internal can be implied by zeropad, or user-set.
206  // left, right, and centered alignment overrule internal,
207  // but spacepad or truncate might be mixed with internal (using manipulator)
208  put_last( oss, x); // may pad
209  const Ch * res_beg = buf.pbase();
210  size_type res_size = buf.pcount();
211  bool prefix_space=false;
212  if(specs.pad_scheme_ & format_item_t::spacepad)
213  if(buf.pcount()== 0 ||
214  (res_beg[0] !=oss.widen('+') && res_beg[0] !=oss.widen('-') ))
215  prefix_space = true;
216  if(res_size == static_cast<size_type>(w) && w<=specs.truncate_ && !prefix_space) {
217  // okay, only one thing was printed and padded, so res is fine
218  res.assign(res_beg, res_size);
219  }
220  else { // length w exceeded
221  // either it was multi-output with first output padding up all width..
222  // either it was one big arg and we are fine.
223  // Note that res_size<w is possible (in case of bad user-defined formatting)
224  res.assign(res_beg, res_size);
225  res_beg=NULL; // invalidate pointers.
226 
227  // make a new stream, to start re-formatting from scratch :
228  buf.clear_buffer();
230  specs.fmtstate_.apply_on(oss2, loc_p);
231  put_head( oss2, x );
232 
233  oss2.width(0);
234  if(prefix_space)
235  oss2 << ' ';
236  put_last(oss2, x );
237  if(buf.pcount()==0 && specs.pad_scheme_ & format_item_t::spacepad) {
238  prefix_space =true;
239  oss2 << ' ';
240  }
241  // we now have the minimal-length output
242  const Ch * tmp_beg = buf.pbase();
243  size_type tmp_size = (std::min)(static_cast<size_type>(specs.truncate_),
244  buf.pcount() );
245 
246 
247  if(static_cast<size_type>(w) <= tmp_size) {
248  // minimal length is already >= w, so no padding (cool!)
249  res.assign(tmp_beg, tmp_size);
250  }
251  else { // hum.. we need to pad (multi_output, or spacepad present)
252  //find where we should pad
253  size_type sz = (std::min)(res_size + (prefix_space ? 1 : 0), tmp_size);
254  size_type i = prefix_space;
255  for(; i<sz && tmp_beg[i] == res[i - (prefix_space ? 1 : 0)]; ++i) {}
256  if(i>=tmp_size) i=prefix_space;
257  res.assign(tmp_beg, i);
258  std::streamsize d = w - static_cast<std::streamsize>(tmp_size);
259  BOOST_ASSERT(d>0);
260  res.append(static_cast<size_type>( d ), oss2.fill());
261  res.append(tmp_beg+i, tmp_size-i);
262  BOOST_ASSERT(i+(tmp_size-i)+(std::max)(d,(std::streamsize)0)
263  == static_cast<size_type>(w));
264  BOOST_ASSERT(res.size() == static_cast<size_type>(w));
265  }
266  }
267  }
268  buf.clear_buffer();
269 #ifdef BOOST_MSVC
270 #pragma warning(pop)
271 #endif
272  } // end- put(..)
273 
274 
275  template< class Ch, class Tr, class Alloc, class T>
277  // call put(x, ..) on every occurence of the current argument :
278  if(self.cur_arg_ >= self.num_args_) {
279  if( self.exceptions() & too_many_args_bit )
280  boost::throw_exception(too_many_args(self.cur_arg_, self.num_args_));
281  else return;
282  }
283  for(unsigned long i=0; i < self.items_.size(); ++i) {
284  if(self.items_[i].argN_ == self.cur_arg_) {
285  put<Ch, Tr, Alloc, T> (x, self.items_[i], self.items_[i].res_,
286  self.buf_, boost::get_pointer(self.loc_) );
287  }
288  }
289  }
290 
291  template<class Ch, class Tr, class Alloc, class T>
294  if(self.dumped_) self.clear();
295  distribute<Ch, Tr, Alloc, T> (self, x);
296  ++self.cur_arg_;
297  if(self.bound_.size() != 0) {
298  while( self.cur_arg_ < self.num_args_ && self.bound_[self.cur_arg_] )
299  ++self.cur_arg_;
300  }
301  return self;
302  }
303 
304  template<class Ch, class Tr, class Alloc, class T> inline
307  return feed_impl<Ch, Tr, Alloc, const put_holder<Ch, Tr>&>(self, put_holder<Ch, Tr>(x));
308  }
309 
310 } // namespace detail
311 } // namespace io
312 } // namespace boost
313 
314 
315 #endif // BOOST_FORMAT_FEED_ARGS_HPP
#define BOOST_IO_STD
group1< T2 > group_last(group2< T1, T2 > const &x)
Definition: group.hpp:311
BOOST_DEDUCED_TYPENAME optional< T >::pointer_const_type get_pointer(optional< T > const &opt)
basic_format< Ch, Tr, Alloc > & feed(basic_format< Ch, Tr, Alloc > &self, T x)
Definition: feed_args.hpp:306
typedef void(APIENTRY *GLDEBUGPROC)(GLenum source
BOOST_MOVE_USE_STANDARD_LIBRARY_MOVE.
void put_last(BOOST_IO_STD basic_ostream< Ch, Tr > &os, const T &x)
Definition: feed_args.hpp:98
void call_put_head(BOOST_IO_STD basic_ostream< Ch, Tr > &os, const void *x)
Definition: feed_args.hpp:120
BOOST_NORETURN void throw_exception(E const &e)
GLdouble GLdouble GLdouble w
d
Definition: rmse.py:171
Definition: arg_fwd.hpp:23
GLdouble n
Definition: glext.h:1966
GLdouble t
GLenum GLuint GLenum GLsizei const GLchar * buf
GLdouble f
size_type pcount() const
Definition: alt_sstream.hpp:84
void put(T x, const format_item< Ch, Tr, Alloc > &specs, typename basic_format< Ch, Tr, Alloc >::string_type &res, typename basic_format< Ch, Tr, Alloc >::internal_streambuf_t &buf, io::detail::locale_t *loc_p=NULL)
Definition: feed_args.hpp:154
group1< T1 > group_head(group2< T1, T2 > const &x)
Definition: group.hpp:303
GLsizeiptr size
void put_head(BOOST_IO_STD basic_ostream< Ch, Tr > &os, const put_holder< Ch, Tr > &t)
Definition: feed_args.hpp:143
GLdouble x
void(* put_head)(BOOST_IO_STD basic_ostream< Ch, Tr > &os, const void *x)
Definition: feed_args.hpp:138
GLint left
Definition: glext.h:1963
basic_format< Ch, Tr, Alloc > & feed_impl(basic_format< Ch, Tr, Alloc > &self, T x)
Definition: feed_args.hpp:293
void distribute(basic_format< Ch, Tr, Alloc > &self, T x)
Definition: feed_args.hpp:276
const char * detail
void(* put_last)(BOOST_IO_STD basic_ostream< Ch, Tr > &os, const void *x)
Definition: feed_args.hpp:139
void put_last(BOOST_IO_STD basic_ostream< Ch, Tr > &os, const put_holder< Ch, Tr > &t)
Definition: feed_args.hpp:148
GLenum type
void mk_str(std::basic_string< Ch, Tr, Alloc > &res, const Ch *beg, typename std::basic_string< Ch, Tr, Alloc >::size_type size, std::streamsize w, const Ch fill_char, std::ios_base::fmtflags f, const Ch prefix_space, bool center)
Definition: feed_args.hpp:30
std::basic_string< Ch, Tr, Alloc > string_type
int min(int a, int b)
Definition: lz4s.c:73
BOOST_IO_STD locale locale_t
void put_head(BOOST_IO_STD basic_ostream< Ch, Tr > &, const T &)
Definition: feed_args.hpp:89
void call_put_last(BOOST_IO_STD basic_ostream< Ch, Tr > &os, const void *x)
Definition: feed_args.hpp:125
#define NULL
Definition: tinycthread.c:47
int i
GLuint res
Definition: glext.h:8856
#define BOOST_ASSERT(expr)
Definition: assert.hpp:56
stream_format_state fmtstate_
Definition: internals.hpp:93


librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:47:14