diff options
author | David Robillard <d@drobilla.net> | 2008-11-27 02:29:50 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-11-27 02:29:50 +0000 |
commit | df9fc0187cb4c472190866fe352d42a415464a6b (patch) | |
tree | cc14b20751759629668ed5efa816622ce6c77598 | |
parent | ca3bd4c24b7db71b774a560dc4089321d74fee4d (diff) | |
download | ingen-df9fc0187cb4c472190866fe352d42a415464a6b.tar.gz ingen-df9fc0187cb4c472190866fe352d42a415464a6b.tar.bz2 ingen-df9fc0187cb4c472190866fe352d42a415464a6b.zip |
Tolate paths with '.' elements (e.g. ingen -egl ./foo.ingen.ttl).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1785 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/serialisation/Parser.cpp | 30 | ||||
-rw-r--r-- | src/serialisation/Parser.hpp | 2 |
2 files changed, 21 insertions, 11 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index e153a9a5..f4e1f40c 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -55,6 +55,15 @@ Parser::uri_relative_to_base(Glib::ustring base, const Glib::ustring uri) } +static void +normalise_uri(Glib::ustring& uri) +{ + size_t dotslash = string::npos; + while ((dotslash = uri.find("./")) != string::npos) + uri = uri.substr(0, dotslash) + uri.substr(dotslash + 2); +} + + /** Parse a patch from RDF into a CommonInterface (engine or client). * @return whether or not load was successful. */ @@ -62,21 +71,22 @@ bool Parser::parse_document( Ingen::Shared::World* world, Ingen::Shared::CommonInterface* target, - const Glib::ustring& document_uri, + Glib::ustring document_uri, Glib::ustring object_uri, Glib::ustring engine_base, boost::optional<Raul::Symbol> symbol, boost::optional<GraphObject::Variables> data) { + normalise_uri(document_uri); + normalise_uri(object_uri); + normalise_uri(engine_base); + Redland::Model model(*world->rdf_world, document_uri, document_uri); - if (object_uri == document_uri || object_uri == "") { - cout << "Parsing " << object_uri << " from " << document_uri << endl; - cout << "Base: " << engine_base; - cout << ", Symbol: " << ((bool)symbol ? symbol.get() : "_") << endl; - } else { - cout << "Parsing " << object_uri << " from " << document_uri << endl; - } + cout << "[Parser] Parsing " << object_uri << " from " << document_uri << endl; + cout << "[Parser] Base: " << engine_base << endl; + if (symbol) + cout << "[Parser] Symbol: " << symbol.get() << endl; return parse(world, target, model, document_uri, engine_base, object_uri, symbol, data);; } @@ -317,7 +327,7 @@ Parser::parse_patch( /* Get polyphony from file (mandatory if not specified in parameters) */ if (patch_poly == 0) { Redland::Query query(*world->rdf_world, Glib::ustring( - "SELECT DISTINCT ?poly WHERE { ") + subject + " ingen:polyphony ?poly\n }"); + "SELECT DISTINCT ?poly WHERE { ") + subject + " ingen:polyphony ?poly }"); Redland::Query::Results results = query.run(*world->rdf_world, model, base_uri); @@ -339,7 +349,7 @@ Parser::parse_patch( symbol = base_uri.substr(base_uri.find_last_of("/") + 1); symbol = symbol.substr(0, symbol.find(".")); } - + Path patch_path("/"); if (engine_base == "") patch_path = "/"; diff --git a/src/serialisation/Parser.hpp b/src/serialisation/Parser.hpp index 0210a4bb..b2d8d7e7 100644 --- a/src/serialisation/Parser.hpp +++ b/src/serialisation/Parser.hpp @@ -43,7 +43,7 @@ public: virtual bool parse_document( Ingen::Shared::World* world, Shared::CommonInterface* target, - const Glib::ustring& document_uri, + Glib::ustring document_uri, Glib::ustring engine_base, Glib::ustring object_uri, boost::optional<Raul::Symbol> symbol=boost::optional<Raul::Symbol>(), |