dba_db3.c 4.9 KB

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