summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-05-17 20:49:46 +0200
committerDavid Robillard <d@drobilla.net>2020-05-17 20:49:46 +0200
commitb3438131f4bff67d56243bac85371c03a86bf53b (patch)
treedc1c34ab1ae1024057306ee08113fd708185f911
parent20f2351a859568ca87bf71ef48a9ec4441c156f3 (diff)
downloadlilv-b3438131f4bff67d56243bac85371c03a86bf53b.tar.gz
lilv-b3438131f4bff67d56243bac85371c03a86bf53b.tar.bz2
lilv-b3438131f4bff67d56243bac85371c03a86bf53b.zip
Make lilv_world_get() use translations
-rw-r--r--NEWS6
-rw-r--r--src/world.c20
-rw-r--r--wscript2
3 files changed, 27 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index b2f881c..c1c06f7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+lilv (0.24.9) unstable;
+
+ * Make lilv_world_get() use translations
+
+ -- David Robillard <d@drobilla.net> Sun, 17 May 2020 18:44:04 +0000
+
lilv (0.24.8) stable;
* Allow passing strings for URIs in Python API when unambiguous
diff --git a/src/world.c b/src/world.c
index 22d165a..65cffd4 100644
--- a/src/world.c
+++ b/src/world.c
@@ -240,6 +240,26 @@ lilv_world_get(LilvWorld* world,
const LilvNode* predicate,
const LilvNode* object)
{
+ if (!object) {
+ // TODO: Improve performance (see lilv_plugin_get_one)
+ SordIter* stream = sord_search(world->model,
+ subject ? subject->node : NULL,
+ predicate ? predicate->node : NULL,
+ NULL,
+ NULL);
+
+ LilvNodes* nodes =
+ lilv_nodes_from_stream_objects(world, stream, SORD_OBJECT);
+
+ if (nodes) {
+ LilvNode* value = lilv_node_duplicate(lilv_nodes_get_first(nodes));
+ lilv_nodes_free(nodes);
+ return value;
+ }
+
+ return NULL;
+ }
+
SordNode* snode = sord_get(world->model,
subject ? subject->node : NULL,
predicate ? predicate->node : NULL,
diff --git a/wscript b/wscript
index eac32f9..1eae95d 100644
--- a/wscript
+++ b/wscript
@@ -12,7 +12,7 @@ from waflib.extras import autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-LILV_VERSION = '0.24.8'
+LILV_VERSION = '0.24.9'
LILV_MAJOR_VERSION = '0'
# Mandatory waf variables