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

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: @(#)findfp.c 5.10 (Berkeley) 2/24/91";*/
  39. static char *rcsid = "$Id$";
  40. #endif /* LIBC_SCCS and not lint */
  41. #include <pthread.h>
  42. #include <stdlib.h>
  43. #include <stdio.h>
  44. #include <errno.h>
  45. #include <string.h>
  46. #include "local.h"
  47. #include "glue.h"
  48. #define NSTATIC 20 /* stdin + stdout + stderr + the usual */
  49. #define NDYNAMIC 10 /* add ten more whenever necessary */
  50. #define std(flags, file) 
  51. {0,0,0,flags,file,{0},0 }
  52. /*  p r w flags file _bf z  */
  53. static FILE usual[NSTATIC - 3]; /* the usual */
  54. static struct glue uglue = { 0, NSTATIC - 3, usual };
  55. FILE __sF[3] = {
  56. std(__SRD, 0), /* stdin */
  57. std(__SWR, 1), /* stdout */
  58. std(__SWR|__SNBF, 2) /* stderr */
  59. };
  60. struct glue __sglue = { &uglue, 3, __sF };
  61. FILE *__iob = __sF;
  62. FILE *_iob = __sF;
  63. pthread_mutex_t __sfp_mutex = PTHREAD_MUTEX_INITIALIZER;
  64. pthread_cond_t  __sfp_cond = PTHREAD_COND_INITIALIZER;
  65. /*
  66.  * __sfp_state = 0, when free, > 0 when in _fwalk 
  67.  * This allows multiple readers in _fwalk, but only one writer __sfp,
  68.  * or freopen() at a time.
  69.  */
  70. int __sfp_state = 0;
  71. static struct glue *moreglue(register int n)
  72. {
  73. register struct glue *g;
  74. register FILE *p;
  75. static FILE empty;
  76. g = (struct glue *)malloc(sizeof(struct glue) + n * sizeof(FILE));
  77. if (g == NULL)
  78. return (NULL);
  79. p = (FILE *)(g + 1);
  80. g->next = NULL;
  81. g->niobs = n;
  82. g->iobs = p;
  83. while (--n >= 0)
  84. *p++ = empty;
  85. return (g);
  86. }
  87. /*
  88.  * Find a free FILE for fopen et al.
  89.  */
  90. FILE *__sfp()
  91. {
  92. register FILE *fp;
  93. register int n;
  94. register struct glue *g;
  95. for (g = &__sglue;; g = g->next) {
  96. for (fp = g->iobs, n = g->niobs; --n >= 0; fp++)
  97. if (fp->_flags == 0) {
  98. fp->_flags = 1; /* reserve this slot; caller sets real flags */
  99. fp->_p = NULL; /* no current pointer */
  100. fp->_w = 0; /* nothing to read or write */
  101. fp->_r = 0;
  102. fp->_bf._base = NULL; /* no buffer */
  103. fp->_bf._size = 0;
  104. fp->_lbfsize = 0; /* not line buffered */
  105. fp->_file = -1; /* no file */
  106. fp->_ub._base = NULL; /* no ungetc buffer */
  107. fp->_ub._size = 0;
  108. fp->_lb._base = NULL; /* no line buffer */
  109. fp->_lb._size = 0;
  110. goto __sfp_done;
  111. }
  112. if (g->next == NULL && (g->next = moreglue(NDYNAMIC)) == NULL) {
  113. fp = NULL;
  114. break;
  115. }
  116. }
  117. __sfp_done:;
  118. return (fp);
  119. }
  120. /*
  121.  * exit() calls _cleanup() through *__cleanup, set whenever we
  122.  * open or buffer a file.  This chicanery is done so that programs
  123.  * that do not use stdio need not link it all in.
  124.  *
  125.  * The name `_cleanup' is, alas, fairly well known outside stdio.
  126.  */
  127. void _cleanup()
  128. {
  129. (void) __swalk_sflush();
  130. }
  131. /*
  132.  * __sinit() is called whenever stdio's internal variables must be set up.
  133.  * Do the pthread_once stuff here to keep pthread_once_t out of the
  134.  * header files.  No reason sprintf.c &c should need to include pthread.h...
  135.  */
  136. static void __s_real_init ()
  137. {
  138.     /* make sure we clean up on exit */
  139.     __cleanup = _cleanup;
  140. }
  141. static pthread_once_t sdidinit = PTHREAD_ONCE_INIT;
  142. void __sinit ()
  143. {
  144.     pthread_once (&sdidinit, __s_real_init);
  145. }