]>
git.saurik.com Git - apple/libc.git/blob - stdio/fgetln.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1990, 1993
27 * The Regents of the University of California. All rights reserved.
29 * This code is derived from software contributed to Berkeley by
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 * Expand the line buffer. Return -1 on error.
70 * The `new size' does not account for a terminating '\0',
75 __slbexpand(fp
, newsize
)
84 if (fp
->_lb
._size
>= newsize
)
86 if ((p
= realloc(fp
->_lb
._base
, newsize
)) == NULL
)
89 fp
->_lb
._size
= newsize
;
94 * Get an input line. The returned pointer often (but not always)
95 * points into a stdio buffer. Fgetln does not alter the text of
96 * the returned line (which is thus not a C string because it will
97 * not necessarily end with '\0'), but does allow callers to modify
98 * it if they wish. Thus, we set __SMOD in case the caller does.
105 register unsigned char *p
;
109 /* make sure there is input */
110 if (fp
->_r
<= 0 && __srefill(fp
)) {
115 /* look for a newline in the input */
116 if ((p
= memchr((void *)fp
->_p
, '\n', fp
->_r
)) != NULL
) {
120 * Found one. Flag buffer as modified to keep fseek from
121 * `optimising' a backward seek, in case the user stomps on
124 p
++; /* advance over it */
125 ret
= (char *)fp
->_p
;
126 *lenp
= len
= p
- fp
->_p
;
127 fp
->_flags
|= __SMOD
;
134 * We have to copy the current buffered data to the line buffer.
135 * As a bonus, though, we can leave off the __SMOD.
137 * OPTIMISTIC is length that we (optimistically) expect will
138 * accomodate the `rest' of the string, on each trip through the
141 #define OPTIMISTIC 80
143 for (len
= fp
->_r
, off
= 0;; len
+= fp
->_r
) {
144 register size_t diff
;
147 * Make sure there is room for more bytes. Copy data from
148 * file buffer to line buffer, refill file and look for
149 * newline. The loop stops only when we find a newline.
151 if (__slbexpand(fp
, len
+ OPTIMISTIC
))
153 (void)memcpy((void *)(fp
->_lb
._base
+ off
), (void *)fp
->_p
,
157 break; /* EOF or error: return partial line */
158 if ((p
= memchr((void *)fp
->_p
, '\n', fp
->_r
)) == NULL
)
161 /* got it: finish up the line (like code above) */
165 if (__slbexpand(fp
, len
))
167 (void)memcpy((void *)(fp
->_lb
._base
+ off
), (void *)fp
->_p
,
175 fp
->_lb
._base
[len
] = 0;
177 return ((char *)fp
->_lb
._base
);
181 return (NULL
); /* ??? */