2000-03-28 22:04:39 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
* Copyright (C) 1997-2000, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*******************************************************************************
|
|
|
|
* Date Name Description
|
|
|
|
* 03/28/00 aliu Creation.
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HASH_H
|
|
|
|
#define HASH_H
|
|
|
|
|
|
|
|
#include "uhash.h"
|
|
|
|
#include "unicode/unistr.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hashtable is a thin C++ wrapper around UHashtable, a general-purpose void*
|
|
|
|
* hashtable implemented in C. Hashtable is designed to be idiomatic and
|
|
|
|
* easy-to-use in C++.
|
|
|
|
*
|
|
|
|
* Hashtable is an INTERNAL CLASS.
|
|
|
|
*/
|
|
|
|
class Hashtable {
|
|
|
|
UHashtable* hash;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Hashtable(UErrorCode& status);
|
|
|
|
|
2000-03-30 04:17:27 +00:00
|
|
|
/**
|
|
|
|
* Construct a hashtable, _disregarding any error_. Use this constructor
|
|
|
|
* with caution.
|
|
|
|
*/
|
|
|
|
Hashtable();
|
|
|
|
|
2000-03-28 22:04:39 +00:00
|
|
|
/**
|
|
|
|
* Non-virtual destructor; make this virtual if Hashtable is subclassed
|
|
|
|
* in the future.
|
|
|
|
*/
|
|
|
|
~Hashtable();
|
|
|
|
|
|
|
|
UObjectDeleter setValueDeleter(UObjectDeleter fn);
|
|
|
|
|
2000-03-29 19:16:54 +00:00
|
|
|
int32_t count() const;
|
|
|
|
|
2000-03-28 22:04:39 +00:00
|
|
|
void* put(const UnicodeString& key, void* value, UErrorCode& status);
|
|
|
|
|
|
|
|
void* get(const UnicodeString& key) const;
|
|
|
|
|
|
|
|
void* remove(const UnicodeString& key);
|
2000-03-29 19:16:54 +00:00
|
|
|
|
2000-03-30 04:17:27 +00:00
|
|
|
const UHashElement* nextElement(int32_t& pos) const;
|
2000-03-28 22:04:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* Implementation
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
inline Hashtable::Hashtable(UErrorCode& status) : hash(0) {
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
hash = uhash_open(uhash_hashUnicodeString,
|
|
|
|
uhash_compareUnicodeString, &status);
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
uhash_setKeyDeleter(hash, uhash_deleteUnicodeString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-30 04:17:27 +00:00
|
|
|
inline Hashtable::Hashtable() : hash(0) {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
hash = uhash_open(uhash_hashUnicodeString,
|
|
|
|
uhash_compareUnicodeString, &status);
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
uhash_setKeyDeleter(hash, uhash_deleteUnicodeString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-28 22:04:39 +00:00
|
|
|
inline Hashtable::~Hashtable() {
|
|
|
|
if (hash != 0) {
|
|
|
|
uhash_close(hash);
|
|
|
|
hash = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline UObjectDeleter Hashtable::setValueDeleter(UObjectDeleter fn) {
|
|
|
|
return uhash_setValueDeleter(hash, fn);
|
|
|
|
}
|
|
|
|
|
2000-03-29 19:16:54 +00:00
|
|
|
inline int32_t Hashtable::count() const {
|
|
|
|
return uhash_count(hash);
|
|
|
|
}
|
|
|
|
|
2000-03-28 22:04:39 +00:00
|
|
|
inline void* Hashtable::put(const UnicodeString& key, void* value, UErrorCode& status) {
|
|
|
|
return uhash_put(hash, new UnicodeString(key), value, &status);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void* Hashtable::get(const UnicodeString& key) const {
|
|
|
|
return uhash_get(hash, &key);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void* Hashtable::remove(const UnicodeString& key) {
|
|
|
|
return uhash_remove(hash, &key);
|
|
|
|
}
|
|
|
|
|
2000-03-30 04:17:27 +00:00
|
|
|
inline const UHashElement* Hashtable::nextElement(int32_t& pos) const {
|
|
|
|
return uhash_nextElement(hash, &pos);
|
2000-03-29 19:16:54 +00:00
|
|
|
}
|
|
|
|
|
2000-03-28 22:04:39 +00:00
|
|
|
#endif
|