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