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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_stat.c,v 11.20 2002/07/12 18:56:53 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <sys/stat.h>
  14. #include <string.h>
  15. #endif
  16. #include "db_int.h"
  17. /*
  18.  * __os_exists --
  19.  * Return if the file exists.
  20.  *
  21.  * PUBLIC: int __os_exists __P((const char *, int *));
  22.  */
  23. int
  24. __os_exists(path, isdirp)
  25. const char *path;
  26. int *isdirp;
  27. {
  28. int ret;
  29. struct stat sb;
  30. if (DB_GLOBAL(j_exists) != NULL)
  31. return (DB_GLOBAL(j_exists)(path, isdirp));
  32. do {
  33. ret =
  34. #ifdef HAVE_VXWORKS
  35.     stat((char *)path, &sb);
  36. #else
  37.     stat(path, &sb);
  38. #endif
  39. if (ret != 0)
  40. ret = __os_get_errno();
  41. } while (ret == EINTR);
  42. if (ret != 0)
  43. return (ret);
  44. #if !defined(S_ISDIR) || defined(STAT_MACROS_BROKEN)
  45. #undef S_ISDIR
  46. #ifdef _S_IFDIR
  47. #define S_ISDIR(m) (_S_IFDIR & (m))
  48. #else
  49. #define S_ISDIR(m) (((m) & 0170000) == 0040000)
  50. #endif
  51. #endif
  52. if (isdirp != NULL)
  53. *isdirp = S_ISDIR(sb.st_mode);
  54. return (0);
  55. }
  56. /*
  57.  * __os_ioinfo --
  58.  * Return file size and I/O size; abstracted to make it easier
  59.  * to replace.
  60.  *
  61.  * PUBLIC: int __os_ioinfo __P((DB_ENV *, const char *,
  62.  * PUBLIC:    DB_FH *, u_int32_t *, u_int32_t *, u_int32_t *));
  63.  */
  64. int
  65. __os_ioinfo(dbenv, path, fhp, mbytesp, bytesp, iosizep)
  66. DB_ENV *dbenv;
  67. const char *path;
  68. DB_FH *fhp;
  69. u_int32_t *mbytesp, *bytesp, *iosizep;
  70. {
  71. int ret;
  72. struct stat sb;
  73. if (DB_GLOBAL(j_ioinfo) != NULL)
  74. return (DB_GLOBAL(j_ioinfo)(path,
  75.     fhp->fd, mbytesp, bytesp, iosizep));
  76. retry:
  77. if (fstat(fhp->fd, &sb) == -1) {
  78. if ((ret = __os_get_errno()) == EINTR)
  79. goto retry;
  80. __db_err(dbenv, "fstat: %s", strerror(ret));
  81. return (ret);
  82. }
  83. /* Return the size of the file. */
  84. if (mbytesp != NULL)
  85. *mbytesp = (u_int32_t)(sb.st_size / MEGABYTE);
  86. if (bytesp != NULL)
  87. *bytesp = (u_int32_t)(sb.st_size % MEGABYTE);
  88. /*
  89.  * Return the underlying filesystem blocksize, if available.
  90.  *
  91.  * XXX
  92.  * Check for a 0 size -- the HP MPE/iX architecture has st_blksize,
  93.  * but it's always 0.
  94.  */
  95. #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
  96. if (iosizep != NULL && (*iosizep = sb.st_blksize) == 0)
  97. *iosizep = DB_DEF_IOSIZE;
  98. #else
  99. if (iosizep != NULL)
  100. *iosizep = DB_DEF_IOSIZE;
  101. #endif
  102. return (0);
  103. }