You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/core/hash_table.h

323 lines
7.1 KiB

/*
* $Id: hash_table.h 1486 2009-08-29 14:40:38Z rco $
*
* Copyright (C) 2007 Raphael Coeffic
*
* This file is part of SEMS, a free SIP media server.
*
* SEMS is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. This program is released under
* the GPL with the additional exemption that compiling, linking,
* and/or using OpenSSL is allowed.
*
* For a license to use the SEMS software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
* info@iptel.org
*
* SEMS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _hash_table_h
#define _hash_table_h
#include "AmThread.h"
#include "log.h"
#include <list>
#include <map>
#include <unordered_map>
using std::list;
using std::map;
using std::unordered_map;
using std::less;
template<class Value>
class ht_bucket: public AmMutex
{
public:
typedef list<Value*> value_list;
ht_bucket(unsigned long id) : id(id) {}
virtual ~ht_bucket() {}
/**
* Caution: The bucket MUST be locked before you can
* do anything with it.
*/
/**
* Searches for the value ptr in this bucket.
* This is used to check if the value
* still exists.
*
* @return true if the value still exists.
*/
bool exist(Value* t) {
return find(t) != elmts.end();
}
/**
* Remove the value from this bucket,
* if it was still present.
*/
void remove(Value* t) {
typename value_list::iterator it = find(t);
if(it != elmts.end()){
elmts.erase(it);
delete t;
}
}
/**
* Returns the bucket id, which should be an index
* into the corresponding hash table.
*/
unsigned long get_id() const {
return id;
}
// debug method
void dump() const {
if(elmts.empty())
return;
DBG("*** Bucket ID: %i ***\n",(int)get_id());
for(typename value_list::const_iterator it = elmts.begin(); it != elmts.end(); ++it) {
(*it)->dump();
}
}
protected:
/**
* Finds a transaction ptr in this bucket.
* This is used to check if the transaction
* still exists.
*
* @return iterator pointing at the value.
*/
typename value_list::iterator find(Value* t)
{
typename value_list::iterator it = elmts.begin();
for(;it!=elmts.end();++it)
if(*it == t)
break;
return it;
}
unsigned long id;
value_list elmts;
};
template<class Key, class Value,
class ElmtCompare = less<Key> >
class ht_map_bucket: public AmMutex
{
public:
typedef map<Key,Value*,ElmtCompare> value_map;
ht_map_bucket(unsigned long id) : id(id) {}
virtual ~ht_map_bucket() {}
/**
* Caution: The bucket MUST be locked before you can
* do anything with it.
*/
/**
* Searches for the value ptr in this bucket.
* This is used to check if the value
* still exists.
*
* @return true if the value still exists.
*/
bool exist(const Key& k) {
return find(k) != elmts.end();
}
/**
* Insert the value into this bucket.
*/
virtual bool insert(const Key& k, Value* v) {
bool res = elmts.insert(typename value_map::value_type(k,v)).second;
if(!res) delete v;
return res;
}
/**
* Remove the value from this bucket,
* if it was still present.
*/
virtual bool remove(const Key& k) {
typename value_map::iterator it = find(k);
if(it != elmts.end()){
Value* v = it->second;
elmts.erase(it);
delete v;
return true;
}
return false;
}
Value* get(const Key& k) {
typename value_map::iterator it = find(k);
if(it != elmts.end())
return it->second;
return NULL;
}
/**
* Returns the bucket id, which should be an index
* into the corresponding hash table.
*/
unsigned long get_id() const {
return id;
}
// debug method
void dump() const {
if(elmts.empty())
return;
DBG("*** Bucket ID: %i ***\n",(int)get_id());
for(typename value_map::const_iterator it = elmts.begin();
it != elmts.end(); ++it) {
dump_elmt(it->first,it->second);
}
}
virtual void dump_elmt(const Key& k, const Value* v) const {}
protected:
typename value_map::iterator find(const Key& k)
{
return elmts.find(k);
}
unsigned long id;
value_map elmts;
};
template<class Bucket>
class hash_table
{
unsigned long size;
Bucket** _table;
public:
hash_table(unsigned long size)
: size(size)
{
_table = new Bucket* [size];
for(unsigned long i=0; i<size; i++)
_table[i] = new Bucket(i);
}
~hash_table() {
for(unsigned long i=0; i<size; i++)
delete _table[i];
delete [] _table;
}
Bucket* operator [](unsigned long hash) const {
return get_bucket(hash);
}
Bucket* get_bucket(unsigned long hash) const {
return _table[hash % size];
}
void dump() const {
for(unsigned long l=0; l<size; l++){
_table[l]->lock();
_table[l]->dump();
_table[l]->unlock();
}
}
unsigned long get_size() { return size; }
};
template<class Key, class Value, class Container>
class hash_map : public AmMutex
{
public:
using parent = Container;
using iterator = parent::iterator;
using const_iterator = parent::const_iterator;
hash_map() {}
virtual ~hash_map() {}
virtual void dump_elmt(const Key& k, const Value& v) const = 0;
// debug method
void dump() {
std::lock_guard<AmMutex> _l(*this);
if(empty())
return;
for(auto it = cbegin();
it != cend(); ++it) {
dump_elmt(it->first, it->second);
}
}
// wrappers
bool empty() const { return elems.empty(); }
iterator begin() { return elems.begin(); }
const_iterator cbegin() const { return elems.cbegin(); }
iterator end() { return elems.end(); }
const_iterator cend() const { return elems.cend(); }
size_t erase(const Key& k) { return elems.erase(k); }
iterator erase(iterator it) { return elems.erase(it); }
iterator find(const Key& k) { return elems.find(k); }
const_iterator find(const Key& k) const { return elems.find(k); }
std::pair<iterator, bool> insert(const std::pair<const Key&, const Value &>& value) { return elems.insert(value); }
private:
Container elems;
};
template<class Key, class Value>
class ordered_hash_map : public hash_map<Key, Value, map<Key, Value>>
{
};
template<class Key, class Value>
class unordered_hash_map : public hash_map<Key, Value, unordered_map<Key, Value>>
{
};
#endif
/** EMACS **
* Local variables:
* mode: c++
* c-basic-offset: 4
* End:
*/