我有一个包含数百万行的txt文件,每行有3个浮点数,我使用以下代码读取它:
ifstream file(path)
float x,y,z;
while(!file.eof())
file >> x >> y >> z;
我工作得很好。
现在我想尝试使用Boost映射文件做同样的事情,所以我做了以下
string filename = "C:\\myfile.txt";
file_mapping mapping(filename.c_str(), read_only);
mapped_region mapped_rgn(mapping, read_only);
char* const mmaped_data = static_cast<char*>(mapped_rgn.get_address());
streamsize const mmap_size = mapped_rgn.get_size();
istringstream s;
s.rdbuf()->pubsetbuf(mmaped_data, mmap_size);
while(!s.eof())
mystream >> x >> y >> z;
它编译没有任何问题,但不幸的是X,Y,Z没有获得实际的浮点数而只是垃圾,并且在一次迭代后,While结束了。
我可能做了一件非常错误的事情
如何使用和解析内存映射文件中的数据? 我搜索了整个互联网,特别是堆栈溢出,找不到任何例子。
我正在使用Windows 7 64位。
答案 0 :(得分:3)
Boost有一个专门用于此目的的图书馆:boost.iostreams
#include <iostream>
#include <boost/iostreams/stream.hpp>
#include <boost/iostreams/device/mapped_file.hpp>
namespace io = boost::iostreams;
int main()
{
io::stream<io::mapped_file_source> str("test.txt");
// you can read from str like from any stream, str >> x >> y >> z
for(float x,y,z; str >> x >> y >> z; )
std::cout << "Reading from file: " << x << " " << y << " " << z << '\n';
}