Class Template filtering_streambuf

Description
Headers
Reference

Description

Derived class of std::basic_streambuf, used to perform filtering. Each filtering_streambuf contains a chain of zero or more Filters with an optional Device at the end. If the chain contains a Device, the filtering_streambuf is complete and can be used to perform i/o. When a filtering_streambuf is used for output, data passes through the first filter in the chain, then through the second filter, and so on, and eventually reaches the Device at the end of the chain. When a filtering_streambuf is used for input, data travels in the opposite direction, beginning at the Device at the end of the chain, then passing through the filters in reverse order. By default, if the Device at the end of the chain is popped or if the filtering_streambuf is complete when it is destroyed, all the filters and devices in the chain are closed using the function close. This behavior can be modified using the member function set_auto_close.

Headers

<boost/iostreams/filtering_streambuf.hpp>

Reference

Synopsis

namespace boost { namespace iostreams {

template< typename Mode,
          typename Ch     = char,
          typename Tr     = std::char_traits<Ch>, 
          typename Alloc  = std::allocator<Ch>, 
          typename Access = public_ >
class filtering_streambuf;

template< typename Mode,
          typename Ch     = wchar_t,
          typename Tr     = std::char_traits<Ch>, 
          typename Alloc  = std::allocator<Ch>, 
          typename Access = public_ >
class filtering_wstreambuf;

typedef filtering_streambuf<input>    filtering_istream;
typedef filtering_streambuf<output>   filtering_ostream;
typedef filtering_wstreambuf<input>   filtering_wistream;
typedef filtering_wstreambuf<output>  filtering_wostream;

template< typename Mode,
          typename Ch     = char,
          typename Tr     = std::char_traits<Ch>, 
          typename Alloc  = std::allocator<Ch>, 
          typename Access = public_ >
class filtering_streambuf : public implementation-defined stream type {
public:
    typedef Ch                      char_type;
    typedef Mode                    mode;
    typedef Alloc                   allocator_type;
    typedef implementation-defined  size_type;

    filtering_streambuf();

    template<typename T>
    filtering_streambuf( const T& t,
                         std::streamsize buffer_size = default value,
                         std::streamsize pback_size = default value );

    template<typename StreamOrStreambuf>
    filtering_streambuf( StreamOrStreambuf& t,
                         std::streamsize buffer_size = default value,
                         std::streamsize pback_size = default value );

    template<int N>
    const std::type_info& component_type() const;

    template<int N, typename T>
    T* component() const;

    template<typename T>
    void push( const T& t,
               std::streamsize buffer_size = default value,
               std::streamsize pback_size = default value );

    template<typename StreamOrStreambuf>
    void push( StreamOrStreambuf& t,
               std::streamsize buffer_size = default value,
               std::streamsize pback_size = default value );
    void pop();
    bool empty() const;
    size_type size() const;
    void reset();
    bool is_complete() const;
    bool is_complete() const;
    bool auto_close() const;
    void set_auto_close(bool close);
    bool sync();
    bool strict_sync();
};

} } // End namespace boost::io

Class Template filtering_streambuf

Template parameters

Mode- A mode tag.
Ch- The character type
Tr- The traits type
Alloc- A standard library allocator type ([ISO], 20.1.5), used to allocate character buffers
Access- One of public_ or protected_, indicating the level of access of the chain interface. Used to hide the chain interface when defining a derived class of filtering_streambuf

filtering_streambuf::filtering_streambuf

    filtering_streambuf();

Constructs a filtering_streambuf with an empty chain of Filters and Devices.

filtering_streambuf::push

    template<typename T>
    filtering_streambuf( const T& t,
                         std::streamsize buffer_size,
                         std::streamsize pback_size );

Constructs a filtering_streambuf whose chain contains a copy of t. The parameters have the following interpretations:

T- A CopyConstructible model of one of the Filter or Device concepts whose character type is Ch and whose mode refines Mode
t- An instance of T
buffer_size- The size of any buffers that need to be allocated
pback_size- The size of the putback buffer, relevant only if Mode is a refinement of input

A filtering_streambuf may be constructed from an instance of a Filter or Device type T which is not CopyConstructible in one of two ways:

If T is a Device, the filtering_streambuf will become complete upon construction, and can then be used to perform i/o.

    template<typename StreamOrStreambuffer>
    filtering_streambuf( StreamOrStreambuffer& t,
                         std::streamsize buffer_size,
                         std::streamsize pback_size );

Constructs a filtering_streambuf whose chain contains a reference to the given stream or stream buffer. The parameters have the following interpretations:

StreamOrStreambuffer- A standard stream or stream buffer type whose character type is Ch and whose mode refines Mode
buffer_size- The size of any buffers that need to be allocated
pback_size- The size of the putback buffer, relevant only if Mode is a refinement of input

The filtering_streambuf will become complete upon construction, and can then be used to perform i/o.

filtering_streambuf::component_type

    template<int N>
    const std::type_info& component_type() const;

Returns a reference to an instance std::type_info corresponding to the type of the nth Filter or Device in the underlying chain, which must have size at least n + 1. Components are numbered beginning at zero.

The template argument N cannot be deduced, and must therefroe be explicitly specified.

Users of Microsoft Visual Studio versions 6.0-7.0 must use the macro BOOST_IOSTREAMS_COMPONENT_TYPE instead of this function.

filtering_streambuf::component

    template<int N, typename T>
    T* component() const;

Returns a pointer to the nth Filter or Device in the underlying chain, if the chain has size at least n + 1 and the type of the nth Filter or Device is equal to T. Otherwise, returns a null pointer.

The template arguments N and T cannot be deduced, and must therefroe be explicitly specified.

Users of Microsoft Visual Studio versions 6.0-7.0 must use the macro BOOST_IOSTREAMS_COMPONENT instead of this function.

filtering_streambuf::push

    template<typename T>
    void push( const T& t,
               std::streamsize buffer_size,
               std::streamsize pback_size );

Appends a copy of t to the underlying chain, which must not be complete. The parameters have the following interpretations:

T- A CopyConstructible model of one of the Filter or Device concepts whose character type is Ch and whose mode refines Mode
t- An instance of T
buffer_size- The size of any buffers that need to be allocated
pback_size- The size of the putback buffer, relevant only if Mode is a refinement of input

An instance of a Filter or Device type T which is not CopyConstructible may be appended to the chain in one of two ways:

If T is a Device, this filtering_streambuf will become complete upon the return of this function, and can then be used to perform i/o.

    template<typename StreamOrStreambuffer>
    void push( StreamOrStreambuffer& t,
               std::streamsize buffer_size,
               std::streamsize pback_size );

Appends the given stream or stream buffer to the underlying chain, which must not be complete. The parameters have the following interpretations:

StreamOrStreambuffer- A standard stream or stream buffer type whose character type is Ch and whose mode refines Mode
buffer_size- The size of any buffers that need to be allocated
pback_size- The size of the putback buffer, relevant only if Mode is a refinement of input

This filtering_streambuf will become complete upon the return of this function, and can then be used to perform i/o.

filtering_streambuf::pop

    void pop();

Removes the final Filter or Device from the underlying chain, which must be non-empty. If the chain is initially complete, causes each Filter and Device in the chain to be closed using the function close, unless the auto-close feature has been disabled using set_auto_close

filtering_streambuf::empty

    bool empty() const;

Returns true if the underlying chain is empty.

filtering_streambuf::size

    size_type size() const;

Returns the number Filters and Devices in the underlying chain.

filtering_streambuf::reset

    void reset();

Clears the underlying chain. If the chain is initially complete, causes each Filter and Device in the chain to be closed using the function close.

filtering_streambuf::is_complete

    bool is_complete() const;

Returns true if the underlying chain ends in a Device.

filtering_streambuf::auto_close

    bool auto_close() const;

Indicates whether the Filters and Devices in the underlying chain will be closed automatically if pop is invoked while the chain is complete. Returns true unless the auto-close feature has been disabled using set_auto_close.

filtering_streambuf::set_auto_close

    void set_auto_close(bool close);

Specifies whether the Filters and Devices in the underlying chain will be closed automatically if pop is invoked while the chain is complete. Does not prevent the Filters and Devices in the chain from being closed automatically if the chain is complete at destruction.

filtering_streambuf::sync

    bool sync();

Invokes the function flush on each Filter and Device in the underlying chain, which must be complete. Returns true unless at least one of these components is Flushable and flush returns false when invoked on that component. A return value of true indicates that no error occurred, but does not guarantee that all buffered data has been successfully forwarded.

filtering_streambuf::strict_sync

    bool strict_sync();

Identical to sync except for the return value, which is false unless each Filter in the underlying chain is Flushable and flush returns true when invoked on each component. A return value of true guarantees that all buffered data has been successfully forwarded.

Class Template filtering_wstreambuf

template< typename Mode,
          typename Ch     = wchar_t,
          typename Tr     = std::char_traits<Ch>, 
          typename Alloc  = std::allocator<Ch>, 
          typename Access = public_ >
class filtering_wstreambuf;

Identical to filtering_streambuf, except for the default character type.