blob: 92d6a2f231eddec1fa83fb6c01d548ec850b7962 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file strrb.h
2 * Osmocom string ringbuffer handling routines. */
3/*
4 * (C) 2012-2013 by Katerina Barone-Adesi <kat.obsc@gmail.com>
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +00005 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
Harald Welte33e940b2014-10-26 20:52:25 +01009 * the Free Software Foundation; either version 2 of the License, or
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +000010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +000017 */
18
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020019#pragma once
20
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +000021/*! \defgroup osmo_strrb Osmocom ringbuffers for log strings
22 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020023 * \file strrb.h */
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +000024
25#include <unistd.h>
26#include <stdbool.h>
27#include <stdint.h>
28
Neels Hofmeyr87e45502017-06-20 00:17:59 +020029/*! A structure representing an osmocom string ringbuffer */
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +000030
31#define RB_MAX_MESSAGE_SIZE 240
32struct osmo_strrb {
Neels Hofmeyr87e45502017-06-20 00:17:59 +020033 uint16_t start; /*!< index of the first slot */
34 uint16_t end; /*!< index of the last slot */
35 uint16_t size; /*!< max number of messages to store */
36 char **buffer; /*!< storage for messages */
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +000037};
38
Vadim Yanitskiy37dc9952023-03-31 05:39:04 +070039struct osmo_strrb *osmo_strrb_create(void *talloc_ctx, size_t rb_size);
Katerina Barone-Adesi3309a432013-02-21 05:16:29 +000040bool osmo_strrb_is_empty(const struct osmo_strrb *rb);
41const char *osmo_strrb_get_nth(const struct osmo_strrb *rb,
42 unsigned int string_index);
43bool _osmo_strrb_is_bufindex_valid(const struct osmo_strrb *rb,
44 unsigned int offset);
45size_t osmo_strrb_elements(const struct osmo_strrb *rb);
46int osmo_strrb_add(struct osmo_strrb *rb, const char *data);
47
48/*! @} */