my_dir.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

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