cdb.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. /* incorporated from D.J.Bernstein's cdb-0.75 (http://cr.yp.to/cdb.html)*/
  20. #ifndef CDB_H
  21. #define CDB_H
  22. #include "uint32.h"
  23. #define CDB_HASHSTART 5381
  24. struct cdb {
  25. php_stream *fp;
  26. uint32 loop; /* number of hash slots searched under this key */
  27. uint32 khash; /* initialized if loop is nonzero */
  28. uint32 kpos; /* initialized if loop is nonzero */
  29. uint32 hpos; /* initialized if loop is nonzero */
  30. uint32 hslots; /* initialized if loop is nonzero */
  31. uint32 dpos; /* initialized if cdb_findnext() returns 1 */
  32. uint32 dlen; /* initialized if cdb_findnext() returns 1 */
  33. };
  34. uint32 cdb_hash(char *, unsigned int);
  35. void cdb_free(struct cdb * TSRMLS_DC);
  36. void cdb_init(struct cdb *, php_stream *fp TSRMLS_DC);
  37. int cdb_read(struct cdb *, char *, unsigned int, uint32 TSRMLS_DC);
  38. void cdb_findstart(struct cdb * TSRMLS_DC);
  39. int cdb_findnext(struct cdb *, char *, unsigned int TSRMLS_DC);
  40. int cdb_find(struct cdb *, char *, unsigned int TSRMLS_DC);
  41. #define cdb_datapos(c) ((c)->dpos)
  42. #define cdb_datalen(c) ((c)->dlen)
  43. char *cdb_version();
  44. #endif