summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ingen/Parser.hpp9
-rw-r--r--src/Parser.cpp33
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;
}