home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-base.tgz / libg++-2.7.1-src.tar / fsf / libg++ / libio / filedoalloc.c < prev    next >
C/C++ Source or Header  |  1995-10-25  |  4KB  |  105 lines

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