From 22f5f5c7e32b043433103edb404bfbe43effa15d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 12 May 2011 22:50:07 +0000 Subject: Add base_uri parameter to sord_read_file. Add sord_write_writer. Use command line base URI in sordi if given. Use correct output style options for output syntax in sordi. Use sord_write_writer in sordi instead of manual writing code. Abbreviate serialised model output for Turtle. Preserve UTF-8 length information for nodes from Serd. Use string lengths not including terminator (match new Serd). Add test suite. git-svn-id: http://svn.drobilla.net/sord/trunk@111 3d64ff67-21c5-427c-a301-fe4f08042e5a --- sord/sord.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'sord/sord.h') diff --git a/sord/sord.h b/sord/sord.h index 4941291..d14e64a 100644 --- a/sord/sord.h +++ b/sord/sord.h @@ -427,12 +427,15 @@ sord_quad_match(const SordQuad x, const SordQuad y); /** Read a file into a model. + + The @c base_uri may be NULL, in which case @c uri will be used. */ SORD_API bool sord_read_file(SordModel* model, SerdEnv* env, const uint8_t* uri, + const uint8_t* base_uri, SordNode* graph, const uint8_t* blank_prefix); @@ -481,6 +484,12 @@ sord_write_file_handle(SordModel* model, SordNode* graph, const uint8_t* blank_prefix); +SORD_API +bool +sord_write_writer(SordModel* model, + SerdWriter* writer, + SordNode* graph); + /** Write a model to a string. -- cgit v1.2.1