os_oflags.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_oflags.c,v 11.9 2002/01/11 15:53:00 bostic 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. #ifdef DB_WIN32
  64. #ifndef S_IRUSR
  65. #define S_IRUSR S_IREAD /* R for owner */
  66. #endif
  67. #ifndef S_IWUSR
  68. #define S_IWUSR S_IWRITE /* W for owner */
  69. #endif
  70. #ifndef S_IRGRP
  71. #define S_IRGRP 0 /* R for group */
  72. #endif
  73. #ifndef S_IWGRP
  74. #define S_IWGRP 0 /* W for group */
  75. #endif
  76. #ifndef S_IROTH
  77. #define S_IROTH 0 /* R for other */
  78. #endif
  79. #ifndef S_IWOTH
  80. #define S_IWOTH 0 /* W for other */
  81. #endif
  82. #else
  83. #ifndef S_IRUSR
  84. #define S_IRUSR 0000400 /* R for owner */
  85. #define S_IWUSR 0000200 /* W for owner */
  86. #define S_IRGRP 0000040 /* R for group */
  87. #define S_IWGRP 0000020 /* W for group */
  88. #define S_IROTH 0000004 /* R for other */
  89. #define S_IWOTH 0000002 /* W for other */
  90. #endif
  91. #endif /* DB_WIN32 */
  92. mode = 0;
  93. if (perm[0] == 'r')
  94. mode |= S_IRUSR;
  95. if (perm[1] == 'w')
  96. mode |= S_IWUSR;
  97. if (perm[2] == 'r')
  98. mode |= S_IRGRP;
  99. if (perm[3] == 'w')
  100. mode |= S_IWGRP;
  101. if (perm[4] == 'r')
  102. mode |= S_IROTH;
  103. if (perm[5] == 'w')
  104. mode |= S_IWOTH;
  105. return (mode);
  106. }