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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. #ifndef _my_dir_h
  18. #define _my_dir_h
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. #ifndef MY_DIR_H
  23. #define MY_DIR_H
  24. #include <sys/stat.h>
  25. /* Defines for my_dir and my_stat */
  26. #define MY_S_IFMT S_IFMT /* type of file */
  27. #define MY_S_IFDIR S_IFDIR /* directory */
  28. #define MY_S_IFCHR S_IFCHR /* character special */
  29. #define MY_S_IFBLK S_IFBLK /* block special */
  30. #define MY_S_IFREG S_IFREG /* regular */
  31. #define MY_S_IFIFO S_IFIFO /* fifo */
  32. #define MY_S_ISUID S_ISUID /* set user id on execution */
  33. #define MY_S_ISGID S_ISGID /* set group id on execution */
  34. #define MY_S_ISVTX S_ISVTX /* save swapped text even after use */
  35. #define MY_S_IREAD S_IREAD /* read permission, owner */
  36. #define MY_S_IWRITE S_IWRITE /* write permission, owner */
  37. #define MY_S_IEXEC S_IEXEC /* execute/search permission, owner */
  38. #define MY_S_ISDIR(m) (((m) & MY_S_IFMT) == MY_S_IFDIR)
  39. #define MY_S_ISCHR(m) (((m) & MY_S_IFMT) == MY_S_IFCHR)
  40. #define MY_S_ISBLK(m) (((m) & MY_S_IFMT) == MY_S_IFBLK)
  41. #define MY_S_ISREG(m) (((m) & MY_S_IFMT) == MY_S_IFREG)
  42. #define MY_S_ISFIFO(m) (((m) & MY_S_IFMT) == MY_S_IFIFO)
  43. #define MY_DONT_SORT 512 /* my_lib; Don't sort files */
  44. #define MY_WANT_STAT 1024 /* my_lib; stat files */
  45. /* typedefs for my_dir & my_stat */
  46. #ifdef USE_MY_STAT_STRUCT
  47. typedef struct my_stat
  48. {
  49.   dev_t st_dev; /* major & minor device numbers */
  50.   ino_t st_ino; /* inode number */
  51.   ushort st_mode; /* file permissons (& suid sgid .. bits) */
  52.   short st_nlink; /* number of links to file */
  53.   ushort st_uid; /* user id */
  54.   ushort st_gid; /* group id */
  55.   dev_t st_rdev; /* more major & minor device numbers (???) */
  56.   off_t st_size; /* size of file */
  57.   time_t st_atime; /* time for last read */
  58.   time_t st_mtime; /* time for last contens modify */
  59.   time_t st_ctime; /* time for last inode or contents modify */
  60. } MY_STAT;
  61. #else
  62. #define MY_STAT struct stat /* Orginal struct have what we need */
  63. #endif /* USE_MY_STAT_STRUCT */
  64. typedef struct fileinfo /* Struct returned from my_dir & my_stat */
  65. {
  66.   char *name;
  67.   MY_STAT mystat;
  68. } FILEINFO;
  69. typedef struct st_my_dir /* Struct returned from my_dir */
  70. {
  71.   struct fileinfo *dir_entry;
  72.   uint number_off_files;
  73. } MY_DIR;
  74. extern MY_DIR *my_dir(const char *path,myf MyFlags);
  75. extern void my_dirend(MY_DIR *buffer);
  76. extern MY_STAT *my_stat(const char *path, MY_STAT *stat_area, myf my_flags);
  77. extern int my_fstat(int filenr, MY_STAT *stat_area, myf MyFlags);
  78. #endif /* MY_DIR_H */
  79. #ifdef __cplusplus
  80. }
  81. #endif
  82. #endif