C++11 tidying.
[dcpomatic.git] / src / lib / file_group.h
1 /*
2     Copyright (C) 2013-2021 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
22 /** @file  src/lib/file_group.h
23  *  @brief FileGroup class.
24  */
25
26
27 #ifndef DCPOMATIC_FILE_GROUP_H
28 #define DCPOMATIC_FILE_GROUP_H
29
30
31 #include <boost/filesystem.hpp>
32 #include <vector>
33
34
35 /** @class FileGroup
36  *  @brief A class to make a list of files behave like they were concatenated.
37  */
38 class FileGroup
39 {
40 public:
41         FileGroup ();
42         explicit FileGroup (boost::filesystem::path);
43         explicit FileGroup (std::vector<boost::filesystem::path> const &);
44         ~FileGroup ();
45
46         FileGroup (FileGroup const&) = delete;
47         FileGroup& operator= (FileGroup const&) = delete;
48
49         void set_paths (std::vector<boost::filesystem::path> const &);
50
51         int64_t seek (int64_t, int) const;
52         int read (uint8_t*, int) const;
53         int64_t length () const;
54
55 private:
56         void ensure_open_path (size_t) const;
57
58         std::vector<boost::filesystem::path> _paths;
59         /** Index of path that we are currently reading from */
60         mutable size_t _current_path = 0;
61         mutable FILE* _current_file = nullptr;
62         mutable size_t _current_size = 0;
63         mutable int64_t _position = 0;
64 };
65
66
67 #endif