5.12.5 Writer

enum SerdWriterFlag

Writer style options.

These flags allow more precise control of writer output style. Note that some options are only supported for some syntaxes, for example, NTriples does not support abbreviation and is always ASCII.

enumerator SERD_WRITE_ASCII

Escape all non-ASCII characters.

Although all the supported syntaxes are UTF-8 by definition, this can be used to escape all non-ASCII characters so that data will survive transmission through ASCII-only channels.

enumerator SERD_WRITE_EXPANDED

Write expanded URIs instead of prefixed names.

This will avoid shortening URIs into CURIEs entirely, even if the output syntax supports prefixed names. This can be useful for making chunks of syntax context-free.

enumerator SERD_WRITE_VERBATIM

Write URI references exactly as they are received.

Normally, the writer resolves URIs against the base URI, so it can potentially writem them as relative URI references. This flag disables that, so URI nodes are written exactly as they are received.

When fed by a reader with SerdReaderFlag.SERD_READ_RELATIVE enabled, this will write URI references exactly as they are in the input.

enumerator SERD_WRITE_TERSE

Write terser output without newlines.

For Turtle and TriG, this enables a terser form of output which only has newlines at the top level. This can result in very long lines, but is more compact and useful for making these abbreviated syntaxes line-based.

enumerator SERD_WRITE_LAX

Tolerate lossy output.

This will tolerate input that can not be written without loss, in particular invalid UTF-8 text. Note that this flag should be used carefully, since it can result in data loss.

enumerator SERD_WRITE_RDF_TYPE

Write rdf:type as a normal predicate.

This disables the special “a” syntax in Turtle and TriG.

enumerator SERD_WRITE_CONTEXTUAL

Suppress writing directives that describe the context.

This writes data as usual, but suppresses writing prefix directives in Turtle and TriG. The resulting output is a fragment of a document with implicit context, so it will only be readable in a suitable enviromnent.

typedef struct SerdWriterImpl SerdWriter

Streaming writer that writes a text stream as it receives events.

typedef uint32_t SerdWriterFlags

Bitwise OR of SerdWriterFlag values.

SerdWriter *serd_writer_new(SerdWorld *world, SerdSyntax syntax, SerdWriterFlags flags, const SerdEnv *env, SerdOutputStream *output, size_t block_size)

Create a new RDF writer.

void serd_writer_free(SerdWriter *writer)

Free writer

const SerdSink *serd_writer_sink(SerdWriter *writer)

Return a sink interface that emits statements via writer

SerdStatus serd_writer_set_base_uri(SerdWriter *writer, const SerdNode *uri)

Set the current output base URI, and emit a directive if applicable.

Note this function can be safely casted to SerdBaseSink.

SerdStatus serd_writer_set_root_uri(SerdWriter *writer, SerdStringView uri)

Set the current root URI.

The root URI should be a prefix of the base URI. The path of the root URI is the highest path any relative up-reference can refer to. For example, with root file:///foo/root and base file:///foo/root/base, file:///foo/root will be written as <../>, but file:///foo will be written non-relatively as file:///foo. If the root is not explicitly set, it defaults to the base URI, so no up-references will be created at all.

SerdStatus serd_writer_finish(SerdWriter *writer)

Finish a write.

This flushes any pending output, for example terminating punctuation, so that the output is a complete document.