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
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/common/cache.h>
void aws_cache_destroy(struct aws_cache *cache) {
AWS_PRECONDITION(cache);
cache->vtable->destroy(cache);
}
int aws_cache_find(struct aws_cache *cache, const void *key, void **p_value) {
AWS_PRECONDITION(cache);
return cache->vtable->find(cache, key, p_value);
}
int aws_cache_put(struct aws_cache *cache, const void *key, void *p_value) {
AWS_PRECONDITION(cache);
return cache->vtable->put(cache, key, p_value);
}
int aws_cache_remove(struct aws_cache *cache, const void *key) {
AWS_PRECONDITION(cache);
return cache->vtable->remove(cache, key);
}
void aws_cache_clear(struct aws_cache *cache) {
AWS_PRECONDITION(cache);
cache->vtable->clear(cache);
}
size_t aws_cache_get_element_count(const struct aws_cache *cache) {
AWS_PRECONDITION(cache);
return cache->vtable->get_element_count(cache);
}
void aws_cache_base_default_destroy(struct aws_cache *cache) {
aws_linked_hash_table_clean_up(&cache->table);
aws_mem_release(cache->allocator, cache);
}
int aws_cache_base_default_find(struct aws_cache *cache, const void *key, void **p_value) {
return (aws_linked_hash_table_find(&cache->table, key, p_value));
}
int aws_cache_base_default_remove(struct aws_cache *cache, const void *key) {
/* allocated cache memory and the linked list entry will be removed in the
* callback. */
return aws_linked_hash_table_remove(&cache->table, key);
}
void aws_cache_base_default_clear(struct aws_cache *cache) {
/* clearing the table will remove all elements. That will also deallocate
* any cache entries we currently have. */
aws_linked_hash_table_clear(&cache->table);
}
size_t aws_cache_base_default_get_element_count(const struct aws_cache *cache) {
return aws_linked_hash_table_get_element_count(&cache->table);
}
|