Add and use new File class.
[libdcp.git] / src / file.cc
1 /*
2     Copyright (C) 2022 Carl Hetherington <cth@carlh.net>
3
4     This file is part of libdcp.
5
6     libdcp 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     libdcp 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 libdcp.  If not, see <http://www.gnu.org/licenses/>.
18
19     In addition, as a special exception, the copyright holders give
20     permission to link the code of portions of this program with the
21     OpenSSL library under certain conditions as described in each
22     individual source file, and distribute linked combinations
23     including the two.
24
25     You must obey the GNU General Public License in all respects
26     for all of the code used other than OpenSSL.  If you modify
27     file(s) with this exception, you may extend this exception to your
28     version of the file(s), but you are not obligated to do so.  If you
29     do not wish to do so, delete this exception statement from your
30     version.  If you delete this exception statement from all source
31     files in the program, then also delete it here.
32 */
33
34
35 #include "dcp_assert.h"
36 #include "file.h"
37
38
39 using namespace dcp;
40
41
42 File::~File()
43 {
44         close();
45 }
46
47
48 File::File(boost::filesystem::path path, std::string mode)
49 {
50 #ifdef LIBDCP_WINDOWS
51         std::wstring mode_wide(mode.begin(), mode.end());
52         /* c_str() here should give a UTF-16 string */
53         _file = _wfopen(path.c_str(), mode_wide.c_str());
54 #else
55         _file = fopen(path.c_str(), mode.c_str());
56 #endif
57 }
58
59
60 void
61 File::close()
62 {
63         if (_file) {
64                 fclose(_file);
65                 _file = nullptr;
66         }
67 }
68
69
70 size_t
71 File::write(const void *ptr, size_t size, size_t nmemb)
72 {
73         DCP_ASSERT(_file);
74         return fwrite(ptr, size, nmemb, _file);
75 }
76
77
78 size_t
79 File::read(void *ptr, size_t size, size_t nmemb)
80 {
81         DCP_ASSERT(_file);
82         return fread(ptr, size, nmemb, _file);
83 }
84
85
86 int
87 File::eof()
88 {
89         DCP_ASSERT(_file);
90         return feof(_file);
91 }
92
93
94 char *
95 File::gets(char *s, int size)
96 {
97         DCP_ASSERT(_file);
98         return fgets(s, size, _file);
99 }
100
101
102 File::operator bool() const
103 {
104         return _file != nullptr;
105 }
106