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