More various KDM fixes.
[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 {
29         name = node->string_child ("Name");
30         email = node->string_child ("Email");
31
32         list<shared_ptr<cxml::Node> > s = node->node_children ("Screen");
33         for (list<shared_ptr<cxml::Node> >::iterator i = s.begin(); i != s.end(); ++i) {
34                 add_screen (shared_ptr<Screen> (new Screen (*i)));
35         }
36 }
37
38 void
39 Cinema::as_xml (xmlpp::Element* parent) const
40 {
41         parent->add_child("Name")->add_child_text (name);
42         parent->add_child("Email")->add_child_text (email);
43
44         for (list<shared_ptr<Screen> >::const_iterator i = _screens.begin(); i != _screens.end(); ++i) {
45                 (*i)->as_xml (parent->add_child ("Screen"));
46         }
47 }
48
49 void
50 Cinema::add_screen (shared_ptr<Screen> s)
51 {
52         s->cinema = shared_from_this ();
53         _screens.push_back (s);
54 }
55
56 void
57 Cinema::remove_screen (shared_ptr<Screen> s)
58 {
59         _screens.remove (s);
60 }
61
62 Screen::Screen (shared_ptr<const cxml::Node> node)
63 {
64         name = node->string_child ("Name");
65         certificate = shared_ptr<libdcp::Certificate> (new libdcp::Certificate (node->string_child ("Certificate")));
66 }
67
68 void
69 Screen::as_xml (xmlpp::Element* parent) const
70 {
71         parent->add_child("Name")->add_child_text (name);
72         parent->add_child("Certificate")->add_child_text (certificate->certificate (true));
73 }
74
75