Base dictionary class templated on both the form of doubly-linked list it uses as well as the type it holds. More...
#include <DictionaryBase.H>


Public Member Functions | |
| DictionaryBase ()=default | |
| Default construct: empty without allocation (capacity=0). | |
| DictionaryBase (const label initialCapacity) | |
| Construct empty with initial table capacity. | |
| DictionaryBase (const DictionaryBase &dict) | |
| Copy construct. | |
| template<class INew> | |
| DictionaryBase (Istream &is, const INew &inew) | |
| Construct from Istream using given Istream constructor class. | |
| DictionaryBase (Istream &is) | |
| Construct from Istream using default Istream constructor class. | |
| bool | contains (const word &keyword) const |
| Search for given keyword. | |
| const T * | cfind (const word &keyword) const |
| Find and return an entry, nullptr on failure. | |
| T * | find (const word &keyword) |
| Find and return an entry, nullptr on failure. | |
| const T * | lookup (const word &keyword) const |
| Find and return entry, FatalError on failure. | |
| T * | lookup (const word &keyword) |
| Find and return entry, FatalError on failure. | |
| wordList | toc () const |
| The table of contents (as a sorted list). | |
| wordList | sortedToc () const |
| The table of contents as a sorted list. | |
| template<class Compare> | |
| wordList | sortedToc (const Compare &comp) const |
| The table of contents sorted using the specified comparator. | |
| void | push_front (const word &keyword, T *ptr) |
| Add to front of dictionary. | |
| void | push_back (const word &keyword, T *ptr) |
| Add to back of dictionary. | |
| T * | remove (const word &keyword) |
| Remove and return entry specified by keyword. | |
| void | clear () |
| Clear the dictionary. | |
| void | transfer (DictionaryBase< IDLListType, T > &dict) |
| Transfer the contents of the argument into this DictionaryBase. | |
| void | operator= (const DictionaryBase &) |
| Copy assignment. | |
| const T * | operator[] (const word &key) const |
| Find and return entry. | |
| T * | operator[] (const word &key) |
| Find and return entry. | |
| bool | found (const word &key) const |
| Same as contains(). | |
| const T * | lookupPtr (const word &k) const |
| Deprecated(2020-03) use cfind(). | |
| T * | lookupPtr (const word &k) |
| Deprecated(2020-03) use find(). | |
| void | insert (const word &k, T *ptr) |
| Add to front of dictionary. | |
| void | prepend (const word &k, T *ptr) |
| Add to front of dictionary. | |
| void | append (const word &k, T *ptr) |
| Add to back of dictionary. | |
Protected Member Functions | |
| bool | addHashEntry (const word &key, T *ptr) |
| Add an entry to the HashTable. | |
| void | addEntries () |
| Add the IDLListType entries into the HashTable. | |
Protected Attributes | |
| HashTable< T * > | hashedTs_ |
| HashTable of the entries held on the IDLListType for quick lookup. | |
Friends | |
| Ostream & | operator (Ostream &, const DictionaryBase< IDLListType, T > &) |
Base dictionary class templated on both the form of doubly-linked list it uses as well as the type it holds.
The double templating allows for the instantiation of forms with or without storage management.
Definition at line 71 of file DictionaryBase.H.
|
default |
Default construct: empty without allocation (capacity=0).
Referenced by DictionaryBase(), and operator=().

|
inlineexplicit |
Construct empty with initial table capacity.
Definition at line 113 of file DictionaryBase.H.
| DictionaryBase | ( | const DictionaryBase< IDLListType, T > & | dict | ) |
Copy construct.
Definition at line 39 of file DictionaryBase.C.
References addEntries(), dict, and DictionaryBase().

| DictionaryBase | ( | Istream & | is, |
| const INew & | inew ) |
Construct from Istream using given Istream constructor class.
Definition at line 52 of file DictionaryBase.C.
References addEntries().

Construct from Istream using default Istream constructor class.
Definition at line 65 of file DictionaryBase.C.
References addEntries().

|
inlineprotected |
Add an entry to the HashTable.
Definition at line 90 of file DictionaryBase.H.
Referenced by PtrListDictionary< phaseModel >::set().

|
protected |
Add the IDLListType entries into the HashTable.
Definition at line 27 of file DictionaryBase.C.
References hashedTs_.
Referenced by DictionaryBase(), DictionaryBase(), and DictionaryBase().

Search for given keyword.
Definition at line 76 of file DictionaryBase.C.
References hashedTs_.
Referenced by DictionaryBase< IDLList< T >, T >::found().

Find and return an entry, nullptr on failure.
Definition at line 83 of file DictionaryBase.C.
References hashedTs_, and Foam::T().
Referenced by DictionaryBase< IDLList< T >, T >::lookupPtr().


Find and return an entry, nullptr on failure.
Definition at line 100 of file DictionaryBase.C.
References hashedTs_, and Foam::T().
Referenced by Foam::appendNamedEntry(), DictionaryBase< IDLList< T >, T >::lookupPtr(), and Time::readDict().


Find and return entry, FatalError on failure.
Definition at line 114 of file DictionaryBase.C.
References Foam::exit(), Foam::FatalError, FatalErrorInFunction, hashedTs_, and Foam::T().
Referenced by DictionaryBase< IDLList< T >, T >::operator[](), and DictionaryBase< IDLList< T >, T >::operator[]().


Find and return entry, FatalError on failure.
Definition at line 130 of file DictionaryBase.C.
References Foam::exit(), Foam::FatalError, FatalErrorInFunction, hashedTs_, and Foam::T().

The table of contents (as a sorted list).
Definition at line 167 of file DictionaryBase.H.
The table of contents as a sorted list.
Definition at line 175 of file DictionaryBase.H.
|
inline |
The table of contents sorted using the specified comparator.
Definition at line 184 of file DictionaryBase.H.
Add to front of dictionary.
Definition at line 146 of file DictionaryBase.C.
Referenced by DictionaryBase< IDLList< T >, T >::insert(), and DictionaryBase< IDLList< T >, T >::prepend().

Add to back of dictionary.
Definition at line 159 of file DictionaryBase.C.
References hashedTs_, and Foam::T().
Referenced by DictionaryBase< IDLList< T >, T >::append().


Remove and return entry specified by keyword.
Return nullptr if the keyword was not found.
Definition at line 172 of file DictionaryBase.C.
References hashedTs_, and Foam::T().

| void clear | ( | ) |
| void transfer | ( | DictionaryBase< IDLListType, T > & | dict | ) |
Transfer the contents of the argument into this DictionaryBase.
and annul the argument.
Definition at line 195 of file DictionaryBase.C.
| void operator= | ( | const DictionaryBase< IDLListType, T > & | ) |
Copy assignment.
Definition at line 213 of file DictionaryBase.C.
References dict, DictionaryBase(), and operator.

Find and return entry.
Definition at line 232 of file DictionaryBase.H.
Find and return entry.
Definition at line 240 of file DictionaryBase.H.
Same as contains().
Definition at line 260 of file DictionaryBase.H.
Deprecated(2020-03) use cfind().
Definition at line 268 of file DictionaryBase.H.
Deprecated(2020-03) use find().
Definition at line 276 of file DictionaryBase.H.
Add to front of dictionary.
FOAM_DEPRECATED_FOR(2022-10, "push_front()")
Definition at line 283 of file DictionaryBase.H.
Add to front of dictionary.
FOAM_DEPRECATED_FOR(2022-10, "push_front()")
Definition at line 290 of file DictionaryBase.H.
Add to back of dictionary.
FOAM_DEPRECATED_FOR(2022-10, "push_back()")
Definition at line 297 of file DictionaryBase.H.
Referenced by Foam::appendNamedEntry().

|
friend |
Referenced by operator=().
HashTable of the entries held on the IDLListType for quick lookup.
Definition at line 82 of file DictionaryBase.H.
Referenced by addEntries(), cfind(), clear(), contains(), find(), lookup(), lookup(), push_back(), and remove().