libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::TempDir Class Reference

Creation and lifetime management for temporary directories. More...

#include <TempDir.hxx>

Public Member Functions

 TempDir (const SysString _template)
 
 TempDir (const TempDir &)=delete
 
TempDiroperator= (const TempDir &)=delete
 
 TempDir (TempDir &&other) noexcept
 
TempDiroperator= (TempDir &&other) noexcept
 
void close ()
 
void create (const SysString _template)
 
const std::string & path () const
 Returns the expanded path to the temporary dir.
 

Protected Attributes

std::string m_tmp_path
 

Detailed Description

Creation and lifetime management for temporary directories.

Create a temporary directory based on a name template. See fs::make_tempdir() for details on the template requirements.

Upon close() the temporary directory will be recursively removed.

Definition at line 15 of file TempDir.hxx.

Constructor & Destructor Documentation

◆ TempDir() [1/2]

cosmos::TempDir::TempDir ( const SysString _template)
inlineexplicit

Definition at line 20 of file TempDir.hxx.

20 {
21 create(_template);
22 }

◆ ~TempDir()

cosmos::TempDir::~TempDir ( )

Definition at line 9 of file TempDir.cxx.

9 {
10 try {
11 close();
12 } catch (const std::exception &e) {
13 noncritical_error("Failed to close TmpDir", e);
14 }
15}

◆ TempDir() [2/2]

cosmos::TempDir::TempDir ( TempDir && other)
inlinenoexcept

Definition at line 30 of file TempDir.hxx.

30 {
31 *this = std::move(other);
32 }

Member Function Documentation

◆ close()

void cosmos::TempDir::close ( )
inline

Definition at line 40 of file TempDir.hxx.

40 {
41 if (!m_tmp_path.empty()) {
42 fs::remove_tree(m_tmp_path);
43 m_tmp_path.clear();
44 }
45 }

◆ create()

void cosmos::TempDir::create ( const SysString _template)

Definition at line 17 of file TempDir.cxx.

17 {
18 close();
19 m_tmp_path = fs::make_tempdir(fs::normalize_path(_template));
20}

◆ operator=()

TempDir & cosmos::TempDir::operator= ( TempDir && other)
inlinenoexcept

Definition at line 34 of file TempDir.hxx.

34 {
35 m_tmp_path = other.m_tmp_path;
36 other.m_tmp_path.clear();
37 return *this;
38 }

◆ path()

const std::string & cosmos::TempDir::path ( ) const

Returns the expanded path to the temporary dir.

This is only valid if currently a temporary file is open. Otherwise a UsageError will be thrown.

Definition at line 22 of file TempDir.cxx.

22 {
23 if (!m_tmp_path.empty())
24 return m_tmp_path;
25
26 cosmos_throw (UsageError("accessed path for closed TempDir"));
27 return m_tmp_path; // to silence compiler warning
28}

Member Data Documentation

◆ m_tmp_path

std::string cosmos::TempDir::m_tmp_path
protected

Definition at line 58 of file TempDir.hxx.


The documentation for this class was generated from the following files: