a696343a0ca14e118109496f2e0a5fed33a8a069
[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         FileGroup (FileGroup const&) = delete;
43         FileGroup& operator= (FileGroup const&) = delete;
44
45         void set_paths (std::vector<boost::filesystem::path> const &);
46
47         int64_t seek (int64_t, int) const;
48         int read (uint8_t*, int) const;
49         int64_t length () const;
50
51 private:
52         void ensure_open_path (size_t) const;
53
54         std::vector<boost::filesystem::path> _paths;
55         /** Index of path that we are currently reading from */
56         mutable size_t _current_path;
57         mutable FILE* _current_file;
58         mutable size_t _current_size;
59         mutable int64_t _position;
60 };
61
62 #endif