diff options
author | David Robillard <d@drobilla.net> | 2020-12-26 19:23:13 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-31 13:25:56 +0100 |
commit | d101d926946a5e8067a90d157b6553aae7bddc19 (patch) | |
tree | e997425e9f972e402830d9ab8cb65005068e9619 /src/byte_sink.h | |
parent | 8a93d0b3be5b6d80a1bef85bc73b2661f5ab4376 (diff) | |
download | serd-d101d926946a5e8067a90d157b6553aae7bddc19.tar.gz serd-d101d926946a5e8067a90d157b6553aae7bddc19.tar.bz2 serd-d101d926946a5e8067a90d157b6553aae7bddc19.zip |
Format all code with clang-format
Diffstat (limited to 'src/byte_sink.h')
-rw-r--r-- | src/byte_sink.h | 95 |
1 files changed, 47 insertions, 48 deletions
diff --git a/src/byte_sink.h b/src/byte_sink.h index 71d525ce..b58d5d39 100644 --- a/src/byte_sink.h +++ b/src/byte_sink.h @@ -27,73 +27,72 @@ #include <string.h> typedef struct SerdByteSinkImpl { - SerdSink sink; - void* stream; - uint8_t* buf; - size_t size; - size_t block_size; + SerdSink sink; + void* stream; + uint8_t* buf; + size_t size; + size_t block_size; } SerdByteSink; static inline SerdByteSink serd_byte_sink_new(SerdSink sink, void* stream, size_t block_size) { - SerdByteSink bsink; - bsink.sink = sink; - bsink.stream = stream; - bsink.size = 0; - bsink.block_size = block_size; - bsink.buf = ((block_size > 1) - ? (uint8_t*)serd_allocate_buffer(block_size) - : NULL); - return bsink; + SerdByteSink bsink = {sink, stream, NULL, 0, block_size}; + + if (block_size > 1) { + bsink.buf = (uint8_t*)serd_allocate_buffer(block_size); + } + + return bsink; } static inline void serd_byte_sink_flush(SerdByteSink* bsink) { - if (bsink->block_size > 1 && bsink->size > 0) { - bsink->sink(bsink->buf, bsink->size, bsink->stream); - bsink->size = 0; - } + if (bsink->block_size > 1 && bsink->size > 0) { + bsink->sink(bsink->buf, bsink->size, bsink->stream); + bsink->size = 0; + } } static inline void serd_byte_sink_free(SerdByteSink* bsink) { - serd_byte_sink_flush(bsink); - serd_free_aligned(bsink->buf); - bsink->buf = NULL; + serd_byte_sink_flush(bsink); + serd_free_aligned(bsink->buf); + bsink->buf = NULL; } static inline size_t serd_byte_sink_write(const void* buf, size_t len, SerdByteSink* bsink) { - if (len == 0) { - return 0; - } - - if (bsink->block_size == 1) { - return bsink->sink(buf, len, bsink->stream); - } - - const size_t orig_len = len; - while (len) { - const size_t space = bsink->block_size - bsink->size; - const size_t n = MIN(space, len); - - // Write as much as possible into the remaining buffer space - memcpy(bsink->buf + bsink->size, buf, n); - bsink->size += n; - buf = (const uint8_t*)buf + n; - len -= n; - - // Flush page if buffer is full - if (bsink->size == bsink->block_size) { - bsink->sink(bsink->buf, bsink->block_size, bsink->stream); - bsink->size = 0; - } - } - return orig_len; + if (len == 0) { + return 0; + } + + if (bsink->block_size == 1) { + return bsink->sink(buf, len, bsink->stream); + } + + const size_t orig_len = len; + while (len) { + const size_t space = bsink->block_size - bsink->size; + const size_t n = MIN(space, len); + + // Write as much as possible into the remaining buffer space + memcpy(bsink->buf + bsink->size, buf, n); + bsink->size += n; + buf = (const uint8_t*)buf + n; + len -= n; + + // Flush page if buffer is full + if (bsink->size == bsink->block_size) { + bsink->sink(bsink->buf, bsink->block_size, bsink->stream); + bsink->size = 0; + } + } + + return orig_len; } -#endif // SERD_BYTE_SINK_H +#endif // SERD_BYTE_SINK_H |