Logging improvements to allow prettier displays in the server GUI.
[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
25 using std::list;
26 using boost::shared_ptr;
27
28 Cinema::Cinema (cxml::ConstNodePtr node)
29         : name (node->string_child ("Name"))
30         , email (node->string_child ("Email"))
31 {
32
33 }
34
35 /* This is necessary so that we can use shared_from_this in add_screen (which cannot be done from
36    a constructor)
37 */
38 void
39 Cinema::read_screens (cxml::ConstNodePtr node)
40 {
41         list<cxml::NodePtr> s = node->node_children ("Screen");
42         for (list<cxml::NodePtr>::iterator i = s.begin(); i != s.end(); ++i) {
43                 add_screen (shared_ptr<Screen> (new Screen (*i)));
44         }
45 }
46
47 void
48 Cinema::as_xml (xmlpp::Element* parent) const
49 {
50         parent->add_child("Name")->add_child_text (name);
51         parent->add_child("Email")->add_child_text (email);
52
53         for (list<shared_ptr<Screen> >::const_iterator i = _screens.begin(); i != _screens.end(); ++i) {
54                 (*i)->as_xml (parent->add_child ("Screen"));
55         }
56 }
57
58 void
59 Cinema::add_screen (shared_ptr<Screen> s)
60 {
61         s->cinema = shared_from_this ();
62         _screens.push_back (s);
63 }
64
65 void
66 Cinema::remove_screen (shared_ptr<Screen> s)
67 {
68         _screens.remove (s);
69 }