summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-10 02:03:12 +0000
committerDavid Robillard <d@drobilla.net>2012-05-10 02:03:12 +0000
commit3fc7e1a5189eabb84c6bffb15603bc860f348c6a (patch)
tree388a95e5928d6950160d30569009af313c6250a5
parent0de3a4f70eafb0dc40292990ddd4064ac6e0758f (diff)
downloadsratom-3fc7e1a5189eabb84c6bffb15603bc860f348c6a.tar.gz
sratom-3fc7e1a5189eabb84c6bffb15603bc860f348c6a.tar.bz2
sratom-3fc7e1a5189eabb84c6bffb15603bc860f348c6a.zip
Support writing Object Atoms as top level descriptions if subject and predicate are not given.
git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@4333 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--NEWS2
-rw-r--r--src/sratom.c29
2 files changed, 18 insertions, 13 deletions
diff --git a/NEWS b/NEWS
index c326008..7c2db26 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
sratom (9999) unstable;
* Correctly read objects with several rdf:type properties
+ * Support writing Object Atoms as top level descriptions if subject and
+ predicate are not given.
-- David Robillard <d@drobilla.net>
diff --git a/src/sratom.c b/src/sratom.c
index a1508a6..2e5ba22 100644
--- a/src/sratom.c
+++ b/src/sratom.c
@@ -163,18 +163,21 @@ list_end(SerdStatementSink sink,
static void
start_object(Sratom* sratom,
- uint32_t flags,
+ uint32_t* flags,
const SerdNode* subject,
const SerdNode* predicate,
const SerdNode* node,
const char* type)
{
- sratom->write_statement(sratom->handle, flags|SERD_ANON_O_BEGIN, NULL,
- subject, predicate, node, NULL, NULL);
+ if (subject && predicate) {
+ sratom->write_statement(sratom->handle, *flags|SERD_ANON_O_BEGIN, NULL,
+ subject, predicate, node, NULL, NULL);
+ *flags |= SERD_ANON_CONT;
+ }
if (type) {
SerdNode p = serd_node_from_string(SERD_URI, NS_RDF "type");
SerdNode o = serd_node_from_string(SERD_URI, USTR(type));
- sratom->write_statement(sratom->handle, SERD_ANON_CONT, NULL,
+ sratom->write_statement(sratom->handle, *flags, NULL,
node, &p, &o, NULL, NULL);
}
}
@@ -299,7 +302,7 @@ sratom_write(Sratom* sratom,
} else if (type_urid == sratom->atom_Event) {
const LV2_Atom_Event* ev = (const LV2_Atom_Event*)body;
gensym(&id, 'e', sratom->next_id++);
- start_object(sratom, flags, subject, predicate, &id, NULL);
+ start_object(sratom, &flags, subject, predicate, &id, NULL);
// TODO: beat time
SerdNode time = serd_node_new_integer(ev->time.frames);
SerdNode p = serd_node_from_string(SERD_URI,
@@ -317,7 +320,7 @@ sratom_write(Sratom* sratom,
}
} else if (type_urid == sratom->forge.Tuple) {
gensym(&id, 't', sratom->next_id++);
- start_object(sratom, flags, subject, predicate, &id, type);
+ start_object(sratom, &flags, subject, predicate, &id, type);
SerdNode p = serd_node_from_string(SERD_URI, NS_RDF "value");
flags |= SERD_LIST_O_BEGIN;
LV2_ATOM_TUPLE_BODY_FOREACH(body, size, i) {
@@ -331,7 +334,7 @@ sratom_write(Sratom* sratom,
} else if (type_urid == sratom->forge.Vector) {
const LV2_Atom_Vector_Body* vec = (const LV2_Atom_Vector_Body*)body;
gensym(&id, 'v', sratom->next_id++);
- start_object(sratom, flags, subject, predicate, &id, type);
+ start_object(sratom, &flags, subject, predicate, &id, type);
SerdNode p = serd_node_from_string(SERD_URI, (const uint8_t*)LV2_ATOM__childType);
SerdNode child_type = serd_node_from_string(
SERD_URI, (const uint8_t*)unmap->unmap(unmap->handle, vec->child_type));
@@ -353,7 +356,7 @@ sratom_write(Sratom* sratom,
const char* otype = unmap->unmap(unmap->handle,
obj->otype);
gensym(&id, 'b', sratom->next_id++);
- start_object(sratom, flags, subject, predicate, &id, otype);
+ start_object(sratom, &flags, subject, predicate, &id, otype);
LV2_ATOM_OBJECT_BODY_FOREACH(obj, size, prop) {
const char* const key = unmap->unmap(unmap->handle, prop->key);
SerdNode pred = serd_node_from_string(SERD_URI, USTR(key));
@@ -361,13 +364,13 @@ sratom_write(Sratom* sratom,
prop->value.type, prop->value.size,
LV2_ATOM_BODY(&prop->value));
}
- if (sratom->end_anon) {
+ if (sratom->end_anon && subject && predicate) {
sratom->end_anon(sratom->handle, &id);
}
} else if (type_urid == sratom->forge.Sequence) {
const LV2_Atom_Sequence_Body* seq = (const LV2_Atom_Sequence_Body*)body;
gensym(&id, 'v', sratom->next_id++);
- start_object(sratom, flags, subject, predicate, &id, type);
+ start_object(sratom, &flags, subject, predicate, &id, type);
SerdNode p = serd_node_from_string(SERD_URI, NS_RDF "value");
flags |= SERD_LIST_O_BEGIN;
LV2_ATOM_SEQUENCE_BODY_FOREACH(seq, size, ev) {
@@ -377,17 +380,17 @@ sratom_write(Sratom* sratom,
ev);
}
list_end(sratom->write_statement, sratom->handle, &flags, &id, &p);
- if (sratom->end_anon) {
+ if (sratom->end_anon && subject && predicate) {
sratom->end_anon(sratom->handle, &id);
}
} else {
gensym(&id, 'b', sratom->next_id++);
- start_object(sratom, flags, subject, predicate, &id, type);
+ start_object(sratom, &flags, subject, predicate, &id, type);
SerdNode p = serd_node_from_string(SERD_URI, NS_RDF "value");
SerdNode o = serd_node_new_blob(body, size, true);
datatype = serd_node_from_string(SERD_URI, NS_XSD "base64Binary");
sratom->write_statement(sratom->handle, flags, NULL, &id, &p, &o, &datatype, NULL);
- if (sratom->end_anon) {
+ if (sratom->end_anon && subject && predicate) {
sratom->end_anon(sratom->handle, &id);
}
serd_node_free(&o);