Some include tidying.
[dcpomatic.git] / src / lib / cinema.h
1 /*
2     Copyright (C) 2013-2014 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 /** @file  src/lib/cinema.h
21  *  @brief Screen and Cinema classes.
22  */
23
24 #include <libcxml/cxml.h>
25 #include <dcp/certificates.h>
26 #include <boost/enable_shared_from_this.hpp>
27
28 class Cinema;
29
30 /** @class Screen
31  *  @brief A representation of a Screen for KDM generation.
32  *
33  *  This is the name of the screen and the certificate of its
34  *  server.
35  */
36 class Screen
37 {
38 public:
39         Screen (std::string const & n, boost::optional<dcp::Certificate> cert)
40                 : name (n)
41                 , certificate (cert)
42         {}
43
44         Screen (cxml::ConstNodePtr);
45
46         void as_xml (xmlpp::Element *) const;
47         
48         boost::shared_ptr<Cinema> cinema;
49         std::string name;
50         boost::optional<dcp::Certificate> certificate;
51 };
52
53 /** @class Cinema
54  *  @brief A description of a Cinema for KDM generation.
55  *
56  *  This is a cinema name, contact email address and a list of
57  *  Screen objects.
58  */
59 class Cinema : public boost::enable_shared_from_this<Cinema>
60 {
61 public:
62         Cinema (std::string const & n, std::string const & e)
63                 : name (n)
64                 , email (e)
65         {}
66
67         Cinema (cxml::ConstNodePtr);
68
69         void read_screens (cxml::ConstNodePtr);
70
71         void as_xml (xmlpp::Element *) const;
72
73         void add_screen (boost::shared_ptr<Screen>);
74         void remove_screen (boost::shared_ptr<Screen>);
75         
76         std::string name;
77         std::string email;
78         std::list<boost::shared_ptr<Screen> > screens () const {
79                 return _screens;
80         }
81
82 private:        
83         std::list<boost::shared_ptr<Screen> > _screens;
84 };