-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile-io.cpp
39 lines (33 loc) · 1.03 KB
/
file-io.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "file-io.hpp"
#include <fcntl.h>
#include <sys/file.h>
#include <unistd.h>
#include <stdplus/fd/atomic.hpp>
#include <stdplus/fd/create.hpp>
#include <stdplus/fd/fmt.hpp>
#include <stdplus/fd/managed.hpp>
#include <stdplus/fd/ops.hpp>
#include <stdplus/print.hpp>
#include <cerrno>
#include <fstream>
#include <iostream>
#include <string>
using ::stdplus::fd::ManagedFd;
using std::literals::string_view_literals::operator""sv;
// Function to read contents from a file (with locking)
std::string fileRead(const fs::path& filename)
{
// Open the file in read mode
ManagedFd fd = stdplus::fd::open(std::string(filename).c_str(),
stdplus::fd::OpenAccess::ReadOnly);
return stdplus::fd::readAll<std::string>(fd);
}
// Function to write contents to a file atomically
void fileWrite(const fs::path& filename, const std::string& data)
{
stdplus::fd::AtomicWriter writer(filename, 0644);
stdplus::fd::FormatBuffer out(writer);
out.appends(data);
out.flush();
writer.commit();
}