1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/*
* Embedded Linux library
* Copyright (C) 2011-2015 Intel Corporation
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#ifndef __ELL_RINGBUF_H
#define __ELL_RINGBUF_H
#include <stdlib.h>
#include <stdarg.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef void (*l_ringbuf_tracing_func_t)(const void *buf, size_t count,
void *user_data);
struct l_ringbuf;
struct l_ringbuf *l_ringbuf_new(size_t size);
void l_ringbuf_free(struct l_ringbuf *ringbuf);
bool l_ringbuf_set_input_tracing(struct l_ringbuf *ringbuf,
l_ringbuf_tracing_func_t callback, void *user_data);
size_t l_ringbuf_capacity(struct l_ringbuf *ringbuf);
size_t l_ringbuf_len(struct l_ringbuf *ringbuf);
size_t l_ringbuf_drain(struct l_ringbuf *ringbuf, size_t count);
void *l_ringbuf_peek(struct l_ringbuf *ringbuf, size_t offset,
size_t *len_nowrap);
ssize_t l_ringbuf_write(struct l_ringbuf *ringbuf, int fd);
size_t l_ringbuf_avail(struct l_ringbuf *ringbuf);
int l_ringbuf_printf(struct l_ringbuf *ringbuf, const char *format, ...)
__attribute__((format(printf, 2, 3)));
int l_ringbuf_vprintf(struct l_ringbuf *ringbuf, const char *format,
va_list ap)
__attribute__((format(printf, 2, 0)));
ssize_t l_ringbuf_read(struct l_ringbuf *ringbuf, int fd);
ssize_t l_ringbuf_append(struct l_ringbuf *ringbuf,
const void *data, size_t len);
#ifdef __cplusplus
}
#endif
#endif /* __ELL_RINGBUF_H */
|