5fb1c6ff1f
public and private API (still far from ideal, but a start): * moved several HPKG-classes into the public namespace BPackageKit::HPKG * added fImpl-wrappers around PackageReader and PackageWriter to hide most of the gory details * adjusted 'package'-binary and packagefs accordingly git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40320 a95241bf-73f2-0310-859d-f6bbb57e9c96
97 lines
1.5 KiB
C++
97 lines
1.5 KiB
C++
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__PRIVATE__STRINGS_H_
|
|
#define _PACKAGE__HPKG__PRIVATE__STRINGS_H_
|
|
|
|
|
|
#include <util/OpenHashTable.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
uint32 hash_string(const char* string);
|
|
|
|
|
|
struct CachedString {
|
|
char* string;
|
|
int32 index;
|
|
uint32 usageCount;
|
|
CachedString* next; // hash table link
|
|
|
|
CachedString()
|
|
:
|
|
string(NULL),
|
|
index(-1),
|
|
usageCount(1)
|
|
{
|
|
}
|
|
|
|
~CachedString()
|
|
{
|
|
free(string);
|
|
}
|
|
|
|
bool Init(const char* string)
|
|
{
|
|
this->string = strdup(string);
|
|
if (this->string == NULL)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
|
|
struct CachedStringHashDefinition {
|
|
typedef const char* KeyType;
|
|
typedef CachedString ValueType;
|
|
|
|
size_t HashKey(const char* key) const
|
|
{
|
|
return hash_string(key);
|
|
}
|
|
|
|
size_t Hash(const CachedString* value) const
|
|
{
|
|
return HashKey(value->string);
|
|
}
|
|
|
|
bool Compare(const char* key, const CachedString* value) const
|
|
{
|
|
return strcmp(value->string, key) == 0;
|
|
}
|
|
|
|
CachedString*& GetLink(CachedString* value) const
|
|
{
|
|
return value->next;
|
|
}
|
|
};
|
|
|
|
|
|
typedef BOpenHashTable<CachedStringHashDefinition> CachedStringTable;
|
|
|
|
|
|
struct CachedStringUsageGreater {
|
|
bool operator()(const CachedString* a, const CachedString* b)
|
|
{
|
|
return a->usageCount > b->usageCount;
|
|
}
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__PRIVATE__STRINGS_H_
|