summaryrefslogtreecommitdiffstats
path: root/src/serialisation
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-28 23:11:21 +0000
committerDavid Robillard <d@drobilla.net>2009-05-28 23:11:21 +0000
commitb3c31c94eb572063ec97f24a89e5f7f98d5eae41 (patch)
tree1b8096a810fb56798c69e43e85938f059da18622 /src/serialisation
parenta1b651326087ffce165635af4fba1c70c16b5b31 (diff)
downloadingen-b3c31c94eb572063ec97f24a89e5f7f98d5eae41.tar.gz
ingen-b3c31c94eb572063ec97f24a89e5f7f98d5eae41.tar.bz2
ingen-b3c31c94eb572063ec97f24a89e5f7f98d5eae41.zip
Working engine->client plugin information communication via HTTP.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2044 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/serialisation')
-rw-r--r--src/serialisation/Parser.cpp24
-rw-r--r--src/serialisation/Parser.hpp2
2 files changed, 13 insertions, 13 deletions
diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp
index 07c077e0..e01adc1f 100644
--- a/src/serialisation/Parser.cpp
+++ b/src/serialisation/Parser.cpp
@@ -251,13 +251,6 @@ Parser::parse(
if (!data_path)
path_str = relative_uri(document_uri, subject.to_c_string(), true);
- else if (path_str == "" || path_str[0] != '/')
- path_str = "/" + path_str;
-
- if (!Path::is_valid(path_str)) {
- cerr << "WARNING: Invalid path '" << path_str << "', object skipped" << endl;
- continue;
- }
const bool is_plugin = (rdf_class == ladspa_class)
|| (rdf_class == lv2_class)
@@ -271,6 +264,13 @@ Parser::parse(
const Glib::ustring subject_uri_tok = Glib::ustring("<").append(subject).append(">");
if (is_object) {
+ if (path_str == "" || path_str[0] != '/')
+ path_str = "/" + path_str;
+
+ if (!Path::is_valid(path_str)) {
+ cerr << "WARNING: Invalid path '" << path_str << "', object skipped" << endl;
+ continue;
+ }
string path = (parent && symbol)
? parent->base() + *symbol
@@ -298,8 +298,8 @@ Parser::parse(
root_path = ret;
} else if (is_plugin) {
- if (URI::is_valid(path_str))
- target->set_property(path_str, "rdf:type", Atom(Atom::URI, rdf_class.to_c_string()));
+ if (URI::is_valid(subject.to_string()))
+ parse_properties(world, target, model, subject, subject.to_string());
}
}
@@ -690,7 +690,7 @@ Parser::parse_properties(
Ingen::Shared::CommonInterface* target,
Redland::Model& model,
const Redland::Node& subject_node,
- const Raul::Path& path,
+ const Raul::URI& uri,
boost::optional<GraphObject::Properties> data)
{
const Glib::ustring& subject = subject_node.to_turtle_token();
@@ -710,11 +710,11 @@ Parser::parse_properties(
properties.insert(make_pair(key, AtomRDF::node_to_atom(val)));
}
- target->put(path, properties);
+ target->put(uri, properties);
// Set passed properties last to override any loaded values
if (data)
- target->put(path, data.get());
+ target->put(uri, data.get());
return true;
}
diff --git a/src/serialisation/Parser.hpp b/src/serialisation/Parser.hpp
index 4235f197..07855826 100644
--- a/src/serialisation/Parser.hpp
+++ b/src/serialisation/Parser.hpp
@@ -100,7 +100,7 @@ private:
Ingen::Shared::CommonInterface* target,
Redland::Model& model,
const Redland::Node& subject,
- const Raul::Path& path,
+ const Raul::URI& uri,
boost::optional<Properties> data=boost::optional<Properties>());
bool parse_connections(