9b9d18dc97
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@723 a95241bf-73f2-0310-859d-f6bbb57e9c96
83 lines
1.5 KiB
C++
83 lines
1.5 KiB
C++
#ifndef _MEDIA_T_MAP_H
|
|
#define _MEDIA_T_MAP_H
|
|
|
|
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;
|
|
}
|
|
|
|
bool GetPointer(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 GetPointerAt(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;
|
|
};
|
|
|
|
#endif // _MEDIA_T_MAP_H
|