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 | |
| 29 | #define _IOFBF 0 /* Fully buffered. */ |
| 30 | #define _IOLBF 1 /* Line buffered. */ |
| 31 | #define _IONBF 2 /* No buffering. */ |
| 32 | |
| 33 | int |
| 34 | _IO_setvbuf (fp, buf, mode, size) |
| 35 | _IO_FILE *fp; |
| 36 | char *buf; |
| 37 | int mode; |
| 38 | _IO_size_t size; |
| 39 | { |
| 40 | int result; |
| 41 | CHECK_FILE (fp, EOF); |
| 42 | _IO_acquire_lock (fp); |
| 43 | switch (mode) |
| 44 | { |
| 45 | case _IOFBF: |
| 46 | fp->_IO_file_flags &= ~(_IO_LINE_BUF|_IO_UNBUFFERED); |
| 47 | if (buf == NULL) |
| 48 | { |
| 49 | if (fp->_IO_buf_base == NULL) |
| 50 | { |
| 51 | /* There is no flag to distinguish between "fully buffered |
| 52 | mode has been explicitly set" as opposed to "line |
| 53 | buffering has not been explicitly set". In both |
| 54 | cases, _IO_LINE_BUF is off. If this is a tty, and |
| 55 | _IO_filedoalloc later gets called, it cannot know if |
| 56 | it should set the _IO_LINE_BUF flag (because that is |
| 57 | the default), or not (because we have explicitly asked |
| 58 | for fully buffered mode). So we make sure a buffer |
| 59 | gets allocated now, and explicitly turn off line |
| 60 | buffering. |
| 61 | |
| 62 | A possibly cleaner alternative would be to add an |
| 63 | extra flag, but then flags are a finite resource. */ |
| 64 | if (_IO_DOALLOCATE (fp) < 0) |
| 65 | { |
| 66 | result = EOF; |
| 67 | goto unlock_return; |
| 68 | } |
| 69 | fp->_IO_file_flags &= ~_IO_LINE_BUF; |
| 70 | } |
| 71 | result = 0; |
| 72 | goto unlock_return; |
| 73 | } |
| 74 | break; |
| 75 | case _IOLBF: |
| 76 | fp->_IO_file_flags &= ~_IO_UNBUFFERED; |
| 77 | fp->_IO_file_flags |= _IO_LINE_BUF; |
| 78 | if (buf == NULL) |
| 79 | { |
| 80 | result = 0; |
| 81 | goto unlock_return; |
| 82 | } |
| 83 | break; |
| 84 | case _IONBF: |
| 85 | fp->_IO_file_flags &= ~_IO_LINE_BUF; |
| 86 | fp->_IO_file_flags |= _IO_UNBUFFERED; |
| 87 | buf = NULL; |
| 88 | size = 0; |
| 89 | break; |
| 90 | default: |
| 91 | result = EOF; |
| 92 | goto unlock_return; |
| 93 | } |
| 94 | result = _IO_SETBUF (fp, buf, size) == NULL ? EOF : 0; |
| 95 | |
| 96 | unlock_return: |
| 97 | _IO_release_lock (fp); |
| 98 | return result; |
| 99 | } |
| 100 | libc_hidden_def (_IO_setvbuf) |
| 101 | |
| 102 | #ifdef weak_alias |
| 103 | weak_alias (_IO_setvbuf, setvbuf) |
| 104 | #endif |