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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_oflags.c,v 11.6 2000/10/27 20:32:02 dda Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <sys/stat.h>
  14. #include <fcntl.h>
  15. #endif
  16. #include "db_int.h"
  17. /*
  18.  * __db_oflags --
  19.  * Convert open(2) flags to DB flags.
  20.  *
  21.  * PUBLIC: u_int32_t __db_oflags __P((int));
  22.  */
  23. u_int32_t
  24. __db_oflags(oflags)
  25. int oflags;
  26. {
  27. u_int32_t dbflags;
  28. dbflags = 0;
  29. if (oflags & O_CREAT)
  30. dbflags |= DB_CREATE;
  31. if (oflags & O_TRUNC)
  32. dbflags |= DB_TRUNCATE;
  33. /*
  34.  * !!!
  35.  * Convert POSIX 1003.1 open(2) mode flags to DB flags.  This isn't
  36.  * an exact science as few POSIX implementations have a flag value
  37.  * for O_RDONLY, it's simply the lack of a write flag.
  38.  */
  39. #ifndef O_ACCMODE
  40. #define O_ACCMODE (O_RDONLY | O_RDWR | O_WRONLY)
  41. #endif
  42. switch (oflags & O_ACCMODE) {
  43. case O_RDWR:
  44. case O_WRONLY:
  45. break;
  46. default:
  47. dbflags |= DB_RDONLY;
  48. break;
  49. }
  50. return (dbflags);
  51. }
  52. /*
  53.  * __db_omode --
  54.  * Convert a permission string to the correct open(2) flags.
  55.  *
  56.  * PUBLIC: int __db_omode __P((const char *));
  57.  */
  58. int
  59. __db_omode(perm)
  60. const char *perm;
  61. {
  62. int mode;
  63. #ifndef S_IRUSR
  64. #ifdef DB_WIN32
  65. #define S_IRUSR S_IREAD /* R for owner */
  66. #define S_IWUSR S_IWRITE /* W for owner */
  67. #define S_IRGRP 0 /* R for group */
  68. #define S_IWGRP 0 /* W for group */
  69. #define S_IROTH 0 /* R for other */
  70. #define S_IWOTH 0 /* W for other */
  71. #else
  72. #define S_IRUSR 0000400 /* R for owner */
  73. #define S_IWUSR 0000200 /* W for owner */
  74. #define S_IRGRP 0000040 /* R for group */
  75. #define S_IWGRP 0000020 /* W for group */
  76. #define S_IROTH 0000004 /* R for other */
  77. #define S_IWOTH 0000002 /* W for other */
  78. #endif /* DB_WIN32 */
  79. #endif
  80. mode = 0;
  81. if (perm[0] == 'r')
  82. mode |= S_IRUSR;
  83. if (perm[1] == 'w')
  84. mode |= S_IWUSR;
  85. if (perm[2] == 'r')
  86. mode |= S_IRGRP;
  87. if (perm[3] == 'w')
  88. mode |= S_IWGRP;
  89. if (perm[4] == 'r')
  90. mode |= S_IROTH;
  91. if (perm[5] == 'w')
  92. mode |= S_IWOTH;
  93. return (mode);
  94. }