dba_db1.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Shen Cheng-Da <cdsheen@gmail.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #if DBA_DB1
  23. #include "php_db1.h"
  24. #ifdef DB1_INCLUDE_FILE
  25. #include DB1_INCLUDE_FILE
  26. #endif
  27. #include <sys/types.h>
  28. #include <sys/stat.h>
  29. #include <fcntl.h>
  30. #define DB1_DATA dba_db1_data *dba = info->dbf
  31. #define DB1_GKEY DBT gkey; gkey.data = (char *) key; gkey.size = keylen
  32. typedef struct {
  33. DB *dbp;
  34. } dba_db1_data;
  35. DBA_OPEN_FUNC(db1)
  36. {
  37. dba_db1_data *dba;
  38. DB *db;
  39. int gmode;
  40. int filemode = 0644;
  41. if (info->argc > 0) {
  42. filemode = zval_get_long(&info->argv[0]);
  43. }
  44. gmode = 0;
  45. switch (info->mode) {
  46. case DBA_READER:
  47. gmode = O_RDONLY;
  48. break;
  49. case DBA_WRITER:
  50. gmode = O_RDWR;
  51. break;
  52. case DBA_CREAT:
  53. gmode = O_RDWR | O_CREAT;
  54. break;
  55. case DBA_TRUNC:
  56. gmode = O_RDWR | O_CREAT | O_TRUNC;
  57. break;
  58. default:
  59. return FAILURE; /* not possible */
  60. }
  61. db = dbopen((char *)info->path, gmode, filemode, DB_HASH, NULL);
  62. if (db == NULL) {
  63. return FAILURE;
  64. }
  65. dba = pemalloc(sizeof(*dba), info->flags&DBA_PERSISTENT);
  66. dba->dbp = db;
  67. info->dbf = dba;
  68. return SUCCESS;
  69. }
  70. DBA_CLOSE_FUNC(db1)
  71. {
  72. DB1_DATA;
  73. dba->dbp->close(dba->dbp);
  74. pefree(info->dbf, info->flags&DBA_PERSISTENT);
  75. }
  76. DBA_FETCH_FUNC(db1)
  77. {
  78. DBT gval;
  79. DB1_DATA;
  80. DB1_GKEY;
  81. memset(&gval, 0, sizeof(gval));
  82. if (dba->dbp->get(dba->dbp, &gkey, &gval, 0) == RET_SUCCESS) {
  83. if (newlen) *newlen = gval.size;
  84. return estrndup(gval.data, gval.size);
  85. }
  86. return NULL;
  87. }
  88. DBA_UPDATE_FUNC(db1)
  89. {
  90. DBT gval;
  91. DB1_DATA;
  92. DB1_GKEY;
  93. gval.data = (char *) val;
  94. gval.size = vallen;
  95. return dba->dbp->put(dba->dbp, &gkey, &gval, mode == 1 ? R_NOOVERWRITE : 0) != RET_SUCCESS ? FAILURE : SUCCESS;
  96. }
  97. DBA_EXISTS_FUNC(db1)
  98. {
  99. DBT gval;
  100. DB1_DATA;
  101. DB1_GKEY;
  102. return dba->dbp->get(dba->dbp, &gkey, &gval, 0) != RET_SUCCESS ? FAILURE : SUCCESS;
  103. }
  104. DBA_DELETE_FUNC(db1)
  105. {
  106. DB1_DATA;
  107. DB1_GKEY;
  108. return dba->dbp->del(dba->dbp, &gkey, 0) != RET_SUCCESS ? FAILURE : SUCCESS;
  109. }
  110. DBA_FIRSTKEY_FUNC(db1)
  111. {
  112. DBT gkey;
  113. DBT gval;
  114. DB1_DATA;
  115. memset(&gkey, 0, sizeof(gkey));
  116. memset(&gval, 0, sizeof(gval));
  117. if (dba->dbp->seq(dba->dbp, &gkey, &gval, R_FIRST) == RET_SUCCESS) {
  118. if (newlen) *newlen = gkey.size;
  119. return estrndup(gkey.data, gkey.size);
  120. }
  121. return NULL;
  122. }
  123. DBA_NEXTKEY_FUNC(db1)
  124. {
  125. DBT gkey;
  126. DBT gval;
  127. DB1_DATA;
  128. memset(&gkey, 0, sizeof(gkey));
  129. memset(&gval, 0, sizeof(gval));
  130. if (dba->dbp->seq(dba->dbp, &gkey, &gval, R_NEXT) == RET_SUCCESS) {
  131. if (newlen) *newlen = gkey.size;
  132. return estrndup(gkey.data, gkey.size);
  133. }
  134. return NULL;
  135. }
  136. DBA_OPTIMIZE_FUNC(db1)
  137. {
  138. /* dummy */
  139. return SUCCESS;
  140. }
  141. DBA_SYNC_FUNC(db1)
  142. {
  143. return SUCCESS;
  144. }
  145. DBA_INFO_FUNC(db1)
  146. {
  147. return estrdup(DB1_VERSION);
  148. }
  149. #endif
  150. /*
  151. * Local variables:
  152. * tab-width: 4
  153. * c-basic-offset: 4
  154. * End:
  155. * vim600: sw=4 ts=4 fdm=marker
  156. * vim<600: sw=4 ts=4
  157. */