First public contribution.
1 // (C) Copyright Jonathan Turkanis 2003.
2 // Distributed under the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
5 // See http://www.boost.org/libs/iostreams for documentation.
7 #ifndef BOOST_IOSTREAMS_DETAIL_CHAIN_HPP_INCLUDED
8 #define BOOST_IOSTREAMS_DETAIL_CHAIN_HPP_INCLUDED
10 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
14 #include <algorithm> // for_each.
17 #include <functional> // unary_function.
18 #include <iterator> // advance.
20 #include <memory> // allocator, auto_ptr.
22 #include <stdexcept> // logic_error, out_of_range.
23 #include <boost/checked_delete.hpp>
24 #include <boost/config.hpp> // BOOST_MSVC, template friends,
25 #include <boost/detail/workaround.hpp> // BOOST_NESTED_TEMPLATE
26 #include <boost/iostreams/constants.hpp>
27 #include <boost/iostreams/detail/access_control.hpp>
28 #include <boost/iostreams/detail/char_traits.hpp>
29 #include <boost/iostreams/detail/push.hpp>
30 #include <boost/iostreams/detail/streambuf.hpp> // pubsync.
31 #include <boost/iostreams/detail/wrap_unwrap.hpp>
32 #include <boost/iostreams/device/null.hpp>
33 #include <boost/iostreams/positioning.hpp>
34 #include <boost/iostreams/traits.hpp> // is_filter.
35 #include <boost/iostreams/stream_buffer.hpp>
36 #include <boost/next_prior.hpp>
37 #include <boost/shared_ptr.hpp>
38 #include <boost/static_assert.hpp>
39 #include <boost/type_traits/is_convertible.hpp>
40 #include <boost/type.hpp>
41 #if BOOST_WORKAROUND(BOOST_MSVC, < 1310)
42 # include <boost/mpl/int.hpp>
45 // Sometimes type_info objects must be compared by name. Borrowed from
46 // Boost.Python and Boost.Function.
47 #if (defined(__GNUC__) && __GNUC__ >= 3) || \
49 (defined(__sgi) && defined(__host_mips)) || \
50 (defined(linux) && defined(__INTEL_COMPILER) && defined(__ICC)) \
53 # define BOOST_IOSTREAMS_COMPARE_TYPE_ID(X,Y) \
54 (std::strcmp((X).name(),(Y).name()) == 0)
56 # define BOOST_IOSTREAMS_COMPARE_TYPE_ID(X,Y) ((X)==(Y))
60 #define BOOST_IOSTREAMS_COMPONENT_TYPE(chain, index) \
61 chain.component_type( index ) \
64 #if !BOOST_WORKAROUND(BOOST_MSVC, < 1310)
65 # define BOOST_IOSTREAMS_COMPONENT(chain, index, target) \
66 chain.component< target >( index ) \
69 # define BOOST_IOSTREAMS_COMPONENT(chain, index, target) \
70 chain.component( index, ::boost::type< target >() ) \
74 namespace boost { namespace iostreams {
76 //--------------Definition of chain and wchain--------------------------------//
80 template<typename Chain> class chain_client;
83 // Concept name: Chain.
84 // Description: Represents a chain of stream buffers which provides access
85 // to the first buffer in the chain and send notifications when the
86 // streambufs are added to or removed from chain.
87 // Refines: Closable device with mode equal to typename Chain::mode.
88 // Models: chain, converting_chain.
93 // typedef xxx chain_type;
94 // typedef xxx client_type;
96 // bool is_complete() const; // Ready for i/o.
97 // template<typename T>
98 // void push( const T& t, // Adds a stream buffer to
99 // streamsize, // chain, based on t, with
100 // streamsize ); // given buffer and putback
101 // // buffer sizes. Pass -1 to
102 // // request default size.
104 // void register_client(client_type* client); // Associate client.
105 // void notify(); // Notify client.
110 // Description: Represents a chain of filters with an optional device at the
112 // Template parameters:
113 // Self - A class deriving from the current instantiation of this template.
114 // This is an example of the Curiously Recurring Template Pattern.
115 // Ch - The character type.
116 // Tr - The character traits type.
117 // Alloc - The allocator type.
118 // Mode - A mode tag.
120 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
123 typedef Ch char_type;
124 BOOST_IOSTREAMS_STREAMBUF_TYPEDEFS(Tr)
125 typedef Alloc allocator_type;
131 typedef chain_client<Self> client_type;
132 friend class chain_client<Self>;
134 typedef linked_streambuf<Ch> streambuf_type;
135 typedef std::list<streambuf_type*> list_type;
136 typedef chain_base<Self, Ch, Tr, Alloc, Mode> my_type;
138 chain_base() : pimpl_(new chain_impl) { }
139 chain_base(const chain_base& rhs): pimpl_(rhs.pimpl_) { }
142 //----------Buffer sizing-------------------------------------------------//
144 // Sets the size of the buffer created for the devices to be added to this
145 // chain. Does not affect the size of the buffer for devices already
147 void set_device_buffer_size(int n) { pimpl_->device_buffer_size_ = n; }
149 // Sets the size of the buffer created for the filters to be added
150 // to this chain. Does not affect the size of the buffer for filters already
152 void set_filter_buffer_size(int n) { pimpl_->filter_buffer_size_ = n; }
154 // Sets the size of the putback buffer for filters and devices to be added
155 // to this chain. Does not affect the size of the buffer for filters or
156 // devices already added.
157 void set_pback_size(int n) { pimpl_->pback_size_ = n; }
159 //----------Device interface----------------------------------------------//
161 std::streamsize read(char_type* s, std::streamsize n);
162 std::streamsize write(const char_type* s, std::streamsize n);
163 std::streampos seek(stream_offset off, BOOST_IOS::seekdir way);
165 //----------Direct component access---------------------------------------//
167 const std::type_info& component_type(int n) const
169 if (static_cast<size_type>(n) >= size())
170 throw std::out_of_range("bad chain offset");
171 return (*boost::next(list().begin(), n))->component_type();
174 #if !BOOST_WORKAROUND(BOOST_MSVC, < 1310)
177 const std::type_info& component_type() const { return component_type(N); }
180 T* component(int n) const { return component(n, boost::type<T>()); }
183 template<int N, typename T>
184 T* component() const { return component<T>(N); }
187 #if !BOOST_WORKAROUND(BOOST_MSVC, < 1310)
191 T* component(int n, boost::type<T>) const
193 if (static_cast<size_type>(n) >= size())
194 throw std::out_of_range("bad chain offset");
195 streambuf_type* link = *boost::next(list().begin(), n);
196 if (BOOST_IOSTREAMS_COMPARE_TYPE_ID(link->component_type(), typeid(T)))
197 return static_cast<T*>(link->component_impl());
203 //----------Container-like interface--------------------------------------//
205 typedef typename list_type::size_type size_type;
206 streambuf_type& front() { return *list().front(); }
207 BOOST_IOSTREAMS_DEFINE_PUSH(push, mode, char_type, push_impl)
209 bool empty() const { return list().empty(); }
210 size_type size() const { return list().size(); }
213 //----------Additional i/o functions--------------------------------------//
215 // Returns true if this chain is non-empty and its final link
216 // is a source or sink, i.e., if it is ready to perform i/o.
217 bool is_complete() const;
218 bool auto_close() const;
219 void set_auto_close(bool close);
220 bool sync() { return front().BOOST_IOSTREAMS_PUBSYNC() != -1; }
224 void push_impl(const T& t, int buffer_size = -1, int pback_size = -1)
226 typedef typename iostreams::category_of<T>::type category;
227 typedef typename unwrap_ios<T>::type policy_type;
228 typedef stream_buffer<
230 BOOST_IOSTREAMS_CHAR_TRAITS(char_type),
233 BOOST_STATIC_ASSERT((is_convertible<category, Mode>::value));
235 throw std::logic_error("chain complete");
236 streambuf_type* prev = !empty() ? list().back() : 0;
240 iostreams::optimal_buffer_size(t);
245 std::auto_ptr<facade_type>
246 buf(new facade_type(t, buffer_size, pback_size));
247 list().push_back(buf.get());
249 if (is_device<policy_type>::value)
250 pimpl_->flags_ |= f_complete | f_open;
251 if (prev) prev->set_next(list().back());
255 list_type& list() { return pimpl_->links_; }
256 const list_type& list() const { return pimpl_->links_; }
257 void register_client(client_type* client) { pimpl_->client_ = client; }
258 void notify() { if (pimpl_->client_) pimpl_->client_->notify(); }
260 //----------Nested classes------------------------------------------------//
262 static void close(streambuf_type* b, BOOST_IOS::openmode m)
264 if (m & BOOST_IOS::out)
265 b->BOOST_IOSTREAMS_PUBSYNC();
269 static void set_next(streambuf_type* b, streambuf_type* next)
270 { b->set_next(next); }
272 static void set_auto_close(streambuf_type* b, bool close)
273 { b->set_auto_close(close); }
275 struct closer : public std::unary_function<streambuf_type*, void> {
276 closer(BOOST_IOS::openmode m) : mode_(m) { }
277 void operator() (streambuf_type* b)
281 BOOST_IOS::openmode mode_;
283 friend struct closer;
293 : client_(0), device_buffer_size_(default_device_buffer_size),
294 filter_buffer_size_(default_filter_buffer_size),
295 pback_size_(default_pback_buffer_size),
298 ~chain_impl() { try { close(); reset(); } catch (std::exception&) { } }
301 if ((flags_ & f_open) != 0) {
302 stream_buffer< basic_null_device<Ch, Mode> > null;
303 if ((flags_ & f_complete) == 0) {
304 null.open(basic_null_device<Ch, Mode>());
305 set_next(links_.back(), &null);
307 links_.front()->BOOST_IOSTREAMS_PUBSYNC();
308 if (is_convertible<Mode, input>::value)
309 std::for_each( links_.rbegin(), links_.rend(),
310 closer(BOOST_IOS::in) );
311 if (is_convertible<Mode, output>::value)
312 std::for_each( links_.begin(), links_.end(),
313 closer(BOOST_IOS::out) );
319 typedef typename list_type::iterator iterator;
320 for ( iterator first = links_.begin(),
325 if ( (flags_ & f_complete) == 0 ||
326 (flags_ & f_auto_close) == 0 )
328 set_auto_close(*first, false);
330 streambuf_type* buf = 0;
331 std::swap(buf, *first);
335 flags_ &= ~f_complete;
339 client_type* client_;
340 int device_buffer_size_,
345 friend struct chain_impl;
347 //----------Member data---------------------------------------------------//
350 shared_ptr<chain_impl> pimpl_;
353 } // End namespace detail.
356 // Macro: BOOST_IOSTREAMS_DECL_CHAIN(name, category)
357 // Description: Defines a template derived from chain_base appropriate for a
358 // particular i/o category. The template has the following parameters:
359 // Ch - The character type.
360 // Tr - The character traits type.
361 // Alloc - The allocator type.
363 // name_ - The name of the template to be defined.
364 // category_ - The i/o category of the template to be defined.
366 #define BOOST_IOSTREAMS_DECL_CHAIN(name_, default_char_) \
367 template< typename Mode, typename Ch = default_char_, \
368 typename Tr = BOOST_IOSTREAMS_CHAR_TRAITS(Ch), \
369 typename Alloc = std::allocator<Ch> > \
370 class name_ : public boost::iostreams::detail::chain_base< \
371 name_<Mode, Ch, Tr, Alloc>, \
372 Ch, Tr, Alloc, Mode \
376 struct category : device_tag, Mode { }; \
379 typedef boost::iostreams::detail::chain_base< \
380 name_<Mode, Ch, Tr, Alloc>, \
381 Ch, Tr, Alloc, Mode \
384 typedef Ch char_type; \
385 typedef Tr traits_type; \
386 typedef typename traits_type::int_type int_type; \
387 typedef typename traits_type::off_type off_type; \
389 name_(const name_& rhs) { *this = rhs; } \
390 name_& operator=(const name_& rhs) \
391 { base_type::operator=(rhs); return *this; } \
394 BOOST_IOSTREAMS_DECL_CHAIN(chain, char)
395 BOOST_IOSTREAMS_DECL_CHAIN(wchain, wchar_t)
396 #undef BOOST_IOSTREAMS_DECL_CHAIN
398 //--------------Definition of chain_client------------------------------------//
403 // Template name: chain_client
404 // Description: Class whose instances provide access to an underlying chain
405 // using an interface similar to the chains.
406 // Subclasses: the various stream and stream buffer templates.
408 template<typename Chain>
411 typedef Chain chain_type;
412 typedef typename chain_type::char_type char_type;
413 typedef typename chain_type::traits_type traits_type;
414 typedef typename chain_type::size_type size_type;
415 typedef typename chain_type::mode mode;
417 chain_client(chain_type* chn = 0) : chain_(chn ) { }
418 chain_client(chain_client* client) : chain_(client->chain_) { }
419 virtual ~chain_client() { }
421 const std::type_info& component_type(int n) const
422 { return chain_->component_type(n); }
424 #if !BOOST_WORKAROUND(BOOST_MSVC, < 1310)
427 const std::type_info& component_type() const
428 { return chain_->BOOST_NESTED_TEMPLATE component_type<N>(); }
431 T* component(int n) const
432 { return chain_->BOOST_NESTED_TEMPLATE component<T>(n); }
435 template<int N, typename T>
437 { return chain_->BOOST_NESTED_TEMPLATE component<N, T>(); }
440 T* component(int n, boost::type<T> t) const
441 { return chain_->component(n, t); }
444 bool is_complete() const { return chain_->is_complete(); }
445 bool auto_close() const { return chain_->auto_close(); }
446 void set_auto_close(bool close) { chain_->set_auto_close(close); }
447 bool strict_sync() { return chain_->strict_sync(); }
448 void set_device_buffer_size(std::streamsize n)
449 { chain_->set_device_buffer_size(n); }
450 void set_filter_buffer_size(std::streamsize n)
451 { chain_->set_filter_buffer_size(n); }
452 void set_pback_size(std::streamsize n) { chain_->set_pback_size(n); }
453 BOOST_IOSTREAMS_DEFINE_PUSH(push, mode, char_type, push_impl)
454 void pop() { chain_->pop(); }
455 bool empty() const { return chain_->empty(); }
456 size_type size() { return chain_->size(); }
457 void reset() { chain_->reset(); }
459 // Returns a copy of the underlying chain.
460 chain_type filters() { return *chain_; }
461 chain_type filters() const { return *chain_; }
464 void push_impl(const T& t BOOST_IOSTREAMS_PUSH_PARAMS())
465 { chain_->push(t BOOST_IOSTREAMS_PUSH_ARGS()); }
466 chain_type& ref() { return *chain_; }
467 void set_chain(chain_type* c)
468 { chain_ = c; chain_->register_client(this); }
469 #if !defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS) && \
470 (!BOOST_WORKAROUND(__BORLANDC__, < 0x600))
471 template<typename S, typename C, typename T, typename A, typename M>
472 friend class chain_base;
476 virtual void notify() { }
481 //--------------Implementation of chain_base----------------------------------//
483 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
484 inline std::streamsize chain_base<Self, Ch, Tr, Alloc, Mode>::read
485 (char_type* s, std::streamsize n)
486 { return iostreams::read(*list().front(), s, n); }
488 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
489 inline std::streamsize chain_base<Self, Ch, Tr, Alloc, Mode>::write
490 (const char_type* s, std::streamsize n)
491 { return iostreams::write(*list().front(), s, n); }
493 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
494 inline std::streampos chain_base<Self, Ch, Tr, Alloc, Mode>::seek
495 (stream_offset off, BOOST_IOS::seekdir way)
496 { return iostreams::seek(*list().front(), off, way); }
498 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
499 void chain_base<Self, Ch, Tr, Alloc, Mode>::reset()
506 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
507 bool chain_base<Self, Ch, Tr, Alloc, Mode>::is_complete() const
509 return (pimpl_->flags_ & f_complete) != 0;
512 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
513 bool chain_base<Self, Ch, Tr, Alloc, Mode>::auto_close() const
515 return (pimpl_->flags_ & f_auto_close) != 0;
518 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
519 void chain_base<Self, Ch, Tr, Alloc, Mode>::set_auto_close(bool close)
522 (pimpl_->flags_ & ~f_auto_close) |
523 (close ? f_auto_close : 0);
526 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
527 bool chain_base<Self, Ch, Tr, Alloc, Mode>::strict_sync()
529 typedef typename list_type::iterator iterator;
531 for ( iterator first = list().begin(),
536 bool s = (*first)->strict_sync();
537 result = result && s;
542 template<typename Self, typename Ch, typename Tr, typename Alloc, typename Mode>
543 void chain_base<Self, Ch, Tr, Alloc, Mode>::pop()
548 streambuf_type* buf = 0;
549 std::swap(buf, list().back());
550 buf->set_auto_close(false);
554 pimpl_->flags_ &= ~f_complete;
555 if (auto_close() || list().empty())
556 pimpl_->flags_ &= ~f_open;
559 } // End namespace detail.
561 } } // End namespaces iostreams, boost.
563 #endif // #ifndef BOOST_IOSTREAMS_DETAIL_CHAIN_HPP_INCLUDED