libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
TempFile.cxx
1// cosmos
2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/fs/TempFile.hxx>
4#include <cosmos/private/cosmos.hxx>
5
6namespace cosmos {
7
8TempFile::~TempFile() {
9 try {
10 close();
11 } catch (const std::exception &e) {
12 noncritical_error("Failed to close TmpFile", e);
13 }
14}
15
16const std::string& TempFile::path() const {
17 if (!m_tmp_path.empty())
18 return m_tmp_path;
19
20 cosmos_throw (UsageError("accessed path for closed TempFile"));
21 return m_tmp_path; // to silence compiler warning
22}
23
24} // end ns
void close() override
Close the current file object.
Definition TempFile.hxx:42
const std::string & path() const
Returns the expanded path to the temporary file.
Definition TempFile.cxx:16
Exception type for logical usage errors within the application.