OSDN Git Service

Insert libio rewrite and its various changes from devo.
[pf3gnuchains/gcc-fork.git] / libio / filedoalloc.c
1 /* Copyright (C) 1993, 1997 Free Software Foundation, Inc.
2    This file is part of the GNU IO Library.
3
4    This library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU General Public License as
6    published by the Free Software Foundation; either version 2, or (at
7    your option) any later version.
8
9    This library is distributed in the hope that it will be useful, but
10    WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this library; see the file COPYING.  If not, write to
16    the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
17    MA 02111-1307, USA.
18
19    As a special exception, if you link this library with files
20    compiled with a GNU compiler to produce an executable, this does
21    not cause the resulting executable to be covered by the GNU General
22    Public License.  This exception does not however invalidate any
23    other reasons why the executable file might be covered by the GNU
24    General Public License.  */
25
26 /*
27  * Copyright (c) 1990 The Regents of the University of California.
28  * All rights reserved.
29  *
30  * Redistribution and use in source and binary forms are permitted
31  * provided that the above copyright notice and this paragraph are
32  * duplicated in all such forms and that any documentation,
33  * advertising materials, and other materials related to such
34  * distribution and use acknowledge that the software was developed
35  * by the University of California, Berkeley.  The name of the
36  * University may not be used to endorse or promote products derived
37  * from this software without specific prior written permission.
38  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
39  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
40  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
41  */
42
43 /* Modified for GNU iostream by Per Bothner 1991, 1992. */
44
45 #ifndef _POSIX_SOURCE
46 # define _POSIX_SOURCE
47 #endif
48 #include "libioP.h"
49 #include <sys/types.h>
50 #include <sys/stat.h>
51 #ifdef __STDC__
52 #include <stdlib.h>
53 #include <unistd.h>
54 #endif
55
56 #ifdef _LIBC
57 # undef isatty
58 # define isatty(Fd) __isatty (Fd)
59 #endif
60
61 /*
62  * Allocate a file buffer, or switch to unbuffered I/O.
63  * Per the ANSI C standard, ALL tty devices default to line buffered.
64  *
65  * As a side effect, we set __SOPT or __SNPT (en/dis-able fseek
66  * optimisation) right after the _fstat() that finds the buffer size.
67  */
68
69 int
70 _IO_file_doallocate (fp)
71      _IO_FILE *fp;
72 {
73   _IO_size_t size;
74   int couldbetty;
75   char *p;
76   struct stat st;
77
78 #ifndef _LIBC
79   /* If _IO_cleanup_registration_needed is non-zero, we should call the
80      function it points to.  This is to make sure _IO_cleanup gets called
81      on exit.  We call it from _IO_file_doallocate, since that is likely
82      to get called by any program that does buffered I/O. */
83   if (_IO_cleanup_registration_needed)
84     (*_IO_cleanup_registration_needed) ();
85 #endif
86
87   if (fp->_fileno < 0 || _IO_SYSSTAT (fp, &st) < 0)
88     {
89       couldbetty = 0;
90       size = _IO_BUFSIZ;
91 #if 0
92       /* do not try to optimise fseek() */
93       fp->_flags |= __SNPT;
94 #endif
95     }
96   else
97     {
98       couldbetty = S_ISCHR (st.st_mode);
99 #if _IO_HAVE_ST_BLKSIZE
100       size = st.st_blksize <= 0 ? _IO_BUFSIZ : st.st_blksize;
101 #else
102       size = _IO_BUFSIZ;
103 #endif
104     }
105   ALLOC_BUF (p, size, EOF);
106   _IO_setb (fp, p, p + size, 1);
107   if (couldbetty && isatty (fp->_fileno))
108     fp->_flags |= _IO_LINE_BUF;
109   return 1;
110 }