Barely-functioning GL playback with new arrangement.
[dcpomatic.git] / src / lib / scoped_temporary.cc
1 /*
2     Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "scoped_temporary.h"
22 #include "exceptions.h"
23 #include "cross.h"
24
25 /** Construct a ScopedTemporary.  A temporary filename is decided but the file is not opened
26  *  until open() is called.
27  */
28 ScopedTemporary::ScopedTemporary ()
29         : _open (0)
30 {
31         _file = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path ();
32 }
33
34 /** Close and delete the temporary file */
35 ScopedTemporary::~ScopedTemporary ()
36 {
37         close ();
38         boost::system::error_code ec;
39         boost::filesystem::remove (_file, ec);
40 }
41
42 /** @return temporary filename */
43 char const *
44 ScopedTemporary::c_str () const
45 {
46         return _file.string().c_str ();
47 }
48
49 /** Open the temporary file.
50  *  @return File's FILE pointer.
51  */
52 FILE*
53 ScopedTemporary::open (char const * params)
54 {
55         close ();
56         _open = fopen_boost (_file, params);
57         if (!_open) {
58                 throw FileError ("Could not open scoped temporary", _file);
59         }
60         return _open;
61 }
62
63 /** Close the file */
64 void
65 ScopedTemporary::close ()
66 {
67         if (_open) {
68                 fclose (_open);
69                 _open = 0;
70         }
71 }