Mercurial > hg > sonic-annotator
annotate tests/misc-queries/test-query-pluginid-for-rdf @ 366:9f7297c47850
Update plugin handling to follow the smart pointers used in the svcore library. This is awkward in our context, and the outcome isn't a very nice one - but it
does look as if we had the potential for use-after-free in cases where a plugin
was both used "bare" and wrapped in an auto-deleting adapter; those should be
fixed now
author | Chris Cannam |
---|---|
date | Thu, 23 Apr 2020 15:51:55 +0100 |
parents | 92911f967a16 |
children |
rev | line source |
---|---|
Chris@0 | 1 |
Chris@0 | 2 PREFIX vamp: <http://purl.org/ontology/vamp/> |
Chris@0 | 3 PREFIX examples: <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins#> |
Chris@0 | 4 |
Chris@0 | 5 SELECT ?plugin ?library_id ?plugin_id |
Chris@0 | 6 FROM <http://vamp-plugins.org/rdf/plugins/vamp-example-plugins> |
Chris@0 | 7 |
Chris@0 | 8 WHERE { |
Chris@0 | 9 ?plugin a vamp:Plugin . |
Chris@0 | 10 ?plugin vamp:identifier ?plugin_id . |
Chris@0 | 11 OPTIONAL { ?library a vamp:PluginLibrary . |
Chris@0 | 12 ?library vamp:identifier ?library_id . |
Chris@0 | 13 ?library vamp:available_plugin ?plugin . } |
Chris@0 | 14 } |
Chris@0 | 15 |