Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/header/streambuf"

From cppreference.com
< cpp‎ | header
m (Applied {{c/core}} for types.)
 
(4 intermediate revisions by 4 users not shown)
Line 3: Line 3:
 
This header is part of the [[cpp/io|Input/Output]] library.
 
This header is part of the [[cpp/io|Input/Output]] library.
 
{{dsc begin}}
 
{{dsc begin}}
{{dsc h1 | Includes}}
+
{{dsc h1|Classes}}
{{dsc inc | cpp/header/dsc ios | {{mark c++11}}}}
+
{{dsc inc|cpp/io/dsc basic_streambuf}}
{{dsc h1 | Classes}}
+
{{dsc|{{ttb|streambuf}}|{{c/core|std::basic_streambuf<char>}}<br>{{mark typedef}}}}
{{dsc inc | cpp/io/dsc basic_streambuf}}
+
{{dsc|{{ttb|wstreambuf}}|{{c/core|std::basic_streambuf<wchar_t>}}<br>{{mark typedef}}}}
{{dsc | {{tt|streambuf}} | {{c|std::basic_streambuf<char>}}<br>{{mark typedef}}}}
+
{{dsc | {{tt|wstreambuf}} | {{c|std::basic_streambuf<wchar_t>}}<br>{{mark typedef}}}}
+
 
{{dsc end}}
 
{{dsc end}}
  
 
===Synopsis===
 
===Synopsis===
{{source|1=
+
{{cpp/synopsis/streambuf}}
namespace std {
+
  template<class CharT, class Traits = char_traits<CharT>>
+
    class basic_streambuf;
+
  using streambuf = basic_streambuf<char>;
+
  using wstreambuf = basic_streambuf<wchar_t>;
+
}
+
}}
+
  
====Class template {{lc|std::basic_streambuf}}====
+
===Defect reports===
{{source|1=
+
{{dr list begin}}
namespace std {
+
{{dr list item|wg=lwg|dr=56|std=C++98|before=the return type of {{tt|showmanyc}} of was {{c|int}} in the synopsis|after=corrected to {{c|streamsize}}}}
  template<class CharT, class Traits = char_traits<CharT>>
+
{{dr list end}}
  class basic_streambuf {
+
  public:
+
    using char_type  = CharT;
+
    using int_type    = typename Traits::int_type;
+
    using pos_type    = typename Traits::pos_type;
+
    using off_type    = typename Traits::off_type;
+
    using traits_type = Traits;
+
  
    virtual ~basic_streambuf();
+
{{langlinks|es|ja|zh}}
 
+
    // locales
+
    locale  pubimbue(const locale& loc);
+
    locale  getloc() const;
+
 
+
    // buffer and positioning
+
    basic_streambuf* pubsetbuf(char_type* s, streamsize n);
+
    pos_type pubseekoff(off_type off, ios_base::seekdir way,
+
                        ios_base::openmode which
+
                          = ios_base::in {{!}} ios_base::out);
+
    pos_type pubseekpos(pos_type sp,
+
                        ios_base::openmode which
+
                          = ios_base::in {{!}} ios_base::out);
+
    int      pubsync();
+
 
+
    // get and put areas
+
    // get area
+
    streamsize in_avail();
+
    int_type snextc();
+
    int_type sbumpc();
+
    int_type sgetc();
+
    streamsize sgetn(char_type* s, streamsize n);
+
 
+
    // putback
+
    int_type sputbackc(char_type c);
+
    int_type sungetc();
+
 
+
    // put area
+
    int_type  sputc(char_type c);
+
    streamsize sputn(const char_type* s, streamsize n);
+
 
+
  protected:
+
    basic_streambuf();
+
    basic_streambuf(const basic_streambuf& rhs);
+
    basic_streambuf& operator=(const basic_streambuf& rhs);
+
 
+
    void swap(basic_streambuf& rhs);
+
 
+
    // get area access
+
    char_type* eback() const;
+
    char_type* gptr()  const;
+
    char_type* egptr() const;
+
    void      gbump(int n);
+
    void      setg(char_type* gbeg, char_type* gnext, char_type* gend);
+
 
+
    // put area access
+
    char_type* pbase() const;
+
    char_type* pptr() const;
+
    char_type* epptr() const;
+
    void      pbump(int n);
+
    void      setp(char_type* pbeg, char_type* pend);
+
 
+
    // virtual functions
+
    // locales
+
    virtual void imbue(const locale& loc);
+
 
+
    // buffer management and positioning
+
    virtual basic_streambuf* setbuf(char_type* s, streamsize n);
+
    virtual pos_type seekoff(off_type off, ios_base::seekdir way,
+
                            ios_base::openmode which
+
                              = ios_base::in {{!}} ios_base::out);
+
    virtual pos_type seekpos(pos_type sp,
+
                            ios_base::openmode which
+
                              = ios_base::in {{!}} ios_base::out);
+
    virtual int      sync();
+
 
+
    // get area
+
    virtual streamsize showmanyc();
+
    virtual streamsize xsgetn(char_type* s, streamsize n);
+
    virtual int_type  underflow();
+
    virtual int_type  uflow();
+
 
+
    // putback
+
    virtual int_type  pbackfail(int_type c = Traits::eof());
+
 
+
    // put area
+
    virtual streamsize xsputn(const char_type* s, streamsize n);
+
    virtual int_type  overflow(int_type c = Traits::eof());
+
  };
+
}
+
}}
+
 
+
{{langlinks|ja|zh}}
+

Latest revision as of 15:01, 25 October 2024

 
 
Standard library headers
 

This header is part of the Input/Output library.

Contents

Classes

abstracts a raw device
(class template) [edit]
streambuf std::basic_streambuf<char>
(typedef)
wstreambuf std::basic_streambuf<wchar_t>
(typedef)

[edit] Synopsis

namespace std {
  template<class CharT, class Traits = char_traits<CharT>>
    class basic_streambuf;
  using streambuf  = basic_streambuf<char>;
  using wstreambuf = basic_streambuf<wchar_t>;
}

[edit] Class template std::basic_streambuf

namespace std {
  template<class CharT, class Traits = char_traits<CharT>>
  class basic_streambuf {
  public:
    using char_type   = CharT;
    using int_type    = typename Traits::int_type;
    using pos_type    = typename Traits::pos_type;
    using off_type    = typename Traits::off_type;
    using traits_type = Traits;
 
    virtual ~basic_streambuf();
 
    // locales
    locale   pubimbue(const locale& loc);
    locale   getloc() const;
 
    // buffer and positioning
    basic_streambuf* pubsetbuf(char_type* s, streamsize n);
    pos_type pubseekoff(off_type off, ios_base::seekdir way,
                        ios_base::openmode which
                          = ios_base::in | ios_base::out);
    pos_type pubseekpos(pos_type sp,
                        ios_base::openmode which
                          = ios_base::in | ios_base::out);
    int      pubsync();
 
    // get and put areas
    // get area
    streamsize in_avail();
    int_type snextc();
    int_type sbumpc();
    int_type sgetc();
    streamsize sgetn(char_type* s, streamsize n);
 
    // putback
    int_type sputbackc(char_type c);
    int_type sungetc();
 
    // put area
    int_type   sputc(char_type c);
    streamsize sputn(const char_type* s, streamsize n);
 
  protected:
    basic_streambuf();
    basic_streambuf(const basic_streambuf& rhs);
    basic_streambuf& operator=(const basic_streambuf& rhs);
 
    void swap(basic_streambuf& rhs);
 
    // get area access
    char_type* eback() const;
    char_type* gptr()  const;
    char_type* egptr() const;
    void       gbump(int n);
    void       setg(char_type* gbeg, char_type* gnext, char_type* gend);
 
    // put area access
    char_type* pbase() const;
    char_type* pptr() const;
    char_type* epptr() const;
    void       pbump(int n);
    void       setp(char_type* pbeg, char_type* pend);
 
    // virtual functions
    // locales
    virtual void imbue(const locale& loc);
 
    // buffer management and positioning
    virtual basic_streambuf* setbuf(char_type* s, streamsize n);
    virtual pos_type seekoff(off_type off, ios_base::seekdir way,
                             ios_base::openmode which
                               = ios_base::in | ios_base::out);
    virtual pos_type seekpos(pos_type sp,
                             ios_base::openmode which
                               = ios_base::in | ios_base::out);
    virtual int      sync();
 
    // get area
    virtual streamsize showmanyc();
    virtual streamsize xsgetn(char_type* s, streamsize n);
    virtual int_type   underflow();
    virtual int_type   uflow();
 
    // putback
    virtual int_type   pbackfail(int_type c = Traits::eof());
 
    // put area
    virtual streamsize xsputn(const char_type* s, streamsize n);
    virtual int_type   overflow(int_type c = Traits::eof());
  };
}

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 56 C++98 the return type of showmanyc of was int in the synopsis corrected to streamsize