Files
cppdraft_translate/cppdraft/spanbuf.md
2025-10-25 03:02:53 +03:00

11 KiB
Raw Permalink Blame History

[spanbuf]

31 Input/output library [input.output]

31.9 Span-based streams [span.streams]

31.9.3 Class template basic_spanbuf [spanbuf]

31.9.3.1 General [spanbuf.general]

🔗

namespace std {template<class charT, class traits = char_traits>class basic_spanbuf : public basic_streambuf<charT, traits> {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; // [spanbuf.cons], constructors basic_spanbuf() : basic_spanbuf(ios_base::in | ios_base::out) {}explicit basic_spanbuf(ios_base::openmode which): basic_spanbuf(std::span(), which) {}explicit basic_spanbuf(std::span s, ios_base::openmode which = ios_base::in | ios_base::out); basic_spanbuf(const basic_spanbuf&) = delete; basic_spanbuf(basic_spanbuf&& rhs); // [spanbuf.assign], assignment and swap basic_spanbuf& operator=(const basic_spanbuf&) = delete; basic_spanbuf& operator=(basic_spanbuf&& rhs); void swap(basic_spanbuf& rhs); // [spanbuf.members], member functions std::span span() const noexcept; void span(std::span s) noexcept; protected:// [spanbuf.virtuals], overridden virtual functions basic_streambuf<charT, traits>* setbuf(charT*, streamsize) override; pos_type seekoff(off_type off, ios_base::seekdir way, ios_base::openmode which = ios_base::in | ios_base::out) override; pos_type seekpos(pos_type sp, ios_base::openmode which = ios_base::in | ios_base::out) override; private: ios_base::openmode mode; // exposition only std::span buf; // exposition only};}

1

#

The class template basic_spanbuf is derived from basic_streambuf to associate possibly the input sequence and possibly the output sequence with a sequence of arbitrary characters.

The sequence is provided by an object of class span.

2

#

For the sake of exposition, the maintained data is presented here as:

  • (2.1)

    ios_base::openmode mode, hasin set if the input sequence can be read, andout set if the output sequence can be written.

  • (2.2)

    std::span buf is the view to the underlying character sequence.

31.9.3.2 Constructors [spanbuf.cons]

🔗

explicit basic_spanbuf(std::span<charT> s, ios_base::openmode which = ios_base::in | ios_base::out);

1

#

Effects: Initializes the base class with basic_streambuf() ([streambuf.cons]), and mode with which.

Initializes the internal pointers as if calling span(s).

🔗

basic_spanbuf(basic_spanbuf&& rhs);

2

#

Effects: Initializes the base class with std::move(rhs) andmode with std::move(rhs.mode) andbuf with std::move(rhs.buf).

The sequence pointers in *this (eback(), gptr(), egptr(),pbase(), pptr(), epptr()) obtain the values which rhs had.

It isimplementation-defined whether rhs.buf.empty() returns true after the move.

3

#

Postconditions: Let rhs_p refer to the state of rhs just prior to this construction.

span().data() == rhs_p.span().data()

span().size() == rhs_p.span().size()

eback() == rhs_p.eback()

gptr() == rhs_p.gptr()

egptr() == rhs_p.egptr()

pbase() == rhs_p.pbase()

pptr() == rhs_p.pptr()

epptr() == rhs_p.epptr()

getloc() == rhs_p.getloc()

31.9.3.3 Assignment and swap [spanbuf.assign]

🔗

basic_spanbuf& operator=(basic_spanbuf&& rhs);

1

#

Effects: Equivalent to:basic_spanbuf tmp{std::move(rhs)};this->swap(tmp);return *this;

🔗

void swap(basic_spanbuf& rhs);

2

#

Effects: Equivalent to:basic_streambuf<charT, traits>::swap(rhs); std::swap(mode, rhs.mode); std::swap(buf, rhs.buf);

🔗

template<class charT, class traits> void swap(basic_spanbuf<charT, traits>& x, basic_spanbuf<charT, traits>& y);

3

#

Effects: Equivalent to x.swap(y).

31.9.3.4 Member functions [spanbuf.members]

🔗

std::span<charT> span() const noexcept;

1

#

Returns: If ios_base::out is set in mode, returns std::span(pbase(), pptr()), otherwise returns buf.

[Note 1:

In contrast to basic_stringbuf, the underlying sequence never grows and is not owned.

An owning copy can be obtained by converting the result to basic_string.

— end note]

🔗

void span(std::span<charT> s) noexcept;

2

#

Effects: buf = s.

Initializes the input and output sequences according to mode.

3

#

Postconditions:

  • (3.1)

    If ios_base::out is set in mode,pbase() == s.data() && epptr() == pbase() + s.size() is true;

in addition, if ios_base::ate is set in mode,pptr() == pbase() + s.size() is true,

otherwise pptr() == pbase() is true.

  • (3.2)

    If ios_base::in is set in mode,eback() == s.data() && gptr() == eback() && egptr() == eback() + s.size() is true.

31.9.3.5 Overridden virtual functions [spanbuf.virtuals]

1

#

[Note 1:

Because the underlying buffer is of fixed size, neither overflow, underflow, nor pbackfail can provide useful behavior.

— end note]

🔗

pos_type seekoff(off_type off, ios_base::seekdir way, ios_base::openmode which = ios_base::in | ios_base::out) override;

2

#

Effects: Alters the stream position within one or both of the controlled sequences, if possible, as follows:

  • (2.1)

    If ios_base::in is set in which, positions the input sequence;xnext is gptr(), xbeg is eback().

  • (2.2)

    If ios_base::out is set in which, positions the output sequence;xnext is pptr(), xbeg is pbase().

3

#

If both ios_base::in and ios_base::out are set in which and way is ios_base::cur, the positioning operation fails.

4

#

For a sequence to be positioned, if its next pointer xnext (either gptr() or pptr()) is a null pointer and the new offset newoff as computed below is nonzero, the positioning operation fails.

Otherwise, the function determines baseoff as a value of type off_type as follows:

0 when way is ios_base::beg;

(pptr() - pbase()) for the output sequence, or(gptr() - eback()) for the input sequence when way is ios_base::cur;

when way is ios_base::end :

(pptr() - pbase()) if ios_base::out is set in mode andios_base::in is not set in mode,

buf.size() otherwise.

5

#

If baseoff+off would overflow, or if baseoff+off is less than zero, or if baseoff+off is greater than buf.size(), the positioning operation fails.

Otherwise, the function computesoff_type newoff = baseoff + off; and assigns xbeg + newoff to the next pointer xnext.

6

#

Returns: pos_type(off_type(-1)) if the positioning operation fails;pos_type(newoff) otherwise.

🔗

pos_type seekpos(pos_type sp, ios_base::openmode which = ios_base::in | ios_base::out) override;

7

#

Effects: Equivalent to:return seekoff(off_type(sp), ios_base::beg, which);

🔗

basic_streambuf<charT, traits>* setbuf(charT* s, streamsize n) override;

8

#

Effects: Equivalent to:this->span(std::span(s, n));return this;