dba_inifile.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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: Marcus Boerger <helly@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifdef HAVE_CONFIG_H
  20. #include "config.h"
  21. #endif
  22. #include "php.h"
  23. #if DBA_INIFILE
  24. #include "php_inifile.h"
  25. #include "libinifile/inifile.h"
  26. #ifdef HAVE_UNISTD_H
  27. #include <unistd.h>
  28. #endif
  29. #include <sys/types.h>
  30. #include <sys/stat.h>
  31. #include <fcntl.h>
  32. #define INIFILE_DATA \
  33. inifile *dba = info->dbf
  34. #define INIFILE_GKEY \
  35. key_type ini_key; \
  36. if (!key) { \
  37. php_error_docref(NULL TSRMLS_CC, E_WARNING, "No key specified"); \
  38. return 0; \
  39. } \
  40. ini_key = inifile_key_split((char*)key) /* keylen not needed here */
  41. #define INIFILE_DONE \
  42. inifile_key_free(&ini_key)
  43. DBA_OPEN_FUNC(inifile)
  44. {
  45. info->dbf = inifile_alloc(info->fp, info->mode == DBA_READER, info->flags&DBA_PERSISTENT TSRMLS_CC);
  46. return info->dbf ? SUCCESS : FAILURE;
  47. }
  48. DBA_CLOSE_FUNC(inifile)
  49. {
  50. INIFILE_DATA;
  51. inifile_free(dba, info->flags&DBA_PERSISTENT);
  52. }
  53. DBA_FETCH_FUNC(inifile)
  54. {
  55. val_type ini_val;
  56. INIFILE_DATA;
  57. INIFILE_GKEY;
  58. ini_val = inifile_fetch(dba, &ini_key, skip TSRMLS_CC);
  59. *newlen = ini_val.value ? strlen(ini_val.value) : 0;
  60. INIFILE_DONE;
  61. return ini_val.value;
  62. }
  63. DBA_UPDATE_FUNC(inifile)
  64. {
  65. val_type ini_val;
  66. int res;
  67. INIFILE_DATA;
  68. INIFILE_GKEY;
  69. ini_val.value = val;
  70. if (mode == 1) {
  71. res = inifile_append(dba, &ini_key, &ini_val TSRMLS_CC);
  72. } else {
  73. res = inifile_replace(dba, &ini_key, &ini_val TSRMLS_CC);
  74. }
  75. INIFILE_DONE;
  76. switch(res) {
  77. case -1:
  78. php_error_docref1(NULL TSRMLS_CC, key, E_WARNING, "Operation not possible");
  79. return FAILURE;
  80. default:
  81. case 0:
  82. return SUCCESS;
  83. case 1:
  84. return FAILURE;
  85. }
  86. }
  87. DBA_EXISTS_FUNC(inifile)
  88. {
  89. val_type ini_val;
  90. INIFILE_DATA;
  91. INIFILE_GKEY;
  92. ini_val = inifile_fetch(dba, &ini_key, 0 TSRMLS_CC);
  93. INIFILE_DONE;
  94. if (ini_val.value) {
  95. inifile_val_free(&ini_val);
  96. return SUCCESS;
  97. }
  98. return FAILURE;
  99. }
  100. DBA_DELETE_FUNC(inifile)
  101. {
  102. int res;
  103. INIFILE_DATA;
  104. INIFILE_GKEY;
  105. res = inifile_delete(dba, &ini_key TSRMLS_CC);
  106. INIFILE_DONE;
  107. return (res == -1 ? FAILURE : SUCCESS);
  108. }
  109. DBA_FIRSTKEY_FUNC(inifile)
  110. {
  111. INIFILE_DATA;
  112. if (inifile_firstkey(dba TSRMLS_CC)) {
  113. char *result = inifile_key_string(&dba->curr.key);
  114. *newlen = strlen(result);
  115. return result;
  116. } else {
  117. return NULL;
  118. }
  119. }
  120. DBA_NEXTKEY_FUNC(inifile)
  121. {
  122. INIFILE_DATA;
  123. if (!dba->curr.key.group && !dba->curr.key.name) {
  124. return NULL;
  125. }
  126. if (inifile_nextkey(dba TSRMLS_CC)) {
  127. char *result = inifile_key_string(&dba->curr.key);
  128. *newlen = strlen(result);
  129. return result;
  130. } else {
  131. return NULL;
  132. }
  133. }
  134. DBA_OPTIMIZE_FUNC(inifile)
  135. {
  136. /* dummy */
  137. return SUCCESS;
  138. }
  139. DBA_SYNC_FUNC(inifile)
  140. {
  141. /* dummy */
  142. return SUCCESS;
  143. }
  144. DBA_INFO_FUNC(inifile)
  145. {
  146. return estrdup(inifile_version());
  147. }
  148. #endif
  149. /*
  150. * Local variables:
  151. * tab-width: 4
  152. * c-basic-offset: 4
  153. * End:
  154. * vim600: sw=4 ts=4 fdm=marker
  155. * vim<600: sw=4 ts=4
  156. */