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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
/**
\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>
#include <stdlib.h>
/*
* Implements a single linked list
*/
struct databuffer_list {
void *data;
struct databuffer_list *next;
};
typedef struct databuffer_list slist_t;
/** This implements an abstracted data buffer. */
struct databuffer_ops {
void* (*new)(size_t default_size);
void (*delete)(void *self);
size_t (*get_offset)(void *self);
void (*set_offset)(void *self, size_t offset);
size_t (*get_size)(void *self);
int (*set_size)(void *self, size_t new_size);
size_t (*get_length)(const void *self);
void *(*get)(const void *self);
void (*clear)(void *self, size_t len);
int (*append)(void *self, const void *data, size_t len);
};
struct databuffer {
struct databuffer_ops *ops;
void *ops_data;
};
typedef struct databuffer buf_t;
#include <membuf.h>
struct databuffer *buf_create(size_t default_size, struct databuffer_ops *ops);
void buf_delete(struct databuffer *self);
size_t buf_get_offset(struct databuffer *self);
void buf_set_offset(struct databuffer *self, size_t offset);
size_t buf_get_size(struct databuffer *self);
int buf_set_size(struct databuffer *self, size_t new_size);
size_t buf_get_length(const struct databuffer *self);
void *buf_get(const struct databuffer *self);
void buf_clear(struct databuffer *self, size_t len);
int buf_append(struct databuffer *self, const void *data, size_t len);
void buf_dump(buf_t *p, const char *label);
#define slist_is_empty(l) ((l) == NULL)
int slist_has_more(slist_t *list);
void *slist_get(slist_t *list);
slist_t *slist_append(slist_t *list, void *element);
slist_t *slist_remove(slist_t *list, void *element);
#endif
|