summaryrefslogtreecommitdiff
path: root/src/lib/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-08-23 00:27:12 +0100
committerCarl Hetherington <cth@carlh.net>2016-08-24 10:01:52 +0100
commitdf28b0e939bd0f12ae31e6f7ba94fa954496b3b8 (patch)
tree9dcdf8708fe678fc1419e90dc6fdc3f8da8fafb2 /src/lib/dcp.cc
parent2f1d460898f40844d47d6a3b858449ac09d8b342 (diff)
Allow import of OV/VF DCPs (#906).
Diffstat (limited to 'src/lib/dcp.cc')
-rw-r--r--src/lib/dcp.cc59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/lib/dcp.cc b/src/lib/dcp.cc
new file mode 100644
index 000000000..6d5c0b291
--- /dev/null
+++ b/src/lib/dcp.cc
@@ -0,0 +1,59 @@
+/*
+ Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
+
+ This file is part of DCP-o-matic.
+
+ DCP-o-matic 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.
+
+ DCP-o-matic 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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#include "dcp.h"
+#include "config.h"
+#include "dcp_content.h"
+#include <dcp/dcp.h>
+#include <dcp/decrypted_kdm.h>
+#include <boost/foreach.hpp>
+
+using std::list;
+using boost::shared_ptr;
+
+/** Find all the CPLs in our directories, cross-add assets and return the CPLs */
+list<shared_ptr<dcp::CPL> >
+DCP::cpls () const
+{
+ list<shared_ptr<dcp::DCP> > dcps;
+ list<shared_ptr<dcp::CPL> > cpls;
+
+ BOOST_FOREACH (boost::filesystem::path i, _dcp_content->directories()) {
+ shared_ptr<dcp::DCP> dcp (new dcp::DCP (i));
+ dcp->read (false, 0, true);
+ if (_dcp_content->kdm ()) {
+ dcp->add (dcp::DecryptedKDM (_dcp_content->kdm().get(), Config::instance()->decryption_chain()->key().get ()));
+ }
+ dcps.push_back (dcp);
+ BOOST_FOREACH (shared_ptr<dcp::CPL> i, dcp->cpls()) {
+ cpls.push_back (i);
+ }
+ }
+
+ BOOST_FOREACH (shared_ptr<dcp::DCP> i, dcps) {
+ BOOST_FOREACH (shared_ptr<dcp::DCP> j, dcps) {
+ if (i != j) {
+ i->resolve_refs (j->assets ());
+ }
+ }
+ }
+
+ return cpls;
+}