Cleanup: white space.
[dcpomatic.git] / src / lib / spl.h
1 /*
2     Copyright (C) 2018-2020 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 #ifndef DCPOMATIC_SPL_H
23 #define DCPOMATIC_SPL_H
24
25
26 #include "spl_entry.h"
27 #include <dcp/util.h>
28 #include <boost/signals2.hpp>
29
30 class ContentStore;
31
32
33 class SPL
34 {
35 public:
36         SPL ()
37                 : _id (dcp::make_uuid())
38                 , _missing (false)
39         {}
40
41         SPL (std::string name)
42                 : _id (dcp::make_uuid())
43                 , _name (name)
44                 , _missing (false)
45         {}
46
47
48         void add (SPLEntry e) {
49                 _spl.push_back (e);
50         }
51
52         void remove (std::size_t index) {
53                 _spl.erase (_spl.begin() + index);
54         }
55
56         std::vector<SPLEntry> const & get () const {
57                 return _spl;
58         }
59
60         SPLEntry & operator[] (std::size_t index) {
61                 return _spl[index];
62         }
63
64         SPLEntry const & operator[] (std::size_t index) const {
65                 return _spl[index];
66         }
67
68         void read (boost::filesystem::path path, ContentStore* store);
69         void write (boost::filesystem::path path) const;
70
71         std::string id () const {
72                 return _id;
73         }
74
75         std::string name () const {
76                 return _name;
77         }
78
79         void set_name (std::string name) {
80                 _name = name;
81         }
82
83         bool missing () const {
84                 return _missing;
85         }
86
87 private:
88         std::string _id;
89         std::string _name;
90         std::vector<SPLEntry> _spl;
91         /** true if any content was missing when read() was last called on this SPL */
92         bool _missing;
93 };
94
95
96 class SignalSPL : public SPL
97 {
98 public:
99         enum class Change {
100                 NAME,
101                 CONTENT,
102         };
103
104         SignalSPL () {}
105
106         SignalSPL (std::string name)
107                 : SPL (name)
108         {}
109
110         void set_name (std::string name) {
111                 SPL::set_name (name);
112                 Changed(Change::NAME);
113         }
114
115         boost::signals2::signal<void (Change)> Changed;
116 };
117
118 #endif