Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / scoped_temporary.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "scoped_temporary.h"
21
22 /** Construct a ScopedTemporary.  A temporary filename is decided but the file is not opened
23  *  until ::open() is called.
24  */
25 ScopedTemporary::ScopedTemporary ()
26         : _open (0)
27 {
28         _file = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path ();
29 }
30
31 /** Close and delete the temporary file */
32 ScopedTemporary::~ScopedTemporary ()
33 {
34         close ();
35         boost::system::error_code ec;
36         boost::filesystem::remove (_file, ec);
37 }
38
39 /** @return temporary filename */
40 char const *
41 ScopedTemporary::c_str () const
42 {
43         return _file.string().c_str ();
44 }
45
46 /** Open the temporary file.
47  *  @return File's FILE pointer.
48  */
49 FILE*
50 ScopedTemporary::open (char const * params)
51 {
52         _open = fopen (c_str(), params);
53         return _open;
54 }
55
56 /** Close the file */
57 void
58 ScopedTemporary::close ()
59 {
60         if (_open) {
61                 fclose (_open);
62                 _open = 0;
63         }
64 }