1 | /*
|
---|
2 | * Copyright (C) 2008-2010 Timothy D. Morgan
|
---|
3 | *
|
---|
4 | * This program is free software; you can redistribute it and/or modify
|
---|
5 | * it under the terms of the GNU General Public License as published by
|
---|
6 | * the Free Software Foundation; version 3 of the License.
|
---|
7 | *
|
---|
8 | * This program is distributed in the hope that it will be useful,
|
---|
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
11 | * GNU General Public License for more details.
|
---|
12 | *
|
---|
13 | * You should have received a copy of the GNU General Public License
|
---|
14 | * along with this program; if not, write to the Free Software
|
---|
15 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
16 | *
|
---|
17 | * $Id: lru_cache.h 169 2010-03-03 19:24:58Z tim $
|
---|
18 | */
|
---|
19 |
|
---|
20 | /**
|
---|
21 | * @file
|
---|
22 | *
|
---|
23 | * A data structure which approximates a least recently used (LRU) cache.
|
---|
24 | * Implemented as a basic randomized hash table.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | #ifndef LRU_CACHE_H
|
---|
29 | #define LRU_CACHE_H
|
---|
30 |
|
---|
31 | #include <stdbool.h>
|
---|
32 | #include <stdint.h>
|
---|
33 | #include <stdlib.h>
|
---|
34 | #include <stdio.h>
|
---|
35 | #include <string.h>
|
---|
36 | #include <unistd.h>
|
---|
37 | #include "talloc.h"
|
---|
38 |
|
---|
39 | struct lru_cache_element;
|
---|
40 | typedef struct lru_cache_element lru_cache_element;
|
---|
41 |
|
---|
42 | struct lru_cache_element
|
---|
43 | {
|
---|
44 | void* index;
|
---|
45 | uint32_t index_len;
|
---|
46 | void* data;
|
---|
47 | lru_cache_element* next;
|
---|
48 | lru_cache_element* older;
|
---|
49 | lru_cache_element* newer;
|
---|
50 | };
|
---|
51 |
|
---|
52 |
|
---|
53 | /** XXX: document this. */
|
---|
54 | typedef struct _lru_cache
|
---|
55 | {
|
---|
56 | uint32_t secret;
|
---|
57 | uint32_t num_keys;
|
---|
58 | uint32_t num_buckets;
|
---|
59 | uint32_t max_keys;
|
---|
60 | lru_cache_element* oldest;
|
---|
61 | lru_cache_element* newest;
|
---|
62 | lru_cache_element** table;
|
---|
63 | bool talloc_data;
|
---|
64 | } lru_cache;
|
---|
65 |
|
---|
66 |
|
---|
67 | /**
|
---|
68 | * XXX: finish documenting.
|
---|
69 | */
|
---|
70 | lru_cache* lru_cache_create(uint32_t max_keys, uint32_t secret);
|
---|
71 |
|
---|
72 |
|
---|
73 | /**
|
---|
74 | * XXX: finish documenting.
|
---|
75 | */
|
---|
76 | lru_cache* lru_cache_create_ctx(void* talloc_ctx, uint32_t max_keys,
|
---|
77 | uint32_t secret, bool talloc_data);
|
---|
78 |
|
---|
79 |
|
---|
80 | /**
|
---|
81 | * XXX: finish documenting.
|
---|
82 | */
|
---|
83 | void lru_cache_destroy(lru_cache* ht);
|
---|
84 |
|
---|
85 |
|
---|
86 | /**
|
---|
87 | * XXX: finish documenting.
|
---|
88 | */
|
---|
89 | bool lru_cache_update(lru_cache* ht, const void* index,
|
---|
90 | uint32_t index_len, void* data);
|
---|
91 |
|
---|
92 | /**
|
---|
93 | * XXX: finish documenting.
|
---|
94 | *
|
---|
95 | * @return A pointer to data previously stored at index.
|
---|
96 | * If no data was found at index, NULL is returned.
|
---|
97 | */
|
---|
98 | void* lru_cache_find(lru_cache* ht, const void* index,
|
---|
99 | uint32_t index_len);
|
---|
100 |
|
---|
101 | /**
|
---|
102 | * XXX: finish documenting.
|
---|
103 | *
|
---|
104 | * Removes entry from table at index.
|
---|
105 | *
|
---|
106 | * @return A pointer to data that was there previously or NULL if no entry is
|
---|
107 | * at index.
|
---|
108 | */
|
---|
109 | bool lru_cache_remove(lru_cache* ht, const void* index,
|
---|
110 | uint32_t index_len);
|
---|
111 |
|
---|
112 | #endif
|
---|