makebuf.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * Copyright (c) 1993, 1994 Chris Provenzano. 
  4.  * All rights reserved.
  5.  *
  6.  * This code is derived from software contributed to Berkeley by
  7.  * Chris Torek.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  * 3. All advertising materials mentioning features or use of this software
  18.  *    must display the following acknowledgement:
  19.  * This product includes software developed by the University of
  20.  * California, Berkeley and its contributors.
  21.  * 4. Neither the name of the University nor the names of its contributors
  22.  *    may be used to endorse or promote products derived from this software
  23.  *    without specific prior written permission.
  24.  *
  25.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  26.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  31.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  33.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  34.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  35.  * SUCH DAMAGE.
  36.  */
  37. #if defined(LIBC_SCCS) && !defined(lint)
  38. /*static char *sccsid = "from: @(#)makebuf.c 5.3 (Berkeley) 5/6/93";*/
  39. static char *rcsid = "$Id$";
  40. #endif /* LIBC_SCCS and not lint */
  41. #include <pthread.h>
  42. #include <sys/types.h>
  43. #include <sys/stat.h>
  44. #include <unistd.h>
  45. #include <stdio.h>
  46. #include <stdlib.h>
  47. #include "local.h"
  48. void     (*__cleanup)    __P_((void));
  49. /*
  50.  * Allocate a file buffer, or switch to unbuffered I/O.
  51.  * Per the ANSI C standard, ALL tty devices default to line buffered.
  52.  *
  53.  * As a side effect, we set __SOPT or __SNPT (en/dis-able fseek
  54.  * optimisation) right after the fstat() that finds the buffer size.
  55.  */
  56. void
  57. __smakebuf(fp)
  58. register FILE *fp;
  59. {
  60. register void *p;
  61. register int flags;
  62. size_t size;
  63. int couldbetty;
  64. if (fp->_flags & __SNBF) {
  65. fp->_bf._base = fp->_p = fp->_nbuf;
  66. fp->_bf._size = 1;
  67. return;
  68. }
  69. flags = __swhatbuf(fp, &size, &couldbetty);
  70. if ((p = malloc(size)) == NULL) {
  71. fp->_flags |= __SNBF;
  72. fp->_bf._base = fp->_p = fp->_nbuf;
  73. fp->_bf._size = 1;
  74. return;
  75. }
  76. __cleanup = _cleanup;
  77. flags |= __SMBF;
  78. fp->_bf._base = fp->_p = p;
  79. fp->_bf._size = size;
  80. if (couldbetty && isatty(fp->_file))
  81. flags |= __SLBF;
  82. fp->_flags |= flags;
  83. }
  84. /*
  85.  * Internal routine to determine `proper' buffering for a file.
  86.  */
  87. int
  88. __swhatbuf(fp, bufsize, couldbetty)
  89. register FILE *fp;
  90. size_t *bufsize;
  91. int *couldbetty;
  92. {
  93. struct stat st;
  94. if (fp->_file < 0 || fstat(fp->_file, &st) < 0) {
  95. *couldbetty = 0;
  96. *bufsize = BUFSIZ;
  97. return (__SNPT);
  98. }
  99. /* could be a tty iff it is a character device */
  100. *couldbetty = (st.st_mode & S_IFMT) == S_IFCHR;
  101. if (st.st_blksize <= 0) {
  102. *bufsize = BUFSIZ;
  103. return (__SNPT);
  104. }
  105. /*
  106.  * Optimise fseek() only if it is a regular file.  (The test for
  107.  * __sseek is mainly paranoia.)  It is safe to set _blksize
  108.  * unconditionally; it will only be used if __SOPT is also set.
  109.  */
  110. *bufsize = st.st_blksize;
  111. fp->_blksize = st.st_blksize;
  112. return ((st.st_mode & S_IFMT) == S_IFREG ? __SOPT : __SNPT);
  113. }