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

VxWorks

开发平台:

C/C++

  1. /* fgets.c - Read lines of text from a stream. stdio.h */
  2. /* Copyright 1992-1993 Wind River Systems, Inc. */
  3.  
  4. /*
  5. modification history
  6. --------------------
  7. 01c,05mar93,jdi  documentation cleanup for 5.1.
  8. 01b,20sep92,smb  documentation additions
  9. 01a,29jul92,jcf  Added OBJ_VERIFY
  10.     smb  taken from UCB stdio
  11. */
  12.  
  13. /*
  14. DESCRIPTION
  15.  *
  16.  * Copyright (c) 1990 The Regents of the University of California.
  17.  * All rights reserved.
  18.  *
  19.  * This code is derived from software contributed to Berkeley by
  20.  * Chris Torek.
  21.  *
  22.  * Redistribution and use in source and binary forms, with or without
  23.  * modification, are permitted provided that the following conditions
  24.  * are met:
  25.  * 1. Redistributions of source code must retain the above copyright
  26.  *    notice, this list of conditions and the following disclaimer.
  27.  * 2. Redistributions in binary form must reproduce the above copyright
  28.  *    notice, this list of conditions and the following disclaimer in the
  29.  *    documentation and/or other materials provided with the distribution.
  30.  * 3. All advertising materials mentioning features or use of this software
  31.  *    must display the following acknowledgement:
  32.  * This product includes software developed by the University of
  33.  * California, Berkeley and its contributors.
  34.  * 4. Neither the name of the University nor the names of its contributors
  35.  *    may be used to endorse or promote products derived from this software
  36.  *    without specific prior written permission.
  37.  *
  38.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  39.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  40.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  41.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  42.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  43.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  44.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  45.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  46.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  47.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48.  * SUCH DAMAGE.
  49. INCLUDE FILE: stdio.h, string.h
  50. SEE ALSO: American National Standard X3.159-1989
  51. NOMANUAL
  52. */
  53. #include "vxWorks.h"
  54. #include "stdio.h"
  55. #include "string.h"
  56. #include "objLib.h"
  57. #include "private/stdioP.h"
  58. /******************************************************************************
  59. *
  60. * fgets - read a specified number of characters from a stream (ANSI)
  61. *
  62. * This routine stores in the array <buf> up to <n>-1 characters from a
  63. * specified stream.  No additional characters are read after a new-line or
  64. * end-of-line.  A null character is written immediately after the last
  65. * character read into the array.
  66. *
  67. * If end-of-file is encountered and no characters have been read, the
  68. * contents of the array remain unchanged.  If a read error occurs, the array
  69. * contents are indeterminate.
  70. *
  71. * INCLUDE FILES: stdio.h 
  72. *
  73. * RETURNS:
  74. * A pointer to <buf>, or a null pointer if an error occurs or end-of-file is
  75. * encountered and no characters have been read.
  76. *
  77. * SEE ALSO: fread(), fgetc()
  78. */
  79. char * fgets
  80.     (
  81.     char * buf, /* where to store characters */
  82.     FAST size_t n, /* no. of bytes to read + 1 */
  83.     FAST FILE * fp /* stream to read from */
  84.     )
  85.     {
  86.     FAST size_t len;
  87.     FAST char * s;
  88.     FAST uchar_t *      p;
  89.     FAST uchar_t *      t;
  90.     if (OBJ_VERIFY (fp, fpClassId) != OK)
  91. return (NULL);
  92.     if (n < 2) /* sanity check */
  93. return (NULL);
  94.     s = buf;
  95.     n--; /* leave space for NULL */
  96.     do 
  97. {
  98. if ((len = fp->_r) <= 0) /* If the buffer is empty, refill it */
  99.     {
  100.     if (__srefill(fp)) /* EOF/error: partial or no line */
  101. {
  102. if (s == buf)
  103.     return (NULL);
  104. break;
  105. }
  106.     len = fp->_r;
  107.     }
  108. p = fp->_p;
  109. /*
  110.  * Scan through at most n bytes of the current buffer,
  111.  * looking for 'n'.  If found, copy up to and including
  112.  * newline, and stop.  Otherwise, copy entire chunk
  113.  * and loop.
  114.  */
  115. if (len > n)
  116.     len = n;
  117. t = memchr ((void *)p, 'n', len);
  118. if (t != NULL) 
  119.     {
  120.     len = ++t - p;
  121.     fp->_r -= len;
  122.     fp->_p = t;
  123.     (void) bcopy ((void *)p, (void *)s, len);
  124.     s[len] = 0;
  125.     return (buf);
  126.     }
  127. fp->_r -= len;
  128. fp->_p += len;
  129. (void) bcopy ((void *)p, (void *)s, len);
  130. s += len;
  131. } while ((n -= len) != 0);
  132.     *s = 0;
  133.     return (buf);
  134.     }