diff options
-rw-r--r-- | ingen/client/PortModel.hpp | 2 | ||||
-rw-r--r-- | ingen/shared/URIs.hpp | 3 | ||||
-rw-r--r-- | src/client/PortModel.cpp | 10 | ||||
-rw-r--r-- | src/gui/Port.cpp | 5 | ||||
-rw-r--r-- | src/serialisation/Parser.cpp | 9 | ||||
-rw-r--r-- | src/serialisation/Serialiser.cpp | 8 | ||||
-rw-r--r-- | src/shared/URIs.cpp | 4 | ||||
-rw-r--r-- | wscript | 2 |
8 files changed, 8 insertions, 35 deletions
diff --git a/ingen/client/PortModel.hpp b/ingen/client/PortModel.hpp index fd4e29ca..b6013d05 100644 --- a/ingen/client/PortModel.hpp +++ b/ingen/client/PortModel.hpp @@ -58,8 +58,6 @@ public: || ObjectModel::is_a("http://lv2plug.in/ns/ext/cv-port#CVPort"); } - bool has_context(const Raul::URI& context) const; - inline bool operator==(const PortModel& pm) const { return (path() == pm.path()); } void on_property(const Raul::URI& uri, const Raul::Atom& value); diff --git a/ingen/shared/URIs.hpp b/ingen/shared/URIs.hpp index c5e300e2..ec199ef7 100644 --- a/ingen/shared/URIs.hpp +++ b/ingen/shared/URIs.hpp @@ -59,9 +59,6 @@ public: const Quark atom_bufferType; const Quark atom_eventTransfer; const Quark atom_supports; - const Quark ctx_audioContext; - const Quark ctx_context; - const Quark ctx_messageContext; const Quark cv_CVPort; const Quark doap_name; const Quark ingen_Connection; diff --git a/src/client/PortModel.cpp b/src/client/PortModel.cpp index 8cdac7af..2e503100 100644 --- a/src/client/PortModel.cpp +++ b/src/client/PortModel.cpp @@ -60,15 +60,5 @@ PortModel::set(SharedPtr<ObjectModel> model) ObjectModel::set(model); } -bool -PortModel::has_context(const Raul::URI& uri) const -{ - const Raul::Atom& context = get_property(_uris.ctx_context); - if (uri == _uris.ctx_audioContext && !context.is_valid()) - return true; - else - return context == _uris.forge.alloc_uri(uri.str()); -} - } // namespace Client } // namespace Ingen diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index a6b72ace..7631837a 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -294,8 +294,6 @@ Port::property_changed(const URI& key, const Atom& value) } else if (key == uris.lv2_portProperty) { if (value == uris.lv2_toggled) set_control_is_toggle(true); - } else if (key == uris.ctx_context) { - Raul::info << "TODO: Visual indication of port context?" << std::endl; } else if (key == uris.lv2_name) { if (value.type() == uris.forge.String && _app.configuration()->name_style() == Configuration::HUMAN) { @@ -313,9 +311,6 @@ Port::dash() if (!pm) return NULL; - if (pm->has_context(uris.ctx_audioContext)) - return NULL; - if (!_dash) { _dash = new ArtVpathDash(); _dash->n_dash = 2; diff --git a/src/serialisation/Parser.cpp b/src/serialisation/Parser.cpp index 1ce1410b..edc0e534 100644 --- a/src/serialisation/Parser.cpp +++ b/src/serialisation/Parser.cpp @@ -34,7 +34,6 @@ #define LOG(s) s << "[Parser] " -#define NS_LV2 "http://lv2plug.in/ns/lv2core#" #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" #define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#" @@ -285,7 +284,7 @@ parse_patch(Ingen::Shared::World* world, { const Sord::URI ingen_node(*world->rdf_world(), NS_INGEN "node"); const Sord::URI ingen_polyphony(*world->rdf_world(), NS_INGEN "polyphony"); - const Sord::URI lv2_port(*world->rdf_world(), NS_LV2 "port"); + const Sord::URI lv2_port(*world->rdf_world(), LV2_CORE__port); const URIs& uris = *world->uris().get(); const Sord::Node& patch = subject_node; @@ -475,9 +474,9 @@ parse(Ingen::Shared::World* world, const Sord::URI node_class (*world->rdf_world(), NS_INGEN "Node"); const Sord::URI port_class (*world->rdf_world(), NS_INGEN "Port"); const Sord::URI internal_class(*world->rdf_world(), NS_INGEN "Internal"); - const Sord::URI in_port_class (*world->rdf_world(), NS_LV2 "InputPort"); - const Sord::URI out_port_class(*world->rdf_world(), NS_LV2 "OutputPort"); - const Sord::URI lv2_class (*world->rdf_world(), NS_LV2 "Plugin"); + const Sord::URI in_port_class (*world->rdf_world(), LV2_CORE__InputPort); + const Sord::URI out_port_class(*world->rdf_world(), LV2_CORE__OutputPort); + const Sord::URI lv2_class (*world->rdf_world(), LV2_CORE__Plugin); const Sord::URI rdf_type (*world->rdf_world(), NS_RDF "type"); Sord::Node subject = model.base_uri(); diff --git a/src/serialisation/Serialiser.cpp b/src/serialisation/Serialiser.cpp index c7e487c4..38c47dc3 100644 --- a/src/serialisation/Serialiser.cpp +++ b/src/serialisation/Serialiser.cpp @@ -48,8 +48,6 @@ #define LOG(s) s << "[Serialiser] " -#define NS_LV2 "http://lv2plug.in/ns/lv2core#" - using namespace std; using namespace Raul; using namespace Sord; @@ -431,12 +429,12 @@ Serialiser::Impl::serialise_patch(SharedPtr<const Patch> patch, const Sord::Node port_id = path_rdf_node(p->path()); // Ensure lv2:name always exists so Patch is a valid LV2 plugin - if (p->properties().find(NS_LV2 "name") == p->properties().end()) - p->set_property(NS_LV2 "name", + if (p->properties().find(LV2_CORE__name) == p->properties().end()) + p->set_property(LV2_CORE__name, _world.forge().alloc(p->symbol().c_str())); _model->add_statement(patch_id, - Sord::URI(world, NS_LV2 "port"), + Sord::URI(world, LV2_CORE__port), port_id); serialise_port(p, Resource::INTERNAL, port_id); } diff --git a/src/shared/URIs.cpp b/src/shared/URIs.cpp index 85d465ab..ae14782a 100644 --- a/src/shared/URIs.cpp +++ b/src/shared/URIs.cpp @@ -43,7 +43,6 @@ URIs::Quark::Quark(Ingen::Forge& forge, LV2URIMap* map, const char* c_str) { } -#define NS_CTX "http://lv2plug.in/ns/ext/contexts#" #define NS_INGEN "http://drobilla.net/ns/ingen#" #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" #define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#" @@ -64,9 +63,6 @@ URIs::URIs(Ingen::Forge& f, LV2URIMap* map) , atom_bufferType (forge, map, LV2_ATOM__bufferType) , atom_eventTransfer (forge, map, LV2_ATOM__eventTransfer) , atom_supports (forge, map, LV2_ATOM__supports) - , ctx_audioContext (forge, map, NS_CTX "audioContext") - , ctx_context (forge, map, NS_CTX "context") - , ctx_messageContext (forge, map, NS_CTX "messageContext") , cv_CVPort (forge, map, "http://lv2plug.in/ns/ext/cv-port#CVPort") , doap_name (forge, map, "http://usefulinc.com/ns/doap#name") , ingen_Connection (forge, map, NS_INGEN "Connection") @@ -89,7 +89,7 @@ def configure(conf): define_name='HAVE_POSIX_MEMALIGN', mandatory=False) - autowaf.check_pkg(conf, 'lv2', atleast_version='0.3.0', uselib_store='LV2') + autowaf.check_pkg(conf, 'lv2', atleast_version='0.5.0', uselib_store='LV2') autowaf.define(conf, 'INGEN_VERSION', INGEN_VERSION) |