2020-01-10 08:36:09 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_BUF_WRITER_H
|
|
|
|
#define JEMALLOC_INTERNAL_BUF_WRITER_H
|
|
|
|
|
2023-06-10 08:37:47 +08:00
|
|
|
#include "jemalloc/internal/jemalloc_preamble.h"
|
|
|
|
#include "jemalloc/internal/jemalloc_internal_types.h"
|
|
|
|
#include "jemalloc/internal/tsd_types.h"
|
|
|
|
|
2020-01-10 08:36:09 +08:00
|
|
|
/*
|
|
|
|
* 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 {
|
2020-03-21 01:48:55 +08:00
|
|
|
write_cb_t *write_cb;
|
|
|
|
void *cbopaque;
|
2020-01-10 08:36:09 +08:00
|
|
|
char *buf;
|
2020-01-10 08:50:09 +08:00
|
|
|
size_t buf_size;
|
2020-01-10 08:36:09 +08:00
|
|
|
size_t buf_end;
|
2020-02-04 07:56:13 +08:00
|
|
|
bool internal_buf;
|
2020-01-24 07:00:01 +08:00
|
|
|
} buf_writer_t;
|
2020-01-10 08:36:09 +08:00
|
|
|
|
2020-02-04 07:56:13 +08:00
|
|
|
bool buf_writer_init(tsdn_t *tsdn, buf_writer_t *buf_writer,
|
|
|
|
write_cb_t *write_cb, void *cbopaque, char *buf, size_t buf_len);
|
2020-01-24 07:00:01 +08:00
|
|
|
void buf_writer_flush(buf_writer_t *buf_writer);
|
2020-03-21 01:48:55 +08:00
|
|
|
write_cb_t buf_writer_cb;
|
2020-02-04 07:56:13 +08:00
|
|
|
void buf_writer_terminate(tsdn_t *tsdn, buf_writer_t *buf_writer);
|
2020-01-10 08:36:09 +08:00
|
|
|
|
2020-03-21 04:47:09 +08:00
|
|
|
typedef ssize_t (read_cb_t)(void *read_cbopaque, void *buf, size_t limit);
|
|
|
|
void buf_writer_pipe(buf_writer_t *buf_writer, read_cb_t *read_cb,
|
|
|
|
void *read_cbopaque);
|
|
|
|
|
2020-01-10 08:36:09 +08:00
|
|
|
#endif /* JEMALLOC_INTERNAL_BUF_WRITER_H */
|