std::strstreambuf::seekoff

来自cppreference.com
< cpp‎ | io‎ | strstreambuf
protected:

virtual pos_type seekoff( off_type off,
                          ios_base::seekdir way,

                          ios_base::openmode which = ios_base::in | ios_base::out );

在可能时重寻位 std::basic_streambuf::gptr 和/或 std::basic_streambuf::pptr 到对应距缓冲的获取和/或放置区起始、结尾或当前位置准确 off 个字符的位置。

  • 如果 which 包含 ios_base::in 并且此缓冲为读取打开,那么以后述方式重寻位获取区内的读指针 std::basic_streambuf::gptr
  • 如果 which 包含 ios_base::out 并且此缓冲为写入打开,那么以后述方式重定位放置区内的写指针 std::basic_streambuf::pptr
  • 如果 which 包含 ios_base::inios_base::out 两者并且此缓冲为读和写打开,而且 wayios_base::begios_base::end,那么以后述方式重寻位读和写指针。
  • 否则,此函数失败。

如果重寻位了指针(gptrpptr 或两者),那么它会按下列方式进行:

1) 如果要重寻位的指针是空指针且新偏移 newoff 非零,那么函数失败。
2) 确定 off_type 类型的新指针偏移 newoff
a) 如果 way == ios_base::beg,那么 newoff 为零
b) 如果 way == ios_base::cur,那么 newoff 是指针的当前位置(gptr() - eback()pptr() - pbase()
c) 如果 way == ios_base::end,那么 newoff 是缓冲区的整个已初始化部分的长度(使用过分配时就是高水位指针减起始指针)
3) 如果 newoff + off 为负或在缓冲区的已初始化部分外,那么函数失败
4) 否则,如同用 gptr() = eback() + newoff + offpptr() = pbase() + newoff + off 赋值指针。

参数

off - 设置下一位置指针到的相对位置
way - 定义应用偏移到的基位置。它可以是下列常量之一:
常量 解释
beg 流的开始
end 流的结尾
cur 流位置指示器的当前位置
which - 定义会影响到的输入和/或输出序列。它可以是下列常量之一或它们的组合:
常量 解释
in 影响输入序列
out 影响输出序列

返回值

成功时返回 pos_type(newoff),失败时或 pos_type 无法表示结果流位置时返回 pos_type(off_type(-1))

示例

#include <iostream>
#include <strstream>
 
int main()
{
    std::stringstream ss("123"); // 入/出
    std::cout << "写入位置 = " << ss.tellp()
              << " 读取位置 = " << ss.tellg() << '\n';
 
    // 两个指针绝对寻位
    ss.rdbuf()->pubseekoff(1, std::ios_base::beg); // 都前移 1
    std::cout << "写入位置 = " << ss.tellp()
              << " 读取位置 = " << ss.tellg() << '\n';
 
    // 试图从当前位置前移两个指针 1
    if (-1 == ss.rdbuf()->pubseekoff(1, std::ios_base::cur))
        std::cout << "从当前位置前移两个指针失败\n";
    std::cout << "写入位置 = " << ss.tellp()
              << " 读取位置 = " << ss.tellg() << '\n';
 
    // 前移写指针 1 ,但不前移读指针
    // 也可以调用 ss.seekp(1, std::ios_base::cur);
    ss.rdbuf()->pubseekoff(1, std::ios_base::cur, std::ios_base::out);
    std::cout << "写入位置 = " << ss.tellp()
              << " 读取位置 = " << ss.tellg() << '\n';
 
    ss << 'a'; // 在写入位置写入
    std::cout << "在写入位置写入 'a',现在缓冲区是 " << ss.str() << '\n';
 
    char ch;
    ss >> ch;
    std::cout << "在读取位置读取到了 '" << ch << "'\n";
}

输出:

写入位置 = 0 读取位置 = 0
写入位置 = 1 读取位置 = 1
从当前位置前移两个指针失败
写入位置 = 1 读取位置 = 1
写入位置 = 2 读取位置 = 1
在写入位置写入 'a',现在缓冲区是 12a
在读取位置读取到了 '2'

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 出版时的行为 正确行为
LWG 55 C++98 seekoff 在失败时返回了未定义的无效流位置 失败时返回 pos_type(off_type(-1))

参阅

用绝对寻址重寻位输入序列、输出序列或两者中的下一位置指针
(虚受保护成员函数)
用相对寻址重定位输入序列、输出序列或两者中的下一位置指针
(std::basic_streambuf<CharT,Traits> 的虚受保护成员函数)
用相对寻址,重定位输入序列、输出序列或两者中的下一位置指针
(std::basic_stringbuf<CharT,Traits,Allocator> 的虚受保护成员函数)
用相对寻址重寻位文件位置
(std::basic_filebuf<CharT,Traits> 的虚受保护成员函数)