[108] | 1 | /* |
---|
[147] | 2 | * Copyright (C) 2008-2009 Timothy D. Morgan |
---|
[108] | 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 | * |
---|
[122] | 17 | * $Id: lru_cache.h 147 2009-02-22 19:31:52Z tim $ |
---|
[108] | 18 | */ |
---|
| 19 | |
---|
| 20 | #ifndef LRU_CACHE_H |
---|
| 21 | #define LRU_CACHE_H |
---|
| 22 | |
---|
| 23 | #include <stdbool.h> |
---|
| 24 | #include <stdint.h> |
---|
| 25 | #include <stdlib.h> |
---|
| 26 | #include <stdio.h> |
---|
| 27 | #include <string.h> |
---|
| 28 | #include <unistd.h> |
---|
[147] | 29 | #include "talloc.h" |
---|
[108] | 30 | |
---|
| 31 | struct lru_cache_element; |
---|
| 32 | typedef struct lru_cache_element lru_cache_element; |
---|
| 33 | |
---|
| 34 | struct lru_cache_element |
---|
| 35 | { |
---|
| 36 | void* index; |
---|
| 37 | uint32_t index_len; |
---|
| 38 | void* data; |
---|
| 39 | lru_cache_element* next; |
---|
| 40 | lru_cache_element* older; |
---|
| 41 | lru_cache_element* newer; |
---|
| 42 | }; |
---|
| 43 | |
---|
| 44 | typedef struct _lru_cache |
---|
| 45 | { |
---|
| 46 | uint32_t secret; |
---|
| 47 | uint32_t num_keys; |
---|
| 48 | uint32_t num_buckets; |
---|
| 49 | uint32_t max_keys; |
---|
| 50 | lru_cache_element* oldest; |
---|
| 51 | lru_cache_element* newest; |
---|
| 52 | lru_cache_element** table; |
---|
[147] | 53 | bool talloc_data; |
---|
[108] | 54 | } lru_cache; |
---|
| 55 | |
---|
| 56 | |
---|
[147] | 57 | lru_cache* lru_cache_create(uint32_t max_keys, uint32_t secret); |
---|
| 58 | lru_cache* lru_cache_create_ctx(void* talloc_ctx, uint32_t max_keys, |
---|
| 59 | uint32_t secret, bool talloc_data); |
---|
[108] | 60 | void lru_cache_destroy(lru_cache* ht); |
---|
| 61 | |
---|
[147] | 62 | /* |
---|
| 63 | * |
---|
[108] | 64 | */ |
---|
| 65 | bool lru_cache_update(lru_cache* ht, const void* index, |
---|
| 66 | uint32_t index_len, void* data); |
---|
| 67 | |
---|
| 68 | /* Returns pointer to data previously stored at index. |
---|
| 69 | * If no data was found at index, NULL is returned. |
---|
| 70 | */ |
---|
| 71 | void* lru_cache_find(lru_cache* ht, const void* index, |
---|
| 72 | uint32_t index_len); |
---|
| 73 | |
---|
| 74 | /* Removes entry from table at index. |
---|
| 75 | * Returns pointer to data that was there previously. |
---|
| 76 | * Returns NULL if no entry is at index. |
---|
| 77 | */ |
---|
| 78 | bool lru_cache_remove(lru_cache* ht, const void* index, |
---|
| 79 | uint32_t index_len); |
---|
| 80 | |
---|
| 81 | #endif |
---|