fdopen.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:4k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* fdopen.c - open file. stdio.h */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01e,05feb99,dgp  document errno values
  7. 01d,07jul93,jmm  fixed fdopen to validate the fd (spr 2197)
  8. 01c,05mar93,jdi  documentation cleanup for 5.1.
  9. 01b,20sep92,smb  documentation additions
  10. 01a,29jul92,smb  taken from UCB stdio
  11. */
  12. /*
  13. DESCRIPTION
  14.  *
  15.  * Copyright (c) 1990 The Regents of the University of California.
  16.  * All rights reserved.
  17.  *
  18.  * This code is derived from software contributed to Berkeley by
  19.  * Chris Torek.
  20.  *
  21.  * Redistribution and use in source and binary forms, with or without
  22.  * modification, are permitted provided that the following conditions
  23.  * are met:
  24.  * 1. Redistributions of source code must retain the above copyright
  25.  *    notice, this list of conditions and the following disclaimer.
  26.  * 2. Redistributions in binary form must reproduce the above copyright
  27.  *    notice, this list of conditions and the following disclaimer in the
  28.  *    documentation and/or other materials provided with the distribution.
  29.  * 3. All advertising materials mentioning features or use of this software
  30.  *    must display the following acknowledgement:
  31.  * This product includes software developed by the University of
  32.  * California, Berkeley and its contributors.
  33.  * 4. Neither the name of the University nor the names of its contributors
  34.  *    may be used to endorse or promote products derived from this software
  35.  *    without specific prior written permission.
  36.  *
  37.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  38.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  39.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  40.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  41.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  42.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  43.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  44.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  45.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  46.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  47.  * SUCH DAMAGE.
  48. INCLUDE FILE: sys/types.h, fcntl.h, unistd.h, stdio.h, errno.h
  49. SEE ALSO: American National Standard X3.159-1989
  50. NOMANUAL
  51. */
  52. #include "vxWorks.h"
  53. #include "stdio.h"
  54. #include "sys/types.h"
  55. #include "fcntl.h"
  56. #include "unistd.h"
  57. #include "errno.h"
  58. #include "objLib.h"
  59. #include "iosLib.h"
  60. #include "private/stdioP.h"
  61. /*******************************************************************************
  62. *
  63. * fdopen - open a file specified by a file descriptor (POSIX)
  64. *
  65. * This routine opens the file specified by the file descriptor <fd> and
  66. * associates a stream with it.
  67. * The <mode> argument is used just as in the fopen() function.
  68. *
  69. * INCLUDE FILES: stdio.h 
  70. *
  71. * RETURNS: A pointer to a stream, or a null pointer if an error occurs,
  72. * with `errno' set to indicate the error.
  73. *
  74. * ERRNO: EINVAL
  75. *
  76. * SEE ALSO: fopen(), freopen(),
  77. * .br
  78. * .I "Information Technology - POSIX - Part 1:"
  79. * .I "System API [C Language], IEEE Std 1003.1"
  80. */
  81. FILE * fdopen
  82.     (
  83.     int  fd, /* file descriptor */
  84.     const char * mode /* mode to open with */
  85.     )
  86.     {
  87.     FAST FILE * fp;
  88.     int flags;
  89.     int  oflags;
  90.     /* validate the file descriptor */
  91.     if (iosFdValue (fd) == ERROR)
  92.         return (NULL);
  93.     
  94.     if ((flags = __sflags(mode, &oflags)) == 0)
  95.     return (NULL);
  96.     /* Make sure the mode the user wants is a subset of the actual mode. */
  97. #if FALSE  /*  XXX */
  98.     if ((fdflags = fcntl(fd, F_GETFL, 0)) < 0)
  99. return (NULL);
  100.     tmp = fdflags & O_ACCMODE;
  101.     if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) 
  102. {
  103. errno = EINVAL;
  104. return (NULL);
  105. }
  106. #endif
  107.     if ((fp = stdioFpCreate()) == NULL)
  108. return (NULL);
  109.     fp->_flags = flags;
  110.     /*
  111.      * If opened for appending, but underlying descriptor does not have
  112.      * O_APPEND bit set, assert __SAPP so that __swrite() will lseek to
  113.      * end before each write.
  114.      */
  115.     if ((oflags & O_APPEND) /* XXX && !(fdflags & O_APPEND) */ )
  116. fp->_flags |= __SAPP;
  117.     fp->_file = fd;
  118.     return (fp);
  119.     }