Allow multiple recipients of KDM emails (#745).
[dcpomatic.git] / src / lib / cinema.cc
1 /*
2     Copyright (C) 2013-2015 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 <libcxml/cxml.h>
23 #include <libxml++/libxml++.h>
24 #include <boost/foreach.hpp>
25
26 using std::list;
27 using std::string;
28 using boost::shared_ptr;
29
30 Cinema::Cinema (cxml::ConstNodePtr node)
31         : name (node->string_child ("Name"))
32 {
33         BOOST_FOREACH (cxml::ConstNodePtr i, node->node_children("Email")) {
34                 emails.push_back (i->content ());
35         }
36 }
37
38 /* This is necessary so that we can use shared_from_this in add_screen (which cannot be done from
39    a constructor)
40 */
41 void
42 Cinema::read_screens (cxml::ConstNodePtr node)
43 {
44         list<cxml::NodePtr> s = node->node_children ("Screen");
45         for (list<cxml::NodePtr>::iterator i = s.begin(); i != s.end(); ++i) {
46                 add_screen (shared_ptr<Screen> (new Screen (*i)));
47         }
48 }
49
50 void
51 Cinema::as_xml (xmlpp::Element* parent) const
52 {
53         parent->add_child("Name")->add_child_text (name);
54
55         BOOST_FOREACH (string i, emails) {
56                 parent->add_child("Email")->add_child_text (i);
57         }
58
59         BOOST_FOREACH (shared_ptr<Screen> i, _screens) {
60                 i->as_xml (parent->add_child ("Screen"));
61         }
62 }
63
64 void
65 Cinema::add_screen (shared_ptr<Screen> s)
66 {
67         s->cinema = shared_from_this ();
68         _screens.push_back (s);
69 }
70
71 void
72 Cinema::remove_screen (shared_ptr<Screen> s)
73 {
74         _screens.remove (s);
75 }