home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / libg++-2.6-fsf.lha / libg++-2.6 / libio / iofdopen.c < prev    next >
C/C++ Source or Header  |  1994-06-22  |  3KB  |  101 lines

  1. /* 
  2. Copyright (C) 1993, 1994 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 GNU CC; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, 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. #ifdef __STDC__
  26. #include <stdlib.h>
  27. #endif
  28. #include "libioP.h"
  29. #include <fcntl.h>
  30.  
  31. #ifndef _IO_fcntl
  32. #define _IO_fcntl fcntl
  33. #endif
  34.  
  35. _IO_FILE *
  36. _IO_fdopen (fd, mode)
  37.      int fd;
  38.      const char *mode;
  39. {
  40.   int read_write;
  41.   int posix_mode = 0;
  42.   struct _IO_FILE_plus *fp;
  43.   int fd_flags;
  44.  
  45.   switch (*mode++)
  46.     {
  47.     case 'r':
  48.       read_write = _IO_NO_WRITES;
  49.       break;
  50.     case 'w':
  51.       read_write = _IO_NO_READS;
  52.       break;
  53.     case 'a':
  54.       posix_mode = O_APPEND;
  55.       read_write = _IO_NO_READS|_IO_IS_APPENDING;
  56.       break;
  57.     default:
  58. #ifdef EINVAL
  59.       errno = EINVAL;
  60. #endif
  61.       return NULL;
  62.   }
  63.   if (mode[0] == '+' || (mode[0] == 'b' && mode[1] == '+'))
  64.     read_write &= _IO_IS_APPENDING;
  65. #ifdef F_GETFL
  66.   fd_flags = _IO_fcntl (fd, F_GETFL);
  67.   if (fd_flags == -1
  68.       || ((fd_flags & O_ACCMODE) == O_RDONLY && !(read_write & _IO_NO_WRITES))
  69.       || ((fd_flags & O_ACCMODE) == O_WRONLY && !(read_write & _IO_NO_READS)))
  70.     return NULL;
  71.   if (posix_mode != (fd_flags & O_APPEND))
  72.     {
  73. #ifdef F_SETFL
  74.       if (_IO_fcntl (fd, F_SETFL, (fd_flags & ~O_APPEND) | posix_mode) == -1)
  75. #endif
  76.     return NULL;
  77.     }
  78. #endif
  79.  
  80.   fp = (struct _IO_FILE_plus*)malloc(sizeof(struct _IO_FILE_plus));
  81.   if (fp == NULL)
  82.     return NULL;
  83.   _IO_init(&fp->file, 0);
  84.   fp->file._jumps = &_IO_file_jumps;
  85.   _IO_file_init(&fp->file);
  86.   fp->vtable = NULL;
  87.   if (_IO_file_attach(&fp->file, fd) == NULL)
  88.     {
  89.       _IO_un_link(&fp->file);
  90.       free (fp);
  91.       return NULL;
  92.     }
  93.   fp->file._flags &= ~_IO_DELETE_DONT_CLOSE;
  94.  
  95.   fp->file._IO_file_flags = 
  96.     _IO_mask_flags(&fp->file, read_write,
  97.            _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
  98.  
  99.   return (_IO_FILE*)fp;
  100. }
  101.