summaryrefslogtreecommitdiffstats
path: root/src/plugin.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-14 17:10:38 +0000
committerDavid Robillard <d@drobilla.net>2009-02-14 17:10:38 +0000
commit8906e6f6b3bb0a38c27fd0c8c9ff347890aeb0a5 (patch)
treef2ddf2bc808b3035c4420f75d3eb70858facbbd5 /src/plugin.c
parent44a56b1c91e8145421dbf3cd414d6fb482ed6959 (diff)
downloadlilv-8906e6f6b3bb0a38c27fd0c8c9ff347890aeb0a5.tar.gz
lilv-8906e6f6b3bb0a38c27fd0c8c9ff347890aeb0a5.tar.bz2
lilv-8906e6f6b3bb0a38c27fd0c8c9ff347890aeb0a5.zip
Remove dead code.
Test coverage. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@1935 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/plugin.c')
-rw-r--r--src/plugin.c49
1 files changed, 14 insertions, 35 deletions
diff --git a/src/plugin.c b/src/plugin.c
index b58a3ec..1986f2c 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -404,23 +404,11 @@ slv2_plugin_get_value(SLV2Plugin p,
char* query = NULL;
/* Hack around broken RASQAL, full URI predicates don't work :/ */
-
- if (predicate->type == SLV2_VALUE_URI) {
- query = slv2_strjoin(
- "PREFIX slv2predicate: <", slv2_value_as_string(predicate), ">\n",
- "SELECT DISTINCT ?value WHERE {\n"
- "<> slv2predicate: ?value .\n"
- "}\n", NULL);
- } else if (predicate->type == SLV2_VALUE_QNAME) {
- query = slv2_strjoin(
- "SELECT DISTINCT ?value WHERE {\n"
- "<> ", slv2_value_as_string(predicate), " ?value .\n"
- "}\n", NULL);
- } else {
- fprintf(stderr, "slv2_plugin_get_value error: "
- "predicate is not a URI or QNAME\n");
- return NULL;
- }
+ query = slv2_strjoin(
+ "PREFIX slv2predicate: <", slv2_value_as_string(predicate), ">\n",
+ "SELECT DISTINCT ?value WHERE {\n"
+ "<> slv2predicate: ?value .\n"
+ "}\n", NULL);
SLV2Values result = slv2_plugin_query_variable(p, query, 0);
@@ -480,27 +468,16 @@ slv2_plugin_get_value_for_subject(SLV2Plugin p,
char* query = NULL;
- /* Hack around broken RASQAL, full URI predicates don't work :/ */
+
char* subject_token = slv2_value_get_turtle_token(subject);
- if (predicate->type == SLV2_VALUE_URI) {
- query = slv2_strjoin(
- "PREFIX slv2predicate: <", slv2_value_as_string(predicate), ">\n",
- "SELECT DISTINCT ?value WHERE {\n",
- subject_token, " slv2predicate: ?value .\n"
- "}\n", NULL);
- } else if (predicate->type == SLV2_VALUE_QNAME) {
- query = slv2_strjoin(
- "SELECT DISTINCT ?value WHERE {\n",
- subject_token, " ", slv2_value_as_string(predicate), " ?value .\n"
- "}\n", NULL);
- } else {
- fprintf(stderr, "slv2_plugin_get_value error: "
- "predicate is not a URI or QNAME\n");
- free(subject_token);
- return NULL;
- }
+ /* Hack around broken RASQAL, full URI predicates don't work :/ */
+ query = slv2_strjoin(
+ "PREFIX slv2predicate: <", slv2_value_as_string(predicate), ">\n",
+ "SELECT DISTINCT ?value WHERE {\n",
+ subject_token, " slv2predicate: ?value .\n"
+ "}\n", NULL);
SLV2Values result = slv2_plugin_query_variable(p, query, 0);
@@ -514,6 +491,7 @@ slv2_plugin_get_value_for_subject(SLV2Plugin p,
SLV2Values
slv2_plugin_get_properties(SLV2Plugin p)
{
+ // FIXME: APIBREAK: This predicate does not even exist. Remove this function.
return slv2_plugin_get_value_by_qname(p, "lv2:pluginProperty");
}
@@ -521,6 +499,7 @@ slv2_plugin_get_properties(SLV2Plugin p)
SLV2Values
slv2_plugin_get_hints(SLV2Plugin p)
{
+ // FIXME: APIBREAK: This predicate does not even exist. Remove this function.
return slv2_plugin_get_value_by_qname(p, "lv2:pluginHint");
}