C++11 tidying.
[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 #include <iostream>
29
30
31 using std::list;
32 using std::string;
33 using std::shared_ptr;
34 using std::make_shared;
35 using dcp::raw_convert;
36 using dcpomatic::Screen;
37
38
39 Cinema::Cinema (cxml::ConstNodePtr node)
40         : name (node->string_child ("Name"))
41         , notes (node->optional_string_child("Notes").get_value_or(""))
42 {
43         for (auto i: node->node_children("Email")) {
44                 emails.push_back (i->content ());
45         }
46
47         if (node->optional_number_child<int>("UTCOffset")) {
48                 _utc_offset_hour = node->number_child<int>("UTCOffset");
49         } else {
50                 _utc_offset_hour = node->optional_number_child<int>("UTCOffsetHour").get_value_or (0);
51         }
52
53         _utc_offset_minute = node->optional_number_child<int>("UTCOffsetMinute").get_value_or (0);
54 }
55
56 /* This is necessary so that we can use shared_from_this in add_screen (which cannot be done from
57    a constructor)
58 */
59 void
60 Cinema::read_screens (cxml::ConstNodePtr node)
61 {
62         for (auto i: node->node_children("Screen")) {
63                 add_screen (make_shared<Screen>(i));
64         }
65 }
66
67 void
68 Cinema::as_xml (xmlpp::Element* parent) const
69 {
70         parent->add_child("Name")->add_child_text (name);
71
72         for (auto i: emails) {
73                 parent->add_child("Email")->add_child_text (i);
74         }
75
76         parent->add_child("Notes")->add_child_text (notes);
77
78         parent->add_child("UTCOffsetHour")->add_child_text (raw_convert<string> (_utc_offset_hour));
79         parent->add_child("UTCOffsetMinute")->add_child_text (raw_convert<string> (_utc_offset_minute));
80
81         for (auto i: _screens) {
82                 i->as_xml (parent->add_child ("Screen"));
83         }
84 }
85
86 void
87 Cinema::add_screen (shared_ptr<Screen> s)
88 {
89         s->cinema = shared_from_this ();
90         _screens.push_back (s);
91 }
92
93 void
94 Cinema::remove_screen (shared_ptr<Screen> s)
95 {
96         _screens.remove (s);
97 }
98
99 void
100 Cinema::set_utc_offset_hour (int h)
101 {
102         DCPOMATIC_ASSERT (h >= -11 && h <= 12);
103         _utc_offset_hour = h;
104 }
105
106 void
107 Cinema::set_utc_offset_minute (int m)
108 {
109         DCPOMATIC_ASSERT (m >= 0 && m <= 59);
110         _utc_offset_minute = m;
111 }