Merge branch '1.0' of ssh://main.carlh.net/home/carl/git/libdcp into 1.0
[libdcp.git] / src / interop_subtitle_asset.cc
1 /*
2     Copyright (C) 2012-2015 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 "interop_subtitle_asset.h"
21 #include "interop_load_font_node.h"
22 #include "xml.h"
23 #include "raw_convert.h"
24 #include "font_node.h"
25 #include "util.h"
26 #include <libxml++/libxml++.h>
27 #include <boost/foreach.hpp>
28 #include <cmath>
29 #include <cstdio>
30
31 using std::list;
32 using std::string;
33 using std::cout;
34 using boost::shared_ptr;
35 using boost::optional;
36 using boost::dynamic_pointer_cast;
37 using namespace dcp;
38
39 InteropSubtitleAsset::InteropSubtitleAsset (boost::filesystem::path file)
40         : SubtitleAsset (file)
41 {
42         shared_ptr<cxml::Document> xml (new cxml::Document ("DCSubtitle"));
43         xml->read_file (file);
44         _id = xml->string_child ("SubtitleID");
45         _reel_number = xml->string_child ("ReelNumber");
46         _language = xml->string_child ("Language");
47         _movie_title = xml->string_child ("MovieTitle");
48         _load_font_nodes = type_children<dcp::InteropLoadFontNode> (xml, "LoadFont");
49
50         list<cxml::NodePtr> f = xml->node_children ("Font");
51         list<shared_ptr<dcp::FontNode> > font_nodes;
52         BOOST_FOREACH (cxml::NodePtr& i, f) {
53                 font_nodes.push_back (shared_ptr<FontNode> (new FontNode (i, 250)));
54         }
55
56         parse_subtitles (xml, font_nodes);
57 }
58
59 InteropSubtitleAsset::InteropSubtitleAsset ()
60 {
61         
62 }
63
64 Glib::ustring
65 InteropSubtitleAsset::xml_as_string () const
66 {
67         xmlpp::Document doc;
68         xmlpp::Element* root = doc.create_root_node ("DCSubtitle");
69         root->set_attribute ("Version", "1.0");
70
71         root->add_child("SubtitleID")->add_child_text (_id);
72         root->add_child("MovieTitle")->add_child_text (_movie_title);
73         root->add_child("ReelNumber")->add_child_text (raw_convert<string> (_reel_number));
74         root->add_child("Language")->add_child_text (_language);
75
76         for (list<shared_ptr<InteropLoadFontNode> >::const_iterator i = _load_font_nodes.begin(); i != _load_font_nodes.end(); ++i) {
77                 xmlpp::Element* load_font = root->add_child("LoadFont");
78                 load_font->set_attribute ("Id", (*i)->id);
79                 load_font->set_attribute ("URI", (*i)->uri);
80         }
81
82         subtitles_as_xml (root, 250, "");
83
84         return doc.write_to_string_formatted ("UTF-8");
85 }
86
87 void
88 InteropSubtitleAsset::add_font (string id, string uri)
89 {
90         _load_font_nodes.push_back (shared_ptr<InteropLoadFontNode> (new InteropLoadFontNode (id, uri)));
91 }
92
93 bool
94 InteropSubtitleAsset::equals (shared_ptr<const Asset> other_asset, EqualityOptions options, NoteHandler note) const
95 {
96         if (!SubtitleAsset::equals (other_asset, options, note)) {
97                 return false;
98         }
99         
100         shared_ptr<const InteropSubtitleAsset> other = dynamic_pointer_cast<const InteropSubtitleAsset> (other_asset);
101         if (!other) {
102                 return false;
103         }
104
105         list<shared_ptr<InteropLoadFontNode> >::const_iterator i = _load_font_nodes.begin ();
106         list<shared_ptr<InteropLoadFontNode> >::const_iterator j = other->_load_font_nodes.begin ();
107
108         while (i != _load_font_nodes.end ()) {
109                 if (j == other->_load_font_nodes.end ()) {
110                         note (DCP_ERROR, "<LoadFont> nodes differ");
111                         return false;
112                 }
113
114                 if (**i != **j) {
115                         note (DCP_ERROR, "<LoadFont> nodes differ");
116                         return false;
117                 }
118
119                 ++i;
120                 ++j;
121         }
122
123         if (_movie_title != other->_movie_title) {
124                 note (DCP_ERROR, "Subtitle movie titles differ");
125                 return false;
126         }
127
128         return true;
129 }
130
131 list<shared_ptr<LoadFontNode> >
132 InteropSubtitleAsset::load_font_nodes () const
133 {
134         list<shared_ptr<LoadFontNode> > lf;
135         copy (_load_font_nodes.begin(), _load_font_nodes.end(), back_inserter (lf));
136         return lf;
137 }
138
139 /** Write this content to an XML file */
140 void
141 InteropSubtitleAsset::write (boost::filesystem::path p) const
142 {
143         FILE* f = fopen_boost (p, "w");
144         if (!f) {
145                 throw FileError ("Could not open file for writing", p, -1);
146         }
147         
148         Glib::ustring const s = xml_as_string ();
149         fwrite (s.c_str(), 1, s.bytes(), f);
150         fclose (f);
151
152         _file = p;
153 }