summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-01-03 23:31:26 +0000
committerCarl Hetherington <cth@carlh.net>2015-01-03 23:31:26 +0000
commit35d8cf6d0e45cb5fff078dd984b492b3c83fa4ee (patch)
tree5a71dcc7a0fb52770ea28f9acd25cb0241833e16
parenta6ada5bc1f64c71ada4ebf53db297799eca6d333 (diff)
Add support for reading non-MXF-wrapped SMPTE subtitle files.
-rw-r--r--src/dcp.cc3
-rw-r--r--src/smpte_subtitle_content.cc40
-rw-r--r--src/smpte_subtitle_content.h6
-rw-r--r--test/smpte_subtitle_test.cc33
-rw-r--r--test/wscript1
5 files changed, 64 insertions, 19 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index ea55454a..589e3b3b 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -110,6 +110,9 @@ DCP::read (bool keep_going, ReadErrors* errors)
}
/* Read all the assets from the asset map */
+ /* XXX: I think we should be looking at the PKL here to decide type, not
+ the extension of the file.
+ */
for (map<string, boost::filesystem::path>::const_iterator i = paths.begin(); i != paths.end(); ++i) {
boost::filesystem::path path = _directory / i->second;
diff --git a/src/smpte_subtitle_content.cc b/src/smpte_subtitle_content.cc
index 1fa94d1c..d34c1dbe 100644
--- a/src/smpte_subtitle_content.cc
+++ b/src/smpte_subtitle_content.cc
@@ -31,29 +31,35 @@ using std::stringstream;
using boost::shared_ptr;
using namespace dcp;
-SMPTESubtitleContent::SMPTESubtitleContent (boost::filesystem::path file)
+SMPTESubtitleContent::SMPTESubtitleContent (boost::filesystem::path file, bool mxf)
: SubtitleContent (file)
{
- ASDCP::TimedText::MXFReader reader;
- Kumu::Result_t r = reader.OpenRead (file.string().c_str ());
- if (ASDCP_FAILURE (r)) {
- boost::throw_exception (MXFFileError ("could not open MXF file for reading", file, r));
- }
-
- string s;
- reader.ReadTimedTextResource (s, 0, 0);
shared_ptr<cxml::Document> xml (new cxml::Document ("SubtitleReel"));
- stringstream t;
- t << s;
- xml->read_stream (t);
- ASDCP::WriterInfo info;
- reader.FillWriterInfo (info);
+ if (mxf) {
+ ASDCP::TimedText::MXFReader reader;
+ Kumu::Result_t r = reader.OpenRead (file.string().c_str ());
+ if (ASDCP_FAILURE (r)) {
+ boost::throw_exception (MXFFileError ("could not open MXF file for reading", file, r));
+ }
- char buffer[64];
- Kumu::bin2UUIDhex (info.AssetUUID, ASDCP::UUIDlen, buffer, sizeof (buffer));
- _id = buffer;
+ string s;
+ reader.ReadTimedTextResource (s, 0, 0);
+ stringstream t;
+ t << s;
+ xml->read_stream (t);
+ ASDCP::WriterInfo info;
+ reader.FillWriterInfo (info);
+
+ char buffer[64];
+ Kumu::bin2UUIDhex (info.AssetUUID, ASDCP::UUIDlen, buffer, sizeof (buffer));
+ _id = buffer;
+ } else {
+ xml->read_file (file);
+ _id = xml->string_child("Id").substr (9);
+ }
+
_load_font_nodes = type_children<dcp::SMPTELoadFont> (xml, "LoadFont");
shared_ptr<cxml::Node> subtitle_list = xml->optional_node_child ("SubtitleList");
diff --git a/src/smpte_subtitle_content.h b/src/smpte_subtitle_content.h
index b760f727..70f6f260 100644
--- a/src/smpte_subtitle_content.h
+++ b/src/smpte_subtitle_content.h
@@ -26,8 +26,10 @@ class SMPTELoadFont;
class SMPTESubtitleContent : public SubtitleContent
{
public:
- /** @param file MXF file */
- SMPTESubtitleContent (boost::filesystem::path file);
+ /** @param file File name
+ * @param mxf true if `file' is a MXF, or false if it is an XML file.
+ */
+ SMPTESubtitleContent (boost::filesystem::path file, bool mxf = true);
private:
std::list<boost::shared_ptr<SMPTELoadFont> > _load_font_nodes;
diff --git a/test/smpte_subtitle_test.cc b/test/smpte_subtitle_test.cc
new file mode 100644
index 00000000..74bfa7a2
--- /dev/null
+++ b/test/smpte_subtitle_test.cc
@@ -0,0 +1,33 @@
+/*
+ Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "smpte_subtitle_content.h"
+#include "test.h"
+#include <boost/test/unit_test.hpp>
+
+/** Load a SMPTE XML subtitle file */
+BOOST_AUTO_TEST_CASE (smpte_subtitle_test)
+{
+ dcp::SMPTESubtitleContent sc (private_test / "8dfafe11-2bd1-4206-818b-afc109cfe7f6_reel1.xml", false);
+
+ BOOST_REQUIRE_EQUAL (sc.id(), "8dfafe11-2bd1-4206-818b-afc109cfe7f6");
+ BOOST_REQUIRE_EQUAL (sc.subtitles().size(), 159);
+ BOOST_REQUIRE_EQUAL (sc.subtitles().front().text(), "Jonas ?");
+ BOOST_REQUIRE_EQUAL (sc.subtitles().back().text(), "Come on.");
+}
diff --git a/test/wscript b/test/wscript
index 1208dd0e..f669c378 100644
--- a/test/wscript
+++ b/test/wscript
@@ -47,6 +47,7 @@ def build(bld):
rgb_xyz_test.cc
round_trip_test.cc
smpte_load_font_test.cc
+ smpte_subtitle_test.cc
subtitle_test.cc
test.cc
text_test.cc