add ext4,vfat and tar.bz2
[u-tools.git] / u-tools / apps / tar / gnu / getdelim.c
blob852eb03e29cb0e899cd1231d74c42eff282762ab
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* getdelim.c --- Implementation of replacement getdelim function.
4 Copyright (C) 1994, 1996-1998, 2001, 2003, 2005-2011 Free Software
5 Foundation, Inc.
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 3, or (at
10 your option) any later version.
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
22 /* Ported from glibc by Simon Josefsson. */
24 #include <config.h>
26 /* Don't use __attribute__ __nonnull__ in this compilation unit. Otherwise gcc
27 optimizes away the lineptr == NULL || n == NULL || fp == NULL tests below. */
28 #define _GL_ARG_NONNULL(params)
30 #include <stdio.h>
32 #include <limits.h>
33 #include <stdint.h>
34 #include <stdlib.h>
35 #include <errno.h>
37 #ifndef SSIZE_MAX
38 # define SSIZE_MAX ((ssize_t) (SIZE_MAX / 2))
39 #endif
41 #if USE_UNLOCKED_IO
42 # include "unlocked-io.h"
43 # define getc_maybe_unlocked(fp) getc(fp)
44 #elif !HAVE_FLOCKFILE || !HAVE_FUNLOCKFILE || !HAVE_DECL_GETC_UNLOCKED
45 # undef flockfile
46 # undef funlockfile
47 # define flockfile(x) ((void) 0)
48 # define funlockfile(x) ((void) 0)
49 # define getc_maybe_unlocked(fp) getc(fp)
50 #else
51 # define getc_maybe_unlocked(fp) getc_unlocked(fp)
52 #endif
54 /* Read up to (and including) a DELIMITER from FP into *LINEPTR (and
55 NUL-terminate it). *LINEPTR is a pointer returned from malloc (or
56 NULL), pointing to *N characters of space. It is realloc'ed as
57 necessary. Returns the number of characters read (not including
58 the null terminator), or -1 on error or EOF. */
60 ssize_t
61 getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp)
63 ssize_t result;
64 size_t cur_len = 0;
66 if (lineptr == NULL || n == NULL || fp == NULL)
68 errno = EINVAL;
69 return -1;
72 flockfile (fp);
74 if (*lineptr == NULL || *n == 0)
76 char *new_lineptr;
77 *n = 120;
78 new_lineptr = (char *) realloc (*lineptr, *n);
79 if (new_lineptr == NULL)
81 result = -1;
82 goto unlock_return;
84 *lineptr = new_lineptr;
87 for (;;)
89 int i;
91 i = getc_maybe_unlocked (fp);
92 if (i == EOF)
94 result = -1;
95 break;
98 /* Make enough space for len+1 (for final NUL) bytes. */
99 if (cur_len + 1 >= *n)
101 size_t needed_max =
102 SSIZE_MAX < SIZE_MAX ? (size_t) SSIZE_MAX + 1 : SIZE_MAX;
103 size_t needed = 2 * *n + 1; /* Be generous. */
104 char *new_lineptr;
106 if (needed_max < needed)
107 needed = needed_max;
108 if (cur_len + 1 >= needed)
110 result = -1;
111 errno = EOVERFLOW;
112 goto unlock_return;
115 new_lineptr = (char *) realloc (*lineptr, needed);
116 if (new_lineptr == NULL)
118 result = -1;
119 goto unlock_return;
122 *lineptr = new_lineptr;
123 *n = needed;
126 (*lineptr)[cur_len] = i;
127 cur_len++;
129 if (i == delimiter)
130 break;
132 (*lineptr)[cur_len] = '\0';
133 result = cur_len ? cur_len : result;
135 unlock_return:
136 funlockfile (fp); /* doesn't set errno */
138 return result;