dba_ndbm.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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: Sascha Schumann <sascha@schumann.cx> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifdef HAVE_CONFIG_H
  19. #include "config.h"
  20. #endif
  21. #include "php.h"
  22. #if DBA_NDBM
  23. #include "php_ndbm.h"
  24. #include <fcntl.h>
  25. #ifdef NDBM_INCLUDE_FILE
  26. #include NDBM_INCLUDE_FILE
  27. #endif
  28. #define NDBM_GKEY datum gkey; gkey.dptr = (char *) key; gkey.dsize = keylen
  29. DBA_OPEN_FUNC(ndbm)
  30. {
  31. DBM *dbf;
  32. int gmode = 0;
  33. int filemode = 0644;
  34. dba_info *pinfo = (dba_info *) info;
  35. switch(info->mode) {
  36. case DBA_READER:
  37. gmode = O_RDONLY;
  38. break;
  39. case DBA_WRITER:
  40. gmode = O_RDWR;
  41. break;
  42. case DBA_CREAT:
  43. gmode = O_RDWR | O_CREAT;
  44. break;
  45. case DBA_TRUNC:
  46. gmode = O_RDWR | O_CREAT | O_TRUNC;
  47. break;
  48. default:
  49. return FAILURE; /* not possible */
  50. }
  51. if(info->argc > 0) {
  52. filemode = zval_get_long(&info->argv[0]);
  53. }
  54. dbf = dbm_open(info->path, gmode, filemode);
  55. pinfo->dbf = dbf;
  56. return SUCCESS;
  57. }
  58. DBA_CLOSE_FUNC(ndbm)
  59. {
  60. dbm_close(info->dbf);
  61. }
  62. DBA_FETCH_FUNC(ndbm)
  63. {
  64. datum gval;
  65. char *new = NULL;
  66. NDBM_GKEY;
  67. gval = dbm_fetch(info->dbf, gkey);
  68. if(gval.dptr) {
  69. if(newlen) *newlen = gval.dsize;
  70. new = estrndup(gval.dptr, gval.dsize);
  71. }
  72. return new;
  73. }
  74. DBA_UPDATE_FUNC(ndbm)
  75. {
  76. datum gval;
  77. NDBM_GKEY;
  78. gval.dptr = (char *) val;
  79. gval.dsize = vallen;
  80. if(!dbm_store(info->dbf, gkey, gval, mode == 1 ? DBM_INSERT : DBM_REPLACE))
  81. return SUCCESS;
  82. return FAILURE;
  83. }
  84. DBA_EXISTS_FUNC(ndbm)
  85. {
  86. datum gval;
  87. NDBM_GKEY;
  88. gval = dbm_fetch(info->dbf, gkey);
  89. if(gval.dptr) {
  90. return SUCCESS;
  91. }
  92. return FAILURE;
  93. }
  94. DBA_DELETE_FUNC(ndbm)
  95. {
  96. NDBM_GKEY;
  97. return(dbm_delete(info->dbf, gkey) == -1 ? FAILURE : SUCCESS);
  98. }
  99. DBA_FIRSTKEY_FUNC(ndbm)
  100. {
  101. datum gkey;
  102. char *key = NULL;
  103. gkey = dbm_firstkey(info->dbf);
  104. if(gkey.dptr) {
  105. if(newlen) *newlen = gkey.dsize;
  106. key = estrndup(gkey.dptr, gkey.dsize);
  107. }
  108. return key;
  109. }
  110. DBA_NEXTKEY_FUNC(ndbm)
  111. {
  112. datum gkey;
  113. char *nkey = NULL;
  114. gkey = dbm_nextkey(info->dbf);
  115. if(gkey.dptr) {
  116. if(newlen) *newlen = gkey.dsize;
  117. nkey = estrndup(gkey.dptr, gkey.dsize);
  118. }
  119. return nkey;
  120. }
  121. DBA_OPTIMIZE_FUNC(ndbm)
  122. {
  123. return SUCCESS;
  124. }
  125. DBA_SYNC_FUNC(ndbm)
  126. {
  127. return SUCCESS;
  128. }
  129. DBA_INFO_FUNC(ndbm)
  130. {
  131. return estrdup("NDBM");
  132. }
  133. #endif
  134. /*
  135. * Local variables:
  136. * tab-width: 4
  137. * c-basic-offset: 4
  138. * End:
  139. * vim600: sw=4 ts=4 fdm=marker
  140. * vim<600: sw=4 ts=4
  141. */