blob: 657786026a266d1a551d9b2272b99b78dbb20ff5 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 include/proto/buffers.h
3 Buffer management definitions, macros and inline functions.
4
5 Copyright (C) 2000-2006 Willy Tarreau - w@1wt.eu
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation, version 2.1
10 exclusively.
11
12 This library 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 GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20*/
21
22#ifndef _PROTO_BUFFERS_H
23#define _PROTO_BUFFERS_H
24
Willy Tarreau0f772532006-12-23 20:51:41 +010025#include <stdlib.h>
26
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020027#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028#include <types/buffers.h>
29
Willy Tarreau54469402006-07-29 16:59:06 +020030/* Initializes all fields in the buffer. The ->rlim field is initialized last
31 * so that the compiler can optimize it away if changed immediately after the
32 * call to this function.
33 */
34static inline void buffer_init(struct buffer *buf)
35{
36 buf->l = buf->total = buf->flags = 0;
37 buf->rlim = buf->h = buf->r = buf->lr = buf->w = buf->data;
38}
39
Willy Tarreaubaaee002006-06-26 02:48:02 +020040/* returns 1 if the buffer is empty, 0 otherwise */
Willy Tarreaub17916e2006-10-15 15:17:57 +020041static inline int buffer_isempty(const struct buffer *buf)
Willy Tarreaubaaee002006-06-26 02:48:02 +020042{
43 return buf->l == 0;
44}
45
46/* returns 1 if the buffer is full, 0 otherwise */
Willy Tarreaub17916e2006-10-15 15:17:57 +020047static inline int buffer_isfull(const struct buffer *buf) {
Willy Tarreaubaaee002006-06-26 02:48:02 +020048 return buf->l == BUFSIZE;
49}
50
51/* flushes any content from buffer <buf> */
52static inline void buffer_flush(struct buffer *buf)
53{
54 buf->r = buf->h = buf->lr = buf->w = buf->data;
55 buf->l = 0;
56}
57
58
59/* returns the maximum number of bytes writable at once in this buffer */
Willy Tarreaub17916e2006-10-15 15:17:57 +020060static inline int buffer_max(const struct buffer *buf)
Willy Tarreaubaaee002006-06-26 02:48:02 +020061{
62 if (buf->l == BUFSIZE)
63 return 0;
64 else if (buf->r >= buf->w)
65 return buf->data + BUFSIZE - buf->r;
66 else
67 return buf->w - buf->r;
68}
69
70
71/*
72 * Tries to realign the given buffer, and returns how many bytes can be written
73 * there at once without overwriting anything.
74 */
75static inline int buffer_realign(struct buffer *buf)
76{
77 if (buf->l == 0) {
78 /* let's realign the buffer to optimize I/O */
79 buf->r = buf->w = buf->h = buf->lr = buf->data;
80 }
81 return buffer_max(buf);
82}
83
84
85int buffer_write(struct buffer *buf, const char *msg, int len);
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010086int buffer_write_chunk(struct buffer *buf, struct chunk *chunk);
Willy Tarreaubaaee002006-06-26 02:48:02 +020087int buffer_replace(struct buffer *b, char *pos, char *end, char *str);
88int buffer_replace2(struct buffer *b, char *pos, char *end, char *str, int len);
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010089int chunk_printf(struct chunk *chk, int size, const char *fmt, ...);
Willy Tarreaubaaee002006-06-26 02:48:02 +020090
Willy Tarreau0f772532006-12-23 20:51:41 +010091/*
92 * frees the destination chunk if already allocated, allocates a new string,
93 * and copies the source into it. The pointer to the destination string is
94 * returned, or NULL if the allocation fails or if any pointer is NULL..
95 */
96static inline char *chunk_dup(struct chunk *dst, const struct chunk *src) {
97 if (!dst || !src || !src->str)
98 return NULL;
99 if (dst->str)
100 free(dst->str);
101 dst->len = src->len;
102 dst->str = (char *)malloc(dst->len);
103 memcpy(dst->str, src->str, dst->len);
104 return dst->str;
105}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106
107#endif /* _PROTO_BUFFERS_H */
108
109/*
110 * Local variables:
111 * c-indent-level: 8
112 * c-basic-offset: 8
113 * End:
114 */