Move UTC offset for KDMs from the cinema to the point of KDM creation (#2300).
[dcpomatic.git] / src / lib / cinema.cc
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 #include "cinema.h"
23 #include "screen.h"
24 #include "dcpomatic_assert.h"
25 #include <libcxml/cxml.h>
26 #include <dcp/raw_convert.h>
27 #include <libxml++/libxml++.h>
28
29
30 using std::make_shared;
31 using std::shared_ptr;
32 using std::string;
33 using dcp::raw_convert;
34 using dcpomatic::Screen;
35
36
37 Cinema::Cinema (cxml::ConstNodePtr node)
38         : name (node->string_child ("Name"))
39         , notes (node->optional_string_child("Notes").get_value_or(""))
40 {
41         for (auto i: node->node_children("Email")) {
42                 emails.push_back (i->content ());
43         }
44 }
45
46 /* This is necessary so that we can use shared_from_this in add_screen (which cannot be done from
47    a constructor)
48 */
49 void
50 Cinema::read_screens (cxml::ConstNodePtr node)
51 {
52         for (auto i: node->node_children("Screen")) {
53                 add_screen (make_shared<Screen>(i));
54         }
55 }
56
57 void
58 Cinema::as_xml (xmlpp::Element* parent) const
59 {
60         parent->add_child("Name")->add_child_text (name);
61
62         for (auto i: emails) {
63                 parent->add_child("Email")->add_child_text (i);
64         }
65
66         parent->add_child("Notes")->add_child_text (notes);
67
68         for (auto i: _screens) {
69                 i->as_xml (parent->add_child ("Screen"));
70         }
71 }
72
73 void
74 Cinema::add_screen (shared_ptr<Screen> s)
75 {
76         s->cinema = shared_from_this ();
77         _screens.push_back (s);
78 }
79
80 void
81 Cinema::remove_screen (shared_ptr<Screen> s)
82 {
83        auto iter = std::find(_screens.begin(), _screens.end(), s);
84        if (iter != _screens.end()) {
85                _screens.erase(iter);
86        }
87 }
88