amxmodx/plugins/include/celltrie.inc

159 lines
4.4 KiB
PHP
Raw Normal View History

2008-04-14 23:52:11 +04:00
#if defined _celltrie_included
2014-05-03 15:22:48 +04:00
#endinput
2008-04-14 23:52:11 +04:00
#endif
#define _celltrie_included
enum Trie
{
Invalid_Trie = 0
};
2014-05-03 15:22:48 +04:00
/**
* Creates a hash map. A hash map is a container that can map strings (called
* "keys") to arbitrary values (cells, arrays, or strings). Keys in a hash map
* are unique. That is, there is at most one entry in the map for a given key.
*
* Insertion, deletion, and lookup in a hash map are all considered to be fast
* operations, amortized to O(1), or constant time.
*
* The word "Trie" in this API is historical. As of AMX Mod X 1.8.3, tries have
* been internally replaced with hash tables, which have O(1) insertion time
* instead of O(n).
*
* @return New Map Handle, which must be freed via TrieDestroy().
*/
2008-04-14 23:52:11 +04:00
native Trie:TrieCreate();
2014-05-03 15:22:48 +04:00
/**
* Clears all entries from a Map.
*
* @param handle Map Handle.
*
* @error Invalid Handle.
*/
2008-04-14 23:52:11 +04:00
native TrieClear(Trie:handle);
2014-05-03 15:22:48 +04:00
/**
* Sets a value in a hash map, either inserting a new entry or replacing an old one.
*
* @param handle Map Handle.
* @param key Key string.
* @param value Value to store at this key.
* @param replace If false, operation will fail if the key is already set.
2014-05-03 15:22:48 +04:00
*
* @return True on success, false on failure.
* @error Invalid Handle.
*/
native TrieSetCell(Trie:handle, const key[], any:value, bool:replace = true);
2014-05-03 15:22:48 +04:00
/**
* Sets a string value in a Map, either inserting a new entry or replacing an old one.
*
* @param handle Map Handle.
* @param key Key string.
* @param value String to store.
* @param replace If false, operation will fail if the key is already set.
2014-05-03 15:22:48 +04:00
*
* @return True on success, false on failure.
* @error Invalid Handle.
*/
native TrieSetString(Trie:handle, const key[], const value[], bool:replace = true);
2014-05-03 15:22:48 +04:00
/**
* Sets an array value in a Map, either inserting a new entry or replacing an old one.
*
* @param handle Map Handle.
* @param key Key string.
* @param buffer Array to store.
* @param size Number of items in the array.
* @param replace If false, operation will fail if the key is already set.
2014-05-03 15:22:48 +04:00
*
* @return True on success, false on failure.
* @error Invalid Handle.
*/
native TrieSetArray(Trie:handle, const key[], const any:buffer[], size, bool:replace = true);
2008-04-14 23:52:11 +04:00
2014-05-03 15:22:48 +04:00
/**
* Retrieves a value in a Map.
*
* @param handle Map Handle.
* @param key Key string.
* @param value Variable to store value.
* @return True on success. False if the key is not set, or the key is set
* as an array or string (not a value).
* @error Invalid Handle.
*/
2008-04-14 23:52:11 +04:00
native bool:TrieGetCell(Trie:handle, const key[], &any:value);
2014-05-03 15:22:48 +04:00
/**
* Retrieves a string in a Map.
*
* @param handle Map Handle.
* @param key Key string.
* @param output Buffer to store value.
* @param outputsize Maximum size of string buffer.
* @param size Optional parameter to store the number of bytes written to the buffer.
2014-05-03 15:22:48 +04:00
*
* @return True on success. False if the key is not set, or the key is set
* as a value or array (not a string).
* @error Invalid Handle.
*/
native bool:TrieGetString(Trie:handle, const key[], output[], outputsize, &size = 0);
2014-05-03 15:22:48 +04:00
/**
* Retrieves an array in a Map.
*
* @param handle Map Handle.
* @param key Key string.
* @param output Buffer to store array.
* @param outputsize Maximum size of array buffer.
* @param size Optional parameter to store the number of elements written to the buffer.
2014-05-03 15:22:48 +04:00
*
* @return True on success. False if the key is not set, or the key is set
* as a value or string (not an array).
* @error Invalid Handle.
*/
native bool:TrieGetArray(Trie:handle, const key[], any:output[], outputsize, &size = 0);
2008-04-14 23:52:11 +04:00
2014-05-03 15:22:48 +04:00
/**
* Removes a key entry from a Map.
*
* @param handle Map Handle.
* @param key Key string.
*
* @return True on success, false if the value was never set.
* @error Invalid Handle.
*/
2008-04-14 23:52:11 +04:00
native bool:TrieDeleteKey(Trie:handle, const key[]);
2014-05-03 15:22:48 +04:00
/**
* Checks a key entry existence from a Map.
*
* @param handle Map Handle.
* @param key Key string.
*
* @return True on success, false if the value was never set.
* @error Invalid Handle.
*/
2008-04-14 23:52:11 +04:00
native bool:TrieKeyExists(Trie:handle, const key[]);
2014-05-03 15:22:48 +04:00
/**
* Destroys a Map.
*
* @param handle Map Handle.
*
* @return True on success, false if the value was never set.
* @error Invalid Handle.
*/
2008-04-14 23:52:11 +04:00
native TrieDestroy(&Trie:handle);
2014-05-03 18:09:31 +04:00
/**
* Retrieves the number of elements in a map.
*
* @param handle Map Handle.
*
* @return Number of elements in the trie.
* @error Invalid Handle.
*/
native TrieGetSize(Trie:handle);