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 54 55 56 57 58 59 60 61 62
|
/**
\file databuffer.h
Network buffer handling routines.
OpenOBEX library - Free implementation of the Object Exchange protocol.
Copyright (c) 2005 Herton Ronaldo Krzesinski, All Rights Reserved.
OpenOBEX is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation; either version 2.1 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with OpenOBEX. If not, see <http://www.gnu.org/>.
*/
#ifndef DATABUFFER_H
#define DATABUFFER_H
#define __need_size_t
#include <stddef.h>
#include <stdint.h>
/*
* Implements a single linked list
*/
typedef struct _slist_t {
void *data;
struct _slist_t *next;
} slist_t;
typedef struct {
uint8_t *buffer; // buffer containing the allocated space
uint8_t *data; // pointer to the location of *buffer where there is valid data
size_t head_avail; // number of allocated space available in front of buffer
size_t data_avail; // allocated space available not specific for head or tail
size_t tail_avail; // number of allocated space available at end of buffer
size_t data_size; // number of allocated space used
} buf_t;
buf_t *buf_new(size_t default_size);
size_t buf_total_size(buf_t *p);
void buf_resize(buf_t *p, size_t new_size);
buf_t *buf_reuse(buf_t *p);
void *buf_reserve_begin(buf_t *p, size_t data_size);
void *buf_reserve_end(buf_t *p, size_t data_size);
void buf_insert_begin(buf_t *p, uint8_t *data, size_t data_size);
void buf_insert_end(buf_t *p, uint8_t *data, size_t data_size);
void buf_remove_begin(buf_t *p, size_t data_size);
void buf_remove_end(buf_t *p, size_t data_size);
void buf_dump(buf_t *p, const char *label);
void buf_free(buf_t *p);
slist_t *slist_append(slist_t *list, void *element);
slist_t *slist_remove(slist_t *list, void *element);
#endif
|