summaryrefslogtreecommitdiffstats
path: root/src/client/ClientStore.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-11-09 03:45:35 +0000
committerDavid Robillard <d@drobilla.net>2008-11-09 03:45:35 +0000
commit72ffe8b96f492805b16df8d2ffa452e67046b974 (patch)
tree4c3e565f34e334c8cc3a58ab052ea2156eb4cfdc /src/client/ClientStore.cpp
parent5d1f579900182f283a1c21ad4e59daf7f035e219 (diff)
downloadingen-72ffe8b96f492805b16df8d2ffa452e67046b974.tar.gz
ingen-72ffe8b96f492805b16df8d2ffa452e67046b974.tar.bz2
ingen-72ffe8b96f492805b16df8d2ffa452e67046b974.zip
Add concept of 'Resource' and make plugins a resource (as well as graph objects).
Get rid of crufty imperative Plugin API. Loading of plugin data from engine over HTTP. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1713 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/ClientStore.cpp')
-rw-r--r--src/client/ClientStore.cpp31
1 files changed, 22 insertions, 9 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 8c54e96e..31ecbd3e 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -182,7 +182,7 @@ ClientStore::add_variable_orphan(const Path& subject_path, const string& predica
Raul::PathTable<list<std::pair<string, Atom> > >::iterator orphans
= _variable_orphans.find(subject_path);
- _engine->request_object(subject_path);
+ //_engine->request_object(subject_path);
if (orphans != _variable_orphans.end()) {
orphans->second.push_back(std::pair<string, Atom>(predicate, value));
@@ -420,7 +420,9 @@ ClientStore::rename(const Path& old_path, const Path& new_path)
void
ClientStore::new_plugin(const string& uri, const string& type_uri, const string& symbol, const string& name)
{
- SharedPtr<PluginModel> p(new PluginModel(uri, type_uri, symbol, name));
+ SharedPtr<PluginModel> p(new PluginModel(uri, type_uri));
+ p->set_property("lv2:symbol", Atom(Atom::STRING, symbol));
+ p->set_property("doap:name", Atom(Atom::STRING, name));
add_plugin(p);
resolve_plugin_orphans(p);
}
@@ -508,15 +510,26 @@ ClientStore::set_variable(const string& subject_path, const string& predicate, c
void
ClientStore::set_property(const string& subject_path, const string& predicate, const Atom& value)
{
- SharedPtr<ObjectModel> subject = object(subject_path);
+ if (!value.is_valid())
+ cerr << "WARNING: property '" << predicate << "' is NULL" << endl;
- if (!value.is_valid()) {
- cerr << "ERROR: property '" << predicate << "' has no type" << endl;
- } else if (subject) {
- subject->set_property(predicate, value);
+ if (Path::is_valid(subject_path)) {
+ SharedPtr<ObjectModel> obj = object(subject_path);
+ if (obj)
+ obj->set_property(predicate, value);
+ else
+ cerr << "WARNING: property for unknown object " << subject_path
+ << ". Refresh!" << endl;
} else {
- cerr << "WARNING: property for unknown object " << subject_path
- << " lost. Client must refresh!" << endl;
+ if (subject_path.find(":") != string::npos
+ && predicate == "rdf:type" && value.type() == Atom::URI) {
+ const std::string& type = value.get_uri();
+ if ( (type == "http://drobilla.net/ns/ingen#LADSPAPlugin")
+ || (type == "http://drobilla.net/ns/ingen#Internal")
+ || (type == "http://lv2plug.in/ns/lv2core#Plugin")) {
+ add_plugin(SharedPtr<PluginModel>(new PluginModel(subject_path, type)));
+ }
+ }
}
}