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

VxWorks

开发平台:

C/C++

  1. /* wbuf.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,smb  taken from UCB stdio
  8. */
  9. /*
  10. DESCRIPTION
  11.  * Copyright (c) 1990 The Regents of the University of California.
  12.  * All rights reserved.
  13.  *
  14.  * This code is derived from software contributed to Berkeley by
  15.  * Chris Torek.
  16.  *
  17.  * Redistribution and use in source and binary forms, with or without
  18.  * modification, are permitted provided that the following conditions
  19.  * are met:
  20.  * 1. Redistributions of source code must retain the above copyright
  21.  *    notice, this list of conditions and the following disclaimer.
  22.  * 2. Redistributions in binary form must reproduce the above copyright
  23.  *    notice, this list of conditions and the following disclaimer in the
  24.  *    documentation and/or other materials provided with the distribution.
  25.  * 3. All advertising materials mentioning features or use of this software
  26.  *    must display the following acknowledgement:
  27.  * This product includes software developed by the University of
  28.  * California, Berkeley and its contributors.
  29.  * 4. Neither the name of the University nor the names of its contributors
  30.  *    may be used to endorse or promote products derived from this software
  31.  *    without specific prior written permission.
  32.  *
  33.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  34.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  35.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  36.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  37.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  38.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  39.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  40.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  41.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  42.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  43.  * SUCH DAMAGE.
  44. INCLUDE FILE: stdio.h
  45. SEE ALSO: American National Standard X3.159-1989
  46. NOMANUAL
  47. */
  48. #include "vxWorks.h"
  49. #include "stdio.h"
  50. #include "private/stdioP.h"
  51. /******************************************************************************
  52. *
  53. * __swbuf - 
  54. * Write the given character into the (probably full) buffer for
  55. * the given file.  Flush the buffer out if it is or becomes full,
  56. * or if c=='n' and the file is line buffered.
  57. *
  58. * INCLUDE: stdio.h 
  59. *
  60. * RETURNS: 
  61. * NOMANAUL
  62. */
  63. int __swbuf
  64.     (
  65.     FAST int c,
  66.     FAST FILE * fp
  67.     )
  68.     {
  69.     FAST int    n;
  70.     /*
  71.      * In case we cannot write, or longjmp takes us out early,
  72.      * make sure _w is 0 (if fully- or un-buffered) or -_bf._size
  73.      * (if line buffered) so that we will get called again.
  74.      * If we did not do this, a sufficient number of putc()
  75.      * calls might wrap _w from negative to positive.
  76.      */
  77.     fp->_w = fp->_lbfsize;
  78.     if (cantwrite (fp))
  79. return (EOF);
  80.     c = (uchar_t)c;
  81.     /*
  82.      * If it is completely full, flush it out.  Then, in any case,
  83.      * stuff c into the buffer.  If this causes the buffer to fill
  84.      * completely, or if c is 'n' and the file is line buffered,
  85.      * flush it (perhaps a second time).  The second flush will always
  86.      * happen on unbuffered streams, where _bf._size==1; fflush()
  87.      * guarantees that putc() will always call wbuf() by setting _w
  88.      * to 0, so we need not do anything else.
  89.      */
  90.     n = fp->_p - fp->_bf._base;
  91.     if (n >= fp->_bf._size) 
  92. {
  93. if (fflush (fp))
  94.     return (EOF);
  95. n = 0;
  96. }
  97.     fp->_w--;
  98.     *fp->_p++ = c;
  99.     if ((++n == fp->_bf._size) || (fp->_flags & __SLBF && c == 'n'))
  100. if (fflush (fp))
  101. return (EOF);
  102.     return (c);
  103.     }