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

VxWorks

开发平台:

C/C++

  1. /* makebuf.c - make a file buffer. 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, removed fstat().
  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, sys/types.h, sys/stat.h, unistd.h, stdlib.h
  45. SEE ALSO: American National Standard X3.159-1989
  46. NOMANUAL
  47. */
  48. #include "vxWorks.h"
  49. #include "ioLib.h"
  50. #include "stdio.h"
  51. #include "sys/types.h"
  52. #include "sys/stat.h"
  53. #include "unistd.h"
  54. #include "stdlib.h"
  55. #include "private/stdioP.h"
  56. /******************************************************************************
  57. *
  58. * __smakebuf - Allocate a file buffer, or switch to unbuffered I/O.
  59. *
  60. * As a side effect, we set __SOPT or __SNPT (en/dis-able fseek
  61. * optimisation) right after the fstat() that finds the buffer size.
  62. * INCLUDE: stdio.h 
  63. *
  64. * RETURNS: 
  65. * NOMANUAL
  66. */
  67. void __smakebuf
  68.     (
  69.     FAST FILE *fp
  70.     )
  71.     {
  72.     FAST size_t size;
  73.     FAST BOOL  couldBeTty;
  74.     FAST void * p;
  75.     struct stat st;
  76.     if (fp->_flags & __SNBF)  /* is buffering disabled? */
  77. {
  78. fp->_bf._base = fp->_nbuf; /* base of single character buf */
  79. fp->_p = fp->_nbuf; /* point to character buf */
  80. fp->_bf._size = 1; /* length of buf is one */
  81. return; /* RETURN */
  82. }
  83.     if (fp->_file < 0) /* has fd been associated with file? */
  84. {
  85. couldBeTty  = FALSE; /* can't be a tty */
  86. size     = BUFSIZ; /* standard buffer size */
  87. fp->_flags |= __SNPT; /* don't optimize fseek() */
  88.      /* get blksize hint from driver */
  89.     else if ((ioctl (fp->_file, FIOFSTATGET, (int)&st)) < 0)
  90. {
  91. couldBeTty  = TRUE; /* tyLib does not support fstat! */
  92. size     = BUFSIZ; /* standard buffer size */
  93. fp->_flags |= __SNPT; /* do not try to optimise fseek() */
  94. }
  95.     else
  96. {
  97. couldBeTty = ((st.st_mode & S_IFMT) == S_IFCHR);
  98. size = (st.st_blksize <= 0) ? (BUFSIZ) : (st.st_blksize);
  99. /*
  100.  * Optimise fseek() only if it is a regular file.
  101.  * (The test for __sseek is mainly paranoia.)
  102.  */
  103. if ((st.st_mode & S_IFMT) == S_IFREG) 
  104.     {
  105.     fp->_flags |= __SOPT;
  106.     fp->_blksize = st.st_blksize;
  107.     } 
  108. else
  109.     fp->_flags |= __SNPT;
  110. }
  111.     if ((p = malloc (size)) == NULL)  /* if malloc fails, disable buffering */
  112. {
  113. fp->_flags |= __SNBF;
  114. fp->_bf._base  = fp->_p = fp->_nbuf;
  115. fp->_bf._size  = 1;
  116. }
  117.     else 
  118. {
  119. fp->_flags |= __SMBF; /* mark buffer as malloced to reclaim */
  120. fp->_bf._base  = fp->_p = p;
  121. fp->_bf._size  = size;
  122. if (couldBeTty && isatty (fp->_file))
  123.     fp->_flags |= __SLBF; /* turn on line buffering if tty */
  124. }
  125.     }