1#ifndef Cpl_Container_Key_h_
2#define Cpl_Container_Key_h_
18#include "colony_map.h"
52 virtual const void*
getRawKey(
unsigned* returnRawKeyLenPtr = 0 )
const = 0;
62template<
class DATATYPE>
76 void setValue( DATATYPE newValue )
noexcept;
86 const void*
getRawKey(
unsigned* returnRawKeyLenPtr = 0 )
const;
161 static int compare(
const char* myString,
unsigned myLen,
const char* otherString,
unsigned otherLen );
168 const void*
getRawKey(
unsigned* returnRawKeyLenPtr = 0 )
const;
201template<
class DATATYPE>
203 :m_keyData( initialValue )
208template<
class DATATYPE>
211 m_keyData = newValue;
214template<
class DATATYPE>
221template<
class DATATYPE>
225 DATATYPE* ptr = (DATATYPE*) key.
getRawKey( &len );
226 if ( len !=
sizeof( DATATYPE ) )
228 Cpl::System::FatalError::logf(
"KeyPlainType::compare(): mismatch in key lengths. this=%p, my len=%u != %u",
this,
sizeof( DATATYPE ), len );
231 if ( m_keyData < *ptr )
235 else if ( m_keyData > *ptr )
243template<
class DATATYPE>
246 if ( returnRawKeyLenPtr != 0 )
248 *returnRawKeyLenPtr =
sizeof( DATATYPE );
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
virtual const void * getRawKey(unsigned *returnRawKeyLenPtr=0) const =0
Returns the object's length (in bytes) and point to the start of key data.
virtual int compareKey(const Key &key) const =0
Key Compare function.
virtual ~Key()
Ensure a Virtual destructor.
Definition Key.h:35
This class provides a 'Key' wrapper for a C string literal.
Definition Key.h:177
const char * operator()() const
Returns a Read-only pointer to the "raw" (short-hand for getKeyValue())
Definition Key.h:191
const char * getKeyValue(void) const noexcept
Returns the Key's content value.
Definition Key.h:185
KeyLiteralString(const char *string)
Constructor.
Definition Key.h:180
This template class is used to generate Key classes for most of the C/C++ primitive data types.
Definition Key.h:64
KeyPlainType(DATATYPE initialValue=0)
Constructor.
Definition Key.h:202
const void * getRawKey(unsigned *returnRawKeyLenPtr=0) const
Returns the object's length (in bytes) and point to the start of key data.
Definition Key.h:244
void setValue(DATATYPE newValue) noexcept
Updates the Key's content value.
Definition Key.h:209
DATATYPE m_keyData
Storage for the key.
Definition Key.h:67
int compareKey(const Key &key) const
Key Compare function.
Definition Key.h:222
DATATYPE getKeyValue(void) const noexcept
Returns the Key's content value.
Definition Key.h:215
This class provides a 'Key' wrapper for a array of Character of length N, i.e.
Definition Key.h:139
KeyStringBuffer(const char *startOfString, size_t lenOfStringInBytes)
Constructor.
static int compare(const char *myString, unsigned myLen, const char *otherString, unsigned otherLen)
Generic compare function for strings and string buffers.
const char * m_stringKeyPtr
Storage for the key.
Definition Key.h:142
const void * getRawKey(unsigned *returnRawKeyLenPtr=0) const
Returns the object's length (in bytes) and point to the start of key data.
const char * getKeyValue(size_t &lenOfStringInBytes) const noexcept
Returns the Key's content value.
Definition Key.h:156
size_t m_len
Number of bytes in the buffer.
Definition Key.h:145
int compareKey(const Key &key) const
Key Compare function.
static void logf(const char *format,...)
Printf style formatted message.
KeyPlainType< int16_t > KeyInteger16_T
Pre-defined key.
Definition Key.h:115
KeyPlainType< uint16_t > KeyUinteger16_T
Pre-defined key.
Definition Key.h:118
KeyPlainType< long > KeyLong_T
Pre-defined key.
Definition Key.h:100
KeyPlainType< size_t > KeySizet_T
Pre-defined key.
Definition Key.h:106
KeyPlainType< unsigned long > KeyULong_T
Pre-defined key.
Definition Key.h:103
KeyPlainType< int32_t > KeyInteger32_T
Pre-defined key.
Definition Key.h:121
KeyPlainType< unsigned > KeyUnsigned_T
Pre-defined key.
Definition Key.h:97
KeyPlainType< uint8_t > KeyUinteger8_T
Pre-defined key.
Definition Key.h:112
KeyPlainType< uint32_t > KeyUinteger32_T
Pre-defined key.
Definition Key.h:124
KeyPlainType< int8_t > KeyInteger8_T
Pre-defined key.
Definition Key.h:109
KeyPlainType< int > KeyInteger_T
Pre-defined key.
Definition Key.h:94
KeyPlainType< int64_t > KeyInteger64_T
Pre-defined key.
Definition Key.h:127
KeyPlainType< uint64_t > KeyUinteger64_T
Pre-defined key.
Definition Key.h:130
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20