dba_db3.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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: Sascha Schumann <sascha@schumann.cx> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #if DBA_DB3
  23. #include "php_db3.h"
  24. #include <sys/stat.h>
  25. #include <string.h>
  26. #ifdef DB3_INCLUDE_FILE
  27. #include DB3_INCLUDE_FILE
  28. #else
  29. #include <db.h>
  30. #endif
  31. static void php_dba_db3_errcall_fcn(
  32. #if (DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 3))
  33. const DB_ENV *dbenv,
  34. #endif
  35. const char *errpfx, const char *msg)
  36. {
  37. php_error_docref(NULL, E_NOTICE, "%s%s", errpfx?errpfx:"", msg);
  38. }
  39. #define DB3_DATA dba_db3_data *dba = info->dbf
  40. #define DB3_GKEY \
  41. DBT gkey; \
  42. memset(&gkey, 0, sizeof(gkey)); \
  43. gkey.data = (char *) key; gkey.size = keylen
  44. typedef struct {
  45. DB *dbp;
  46. DBC *cursor;
  47. } dba_db3_data;
  48. DBA_OPEN_FUNC(db3)
  49. {
  50. DB *dbp = NULL;
  51. DBTYPE type;
  52. int gmode = 0, err;
  53. int filemode = 0644;
  54. struct stat check_stat;
  55. int s = VCWD_STAT(info->path, &check_stat);
  56. if (!s && !check_stat.st_size) {
  57. info->mode = DBA_TRUNC; /* force truncate */
  58. }
  59. type = info->mode == DBA_READER ? DB_UNKNOWN :
  60. info->mode == DBA_TRUNC ? DB_BTREE :
  61. s ? DB_BTREE : DB_UNKNOWN;
  62. gmode = info->mode == DBA_READER ? DB_RDONLY :
  63. (info->mode == DBA_CREAT && s) ? DB_CREATE :
  64. (info->mode == DBA_CREAT && !s) ? 0 :
  65. info->mode == DBA_WRITER ? 0 :
  66. info->mode == DBA_TRUNC ? DB_CREATE | DB_TRUNCATE : -1;
  67. if (gmode == -1) {
  68. return FAILURE; /* not possible */
  69. }
  70. if (info->argc > 0) {
  71. filemode = zval_get_long(&info->argv[0]);
  72. }
  73. #ifdef DB_FCNTL_LOCKING
  74. gmode |= DB_FCNTL_LOCKING;
  75. #endif
  76. if ((err=db_create(&dbp, NULL, 0)) == 0) {
  77. dbp->set_errcall(dbp, php_dba_db3_errcall_fcn);
  78. if(
  79. #if (DB_VERSION_MAJOR > 4 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR >= 1))
  80. (err=dbp->open(dbp, 0, info->path, NULL, type, gmode, filemode)) == 0) {
  81. #else
  82. (err=dbp->open(dbp, info->path, NULL, type, gmode, filemode)) == 0) {
  83. #endif
  84. dba_db3_data *data;
  85. data = pemalloc(sizeof(*data), info->flags&DBA_PERSISTENT);
  86. data->dbp = dbp;
  87. data->cursor = NULL;
  88. info->dbf = data;
  89. return SUCCESS;
  90. } else {
  91. dbp->close(dbp, 0);
  92. *error = db_strerror(err);
  93. }
  94. } else {
  95. *error = db_strerror(err);
  96. }
  97. return FAILURE;
  98. }
  99. DBA_CLOSE_FUNC(db3)
  100. {
  101. DB3_DATA;
  102. if (dba->cursor) dba->cursor->c_close(dba->cursor);
  103. dba->dbp->close(dba->dbp, 0);
  104. pefree(dba, info->flags&DBA_PERSISTENT);
  105. }
  106. DBA_FETCH_FUNC(db3)
  107. {
  108. DBT gval;
  109. char *new = NULL;
  110. DB3_DATA;
  111. DB3_GKEY;
  112. memset(&gval, 0, sizeof(gval));
  113. if (!dba->dbp->get(dba->dbp, NULL, &gkey, &gval, 0)) {
  114. if (newlen) *newlen = gval.size;
  115. new = estrndup(gval.data, gval.size);
  116. }
  117. return new;
  118. }
  119. DBA_UPDATE_FUNC(db3)
  120. {
  121. DBT gval;
  122. DB3_DATA;
  123. DB3_GKEY;
  124. memset(&gval, 0, sizeof(gval));
  125. gval.data = (char *) val;
  126. gval.size = vallen;
  127. if (!dba->dbp->put(dba->dbp, NULL, &gkey, &gval,
  128. mode == 1 ? DB_NOOVERWRITE : 0)) {
  129. return SUCCESS;
  130. }
  131. return FAILURE;
  132. }
  133. DBA_EXISTS_FUNC(db3)
  134. {
  135. DBT gval;
  136. DB3_DATA;
  137. DB3_GKEY;
  138. memset(&gval, 0, sizeof(gval));
  139. if (!dba->dbp->get(dba->dbp, NULL, &gkey, &gval, 0)) {
  140. return SUCCESS;
  141. }
  142. return FAILURE;
  143. }
  144. DBA_DELETE_FUNC(db3)
  145. {
  146. DB3_DATA;
  147. DB3_GKEY;
  148. return dba->dbp->del(dba->dbp, NULL, &gkey, 0) ? FAILURE : SUCCESS;
  149. }
  150. DBA_FIRSTKEY_FUNC(db3)
  151. {
  152. DB3_DATA;
  153. if (dba->cursor) {
  154. dba->cursor->c_close(dba->cursor);
  155. }
  156. dba->cursor = NULL;
  157. if (dba->dbp->cursor(dba->dbp, NULL, &dba->cursor, 0) != 0) {
  158. return NULL;
  159. }
  160. /* we should introduce something like PARAM_PASSTHRU... */
  161. return dba_nextkey_db3(info, newlen);
  162. }
  163. DBA_NEXTKEY_FUNC(db3)
  164. {
  165. DB3_DATA;
  166. DBT gkey, gval;
  167. char *nkey = NULL;
  168. memset(&gkey, 0, sizeof(gkey));
  169. memset(&gval, 0, sizeof(gval));
  170. if (dba->cursor->c_get(dba->cursor, &gkey, &gval, DB_NEXT) == 0) {
  171. if (gkey.data) {
  172. nkey = estrndup(gkey.data, gkey.size);
  173. if (newlen) *newlen = gkey.size;
  174. }
  175. }
  176. return nkey;
  177. }
  178. DBA_OPTIMIZE_FUNC(db3)
  179. {
  180. return SUCCESS;
  181. }
  182. DBA_SYNC_FUNC(db3)
  183. {
  184. DB3_DATA;
  185. return dba->dbp->sync(dba->dbp, 0) ? FAILURE : SUCCESS;
  186. }
  187. DBA_INFO_FUNC(db3)
  188. {
  189. return estrdup(DB_VERSION_STRING);
  190. }
  191. #endif
  192. /*
  193. * Local variables:
  194. * tab-width: 4
  195. * c-basic-offset: 4
  196. * End:
  197. * vim600: sw=4 ts=4 fdm=marker
  198. * vim<600: sw=4 ts=4
  199. */