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

VxWorks

开发平台:

C/C++

  1. /* refill.c - file for stdio.h */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,20sep92,smb  documentation additions
  7. 01a,29jul92,jcf  Flush only the current fp.
  8.    +smb  taken from UCB stdio
  9. */
  10. /*
  11. DESCRIPTION
  12.  * Copyright (c) 1990 The Regents of the University of California.
  13.  * All rights reserved.
  14.  *
  15.  * This code is derived from software contributed to Berkeley by
  16.  * Chris Torek.
  17.  *
  18.  * Redistribution and use in source and binary forms, with or without
  19.  * modification, are permitted provided that the following conditions
  20.  * are met:
  21.  * 1. Redistributions of source code must retain the above copyright
  22.  *    notice, this list of conditions and the following disclaimer.
  23.  * 2. Redistributions in binary form must reproduce the above copyright
  24.  *    notice, this list of conditions and the following disclaimer in the
  25.  *    documentation and/or other materials provided with the distribution.
  26.  * 3. All advertising materials mentioning features or use of this software
  27.  *    must display the following acknowledgement:
  28.  * This product includes software developed by the University of
  29.  * California, Berkeley and its contributors.
  30.  * 4. Neither the name of the University nor the names of its contributors
  31.  *    may be used to endorse or promote products derived from this software
  32.  *    without specific prior written permission.
  33.  *
  34.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  35.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  36.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  37.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  38.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  39.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  40.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  41.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  42.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  43.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  44.  * SUCH DAMAGE.
  45. INCLUDE FILE: stdio.h, error.h, stdlib.h
  46. SEE ALSO: American National Standard X3.159-1989
  47. NOMANUAL
  48. */
  49. #include "vxWorks.h"
  50. #include "stdio.h"
  51. #include "errno.h"
  52. #include "stdlib.h"
  53. #include "private/stdioP.h"
  54. /******************************************************************************
  55. *
  56. * lflush - internal routine.
  57. * INCLUDE: stdio.h 
  58. *
  59. * RETURNS: 
  60. * NOMANUAL
  61. */
  62. LOCAL int lflush
  63.     (
  64.     FILE *fp
  65.     )
  66.     {
  67.     if ((fp->_flags & (__SLBF | __SWR)) == (__SLBF | __SWR))
  68. return (__sflush (fp));
  69.     return (0);
  70.     }
  71. /******************************************************************************
  72. *
  73. * __srefill - refill a stdio buffer.
  74. * INCLUDE: stdio.h 
  75. *
  76. * RETURNS: EOF on eof or error, 0 otherwise.
  77. * NOMANUAL
  78. */
  79. int __srefill
  80.     (
  81.     FAST FILE *fp
  82.     )
  83.     {
  84.     fp->_r = 0; /* largely a convenience for callers */
  85.     /* SysV does not make this test; take it out for compatibility */
  86.     if (fp->_flags & __SEOF)
  87. return (EOF);
  88.     /* if not already reading, have to be reading and writing */
  89.     if ((fp->_flags & __SRD) == 0) 
  90. {
  91. if ((fp->_flags & __SRW) == 0) 
  92.     {
  93.     errno = EBADF;
  94.     return (EOF);
  95.     }
  96. if (fp->_flags & __SWR) /* switch to reading */
  97.     {
  98.     if (__sflush (fp))
  99. return (EOF);
  100.     fp->_flags  &= ~__SWR;
  101.     fp->_w  = 0;
  102.     fp->_lbfsize  = 0;
  103.     }
  104. fp->_flags |= __SRD;
  105. }
  106.     else 
  107. {
  108. /*
  109.  * We were reading.  If there is an ungetc buffer,
  110.  * we must have been reading from that.  Drop it,
  111.  * restoring the previous buffer (if any).  If there
  112.  * is anything in that buffer, return.
  113.  */
  114. if (HASUB(fp)) 
  115.     {
  116.     FREEUB(fp);
  117.     if ((fp->_r = fp->_ur) != 0) 
  118. {
  119. fp->_p = fp->_up;
  120. return (0);
  121. }
  122.     }
  123. }
  124.     if (fp->_bf._base == NULL)
  125. __smakebuf (fp);
  126.     /*
  127.      * Before reading from a line buffered or unbuffered file,
  128.      * flush all line buffered output files, per the ANSI C
  129.      * standard.
  130.      */
  131.     if (fp->_flags & (__SLBF|__SNBF))
  132.     lflush(fp); /* flush at least current fp */
  133.     /* XXX lflush(stdin); Someday we could flush these */
  134.     /* XXX lflush(stdout); Someday we could flush these */
  135.     /* XXX lflush(stderr); Someday we could flush these */
  136.     fp->_p = fp->_bf._base;
  137.     fp->_r = __sread (fp, (char *)fp->_p, fp->_bf._size);
  138.     fp->_flags &= ~__SMOD; /* buffer contents are again pristine */
  139.     if (fp->_r <= 0) 
  140. {
  141. if (fp->_r == 0)
  142.     fp->_flags |= __SEOF;
  143. else 
  144.     {
  145.     fp->_r = 0;
  146.     fp->_flags |= __SERR;
  147.     }
  148. return (EOF);
  149. }
  150.     return (0);
  151.     }