std::shared_ptr
[dcpomatic.git] / src / lib / spl_entry.cc
1 /*
2     Copyright (C) 2018-2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "spl_entry.h"
22 #include "dcp_content.h"
23 #include "dcpomatic_assert.h"
24 #include "warnings.h"
25 DCPOMATIC_DISABLE_WARNINGS
26 #include <libxml++/libxml++.h>
27 DCPOMATIC_ENABLE_WARNINGS
28
29 using std::shared_ptr;
30 using std::dynamic_pointer_cast;
31
32 SPLEntry::SPLEntry (shared_ptr<Content> content)
33 {
34         construct (content);
35 }
36
37 void
38 SPLEntry::construct (shared_ptr<Content> c)
39 {
40         content = c;
41         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (content);
42         digest = content->digest ();
43         if (dcp) {
44                 name = dcp->name ();
45                 DCPOMATIC_ASSERT (dcp->cpl());
46                 id = *dcp->cpl();
47                 kind = dcp->content_kind().get_value_or(dcp::FEATURE);
48                 encrypted = dcp->encrypted ();
49         } else {
50                 name = content->path(0).filename().string();
51                 kind = dcp::FEATURE;
52         }
53 }
54
55 void
56 SPLEntry::as_xml (xmlpp::Element* e)
57 {
58         e->add_child("Digest")->add_child_text(digest);
59 }