Fix the build for older macOS.
[dcpomatic.git] / src / lib / dkdm_recipient.cc
1 /*
2     Copyright (C) 2020-2021 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
22 #include "dkdm_recipient.h"
23 #include "kdm_with_metadata.h"
24 #include "film.h"
25 #include <dcp/raw_convert.h>
26
27
28 using std::make_shared;
29 using std::shared_ptr;
30 using std::string;
31 using std::vector;
32 using dcp::raw_convert;
33
34
35 DKDMRecipient::DKDMRecipient (cxml::ConstNodePtr node)
36         : KDMRecipient (node)
37 {
38         for (auto i: node->node_children("Email")) {
39                 emails.push_back (i->content());
40         }
41
42         utc_offset_hour = node->number_child<int>("UTCOffsetHour");
43         utc_offset_minute = node->number_child<int>("UTCOffsetMinute");
44 }
45
46
47 void
48 DKDMRecipient::as_xml (xmlpp::Element* node) const
49 {
50         KDMRecipient::as_xml (node);
51
52         for (auto i: emails) {
53                 node->add_child("Email")->add_child_text(i);
54         }
55
56         node->add_child("UTCOffsetHour")->add_child_text(raw_convert<string>(utc_offset_hour));
57         node->add_child("UTCOffsetMinute")->add_child_text(raw_convert<string>(utc_offset_minute));
58 }
59
60
61 KDMWithMetadataPtr
62 kdm_for_dkdm_recipient (
63         shared_ptr<const Film> film,
64         boost::filesystem::path cpl,
65         shared_ptr<DKDMRecipient> recipient,
66         boost::posix_time::ptime valid_from,
67         boost::posix_time::ptime valid_to
68         )
69 {
70         if (!recipient->recipient) {
71                 return KDMWithMetadataPtr();
72         }
73
74         dcp::LocalTime const begin(valid_from, recipient->utc_offset_hour, recipient->utc_offset_minute);
75         dcp::LocalTime const end  (valid_to,   recipient->utc_offset_hour, recipient->utc_offset_minute);
76
77         auto const kdm = film->make_kdm (
78                         recipient->recipient.get(),
79                         vector<string>(),
80                         cpl,
81                         begin,
82                         end,
83                         dcp::Formulation::MODIFIED_TRANSITIONAL_1,
84                         true,
85                         0
86                         );
87
88         dcp::NameFormat::Map name_values;
89         name_values['f'] = film->name();
90         name_values['b'] = begin.date() + " " + begin.time_of_day(true, false);
91         name_values['e'] = end.date() + " " + end.time_of_day(true, false);
92         name_values['i'] = kdm.cpl_id();
93
94         return make_shared<KDMWithMetadata>(name_values, nullptr, recipient->emails, kdm);
95 }
96