blob: 6c3996218956dd8ce2bda39dc8fa25b47411ff28 [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
Willy Tarreaue09e0ce2007-03-18 16:31:29 +01005 Copyright (C) 2000-2007 Willy Tarreau - w@1wt.eu
Willy Tarreaubaaee002006-06-26 02:48:02 +02006
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;
Willy Tarreaue09e0ce2007-03-18 16:31:29 +010037 buf->rlim = buf->r = buf->lr = buf->w = buf->data;
Willy Tarreau54469402006-07-29 16:59:06 +020038}
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{
Willy Tarreaue09e0ce2007-03-18 16:31:29 +010054 buf->r = buf->lr = buf->w = buf->data;
Willy Tarreaubaaee002006-06-26 02:48:02 +020055 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 */
Willy Tarreaue09e0ce2007-03-18 16:31:29 +010079 buf->r = buf->w = buf->lr = buf->data;
Willy Tarreaubaaee002006-06-26 02:48:02 +020080 }
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 Tarreau4af6f3a2007-03-18 22:36:26 +010087int buffer_replace(struct buffer *b, char *pos, char *end, const char *str);
88int buffer_replace2(struct buffer *b, char *pos, char *end, const char *str, int len);
89int buffer_insert_line2(struct buffer *b, char *pos, const char *str, int len);
Willy Tarreauc0dde7a2007-01-01 21:38:07 +010090int chunk_printf(struct chunk *chk, int size, const char *fmt, ...);
Willy Tarreau8d5d7f22007-01-21 19:16:41 +010091void buffer_dump(FILE *o, struct buffer *b, int from, int to);
Willy Tarreaubaaee002006-06-26 02:48:02 +020092
Willy Tarreau0f772532006-12-23 20:51:41 +010093/*
94 * frees the destination chunk if already allocated, allocates a new string,
95 * and copies the source into it. The pointer to the destination string is
96 * returned, or NULL if the allocation fails or if any pointer is NULL..
97 */
98static inline char *chunk_dup(struct chunk *dst, const struct chunk *src) {
99 if (!dst || !src || !src->str)
100 return NULL;
101 if (dst->str)
102 free(dst->str);
103 dst->len = src->len;
104 dst->str = (char *)malloc(dst->len);
105 memcpy(dst->str, src->str, dst->len);
106 return dst->str;
107}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108
109#endif /* _PROTO_BUFFERS_H */
110
111/*
112 * Local variables:
113 * c-indent-level: 8
114 * c-basic-offset: 8
115 * End:
116 */