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