haiku/headers/private/media/TMap.h
ejakowatz 52a3801208 It is accomplished ...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-07-09 12:24:59 +00:00

61 lines
1.1 KiB
C++

template<class key, class value> class Map
{
public:
Map() : count(0) {}
void Insert(const key &k, const value &v)
{
value temp;
if (count == MAXENT) debugger("template Map out of memory");
if (Get(k, &temp)) debugger("template Map inserting duplicate key");
list[count].k = k;
list[count].v = v;
count++;
}
bool Get(const key &k, value *v)
{
for (int i = 0; i < count; i++)
if (list[i].k == k) {
*v = list[i].v;
return true;
}
return false;
}
// you can't Remove() while iterating through the map using GetAt()
bool GetAt(int32 index, value *v)
{
if (index < 0 || index >= count)
return false;
*v = list[index].v;
return true;
}
// you can't Remove() while iterating through the map using GetAt()
bool Remove(const key &k)
{
for (int i = 0; i < count; i++)
if (list[i].k == k) {
count--;
if (count > 0) {
list[i].v = list[count].v;
list[i].k = list[count].k;
}
return true;
}
return false;
}
private:
enum { MAXENT = 64 };
struct ent {
key k;
value v;
};
ent list[MAXENT];
int count;
};