2012-02-06 14:05:08 +00:00
|
|
|
#ifndef PSYC_MATCH_H
|
|
|
|
#define PSYC_MATCH_H
|
|
|
|
|
2012-01-09 10:52:09 +00:00
|
|
|
typedef struct {
|
|
|
|
PsycString key;
|
|
|
|
void *value;
|
2012-02-06 14:05:08 +00:00
|
|
|
} PsycMap;
|
2012-01-09 10:52:09 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
PsycString key;
|
|
|
|
intptr_t value;
|
2012-02-06 14:05:08 +00:00
|
|
|
} PsycMapInt;
|
2012-01-09 10:52:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if long keyword string inherits from short keyword string.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
psyc_inherits (char *sho, size_t slen, char *lon, size_t llen);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if short keyword string matches long keyword string.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
psyc_matches (char *sho, size_t slen, char *lon, size_t llen);
|
|
|
|
|
|
|
|
/**
|
2012-02-06 14:05:08 +00:00
|
|
|
* Look up value associated with a key in a map.
|
2012-01-09 10:52:09 +00:00
|
|
|
*
|
2012-02-06 14:05:08 +00:00
|
|
|
* @param map The dictionary to search, should be ordered alphabetically.
|
|
|
|
* @param size Size of map.
|
2012-01-09 10:52:09 +00:00
|
|
|
* @param key Key to look for.
|
|
|
|
* @param keylen Length of key.
|
|
|
|
* @param inherit If true, also look for anything inheriting from key,
|
|
|
|
* otherwise only exact matches are returned.
|
|
|
|
*
|
|
|
|
* @return The value of the entry if found, or NULL if not found.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void *
|
2012-02-06 14:05:08 +00:00
|
|
|
psyc_map_lookup (const PsycMap *map, size_t size,
|
|
|
|
const char *key, size_t keylen, PsycBool inherit);
|
2012-01-09 10:52:09 +00:00
|
|
|
|
|
|
|
/**
|
2012-02-06 14:05:08 +00:00
|
|
|
* Look up value associated with a key in a map with integer values.
|
|
|
|
* @see psyc_map_lookup
|
2012-01-09 10:52:09 +00:00
|
|
|
*/
|
|
|
|
static inline intptr_t
|
2012-02-21 02:00:52 +00:00
|
|
|
psyc_map_lookup_int (const PsycMapInt *map, size_t size,
|
|
|
|
const char *key, size_t keylen, PsycBool inherit)
|
2012-01-09 10:52:09 +00:00
|
|
|
{
|
2012-02-06 14:05:08 +00:00
|
|
|
return (intptr_t) psyc_map_lookup((PsycMap *) map, size, key, keylen, inherit);
|
2012-01-09 10:52:09 +00:00
|
|
|
}
|
2012-02-06 14:05:08 +00:00
|
|
|
|
|
|
|
#endif
|