1 /*-
2  * Copyright (c) 2000-2008 Poul-Henning Kamp
3  * Copyright (c) 2000-2008 Dag-Erling Coïdan Smørgrav
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer
11  *    in this position and unchanged.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  *      $FreeBSD: release/10.0.0/sys/sys/sbuf.h 249377 2013-04-11 19:49:18Z trociny $
29  */
30 
31 #ifndef _SYS_SBUF_H_
32 #define	_SYS_SBUF_H_
33 
34 /* HACK */
35 /*
36 #include <sys/_types.h>
37 */
38 #define	__BEGIN_DECLS
39 #define	__END_DECLS
40 #ifndef __printflike
41 #define	__printflike(fmtarg, firstvarg) t__printflike(fmtarg, firstvarg)
42 #endif /* ndef __printflike */
43 #include <stdarg.h>
44 #define	__va_list va_list
45 /* /HACK */
46 
47 struct sbuf;
48 typedef int (sbuf_drain_func)(void *, const char *, int);
49 
50 /*
51  * Structure definition
52  */
53 struct sbuf {
54 	char		*s_buf;		/* storage buffer */
55 	sbuf_drain_func	*s_drain_func;	/* drain function */
56 	void		*s_drain_arg;	/* user-supplied drain argument */
57 	int		 s_error;	/* current error code */
58 	ssize_t		 s_size;	/* size of storage buffer */
59 	ssize_t		 s_len;		/* current length of string */
60 #define	SBUF_FIXEDLEN	0x00000000	/* fixed length buffer (default) */
61 #define	SBUF_AUTOEXTEND	0x00000001	/* automatically extend buffer */
62 #define	SBUF_USRFLAGMSK	0x0000ffff	/* mask of flags the user may specify */
63 #define	SBUF_DYNAMIC	0x00010000	/* s_buf must be freed */
64 #define	SBUF_FINISHED	0x00020000	/* set by sbuf_finish() */
65 #define	SBUF_DYNSTRUCT	0x00080000	/* sbuf must be freed */
66 #define	SBUF_INSECTION	0x00100000	/* set by sbuf_start_section() */
67 	int		 s_flags;	/* flags */
68 	ssize_t		 s_sect_len;	/* current length of section */
69 };
70 
71 __BEGIN_DECLS
72 /*
73  * API functions
74  */
75 struct sbuf	*sbuf_new(struct sbuf *, char *, int, int);
76 #define		 sbuf_new_auto()				\
77 	sbuf_new(NULL, NULL, 0, SBUF_AUTOEXTEND)
78 void		 sbuf_clear(struct sbuf *);
79 int		 sbuf_setpos(struct sbuf *, ssize_t);
80 int		 sbuf_bcat(struct sbuf *, const void *, size_t);
81 int		 sbuf_bcpy(struct sbuf *, const void *, size_t);
82 int		 sbuf_cat(struct sbuf *, const char *);
83 int		 sbuf_cpy(struct sbuf *, const char *);
84 int		 sbuf_printf(struct sbuf *, const char *, ...)
85 	__printflike(2, 3);
86 int		 sbuf_vprintf(struct sbuf *, const char *, __va_list)
87 	__printflike(2, 0);
88 int		 sbuf_putc(struct sbuf *, int);
89 void		 sbuf_set_drain(struct sbuf *, sbuf_drain_func *, void *);
90 int		 sbuf_trim(struct sbuf *);
91 int		 sbuf_error(const struct sbuf *);
92 int		 sbuf_finish(struct sbuf *);
93 char		*sbuf_data(struct sbuf *);
94 ssize_t		 sbuf_len(struct sbuf *);
95 int		 sbuf_done(const struct sbuf *);
96 void		 sbuf_delete(struct sbuf *);
97 void		 sbuf_start_section(struct sbuf *, ssize_t *);
98 ssize_t		 sbuf_end_section(struct sbuf *, ssize_t, size_t, int);
99 
100 #ifdef _KERNEL
101 struct uio;
102 struct sbuf	*sbuf_uionew(struct sbuf *, struct uio *, int *);
103 int		 sbuf_bcopyin(struct sbuf *, const void *, size_t);
104 int		 sbuf_copyin(struct sbuf *, const void *, size_t);
105 #endif
106 __END_DECLS
107 
108 #endif
109