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
|
/*
* Buffer management functions
* Copyright (C) 2008 Andreas Öman
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef HTSBUF_H__
#define HTSBUF_H__
#include <stdarg.h>
#include "htsq.h"
#include <inttypes.h>
TAILQ_HEAD(htsbuf_data_queue, htsbuf_data);
typedef struct htsbuf_data {
TAILQ_ENTRY(htsbuf_data) hd_link;
uint8_t *hd_data;
unsigned int hd_data_size; /* Size of allocation hb_data */
unsigned int hd_data_len; /* Number of valid bytes from hd_data */
unsigned int hd_data_off; /* Offset in data, used for partial writes */
} htsbuf_data_t;
typedef struct htsbuf_queue {
struct htsbuf_data_queue hq_q;
unsigned int hq_size;
unsigned int hq_maxsize;
} htsbuf_queue_t;
void htsbuf_queue_init(htsbuf_queue_t *hq, unsigned int maxsize);
void htsbuf_queue_flush(htsbuf_queue_t *hq);
void htsbuf_vqprintf(htsbuf_queue_t *hq, const char *fmt, va_list ap);
void htsbuf_qprintf(htsbuf_queue_t *hq, const char *fmt, ...);
void htsbuf_append(htsbuf_queue_t *hq, const char *buf, size_t len);
void htsbuf_append_prealloc(htsbuf_queue_t *hq, const char *buf, size_t len);
void htsbuf_data_free(htsbuf_queue_t *hq, htsbuf_data_t *hd);
size_t htsbuf_read(htsbuf_queue_t *hq, char *buf, size_t len);
size_t htsbuf_peek(htsbuf_queue_t *hq, char *buf, size_t len);
size_t htsbuf_drop(htsbuf_queue_t *hq, size_t len);
size_t htsbuf_find(htsbuf_queue_t *hq, uint8_t v);
#endif /* HTSBUF_H__ */
|