libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TempDir.cxx
1// cosmos
2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/fs/TempDir.hxx>
4#include <cosmos/fs/path.hxx>
5#include <cosmos/private/cosmos.hxx>
6
7namespace cosmos {
8
9TempDir::~TempDir() {
10 try {
11 close();
12 } catch (const std::exception &e) {
13 noncritical_error("Failed to close TmpDir", e);
14 }
15}
16
17void TempDir::create(const SysString _template) {
18 close();
19 m_tmp_path = fs::make_tempdir(fs::normalize_path(_template));
20}
21
22const std::string& TempDir::path() const {
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}
29
30} // end ns
const std::string & path() const
Returns the expanded path to the temporary dir.
Definition TempDir.cxx:22
Exception type for logical usage errors within the application.