2006-05-04 12:21:08 +00:00
|
|
|
#ifndef __ATERM_MAP_H
|
|
|
|
#define __ATERM_MAP_H
|
|
|
|
|
|
|
|
#include <aterm2.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
class ATermMap
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
struct KeyValue
|
|
|
|
{
|
|
|
|
ATerm key;
|
|
|
|
ATerm value;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/* Hash table for the map. We use open addressing, i.e., all
|
|
|
|
key/value pairs are stored directly in the table, and there are
|
|
|
|
no pointers. Collisions are resolved through probing. */
|
|
|
|
KeyValue * hashTable;
|
|
|
|
|
|
|
|
/* Current size of the hash table. */
|
|
|
|
unsigned int capacity;
|
|
|
|
|
|
|
|
/* Number of elements in the hash table. */
|
|
|
|
unsigned int count;
|
|
|
|
|
|
|
|
/* Maximum number of elements in the hash table. If `count'
|
|
|
|
exceeds this number, the hash table is expanded. */
|
|
|
|
unsigned int maxCount;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/* Create a map. `expectedCount' is the number of elements the
|
|
|
|
map is expected to hold. */
|
|
|
|
ATermMap(unsigned int expectedCount);
|
|
|
|
|
|
|
|
ATermMap(const ATermMap & map);
|
|
|
|
|
|
|
|
~ATermMap();
|
|
|
|
|
|
|
|
ATermMap & operator = (const ATermMap & map);
|
|
|
|
|
|
|
|
void set(ATerm key, ATerm value);
|
|
|
|
|
|
|
|
ATerm get(ATerm key) const;
|
|
|
|
|
2006-05-08 12:52:47 +00:00
|
|
|
ATerm operator [](ATerm key) const
|
|
|
|
{
|
|
|
|
return get(key);
|
|
|
|
}
|
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
void remove(ATerm key);
|
|
|
|
|
|
|
|
unsigned int size();
|
|
|
|
|
|
|
|
struct const_iterator
|
|
|
|
{
|
|
|
|
const ATermMap & map;
|
|
|
|
unsigned int pos;
|
|
|
|
const_iterator(const ATermMap & map, int pos) : map(map)
|
|
|
|
{
|
|
|
|
this->pos = pos;
|
|
|
|
}
|
|
|
|
bool operator !=(const const_iterator & i)
|
|
|
|
{
|
|
|
|
return pos != i.pos;
|
|
|
|
}
|
|
|
|
void operator ++()
|
|
|
|
{
|
|
|
|
if (pos == map.capacity) return;
|
|
|
|
do { ++pos;
|
|
|
|
} while (pos < map.capacity && map.hashTable[pos].value == 0);
|
|
|
|
}
|
|
|
|
const KeyValue & operator *()
|
|
|
|
{
|
|
|
|
assert(pos < map.capacity);
|
|
|
|
return map.hashTable[pos];
|
|
|
|
}
|
|
|
|
const KeyValue * operator ->()
|
|
|
|
{
|
|
|
|
assert(pos < map.capacity);
|
|
|
|
return &map.hashTable[pos];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-05-08 15:15:13 +00:00
|
|
|
friend class ATermMap::const_iterator;
|
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
const_iterator begin() const
|
|
|
|
{
|
|
|
|
unsigned int i = 0;
|
|
|
|
while (i < capacity && hashTable[i].value == 0) ++i;
|
|
|
|
return const_iterator(*this, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
const_iterator end() const
|
|
|
|
{
|
|
|
|
return const_iterator(*this, capacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void init(unsigned int expectedCount);
|
|
|
|
|
|
|
|
void free();
|
|
|
|
|
|
|
|
void resizeTable(unsigned int expectedCount);
|
|
|
|
|
|
|
|
void copy(KeyValue * elements, unsigned int capacity);
|
|
|
|
|
2006-05-11 02:19:43 +00:00
|
|
|
inline unsigned long hash1(ATerm key) const;
|
|
|
|
inline unsigned long hash2(ATerm key) const;
|
2006-05-04 12:21:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-05-08 10:00:37 +00:00
|
|
|
/* Hack. */
|
|
|
|
void printATermMapStats();
|
|
|
|
|
|
|
|
|
2006-05-04 12:21:08 +00:00
|
|
|
#endif /* !__ATERM_MAP_H */
|