diff options
author | David Robillard <d@drobilla.net> | 2015-10-24 17:59:05 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-24 17:59:05 +0000 |
commit | 84135d2b77b877665a56570b4ed15609c48c6e84 (patch) | |
tree | c606d4751b066adbdc046bed0193e9e2d62b1ca6 | |
parent | 1d92e1e205f35a9dd9cf671cef242491d56eefa0 (diff) | |
download | ingen-84135d2b77b877665a56570b4ed15609c48c6e84.tar.gz ingen-84135d2b77b877665a56570b4ed15609c48c6e84.tar.bz2 ingen-84135d2b77b877665a56570b4ed15609c48c6e84.zip |
Fix loading recursive graphs in LV2
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5776 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | ingen/Parser.hpp | 9 | ||||
-rw-r--r-- | src/Parser.cpp | 33 |
2 files changed, 31 insertions, 11 deletions
diff --git a/ingen/Parser.hpp b/ingen/Parser.hpp index 2f288384..039c6102 100644 --- a/ingen/Parser.hpp +++ b/ingen/Parser.hpp @@ -66,6 +66,15 @@ public: const std::string& manifest_uri, const Raul::URI& type_uri); + /** Parse a graph from RDF into a Interface (engine or client). + * + * @param path If this is a file path, then the graph is loaded from that + * file. If it is a directory, then the manifest.ttl from that directory + * is used instead. In either case, any rdfs:seeAlso files are loaded and + * the graph parsed from the resulting combined model. + * + * @return whether or not load was successful. + */ virtual bool parse_file( World* world, Interface* target, diff --git a/src/Parser.cpp b/src/Parser.cpp index c57c9ca5..c0b5660e 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -333,7 +333,7 @@ parse_block(Ingen::World* world, path.parent(), Raul::Symbol(path.symbol())); parse_graph(world, target, model, base_uri, - subject, Resource::Graph::DEFAULT, + sub_node, Resource::Graph::DEFAULT, path.parent(), Raul::Symbol(path.symbol())); } else { Resource::Properties props = get_properties( @@ -616,9 +616,6 @@ parse(Ingen::World* world, return boost::optional<Raul::Path>(); } -/** Parse a graph from RDF into a Interface (engine or client). - * @return whether or not load was successful. - */ bool Parser::parse_file(Ingen::World* world, Ingen::Interface* target, @@ -649,19 +646,33 @@ Parser::parse_file(Ingen::World* world, // Find graphs in manifest const std::set<ResourceRecord> resources = find_resources( - *world->rdf_world(), - Glib::filename_to_uri(manifest_path), - Raul::URI(INGEN__Graph)); + *world->rdf_world(), manifest_uri, Raul::URI(INGEN__Graph)); if (resources.empty()) { world->log().error(fmt("No graphs found in %1%\n") % path); return false; } - // Choose the first (only) graph (only one top-level graph per bundle) - const std::string& uri = (*resources.begin()).uri; - if ((file_path = (*resources.begin()).filename).empty()) { - // No seeAlso file, use "manifest" (probably the graph file itself) + /* Choose the graph to load. If this is a manifest, then there should only be + one, but if this is a graph file, subgraphs will be returned as well. + In this case, choose the one with the file URI. */ + std::string uri; + for (const ResourceRecord& r : resources) { + if (r.uri == Glib::filename_to_uri(manifest_path)) { + uri = r.uri; + file_path = r.filename; + break; + } + } + + if (uri.empty()) { + // Didn't find a graph with the same URI as the file, use the first + uri = (*resources.begin()).uri; + file_path = (*resources.begin()).filename; + } + + if (file_path.empty()) { + // No seeAlso file, use manifest (probably the graph file itself) file_path = manifest_path; } |