dba_tcadb.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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: Michael Maclean <mgdm@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifdef HAVE_CONFIG_H
  20. #include "config.h"
  21. #endif
  22. #include "php.h"
  23. #if DBA_TCADB
  24. #include "php_tcadb.h"
  25. #ifdef TCADB_INCLUDE_FILE
  26. #include TCADB_INCLUDE_FILE
  27. #endif
  28. #define TCADB_DATA dba_tcadb_data *dba = info->dbf
  29. typedef struct {
  30. TCADB *tcadb;
  31. } dba_tcadb_data;
  32. DBA_OPEN_FUNC(tcadb)
  33. {
  34. char *path_string;
  35. TCADB *tcadb = tcadbnew();
  36. if (tcadb) {
  37. switch(info->mode) {
  38. case DBA_READER:
  39. spprintf(&path_string, 0, "%s#mode=r", info->path);
  40. break;
  41. case DBA_WRITER:
  42. spprintf(&path_string, 0, "%s#mode=w", info->path);
  43. break;
  44. case DBA_CREAT:
  45. spprintf(&path_string, 0, "%s#mode=wc", info->path);
  46. break;
  47. case DBA_TRUNC:
  48. spprintf(&path_string, 0, "%s#mode=wct", info->path);
  49. break;
  50. default:
  51. tcadbdel(tcadb);
  52. return FAILURE;
  53. }
  54. if (!tcadbopen(tcadb, path_string)) {
  55. efree(path_string);
  56. tcadbdel(tcadb);
  57. return FAILURE;
  58. }
  59. efree(path_string);
  60. info->dbf = pemalloc(sizeof(dba_tcadb_data), info->flags & DBA_PERSISTENT);
  61. memset(info->dbf, 0, sizeof(dba_tcadb_data));
  62. ((dba_tcadb_data *) info->dbf)->tcadb = tcadb;
  63. return SUCCESS;
  64. }
  65. return FAILURE;
  66. }
  67. DBA_CLOSE_FUNC(tcadb)
  68. {
  69. TCADB_DATA;
  70. tcadbclose(dba->tcadb);
  71. pefree(dba, info->flags & DBA_PERSISTENT);
  72. }
  73. DBA_FETCH_FUNC(tcadb)
  74. {
  75. TCADB_DATA;
  76. char *value, *new = NULL;
  77. int value_size;
  78. value = tcadbget(dba->tcadb, key, keylen, &value_size);
  79. if (value) {
  80. if (newlen) {
  81. *newlen = value_size;
  82. }
  83. new = estrndup(value, value_size);
  84. tcfree(value);
  85. }
  86. return new;
  87. }
  88. DBA_UPDATE_FUNC(tcadb)
  89. {
  90. TCADB_DATA;
  91. int result;
  92. if (mode == 1) {
  93. /* Insert */
  94. if (tcadbvsiz(dba->tcadb, key, keylen) > -1) {
  95. return FAILURE;
  96. }
  97. }
  98. result = tcadbput(dba->tcadb, key, keylen, val, vallen);
  99. if (result) {
  100. return SUCCESS;
  101. }
  102. php_error_docref2(NULL TSRMLS_CC, key, val, E_WARNING, "Error updating data");
  103. return FAILURE;
  104. }
  105. DBA_EXISTS_FUNC(tcadb)
  106. {
  107. TCADB_DATA;
  108. char *value;
  109. int value_len;
  110. value = tcadbget(dba->tcadb, key, keylen, &value_len);
  111. if (value) {
  112. tcfree(value);
  113. return SUCCESS;
  114. }
  115. return FAILURE;
  116. }
  117. DBA_DELETE_FUNC(tcadb)
  118. {
  119. TCADB_DATA;
  120. return tcadbout(dba->tcadb, key, keylen) ? SUCCESS : FAILURE;
  121. }
  122. DBA_FIRSTKEY_FUNC(tcadb)
  123. {
  124. TCADB_DATA;
  125. int value_size;
  126. char *value, *new = NULL;
  127. tcadbiterinit(dba->tcadb);
  128. value = tcadbiternext(dba->tcadb, &value_size);
  129. if (value) {
  130. if (newlen) {
  131. *newlen = value_size;
  132. }
  133. new = estrndup(value, value_size);
  134. tcfree(value);
  135. }
  136. return new;
  137. }
  138. DBA_NEXTKEY_FUNC(tcadb)
  139. {
  140. TCADB_DATA;
  141. int value_size;
  142. char *value, *new = NULL;
  143. value = tcadbiternext(dba->tcadb, &value_size);
  144. if (value) {
  145. if (newlen) {
  146. *newlen = value_size;
  147. }
  148. new = estrndup(value, value_size);
  149. tcfree(value);
  150. }
  151. return new;
  152. }
  153. DBA_OPTIMIZE_FUNC(tcadb)
  154. {
  155. TCADB_DATA;
  156. #if _TC_LIBVER >= 811
  157. return tcadboptimize(dba->tcadb, NULL) ? SUCCESS : FAILURE;
  158. #else
  159. return FAILURE;
  160. #endif
  161. }
  162. DBA_SYNC_FUNC(tcadb)
  163. {
  164. TCADB_DATA;
  165. return tcadbsync(dba->tcadb) ? SUCCESS : FAILURE;
  166. }
  167. DBA_INFO_FUNC(tcadb)
  168. {
  169. return estrdup(tcversion);
  170. }
  171. #endif
  172. /*
  173. * Local variables:
  174. * tab-width: 4
  175. * c-basic-offset: 4
  176. * End:
  177. * vim600: sw=4 ts=4 fdm=marker
  178. * vim<600: sw=4 ts=4
  179. */