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

VxWorks

开发平台:

C/C++

  1. /* flags.c - internal routines for flags manipulation. stdio.h */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3.  
  4. /*
  5. modification history
  6. --------------------
  7. 01c,27feb93,smb  added error checking for incorrect modes
  8. 01b,20sep92,smb  documentation additions
  9. 01a,29jul92,smb  taken from UCB stdio
  10. */
  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: stdio.h, sys/types.h, errno.h, fcntl.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 "errno.h"
  56. #include "fcntl.h"
  57. /******************************************************************************
  58. *
  59. * __sflags - return flags for a given mode.
  60. * Return the (stdio) flags for a given mode.  Store the flags
  61. * to be passed to an open() syscall through *optr.
  62. * Return 0 on error.
  63. *
  64. * INCLUDE: stdio.h 
  65. *
  66. * RETURNS: flags or ZERO
  67. * NOMANUAL
  68. */
  69. int __sflags
  70.     (
  71.     FAST char * mode,
  72.     int * optr
  73.     )
  74.     {
  75.     FAST int ret;
  76.     FAST int m;
  77.     FAST int o;
  78.     switch (*mode++) 
  79. {
  80. case 'r': /* open for reading */
  81. ret = __SRD;
  82. m = O_RDONLY;
  83. o = 0;
  84. break;
  85. case 'w': /* open for writing */
  86. ret = __SWR;
  87. m = O_WRONLY;
  88. o = O_CREAT | O_TRUNC;
  89. break;
  90. case 'a': /* open for appending */
  91. ret = __SWR;
  92. m = O_WRONLY;
  93. o = O_CREAT | O_APPEND;
  94. break;
  95. default: /* illegal mode */
  96. errno = EINVAL;
  97. return (0);
  98. }
  99.     /* [rwa]+ or [rwa]b+ means read and write */
  100.     if ((*mode == '+') || (*mode == 'b' && mode[1] == '+')) 
  101. {
  102. ret = __SRW;
  103. m = O_RDWR;
  104. }
  105.     *optr = m | o;
  106.     /* check for garbage in second character */
  107.     if ((*mode != '+') && (*mode != 'b') && (*mode != ''))
  108. return (0);
  109.     /* check for garbage in third character */
  110.     if (*mode++ == '') 
  111. return (ret); /* no third char */
  112.     if ((*mode != '+') && (*mode != 'b') && (*mode != ''))
  113. return (0);
  114.     /* check for garbage in fourth character */
  115.     if (*mode++ == '') 
  116. return (ret); /* no fourth char */
  117.     if (*mode != '')
  118. return (0);
  119.     else
  120. return (ret);
  121.     }