forked from Theano/libgpuarray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache.h
More file actions
99 lines (84 loc) · 2.77 KB
/
cache.h
File metadata and controls
99 lines (84 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#ifndef CACHE_H
#define CACHE_H
#include <stdint.h>
#include <stdlib.h>
#include "private_config.h"
typedef void *cache_key_t;
typedef void *cache_value_t;
typedef int (*cache_eq_fn)(cache_key_t, cache_key_t);
typedef uint32_t (*cache_hash_fn)(cache_key_t);
typedef void (*cache_freek_fn)(cache_key_t);
typedef void (*cache_freev_fn)(cache_value_t);
typedef struct _cache cache;
struct _cache {
/**
* Add the specified value to the cache under the key k, replacing
* any previous value.
*
* The value and key belong to the cache and will be freed with the
* supplied free functions whether the add is successful or not.
*
* The key and value data must stay valid until they are explicitely
* released by the cache when it calls the supplied free functions.
*
* NULL is not a valid value or key.
*
* Returns 0 if value was added sucessfully and some other value otherwise.
*/
int (*add)(cache *c, cache_key_t k, cache_value_t v);
/**
* Remove the data associated with k from the cache. The value and
* the key will be free with the supplied free functions.
*
* The passed in key is not claimed by the cache and need only be
* valid until the call returns. It will not be freed through the
* key free function.
*
* Returns 1 if the key was in the cache and 0 if not.
*/
int (*del)(cache *c, const cache_key_t k);
/**
* Get the data entry associated with k.
*
* The passed in key is not claimed by the cache and need only be
* valid until the call returns. It will not be freed through the
* key free function.
*
* Returns NULL if the key is not found, a value otherwise.
*/
cache_value_t (*get)(cache *c, const cache_key_t k);
/**
* Releases all entries in the cache as well as all of the support
* structures.
*
* This must NOT free the passed in pointer.
*/
void (*destroy)(cache *c);
cache_eq_fn keq;
cache_hash_fn khash;
cache_freek_fn kfree;
cache_freev_fn vfree;
/* Extra data goes here depending on cache type */
};
cache *cache_lru(size_t max_size, size_t elasticity,
cache_eq_fn keq, cache_hash_fn khash,
cache_freek_fn kfree, cache_freev_fn vfree);
cache *cache_twoq(size_t hot_size, size_t warm_size,
size_t cold_size, size_t elasticity,
cache_eq_fn keq, cache_hash_fn khash,
cache_freek_fn kfree, cache_freev_fn vfree);
/* API functions */
static inline int cache_add(cache *c, cache_key_t k, cache_value_t v) {
return c->add(c, k, v);
}
static inline int cache_del(cache *c, cache_key_t k) {
return c->del(c, k);
}
static inline cache_value_t cache_get(cache *c, cache_key_t k) {
return c->get(c, k);
}
static inline void cache_destroy(cache *c) {
c->destroy(c);
free(c);
}
#endif