gpt4 book ai didi

c++ - 在 C++ 中替代 bash 同步

转载 作者:太空宇宙 更新时间:2023-11-04 09:11:55 24 4
gpt4 key购买 nike

我正在使用 C++ 编写文件处理代码。问题是在写入文件后,如果立即断电,则不会写入文件。

我发现问题是由于从系统缓冲区写入持久文件存储的延迟造成的。

我用 bash sync 命令克服了这种情况。这是代码片段

cout << "Writting to file" << endl;
ofstream fout("demo.dat", ios::out);
fout << "hello world" <<flush;
fout.close();
system("sync");
cout << "file written" << endl << "Sleeping for 3 secs"<<endl;
this_thread::sleep_for(chrono::seconds(3)); //disconnect power here
... some more statements

问题是 system() 被认为是糟糕的,因为我必须非常频繁地写入文件。

如果 C++ 提供了更好的方法,请告诉我。

我尝试使用 std::flush、pubsync() 但它不起作用。

我正在做 C++ 风格的文件处理,所以不能使用 C 风格的文件处理。

最佳答案

#include <fstream>
#include <iostream>
#include <unistd.h>

using namespace std;

class sync_filebuf : public filebuf
{
public:
sync_filebuf(ofstream &fout)
{
sync_filebuf *fbuf;
fbuf = static_cast<sync_filebuf *>(fout.rdbuf());
fsync(fbuf->_M_file.fd());
}
};

int main()
{
cout << "Writting to file" << endl;
ofstream fout("demo.dat", ios::out);
fout << "hello world" <<flush;
fout.flush();
sync_filebuf x(fout);
fout.close();
cout << "file written" << endl << "Sleeping for 3 secs"<<endl;
return 0;
}

关于c++ - 在 C++ 中替代 bash 同步,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54684138/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com