libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TempFile.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/fs/filesystem.hxx>
5#include <cosmos/fs/FileBase.hxx>
6
7namespace cosmos {
8
10
20class COSMOS_API TempFile :
21 public FileBase {
22public: // functions
23
24 TempFile() = default;
25
26 explicit TempFile(const SysString _template, const OpenFlags flags = OpenFlags{OpenFlag::CLOEXEC}) {
27 open(_template, flags);
28 }
29
30 ~TempFile();
31
32 TempFile& operator=(TempFile &&other) noexcept {
33 m_tmp_path = other.m_tmp_path;
34 other.m_tmp_path.clear();
35
36 FileBase::operator=(std::move(other));
37 return *this;
38 }
39
40 // Prevent copying due to the path deletion responsibility.
41
42 void close() override {
43 try {
44 FileBase::close();
45 } catch(...) {
46 unlinkPath();
47 throw;
48 }
49
50 unlinkPath();
51 }
52
53 void open(const SysString _template, const OpenFlags flags = OpenFlags{OpenFlag::CLOEXEC}) {
54 close();
55
56 auto [fd, path] = fs::make_tempfile(_template, flags);
57 m_fd = fd;
58 m_tmp_path = path;
59 }
60
62
66 const std::string& path() const;
67
68protected: // functions
69
70 void unlinkPath() {
71 if (!m_tmp_path.empty()) {
72 try {
73 fs::unlink_file(m_tmp_path);
74 } catch(...) {
75 m_tmp_path.clear();
76 throw;
77 }
78 m_tmp_path.clear();
79 }
80 }
81
82protected: // data
83
84 std::string m_tmp_path;
85};
86
87} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
Base class for File types with ownership of a FileDescriptor.
Definition FileBase.hxx:23
Specialization of FileBase for managing temporary files.
Definition TempFile.hxx:21
void close() override
Close the current file object.
Definition TempFile.hxx:42
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33