X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fscoped_temporary.cc;h=0ead7b1655d5445244aa103f67dcc597f160e035;hp=223100ba5f727df6180eab3b1ba191a38f1ff18b;hb=8a8c977c12fc65f1f50ea05099387e0fc8840e7d;hpb=efe153ab23b54cdbf28c653f2ccb0f25ca6bd015 diff --git a/src/lib/scoped_temporary.cc b/src/lib/scoped_temporary.cc index 223100ba5..0ead7b165 100644 --- a/src/lib/scoped_temporary.cc +++ b/src/lib/scoped_temporary.cc @@ -29,16 +29,18 @@ */ ScopedTemporary::ScopedTemporary () { - _file = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path (); + _path = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path(); } /** Close and delete the temporary file */ ScopedTemporary::~ScopedTemporary () { - close (); + if (_file) { + _file->close(); + } boost::system::error_code ec; - boost::filesystem::remove (_file, ec); + boost::filesystem::remove (_path, ec); } @@ -46,31 +48,23 @@ ScopedTemporary::~ScopedTemporary () char const * ScopedTemporary::c_str () const { - return _file.string().c_str(); + return _path.string().c_str(); } /** Open the temporary file. * @return File's FILE pointer. */ -FILE* +dcp::File& ScopedTemporary::open (char const * params) { - close (); - _open = fopen_boost (_file, params); - if (!_open) { - throw FileError ("Could not open scoped temporary", _file); + if (_file) { + _file->close(); } - return _open; -} - - -/** Close the file */ -void -ScopedTemporary::close () -{ - if (_open) { - fclose (_open); - _open = nullptr; + _file = dcp::File(_path, params); + if (!*_file) { + throw FileError ("Could not open scoped temporary", _path); } + return *_file; } +