Namespaces
Variants

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

From cppreference.net
protected :
void setg ( char_type * gbeg, char_type * gcurr, char_type * gend ) ;

ゲットエリアを定義するポインタの値を設定します。

呼び出し後、 eback ( ) == gbeg gptr ( ) == gcurr および egptr ( ) == gend がすべて true となる。

[ gbeg , gend ) [ gbeg , gcurr ) および [ gcurr , 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

不具合報告

以下の動作変更の欠陥報告書は、以前に公開されたC++規格に対して遡及的に適用されました。

DR 適用対象 公開時の動作 正しい動作
LWG 4023 C++98 setg は入力シーケンスが有効な範囲であることを要求していなかった 要求する

関連項目

出力シーケンスの開始、次、終了ポインタを再配置する
(protected member function)