Merge branch 'master' into 2.0--libdcp-1.0
[dcpomatic.git] / src / lib / cinema.cc
1 /*
2     Copyright (C) 2013 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 <libxml++/libxml++.h>
21 #include <libcxml/cxml.h>
22 #include "cinema.h"
23
24 using std::list;
25 using boost::shared_ptr;
26
27 Cinema::Cinema (shared_ptr<const cxml::Node> node)
28         : name (node->string_child ("Name"))
29         , email (node->string_child ("Email"))
30 {
31
32 }
33
34 /* This is necessary so that we can use shared_from_this in add_screen (which cannot be done from
35    a constructor)
36 */
37 void
38 Cinema::read_screens (shared_ptr<const cxml::Node> node)
39 {
40         list<cxml::NodePtr> s = node->node_children ("Screen");
41         for (list<cxml::NodePtr>::iterator i = s.begin(); i != s.end(); ++i) {
42                 add_screen (shared_ptr<Screen> (new Screen (*i)));
43         }
44 }
45
46 void
47 Cinema::as_xml (xmlpp::Element* parent) const
48 {
49         parent->add_child("Name")->add_child_text (name);
50         parent->add_child("Email")->add_child_text (email);
51
52         for (list<shared_ptr<Screen> >::const_iterator i = _screens.begin(); i != _screens.end(); ++i) {
53                 (*i)->as_xml (parent->add_child ("Screen"));
54         }
55 }
56
57 void
58 Cinema::add_screen (shared_ptr<Screen> s)
59 {
60         s->cinema = shared_from_this ();
61         _screens.push_back (s);
62 }
63
64 void
65 Cinema::remove_screen (shared_ptr<Screen> s)
66 {
67         _screens.remove (s);
68 }
69
70 Screen::Screen (shared_ptr<const cxml::Node> node)
71 {
72         name = node->string_child ("Name");
73         certificate = shared_ptr<dcp::Certificate> (new dcp::Certificate (node->string_child ("Certificate")));
74 }
75
76 void
77 Screen::as_xml (xmlpp::Element* parent) const
78 {
79         parent->add_child("Name")->add_child_text (name);
80         parent->add_child("Certificate")->add_child_text (certificate->certificate (true));
81 }
82
83