GM6000 Digital Heater Controller Branch: main
SDX-1330
List of all members | Public Member Functions
Cpl::Container::FDictionary< ITEM, NBUCKETS > Class Template Reference

This template class implements a Dictionary and/or Hash Table with a FIXED memory allocation (i.e. More...

Detailed Description

template<class ITEM, int NBUCKETS>
class Cpl::Container::FDictionary< ITEM, NBUCKETS >

This template class implements a Dictionary and/or Hash Table with a FIXED memory allocation (i.e.

memory for the dictionary is not supplied via the constructor).

Collisions are handled by a simple link list for each 'hash bucket'.

o This is no checking for duplicate keys. You can insert multiple
  items with duplicates keys, but there is no guaranty on how
  those items are found in searches and/or removed from the table.

o There is no limit to the number of items that can be
  stored in the table.  However, there is a performance
  penalty as the ratio of items vs. table buckets increases.
  Recommended size: Here is a list of some useful primes:
    67, 131, 257, 521, 1031, 2053, 4099, 8209, 16411

Template ARGS: ITEM - Data type of the object stored in the dictionary. 'ITEM' must be a sub-class of the Cpl::Container::DictItem base class. NBUCKETS - The number of hash buckets (see above for recommend values)

#include <FDictionary.h>

Public Member Functions

 FDictionary ()
 Constructor.
 
 FDictionary (const char *ignoreThisParameter_usedToCreateAUniqueConstructor)
 Constructor when statically allocating the instance.
 
Operations to manage items in the Dictionary
void insert (ITEM &node)
 Inserts an item into the table.
 
ITEMremove (const Key &keyOfObjectToDelete)
 Removes the node (if it exists) that has the matching key.
 
bool removeItem (ITEM &node)
 Removes the specified item from the table.
 
ITEMfind (const Key &keyToFind) const
 Searches for a item with a matching key.
 
bool isInDictionary (ITEM &node) const
 Returns true if the specified item is in the Dictionary; else false is returned.
 
ITEMfirst () const
 Returns the first item in the table. Returns 0 if table is empty.
 
ITEMnext (ITEM &current) const
 Returns the next item in the table.
 
ITEMgetFirst ()
 Removes the first item in the list.
 
Operations on the Dictionary itself
void move (FDictionary< ITEM, NBUCKETS > &dst)
 Moves the content of the this Dictionary to the specified Dictionary.
 
void clearTheDictionary ()
 Empties the Dictionary.
 
void stats (HashTableStats &tableInfo) const
 Returns table stats.
 

Constructor & Destructor Documentation

◆ FDictionary() [1/2]

template<class ITEM , int NBUCKETS>
Cpl::Container::FDictionary< ITEM, NBUCKETS >::FDictionary ( )
inline

Constructor.

◆ FDictionary() [2/2]

template<class ITEM , int NBUCKETS>
Cpl::Container::FDictionary< ITEM, NBUCKETS >::FDictionary ( const char ignoreThisParameter_usedToCreateAUniqueConstructor)
inline

Constructor when statically allocating the instance.

Member Function Documentation

◆ clearTheDictionary()

template<class ITEM , int NBUCKETS>
void Cpl::Container::FDictionary< ITEM, NBUCKETS >::clearTheDictionary ( )

Empties the Dictionary.

All references to the item(s) in the dictionary are lost.

◆ find()

template<class ITEM , int NBUCKETS>
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::find ( const Key keyToFind) const

Searches for a item with a matching key.

Returns the node that matches, else 0.

◆ first()

template<class ITEM , int NBUCKETS>
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::first ( ) const

Returns the first item in the table. Returns 0 if table is empty.

◆ getFirst()

template<class ITEM , int NBUCKETS>
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::getFirst ( )

Removes the first item in the list.

Returns 0 if the list is empty.

◆ insert()

template<class ITEM , int NBUCKETS>
void Cpl::Container::FDictionary< ITEM, NBUCKETS >::insert ( ITEM node)

Inserts an item into the table.

◆ isInDictionary()

template<class ITEM , int NBUCKETS>
bool Cpl::Container::FDictionary< ITEM, NBUCKETS >::isInDictionary ( ITEM node) const

Returns true if the specified item is in the Dictionary; else false is returned.

◆ move()

template<class ITEM , int NBUCKETS>
void Cpl::Container::FDictionary< ITEM, NBUCKETS >::move ( FDictionary< ITEM, NBUCKETS > &  dst)

Moves the content of the this Dictionary to the specified Dictionary.

◆ next()

template<class ITEM , int NBUCKETS>
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::next ( ITEM current) const

Returns the next item in the table.

Returns 0 if at the end-of-table Note: There is NO ORDER of the items stored in the Dictionary!

◆ remove()

template<class ITEM , int NBUCKETS>
ITEM * Cpl::Container::FDictionary< ITEM, NBUCKETS >::remove ( const Key keyOfObjectToDelete)

Removes the node (if it exists) that has the matching key.

Returns the node removed from the table or 0 if no key match was found.

◆ removeItem()

template<class ITEM , int NBUCKETS>
bool Cpl::Container::FDictionary< ITEM, NBUCKETS >::removeItem ( ITEM node)

Removes the specified item from the table.

Returns true when the node was found and removed; else false is returned (i.e. node not exists in the table).

◆ stats()

template<class ITEM , int NBUCKETS>
void Cpl::Container::FDictionary< ITEM, NBUCKETS >::stats ( HashTableStats tableInfo) const

Returns table stats.

Caller provides the memory for the stats structure.

Note: The stats are not calculate/gathered until this method is called. The duration of this call is directly related to the number of items in the dictionary.


The documentation for this class was generated from the following file: