diff options
author | David Robillard <d@drobilla.net> | 2021-01-13 14:31:00 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-13 15:33:54 -0500 |
commit | f078026b3c5d63c494381d3573a8107ddd7d78f7 (patch) | |
tree | 1aec4cd71120f9c3ab92542780c9d9d10d210965 /include | |
parent | 1644a72d32fec7833c9f487e9ed9b99e303fc015 (diff) | |
download | serd-f078026b3c5d63c494381d3573a8107ddd7d78f7.tar.gz serd-f078026b3c5d63c494381d3573a8107ddd7d78f7.tar.bz2 serd-f078026b3c5d63c494381d3573a8107ddd7d78f7.zip |
Add SerdBuffer type for mutable buffers
This avoids const violations from abusing SerdChunk as a mutable buffer
for string sinks.
Diffstat (limited to 'include')
-rw-r--r-- | include/serd/serd.h | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h index 0d9a4444..db89e275 100644 --- a/include/serd/serd.h +++ b/include/serd/serd.h @@ -97,6 +97,12 @@ typedef struct { size_t len; ///< Length of chunk in bytes } SerdChunk; +/// A mutable buffer in memory +typedef struct { + void* SERD_NULLABLE buf; ///< Buffer + size_t len; ///< Size of buffer in bytes +} SerdBuffer; + /** Free memory allocated by Serd. @@ -900,26 +906,26 @@ serd_file_sink(const void* SERD_NONNULL buf, /** A convenience sink function for writing to a string. - This function can be used as a SerdSink to write to a SerdChunk which is + This function can be used as a SerdSink to write to a SerdBuffer which is resized as necessary with realloc(). The `stream` parameter must point to - an initialized SerdChunk. When the write is finished, the string should be - retrieved with serd_chunk_sink_finish(). + an initialized SerdBuffer. When the write is finished, the string should be + retrieved with serd_buffer_sink_finish(). */ SERD_API size_t -serd_chunk_sink(const void* SERD_NONNULL buf, - size_t len, - void* SERD_NONNULL stream); +serd_buffer_sink(const void* SERD_NONNULL buf, + size_t len, + void* SERD_NONNULL stream); /** - Finish a serialisation to a chunk with serd_chunk_sink(). + Finish a serialisation to a chunk with serd_buffer_sink(). The returned string is the result of the serialisation, which is null terminated (by this function) and owned by the caller. */ SERD_API uint8_t* SERD_NULLABLE -serd_chunk_sink_finish(SerdChunk* SERD_NONNULL stream); +serd_buffer_sink_finish(SerdBuffer* SERD_NONNULL stream); /** Set a function to be called when errors occur during writing. |