Fix STL italic / underline (from master).
[libsub.git] / src / smpte_dcp_reader.cc
1 /*
2     Copyright (C) 2014-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 "smpte_dcp_reader.h"
21 #include "exceptions.h"
22 #include "xml.h"
23 #include "dcp/font.h"
24 #include "dcp/smpte_load_font.h"
25 #include <asdcp/KM_util.h>
26 #include <asdcp/AS_DCP.h>
27 #include <libcxml/cxml.h>
28 #include <boost/foreach.hpp>
29
30 using std::string;
31 using std::list;
32 using boost::shared_ptr;
33 using namespace sub;
34
35 SMPTEDCPReader::SMPTEDCPReader (boost::filesystem::path file, bool mxf)
36 {
37         shared_ptr<cxml::Document> xml (new cxml::Document ("SubtitleReel"));
38
39         if (mxf) {
40                 ASDCP::TimedText::MXFReader reader;
41                 Kumu::Result_t r = reader.OpenRead (file.string().c_str ());
42                 if (ASDCP_FAILURE (r)) {
43                         boost::throw_exception (MXFError ("could not open MXF file for reading"));
44                 }
45
46                 string s;
47                 reader.ReadTimedTextResource (s, 0, 0);
48                 xml->read_string (s);
49
50                 ASDCP::WriterInfo info;
51                 reader.FillWriterInfo (info);
52
53                 char buffer[64];
54                 Kumu::bin2UUIDhex (info.AssetUUID, ASDCP::UUIDlen, buffer, sizeof (buffer));
55                 _id = buffer;
56         } else {
57                 xml->read_file (file);
58                 _id = xml->string_child("Id").substr (9);
59         }
60
61         _load_font_nodes = type_children<dcp::SMPTELoadFont> (xml, "LoadFont");
62
63         parse_common (xml, xml->number_child<int> ("TimeCodeRate"));
64 }