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

VxWorks

开发平台:

C/C++

  1. /* fread.c - read a file. stdio.h */
  2. /* Copyright 1992-2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01f,21jan02,jkf  SPR#72774, fread is checking for NULL on wrong arg
  7. 01e,12dec01,jkf  fixing SPR#72128, fread should check for NULL before bcopy
  8. 01d,10nov01,jkf  SPR#70967, fread returns wrong value when 3rd arg == 0
  9. 01c,05mar93,jdi  documentation cleanup for 5.1.
  10. 01b,20sep92,smb  documentation additions
  11. 01a,29jul92,jcf  Added OBJ_VERIFY
  12.     smb  taken from UCB stdio
  13. */
  14. /*
  15. DESCRIPTION
  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. * fread - read data into an array (ANSI)
  61. *
  62. * This routine reads, into the array <buf>, up to <count> elements of size
  63. * <size>, from a specified stream <fp>.  The file position indicator for the
  64. * stream (if defined) is advanced by the number of characters successfully
  65. * read.  If an error occurs, the resulting value of the file position
  66. * indicator for the stream is indeterminate.  If a partial element is read,
  67. * its value is indeterminate.
  68. * INCLUDE FILES: stdio.h 
  69. *
  70. * RETURNS:
  71. * The number of elements successfully read, which may be less than <count>
  72. * if a read error or end-of-file is encountered; or zero if <size> or
  73. * <count> is zero, with the contents of the array and the state of the
  74. * stream remaining unchanged.
  75. */
  76. int fread
  77.     (
  78.     void * buf, /* where to copy data */
  79.     size_t size,  /* element size */
  80.     size_t count, /* no. of elements */
  81.     FAST FILE * fp /* stream to read from */
  82.     )
  83.     {
  84.     FAST size_t resid;
  85.     FAST char * p;
  86.     FAST int r;
  87.     size_t total;
  88.     /* SPR#72128, check for NULL args before bcopy */
  89.     if ((NULL == fp) || (NULL == buf))
  90. {
  91.         return (0);
  92. }
  93.     if (OBJ_VERIFY (fp, fpClassId) != OK)
  94. return (0);
  95.     /* 
  96.      * SPR#70967: fread returns wrong value when 3rd arg == 0 
  97.      *
  98.      * ANSI specification declares fread() returns zero if size 
  99.      * _or_ count is zero.  But the vxWorks implementation returned 
  100.      * non-zero given the following input case:
  101.      *
  102.      * fread ( buf , 0 ,1 ,fp );
  103.      *
  104.      * Old (broken) code:
  105.      *
  106.      * if ((resid = (count * size)) == 0)
  107.      *     return (count);     
  108.      *
  109.      * New (fixed) code:
  110.      *
  111.      * if (0 == (resid = (count * size)))
  112.      *     return (0);     
  113.      */
  114.     if (0 == (resid = (count * size)))
  115. return (0);
  116.     if (fp->_r < 0)
  117. fp->_r = 0;
  118.     total = resid;
  119.     p   = buf;
  120.     while (resid > (r = fp->_r)) 
  121. {
  122. (void) bcopy ((void *)fp->_p, (void *)p, (size_t)r);
  123. fp->_p += r;
  124. p += r;
  125. resid -= r;
  126. if (__srefill (fp)) /* fp->_r = 0 is done */
  127. return ((total - resid) / size); /* partial result */
  128. }
  129.     (void) bcopy ((void *)fp->_p, (void *)p, resid);
  130.     fp->_r -= resid;
  131.     fp->_p += resid;
  132.     return (count);
  133.     }