chiark / gitweb /
document new choose screen properly
[disorder] / lib / sink.h
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
5aff007d 3 * Copyright (C) 2004, 2007, 2008 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
6049fe0e
RK
20/** @file lib/sink.h
21 * @brief Abstract output sink type
22 */
460b9539 23
24#ifndef SINK_H
25#define SINK_H
26
460b9539 27struct dynstr;
28
6049fe0e
RK
29/** @brief Sink type
30 *
31 * A sink is something you write bytes to; the opposite would be a
32 * source. We provide sink_stdio() and sink_dynstr() to create sinks
33 * to write to stdio streams and dynamic strings.
34 */
460b9539 35struct sink {
6049fe0e
RK
36 /** @brief Write callback
37 * @param s Sink to write to
38 * @param buffer First byte to write
39 * @param nbytes Number of bytes to write
40 * @return non-negative on success, -1 on error
41 */
460b9539 42 int (*write)(struct sink *s, const void *buffer, int nbytes);
460b9539 43};
44
45struct sink *sink_stdio(const char *name, FILE *fp);
46/* return a sink which writes to @fp@. If @name@ is not a null
47 * pointer, it will be used in (fatal) error messages; if it is a null
48 * pointer then errors will be signalled by returning -1. */
49
50struct sink *sink_dynstr(struct dynstr *output);
51/* return a sink which appends to @output@. */
52
0d0253c9
RK
53struct sink *sink_discard(void);
54/* reutrn a sink which junks everything */
55
460b9539 56int sink_vprintf(struct sink *s, const char *fmt, va_list ap);
57int sink_printf(struct sink *s, const char *fmt, ...)
58 attribute((format (printf, 2, 3)));
59/* equivalent of vfprintf/fprintf for sink @s@ */
60
6049fe0e
RK
61/** @brief Write bytes to a sink
62 * @param s Sink to write to
63 * @param buffer First byte to write
64 * @param nbytes Number of bytes to write
65 * @return non-negative on success, -1 on error
66 */
460b9539 67static inline int sink_write(struct sink *s, const void *buffer, int nbytes) {
68 return s->write(s, buffer, nbytes);
69}
70
6049fe0e
RK
71/** @brief Write string to a sink
72 * @param s Sink to write to
73 * @param str String to write
74 * @return non-negative on success, -1 on error
75 */
460b9539 76static inline int sink_writes(struct sink *s, const char *str) {
77 return s->write(s, str, strlen(str));
78}
79
6049fe0e
RK
80/** @brief Write one byte to a sink
81 * @param s Sink to write to
82 * @param c Byte to write (as a @c char)
83 * @return non-negative on success, -1 on error
84 */
460b9539 85static inline int sink_writec(struct sink *s, char c) {
86 return s->write(s, &c, 1);
87}
88
89#endif /* SINK_H */
90
91
92/*
93Local Variables:
94c-basic-offset:2
95comment-column:40
96End:
97*/