File: cache.h

package info (click to toggle)
libgpuarray 0.7.6-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,552 kB
  • sloc: ansic: 19,235; python: 4,621; makefile: 219; sh: 9
file content (113 lines) | stat: -rw-r--r-- 3,342 bytes parent folder | download | duplicates (3)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#ifndef CACHE_H
#define CACHE_H

#include <stdlib.h>
#include <gpuarray/config.h>
#include "private_config.h"
#include "util/strb.h"
#include "util/error.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 int (*kwrite_fn)(strb *res, cache_key_t key);
typedef int (*vwrite_fn)(strb *res, cache_value_t val);
typedef cache_key_t (*kread_fn)(const strb *b);
typedef cache_value_t (*vread_fn)(const strb *b);

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,
                 error *e);

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,
                  error *e);

cache *cache_disk(const char *dirpath, cache *mem,
                  kwrite_fn kwrite, vwrite_fn vwrite,
                  kread_fn kread, vread_fn vread,
                  error *e);

/* 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