Merge master.
[dcpomatic.git] / src / lib / dci_metadata.cc
1 /*
2     Copyright (C) 2012 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 <iostream>
21 #include <libcxml/cxml.h>
22 #include "dci_metadata.h"
23
24 #include "i18n.h"
25
26 using std::string;
27 using boost::shared_ptr;
28
29 DCIMetadata::DCIMetadata (shared_ptr<const cxml::Node> node)
30 {
31         audio_language = node->string_child ("AudioLanguage");
32         subtitle_language = node->string_child ("SubtitleLanguage");
33         territory = node->string_child ("Territory");
34         rating = node->string_child ("Rating");
35         studio = node->string_child ("Studio");
36         facility = node->string_child ("Facility");
37         package_type = node->string_child ("PackageType");
38 }
39
40 void
41 DCIMetadata::as_xml (xmlpp::Node* root) const
42 {
43         root->add_child("AudioLanguage")->add_child_text (audio_language);
44         root->add_child("SubtitleLanguage")->add_child_text (subtitle_language);
45         root->add_child("Territory")->add_child_text (territory);
46         root->add_child("Rating")->add_child_text (rating);
47         root->add_child("Studio")->add_child_text (studio);
48         root->add_child("Facility")->add_child_text (facility);
49         root->add_child("PackageType")->add_child_text (package_type);
50 }
51
52 void
53 DCIMetadata::read_old_metadata (string k, string v)
54 {
55         if (k == N_("audio_language")) {
56                 audio_language = v;
57         } else if (k == N_("subtitle_language")) {
58                 subtitle_language = v;
59         } else if (k == N_("territory")) {
60                 territory = v;
61         } else if (k == N_("rating")) {
62                 rating = v;
63         } else if (k == N_("studio")) {
64                 studio = v;
65         } else if (k == N_("facility")) {
66                 facility = v;
67         } else if (k == N_("package_type")) {
68                 package_type = v;
69         }
70 }