Spec-Zone.ru › C++

std::basic_streambuf<CharT,Traits>::setg

protected:
void setg( char_type* gbeg, char_type* gcurr, char_type* gend );

Устанавливает значения указателей, определяющих область получения. В частности, после вызова eback() == gbeg, gptr() == gcurr, egptr() == gend.

Параметры

gbeg - указатель на новое начало области получения
gcurr - указатель на новый текущий символ (указатель получения) в области получения
gend - указатель на новый конец области получения

Возвращаемое значение

(ничего)

Пример

#include <iostream>
#include <sstream>
 
class null_filter_buf : public std::streambuf
{
    std::streambuf* src;
    char ch; // single-byte buffer
protected:
    int underflow()
    {
        traits_type::int_type i;
        while ((i = src->sbumpc()) == '\0')
            ; // skip zeroes
        if (!traits_type::eq_int_type(i, traits_type::eof()))
        {
            ch = traits_type::to_char_type(i);
            setg(&ch, &ch, &ch+1); // make one read position available
        }
        return i;
    }
public:
    null_filter_buf(std::streambuf* buf) : src(buf)
    {
        setg(&ch, &ch + 1, &ch + 1); // buffer is initially full
    }
};
 
void filtered_read(std::istream& in)
{
    std::streambuf* orig = in.rdbuf();
    null_filter_buf buf(orig);
    in.rdbuf(&buf);
    for (char c; in.get(c);)
        std::cout << c;
    in.rdbuf(orig);
}
 
int main()
{
    char a[] = "This i\0s \0an e\0\0\0xample";
    std::istringstream in(std::string(std::begin(a), std::end(a)));
    filtered_read(in);
}

Вывод:

This is an example

См. также

setp
перемещает указатели начала, следующего и конца последовательности вывода
(защищённый член-функция)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/io/basic_streambuf/setg

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API