lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | /* Copyright (C) 1993-2015 Free Software Foundation, Inc. |
| 2 | This file is part of the GNU C Library. |
| 3 | |
| 4 | The GNU C Library is free software; you can redistribute it and/or |
| 5 | modify it under the terms of the GNU Lesser General Public |
| 6 | License as published by the Free Software Foundation; either |
| 7 | version 2.1 of the License, or (at your option) any later version. |
| 8 | |
| 9 | The GNU C Library is distributed in the hope that it will be useful, |
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | Lesser General Public License for more details. |
| 13 | |
| 14 | You should have received a copy of the GNU Lesser General Public |
| 15 | License along with the GNU C Library; if not, see |
| 16 | <http://www.gnu.org/licenses/>. |
| 17 | |
| 18 | As a special exception, if you link the code in this file with |
| 19 | files compiled with a GNU compiler to produce an executable, |
| 20 | that does not cause the resulting executable to be covered by |
| 21 | the GNU Lesser General Public License. This exception does not |
| 22 | however invalidate any other reasons why the executable file |
| 23 | might be covered by the GNU Lesser General Public License. |
| 24 | This exception applies to code released by its copyright holders |
| 25 | in files containing the exception. */ |
| 26 | |
| 27 | #include "libioP.h" |
| 28 | #include <string.h> |
| 29 | |
| 30 | _IO_size_t |
| 31 | _IO_getline (fp, buf, n, delim, extract_delim) |
| 32 | _IO_FILE *fp; |
| 33 | char *buf; |
| 34 | _IO_size_t n; |
| 35 | int delim; |
| 36 | int extract_delim; |
| 37 | { |
| 38 | return _IO_getline_info (fp, buf, n, delim, extract_delim, (int *) 0); |
| 39 | } |
| 40 | libc_hidden_def (_IO_getline) |
| 41 | |
| 42 | /* Algorithm based on that used by Berkeley pre-4.4 fgets implementation. |
| 43 | |
| 44 | Read chars into buf (of size n), until delim is seen. |
| 45 | Return number of chars read (at most n). |
| 46 | Does not put a terminating '\0' in buf. |
| 47 | If extract_delim < 0, leave delimiter unread. |
| 48 | If extract_delim > 0, insert delim in output. */ |
| 49 | |
| 50 | _IO_size_t |
| 51 | _IO_getline_info (fp, buf, n, delim, extract_delim, eof) |
| 52 | _IO_FILE *fp; |
| 53 | char *buf; |
| 54 | _IO_size_t n; |
| 55 | int delim; |
| 56 | int extract_delim; |
| 57 | int *eof; |
| 58 | { |
| 59 | char *ptr = buf; |
| 60 | if (eof != NULL) |
| 61 | *eof = 0; |
| 62 | if (__builtin_expect (fp->_mode, -1) == 0) |
| 63 | _IO_fwide (fp, -1); |
| 64 | while (n != 0) |
| 65 | { |
| 66 | _IO_ssize_t len = fp->_IO_read_end - fp->_IO_read_ptr; |
| 67 | if (len <= 0) |
| 68 | { |
| 69 | int c = __uflow (fp); |
| 70 | if (c == EOF) |
| 71 | { |
| 72 | if (eof) |
| 73 | *eof = c; |
| 74 | break; |
| 75 | } |
| 76 | if (c == delim) |
| 77 | { |
| 78 | if (extract_delim > 0) |
| 79 | *ptr++ = c; |
| 80 | else if (extract_delim < 0) |
| 81 | _IO_sputbackc (fp, c); |
| 82 | if (extract_delim > 0) |
| 83 | ++len; |
| 84 | return ptr - buf; |
| 85 | } |
| 86 | *ptr++ = c; |
| 87 | n--; |
| 88 | } |
| 89 | else |
| 90 | { |
| 91 | char *t; |
| 92 | if ((_IO_size_t) len >= n) |
| 93 | len = n; |
| 94 | t = (char *) memchr ((void *) fp->_IO_read_ptr, delim, len); |
| 95 | if (t != NULL) |
| 96 | { |
| 97 | _IO_size_t old_len = ptr-buf; |
| 98 | len = t - fp->_IO_read_ptr; |
| 99 | if (extract_delim >= 0) |
| 100 | { |
| 101 | ++t; |
| 102 | if (extract_delim > 0) |
| 103 | ++len; |
| 104 | } |
| 105 | memcpy ((void *) ptr, (void *) fp->_IO_read_ptr, len); |
| 106 | fp->_IO_read_ptr = t; |
| 107 | return old_len + len; |
| 108 | } |
| 109 | memcpy ((void *) ptr, (void *) fp->_IO_read_ptr, len); |
| 110 | fp->_IO_read_ptr += len; |
| 111 | ptr += len; |
| 112 | n -= len; |
| 113 | } |
| 114 | } |
| 115 | return ptr - buf; |
| 116 | } |
| 117 | libc_hidden_def (_IO_getline_info) |