1 /* getdelim.c --- Implementation of replacement getdelim function.
2 Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 2005 Free
3 Software Foundation, Inc.
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2, or (at
8 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., 51 Franklin Street, Fifth Floor, Boston, MA
18 02110-1301, USA. */
19
20 /* Ported from glibc by Simon Josefsson. */
21
22 #ifdef HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include <stdlib.h>
27 #include <errno.h>
28
29 #include "getdelim.h"
30
31 __RCSID("$MirOS: src/gnu/usr.bin/cvs/lib/getdelim.c,v 1.4 2010/09/19 19:42:59 tg Exp $");
32
33 #if !HAVE_FLOCKFILE
34 # undef flockfile
35 # define flockfile(x) ((void) 0)
36 #endif
37 #if !HAVE_FUNLOCKFILE
38 # undef funlockfile
39 # define funlockfile(x) ((void) 0)
40 #endif
41
42 /* Read up to (and including) a DELIMITER from FP into *LINEPTR (and
43 NUL-terminate it). *LINEPTR is a pointer returned from malloc (or
44 NULL), pointing to *N characters of space. It is realloc'ed as
45 necessary. Returns the number of characters read (not including
46 the null terminator), or -1 on error or EOF. */
47
48 ssize_t
getdelim(char ** lineptr,size_t * n,int delimiter,FILE * fp)49 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp)
50 {
51 int result = 0;
52 ssize_t cur_len = 0;
53
54 if (lineptr == NULL || n == NULL || fp == NULL)
55 {
56 errno = EINVAL;
57 return -1;
58 }
59
60 flockfile (fp);
61
62 if (*lineptr == NULL || *n == 0)
63 {
64 *n = 120;
65 *lineptr = (char *) malloc (*n);
66 if (*lineptr == NULL)
67 {
68 result = -1;
69 goto unlock_return;
70 }
71 }
72
73 for (;;)
74 {
75 int i;
76
77 i = getc (fp);
78 if (i == EOF)
79 {
80 result = -1;
81 break;
82 }
83
84 /* Make enough space for len+1 (for final NUL) bytes. */
85 if (cur_len + 1 >= *n)
86 {
87 size_t needed = 2 * (cur_len + 1) + 1; /* Be generous. */
88 char *new_lineptr;
89
90 if (needed < cur_len)
91 {
92 result = -1;
93 goto unlock_return;
94 }
95
96 new_lineptr = (char *) realloc (*lineptr, needed);
97 if (new_lineptr == NULL)
98 {
99 result = -1;
100 goto unlock_return;
101 }
102
103 *lineptr = new_lineptr;
104 *n = needed;
105 }
106
107 (*lineptr)[cur_len] = i;
108 cur_len++;
109
110 if (i == delimiter)
111 break;
112 }
113 (*lineptr)[cur_len] = '\0';
114 result = cur_len ? cur_len : result;
115
116 unlock_return:
117 funlockfile (fp);
118 return result;
119 }
120