opendir.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:3k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Read directories
  3.  *
  4.  * Author: Mark Crispin
  5.  * Networks and Distributed Computing
  6.  * Computing & Communications
  7.  * University of Washington
  8.  * Administration Building, AG-44
  9.  * Seattle, WA  98195
  10.  * Internet: MRC@CAC.Washington.EDU
  11.  *
  12.  * Date: 16 December 1993
  13.  * Last Edited: 14 April 1994
  14.  *
  15.  * Copyright 1994 by the University of Washington
  16.  *
  17.  *  Permission to use, copy, modify, and distribute this software and its
  18.  * documentation for any purpose and without fee is hereby granted, provided
  19.  * that the above copyright notice appears in all copies and that both the
  20.  * above copyright notice and this permission notice appear in supporting
  21.  * documentation, and that the name of the University of Washington not be
  22.  * used in advertising or publicity pertaining to distribution of the software
  23.  * without specific, written prior permission.  This software is made available
  24.  * "as is", and
  25.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  26.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  27.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  28.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  29.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  30.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  31.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  32.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  33.  *
  34.  */
  35. /* Emulator for BSD opendir() call
  36.  * Accepts: directory name
  37.  * Returns: directory structure pointer
  38.  */
  39. DIR *opendir (char *name)
  40. {
  41.   DIR *d = NIL;
  42.   struct stat sbuf;
  43.   int fd = open (name,O_RDONLY,NIL);
  44.   errno = ENOTDIR; /* default error is bogus directory */
  45.   if ((fd >= 0) && !(fstat (fd,&sbuf)) && ((sbuf.st_mode&S_IFMT) == S_IFDIR)) {
  46.     d = (DIR *) fs_get (sizeof (DIR));
  47. /* initialize structure */
  48.     d->dd_loc = 0;
  49.     read (fd,d->dd_buf = (char *) fs_get (sbuf.st_size),
  50.   d->dd_size = sbuf.st_size);
  51.   }
  52.   else if (d) fs_give ((void **) &d);
  53.   if (fd >= 0) close (fd);
  54.   return d;
  55. }
  56. /* Emulator for BSD closedir() call
  57.  * Accepts: directory structure pointer
  58.  */
  59. int closedir (DIR *d)
  60. {
  61. /* free storage */
  62.   fs_give ((void **) &(d->dd_buf));
  63.   fs_give ((void **) &d);
  64.   return NIL; /* return */
  65. }
  66. /* Emulator for BSD readdir() call
  67.  * Accepts: directory structure pointer
  68.  */
  69. struct direct *readdir (DIR *d)
  70. {
  71. /* loop through directory */
  72.   while (d->dd_loc < d->dd_size) {
  73.     struct direct *dp = (struct direct *) (d->dd_buf + d->dd_loc);
  74.     d->dd_loc += sizeof (struct direct);
  75.     if (dp->d_ino) return dp; /* if have a good entry return it */
  76.   }
  77.   return NIL; /* all done */
  78. }