123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- /*
- * Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Intel Corporation nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #include "lru_cache.h"
- lru_cache::lru_cache()
- {
- m_it = list.begin();
- }
- lru_cache::~lru_cache()
- {
- list_node_t* list_node;
- map_node_t* map_node;
-
- while (list.size() > 0)
- {
- list_node = list.front();
- map_node = map[list_node->key];
-
- map.erase(list_node->key);
- delete map_node;
- list.pop_front();
- delete list_node;
- }
- assert(list.empty() == true);
- assert(map.empty() == true);
- }
- void lru_cache::rehash(uint32_t size_)
- {
- map.rehash(size_);
- }
- bool lru_cache::add(uint64_t key, void* data)
- {
- map_node_t* map_node = NULL;
- list_node_t* list_node = NULL;
-
- try {
- map_node = new map_node_t();
- list_node = new list_node_t();
- }
- catch (std::bad_alloc e) {
- (void)e; // remove warning
- return false;
- }
-
- list_node->key = key;
- list.push_front(list_node);
- map_iterator map_it = map.find(key);
- assert(map_it == map.end());
- if (map_it != map.end())
- {
- // this indicates some fatal problem, perhaps race issue caused by bad locks...
- map_node_t* tmp_map_node = map_it->second;
- if (tmp_map_node != NULL)
- delete tmp_map_node;
- map.erase(map_it);
- }
- map_node->data = data;
- map_node->list_it = list.begin();
-
- map[key] = map_node;
-
- return true;
- }
- void* lru_cache::find(uint64_t key)
- {
- map_iterator map_it = map.find(key);
- if (map_it == map.end())
- return NULL;
- map_node_t* map_node = map_it->second;
- return map_node->data;
- }
- void* lru_cache::get(uint64_t key)
- {
- map_iterator map_it = map.find(key);
- if (map_it == map.end())
- return NULL;
- map_node_t* map_node = map_it->second;
- list_node_t* list_node = *(map_node->list_it);
- assert(list_node != NULL);
- if (list_node == NULL) // this should never happen, but just in case, code is here to fix it
- {
- try {
- list_node = new list_node_t();
- list_node->key = map_it->first;
- }
- catch (std::bad_alloc e) {
- (void)e; // remove warning
- return NULL;
- }
- }
-
- list.erase(map_node->list_it);
- list.push_front(list_node);
- map_node->list_it = list.begin();
- return map_node->data;
- }
- uint32_t lru_cache::size()
- {
- assert(list.size() == map.size());
- return (uint32_t)list.size();
- }
- void* lru_cache::get_first()
- {
- if (list.size() == 0)
- return NULL;
- m_it = list.begin();
- if (m_it == list.end())
- return NULL;
- list_node_t* list_node = (*m_it);
- assert(list_node != NULL);
- if (list_node == NULL)
- return NULL;
- map_iterator map_it = map.find(list_node->key);
- assert(map_it != map.end());
- if (map_it == map.end())
- return NULL;
- map_node_t* map_node = map_it->second;
- assert(map_node != NULL);
- if (map_node == NULL)
- return NULL;
- return map_node->data;
- }
- void* lru_cache::get_next()
- {
- if (list.size() == 0)
- return NULL;
- ++m_it;
- if (m_it == list.end())
- return NULL;
- list_node_t* list_node = (*m_it);
- assert(list_node != NULL);
- if (list_node == NULL)
- return NULL;
- map_iterator map_it = map.find(list_node->key);
- assert(map_it != map.end());
- if (map_it == map.end())
- return NULL;
- map_node_t* map_node = map_it->second;
- assert(map_node != NULL);
- if (map_node == NULL)
- return NULL;
- return map_node->data;
- }
- void* lru_cache::get_last()
- {
- if (list.size() == 0)
- return NULL;
- list_iterator it = list.end(); // pointer to the object past-the-end
- assert(it != list.begin());
- if (it == list.begin()) // the list is empty
- return NULL;
-
- --it; // now it points to the last object
- list_node_t* list_node = (*it);
- assert(list_node != NULL);
- if (list_node == NULL)
- return NULL;
- map_iterator map_it = map.find(list_node->key);
- assert(map_it != map.end());
- if (map_it == map.end())
- return NULL;
- map_node_t* map_node = map_it->second;
- assert(map_node != NULL);
- if (map_node == NULL)
- return NULL;
- return map_node->data;
- }
- void lru_cache::remove_last()
- {
- uint64_t key;
- list_iterator it = list.end(); // pointer to the object past-the-end
- if (it == list.begin()) // the list is empty
- return;
- --it; // now it points to the last object
- list_node_t* list_node = (*it);
- list.erase(it);
-
- assert(list_node != NULL);
- if (list_node == NULL) // unclear how this can happen...
- return;
- key = list_node->key;
- delete list_node;
- map_iterator map_it = map.find(key);
- assert(map_it != map.end());
- if (map_it == map.end())
- return;
- map_node_t* map_node = map_it->second;
- assert(map_node != NULL);
- if (map_node == NULL)
- return;
- map.erase(key);
- delete map_node;
- }
|