std::strstreambuf::seekpos

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

virtual pos_type seekpos( pos_type sp,

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

在可能时重寻位 std::basic_streambuf::gptr 和/或 std::basic_streambuf::pptrsp 指示的位置。

如果 which 中设置了 std::ios_base::in,那么会尝试重寻位 gptr()(读取区域中的下一位置指针)。如果 which 中设置了 std::ios_base::out,那么会尝试重寻位 pptr()(写入区域中的下一位置指针)。如果 which 中未设置这些位,那么操作失败。

以下列方式重寻位每个下一位置指针:

1) 如果下一位置指针为空,那么操作失败。
2) 否则,通过调用 sp.offset() 确定(off_type 类型的)新偏移 newoff。如果 newoff 为负、在缓冲区边界外或非法,那么操作失败。
3) 否则,如同用 gptr() = eback() + newoffpptr() = pbase() + newoff 赋值下一位置指针。

参数

sp - 流位置,由 seekoff()seekpos() 获得者
which - 定义会影响到的输入和/或输出序列。它可以是下列常量之一或它们的组合:
常量 解释
in 影响输入序列
out 影响输出序列

返回值

成功时返回转换到 pos_type 的结果偏移,失败时返回 pos_type(off_type(-1))

注意

seekpos() 会被 std::basic_streambuf::pubseekpos() 调用,后者会被 std::basic_istream::seekg()std::basic_ostream::seekp() 的单参数版本调用。

示例

#include <strstream>
#include <cstring>
#include <iostream>
 
struct mybuf : std::strstreambuf
{
    mybuf(const char* str) : std::strstreambuf(str, std::strlen(str)) {}
 
    pos_type seekpos(pos_type sp, std::ios_base::openmode which)
    {
        std::cout << "在 seekpos(" << sp << ") 前,读取区域的大小是 "
                  << egptr() - eback() << ",其中有 "
                  << egptr() - gptr() << " 个可用读取位置。\n";
 
        pos_type rc = std::strstreambuf::seekpos(sp, which);
 
        std::cout << "seekpos() 返回 " << rc << "。\n在调用后,"
                  << "读取区域的大小是 "
                  << egptr() - eback() << ",其中有 "
                  << egptr() - gptr() << " 个可用读取位置。\n";
 
        return rc;
    }
};
 
int main()
{
    mybuf buf("12345");
    std::iostream stream(&buf);
    stream.seekg(2);
}

输出:

在 seekpos(2) 前,读取区域的大小是 5,其中有 5 个可用读取位置。
seekpos() 返回 2。
在调用后,读取区域的大小是 5,其中有 3 个可用读取位置。

缺陷报告

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

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

参阅

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