6e651dc764d467d64f98424cb1ff5cb19301ffed
[dcpomatic.git] / src / lib / cinema.cc
1 /*
2     Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "cinema.h"
21 #include "screen.h"
22 #include "dcpomatic_assert.h"
23 #include <libcxml/cxml.h>
24 #include <dcp/raw_convert.h>
25 #include <libxml++/libxml++.h>
26 #include <boost/foreach.hpp>
27 #include <iostream>
28
29 using std::list;
30 using std::string;
31 using boost::shared_ptr;
32
33 Cinema::Cinema (cxml::ConstNodePtr node)
34         : name (node->string_child ("Name"))
35         , notes (node->optional_string_child("Notes").get_value_or(""))
36 {
37         BOOST_FOREACH (cxml::ConstNodePtr i, node->node_children("Email")) {
38                 emails.push_back (i->content ());
39         }
40
41         if (node->optional_number_child<int>("UTCOffset")) {
42                 _utc_offset_hour = node->number_child<int>("UTCOffset");
43         } else {
44                 _utc_offset_hour = node->optional_number_child<int>("UTCOffsetHour").get_value_or (0);
45         }
46
47         _utc_offset_minute = node->optional_number_child<int>("UTCOffsetMinute").get_value_or (0);
48 }
49
50 /* This is necessary so that we can use shared_from_this in add_screen (which cannot be done from
51    a constructor)
52 */
53 void
54 Cinema::read_screens (cxml::ConstNodePtr node)
55 {
56         list<cxml::NodePtr> s = node->node_children ("Screen");
57         for (list<cxml::NodePtr>::iterator i = s.begin(); i != s.end(); ++i) {
58                 add_screen (shared_ptr<Screen> (new Screen (*i)));
59         }
60 }
61
62 void
63 Cinema::as_xml (xmlpp::Element* parent) const
64 {
65         parent->add_child("Name")->add_child_text (name);
66
67         BOOST_FOREACH (string i, emails) {
68                 parent->add_child("Email")->add_child_text (i);
69         }
70
71         parent->add_child("Notes")->add_child_text (notes);
72
73         parent->add_child("UTCOffsetHour")->add_child_text (dcp::raw_convert<string> (_utc_offset_hour));
74         parent->add_child("UTCOffsetMinute")->add_child_text (dcp::raw_convert<string> (_utc_offset_minute));
75
76         BOOST_FOREACH (shared_ptr<Screen> i, _screens) {
77                 i->as_xml (parent->add_child ("Screen"));
78         }
79 }
80
81 void
82 Cinema::add_screen (shared_ptr<Screen> s)
83 {
84         s->cinema = shared_from_this ();
85         _screens.push_back (s);
86 }
87
88 void
89 Cinema::remove_screen (shared_ptr<Screen> s)
90 {
91         _screens.remove (s);
92 }
93
94 void
95 Cinema::set_utc_offset_hour (int h)
96 {
97         DCPOMATIC_ASSERT (h >= -11 && h <= 12);
98         _utc_offset_hour = h;
99 }
100
101 void
102 Cinema::set_utc_offset_minute (int m)
103 {
104         DCPOMATIC_ASSERT (m >= 0 && m <= 59);
105         _utc_offset_minute = m;
106 }