X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fqache.h;h=5c242a45b460d7d8bab30c3c3f916203990c6c49;hb=c0544008a494710146ac6cf88b61b5fd2d46f51b;hp=4a253d1532f9085afd01532359ca45b8ab24cd80;hpb=ff935b2de2eee5512798b44f0cb52e3e72398d68;p=libucw.git diff --git a/lib/qache.h b/lib/qache.h index 4a253d15..5c242a45 100644 --- a/lib/qache.h +++ b/lib/qache.h @@ -8,7 +8,7 @@ #define _UCW_QACHE_H struct qache_params { - byte *file_name; + char *file_name; uns block_size; /* Cache block size (a power of two) */ uns cache_size; /* Size of the whole cache */ uns max_entries; /* Maximum number of cached entries */ @@ -26,7 +26,7 @@ void qache_close(struct qache *q, uns retain_data); /* Insert new item to the cache with a given key and data. If pos_hint is non-zero, it serves * as a hint about the position of the entry (if it's known that an entry with the particular key - * was located there a moment ago. Returns position of the new entry. + * was located there a moment ago). Returns position of the new entry. */ uns qache_insert(struct qache *q, qache_key_t *key, uns pos_hint, void *data, uns size); @@ -39,6 +39,12 @@ uns qache_insert(struct qache *q, qache_key_t *key, uns pos_hint, void *data, un */ uns qache_lookup(struct qache *q, qache_key_t *key, uns pos_hint, byte **datap, uns *sizep, uns start); +/* Inspect data in the cache (but don't modify LRU nor anything else), given a position. + * If key is non-NULL, it's filled with the cache key. The rest works as in qache_lookup. + * Returns 0 if the entry is empty, ~0 for position out of range, entry number otherwise. + */ +uns qache_probe(struct qache *q, qache_key_t *key, uns pos, byte **datap, uns *sizep, uns start); + /* Delete data from the cache, given a key and a position hint. */ uns qache_delete(struct qache *q, qache_key_t *key, uns pos_hint);