GM6000 Digital Heater Controller Branch: main
SDX-1330
Key.h
Go to the documentation of this file.
1#ifndef Cpl_Container_Key_h_
2#define Cpl_Container_Key_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16#include <stdint.h>
17#include <string.h>
18#include "colony_map.h"
19
20
21
22///
23namespace Cpl {
24///
25namespace Container {
26
27
28/** This abstract class defines the interface that a contained object
29 must support if it has comparable key associated with it.
30 */
31class Key
32{
33public:
34 /// Ensure a Virtual destructor
35 virtual ~Key() {}
36
37public:
38 /** Key Compare function. Returns <0, 0, >0 if this key is less than,
39 equal, or greater than respectively to the specified key!
40 The actual type of the 'key' is up to the client sub-class
41 that implements this interface. It is the responsibility of
42 the sub-class to correctly define/interpret the data type of the key.
43
44 */
45 virtual int compareKey( const Key& key ) const = 0;
46
47
48 /** Returns the object's length (in bytes) and point to the start of
49 key data. If 'returnRawKeyLenPtr' is null, then no length is
50 returned.
51 */
52 virtual const void* getRawKey( unsigned* returnRawKeyLenPtr = 0 ) const = 0;
53};
54
55
56/////////////////////////////////////////////////////////////////////////////
57
58/** This template class is used to generate Key classes for most of the C/C++
59 primitive data types. This class is NOT intended for general use - it is
60 used create the typedefs that follow.
61 */
62template<class DATATYPE>
63class KeyPlainType : public Key
64{
65protected:
66 /// Storage for the key
67 DATATYPE m_keyData;
68
69public:
70 /// Constructor
71 KeyPlainType( DATATYPE initialValue = 0 );
72
73
74public:
75 /// Updates the Key's content value
76 void setValue( DATATYPE newValue ) noexcept;
77
78 /// Returns the Key's content value
79 DATATYPE getKeyValue( void ) const noexcept;
80
81
82public: // Cpl::Container::Key
83 ///
84 int compareKey( const Key& key ) const;
85 ///
86 const void* getRawKey( unsigned* returnRawKeyLenPtr = 0 ) const;
87};
88
89
90/////////////////////////////////////////////////////////////////////////////
91// Pre-defined types to some of the primitive C/C++ data types
92
93/// Pre-defined key
95
96/// Pre-defined key
98
99/// Pre-defined key
101
102/// Pre-defined key
104
105/// Pre-defined key
107
108/// Pre-defined key
110
111/// Pre-defined key
113
114/// Pre-defined key
116
117/// Pre-defined key
119
120/// Pre-defined key
122
123/// Pre-defined key
125
126/// Pre-defined key
128
129/// Pre-defined key
131
132
133/** This class provides a 'Key' wrapper for a array of Character of length N,
134 i.e. a string that is NOT null terminated. Keys of this type can used to
135 compare against other KeyStringBuffer, KeyLiteralString, or Items that use
136 a Cpl::Text::String as their key
137 */
138class KeyStringBuffer : public Key
139{
140public:
141 /// Storage for the key
142 const char* m_stringKeyPtr;
143
144 /// Number of bytes in the buffer
145 size_t m_len;
146
147public:
148 /// Constructor
149 KeyStringBuffer( const char* startOfString, size_t lenOfStringInBytes );
150
151
152public:
153 /** Returns the Key's content value. Note: The returned values is NOT
154 a null terminated string!
155 */
156 inline const char* getKeyValue( size_t& lenOfStringInBytes ) const noexcept { lenOfStringInBytes = m_len; return m_stringKeyPtr; }
157
158public:
159 /** Generic compare function for strings and string buffers
160 */
161 static int compare( const char* myString, unsigned myLen, const char* otherString, unsigned otherLen );
162
163
164public: // Cpl::Container::Key
165 ///
166 int compareKey( const Key& key ) const;
167 ///
168 const void* getRawKey( unsigned* returnRawKeyLenPtr = 0 ) const;
169};
170
171
172/** This class provides a 'Key' wrapper for a C string literal. Keys
173 of this type can used to compare against other KeyLiteralString,
174 KeyStringBuffer, or Items that use a Cpl::Text::String as their key.
175 */
177{
178public:
179 /// Constructor
180 KeyLiteralString( const char* string ):KeyStringBuffer( string, string ? strlen( string ) : 0 ) {}
181
182
183public:
184 /// Returns the Key's content value
185 inline const char* getKeyValue( void ) const noexcept { return m_stringKeyPtr; }
186
187 /// Cast to read-only character string pointer.
188 inline operator const char* () const { return m_stringKeyPtr; }
189
190 /// Returns a Read-only pointer to the "raw" (short-hand for getKeyValue())
191 inline const char* operator()() const { return m_stringKeyPtr; }
192
193};
194
195
196
197
198/////////////////////////////////////////////////////////////////////////////
199// INLINE IMPLEMENTAION
200/////////////////////////////////////////////////////////////////////////////
201template<class DATATYPE>
203 :m_keyData( initialValue )
204{
205}
206
207/////////////////
208template<class DATATYPE>
209void Cpl::Container::KeyPlainType<DATATYPE>::setValue( DATATYPE newValue ) noexcept
210{
211 m_keyData = newValue;
212}
213
214template<class DATATYPE>
216{
217 return m_keyData;
218}
219
220/////////////////
221template<class DATATYPE>
223{
224 unsigned len = 0;
225 DATATYPE* ptr = (DATATYPE*) key.getRawKey( &len );
226 if ( len != sizeof( DATATYPE ) )
227 {
228 Cpl::System::FatalError::logf( "KeyPlainType::compare(): mismatch in key lengths. this=%p, my len=%u != %u", this, sizeof( DATATYPE ), len );
229 }
230
231 if ( m_keyData < *ptr )
232 {
233 return -1;
234 }
235 else if ( m_keyData > *ptr )
236 {
237 return 1;
238 }
239
240 return 0;
241}
242
243template<class DATATYPE>
244const void* Cpl::Container::KeyPlainType<DATATYPE>::getRawKey( unsigned* returnRawKeyLenPtr ) const
245{
246 if ( returnRawKeyLenPtr != 0 )
247 {
248 *returnRawKeyLenPtr = sizeof( DATATYPE );
249 }
250
251 return &m_keyData;
252}
253
254
255
256}; // end namespaces
257};
258#endif // end header latch
259
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