1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-19 01:36:33 -04:00
elinks/src/util/fastfind.h

65 lines
1.7 KiB
C
Raw Normal View History

#ifndef EL__UTIL_FASTFIND_H
#define EL__UTIL_FASTFIND_H
2007-07-27 05:35:13 -04:00
/** Whether to use these routines or not. */
#ifndef CONFIG_SMALL
#define USE_FASTFIND 1
#else
#undef USE_FASTFIND
#endif
#ifdef USE_FASTFIND
struct fastfind_key_value {
unsigned char *key;
void *data;
};
enum fastfind_flags {
FF_NONE = 0,
2007-07-27 05:35:13 -04:00
FF_CASE_AWARE = 1, /**< honour case when comparing */
FF_COMPRESS = 2, /**< compress nodes if possible */
FF_LOCALE_INDEP = 4 /**< whether the case conversion is
* locale independent or not */
};
struct fastfind_index {
2007-07-27 05:35:13 -04:00
/** Description useful for debugging mode. */
unsigned char *comment;
2007-07-27 05:35:13 -04:00
/** Start over. */
void (*reset)(void);
2007-07-27 05:35:13 -04:00
/** Get next struct fastfind_key_value in line. */
struct fastfind_key_value *(*next)(void);
2007-07-27 05:35:13 -04:00
/** Internal reference */
void *handle;
};
#define INIT_FASTFIND_INDEX(comment, reset, next) \
{ (comment), (reset), (next) }
2007-07-27 05:35:13 -04:00
/** Initialize and index a list of keys.
* Keys are iterated using:
* @param index index info
* @param flags control case sensitivity, compression
*
* This function must be called once and only once per list.
2007-07-27 07:14:00 -04:00
* Failure is not an option, so call it at startup.
* @relates fastfind_index */
struct fastfind_index *fastfind_index(struct fastfind_index *index, enum fastfind_flags flags);
/* The main reason of all that stuff is here. */
2007-07-27 05:35:13 -04:00
/** Search the index for @a key with length @a key_len using the
2007-07-27 07:14:00 -04:00
* @a index' handle created with fastfind_index().
* @relates fastfind_index */
2008-01-26 10:18:28 -05:00
void *fastfind_search(struct fastfind_index *index,
const unsigned char *key, int key_len);
2007-07-27 05:35:13 -04:00
/** Fastfind cleanup. It frees the given @a index.
2007-07-27 07:14:00 -04:00
* Must be called once per list.
* @relates fastfind_index */
void fastfind_done(struct fastfind_index *index);
#endif
#endif /* EL__UTIL_FASTFIND_H */