dba_inifile.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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: Marcus Boerger <helly@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #if DBA_INIFILE
  23. #include "php_inifile.h"
  24. #include "libinifile/inifile.h"
  25. #ifdef HAVE_UNISTD_H
  26. #include <unistd.h>
  27. #endif
  28. #include <sys/types.h>
  29. #include <sys/stat.h>
  30. #include <fcntl.h>
  31. #define INIFILE_DATA \
  32. inifile *dba = info->dbf
  33. #define INIFILE_GKEY \
  34. key_type ini_key; \
  35. if (!key) { \
  36. php_error_docref(NULL, E_WARNING, "No key specified"); \
  37. return 0; \
  38. } \
  39. ini_key = inifile_key_split((char*)key) /* keylen not needed here */
  40. #define INIFILE_DONE \
  41. inifile_key_free(&ini_key)
  42. DBA_OPEN_FUNC(inifile)
  43. {
  44. info->dbf = inifile_alloc(info->fp, info->mode == DBA_READER, info->flags&DBA_PERSISTENT);
  45. return info->dbf ? SUCCESS : FAILURE;
  46. }
  47. DBA_CLOSE_FUNC(inifile)
  48. {
  49. INIFILE_DATA;
  50. inifile_free(dba, info->flags&DBA_PERSISTENT);
  51. }
  52. DBA_FETCH_FUNC(inifile)
  53. {
  54. val_type ini_val;
  55. INIFILE_DATA;
  56. INIFILE_GKEY;
  57. ini_val = inifile_fetch(dba, &ini_key, skip);
  58. *newlen = ini_val.value ? strlen(ini_val.value) : 0;
  59. INIFILE_DONE;
  60. return ini_val.value;
  61. }
  62. DBA_UPDATE_FUNC(inifile)
  63. {
  64. val_type ini_val;
  65. int res;
  66. INIFILE_DATA;
  67. INIFILE_GKEY;
  68. ini_val.value = val;
  69. if (mode == 1) {
  70. res = inifile_append(dba, &ini_key, &ini_val);
  71. } else {
  72. res = inifile_replace(dba, &ini_key, &ini_val);
  73. }
  74. INIFILE_DONE;
  75. switch(res) {
  76. case -1:
  77. php_error_docref1(NULL, key, E_WARNING, "Operation not possible");
  78. return FAILURE;
  79. default:
  80. case 0:
  81. return SUCCESS;
  82. case 1:
  83. return FAILURE;
  84. }
  85. }
  86. DBA_EXISTS_FUNC(inifile)
  87. {
  88. val_type ini_val;
  89. INIFILE_DATA;
  90. INIFILE_GKEY;
  91. ini_val = inifile_fetch(dba, &ini_key, 0);
  92. INIFILE_DONE;
  93. if (ini_val.value) {
  94. inifile_val_free(&ini_val);
  95. return SUCCESS;
  96. }
  97. return FAILURE;
  98. }
  99. DBA_DELETE_FUNC(inifile)
  100. {
  101. int res;
  102. zend_bool found = 0;
  103. INIFILE_DATA;
  104. INIFILE_GKEY;
  105. res = inifile_delete_ex(dba, &ini_key, &found);
  106. INIFILE_DONE;
  107. return (res == -1 || !found ? FAILURE : SUCCESS);
  108. }
  109. DBA_FIRSTKEY_FUNC(inifile)
  110. {
  111. INIFILE_DATA;
  112. if (inifile_firstkey(dba)) {
  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)) {
  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. */