dba_tcadb.c 4.2 KB

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