server-skynet-source-3rd-je.../include/jemalloc/internal/buf_writer.h
2020-02-04 13:21:58 -08:00

37 lines
1.2 KiB
C

#ifndef JEMALLOC_INTERNAL_BUF_WRITER_H
#define JEMALLOC_INTERNAL_BUF_WRITER_H
/*
* Note: when using the buffered writer, cbopaque is passed to write_cb only
* when the buffer is flushed. It would make a difference if cbopaque points
* to something that's changing for each write_cb call, or something that
* affects write_cb in a way dependent on the content of the output string.
* However, the most typical usage case in practice is that cbopaque points to
* some "option like" content for the write_cb, so it doesn't matter.
*/
typedef struct {
void (*write_cb)(void *, const char *);
void *cbopaque;
char *buf;
size_t buf_size;
size_t buf_end;
} buf_writer_t;
JEMALLOC_ALWAYS_INLINE void
buf_writer_init(buf_writer_t *buf_writer, void (*write_cb)(void *,
const char *), void *cbopaque, char *buf, size_t buf_len) {
buf_writer->write_cb = write_cb;
buf_writer->cbopaque = cbopaque;
assert(buf != NULL);
buf_writer->buf = buf;
assert(buf_len >= 2);
buf_writer->buf_size = buf_len - 1; /* Allowing for '\0' at the end. */
buf_writer->buf_end = 0;
}
void buf_writer_flush(buf_writer_t *buf_writer);
void buf_writer_cb(void *buf_writer_arg, const char *s);
#endif /* JEMALLOC_INTERNAL_BUF_WRITER_H */