chiark / gitweb /
inputline variant which uses a source
[disorder] / lib / inputline.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder.
3f471d1c 3 * Copyright (C) 2004, 2007-9, 2013 Richard Kettlewell
460b9539 4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
460b9539 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
460b9539 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
460b9539 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
460b9539 17 */
a99c4e9a
RK
18/** @file lib/inputline.c
19 * @brief Line input
20 */
460b9539 21
05b75f8d 22#include "common.h"
460b9539 23
460b9539 24#include <errno.h>
460b9539 25
26#include "log.h"
27#include "mem.h"
28#include "vector.h"
29#include "charset.h"
30#include "inputline.h"
3f471d1c 31#include "sink.h"
460b9539 32
a99c4e9a
RK
33/** @brief Read a line from @p fp
34 * @param tag Used in error messages
35 * @param fp Stream to read from
36 * @param lp Where to store newly allocated string
bb6ae3fb 37 * @param newline Newline character or @ref CRLF
a99c4e9a
RK
38 * @return 0 on success, -1 on error or eof.
39 *
40 * The newline is not included in the string. If the last line of a
41 * stream does not have a newline then that line is still returned.
42 *
bb6ae3fb 43 * If @p newline is @ref CRLF then the line is terminated by CR LF,
44 * not by a single newline character. The CRLF is still not included
45 * in the string in this case.
46 *
a99c4e9a
RK
47 * @p *lp is only set if the return value was 0.
48 */
460b9539 49int inputline(const char *tag, FILE *fp, char **lp, int newline) {
3f471d1c
RK
50 struct source *s = source_stdio(fp);
51 int rc = inputlines(tag, s, lp, newline);
52 xfree(s);
53 return rc;
54}
55
56int inputlines(const char *tag, struct source *s, char **lp, int newline) {
460b9539 57 struct dynstr d;
3f471d1c
RK
58 int ch, err;
59 char errbuf[1024];
460b9539 60
61 dynstr_init(&d);
3f471d1c
RK
62 while((ch = source_getc(s)),
63 (!source_err(s) && !source_eof(s) && ch != newline)) {
460b9539 64 dynstr_append(&d, ch);
bb6ae3fb 65 if(newline == CRLF && d.nvec >= 2
66 && d.vec[d.nvec - 2] == 0x0D && d.vec[d.nvec - 1] == 0x0A) {
67 d.nvec -= 2;
68 break;
69 }
70 }
3f471d1c
RK
71 if((err = source_err(s))) {
72 disorder_error(0, "error reading %s: %s", tag,
73 format_error(s->eclass, err, errbuf, sizeof errbuf));
460b9539 74 return -1;
3f471d1c 75 } else if(source_eof(s)) {
460b9539 76 if(d.nvec != 0)
2e9ba080 77 disorder_error(0, "error reading %s: unexpected EOF", tag);
460b9539 78 return -1;
79 }
80 dynstr_terminate(&d);
81 *lp = d.vec;
82 return 0;
83}
84
85/*
86Local Variables:
87c-basic-offset:2
88comment-column:40
89End:
90*/