GM6000 Digital Heater Controller Branch: main
SDX-1330
StringItem.h
Go to the documentation of this file.
1#ifndef Cpl_Text_StringItem_h_
2#define Cpl_Text_StringItem_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 "Cpl/Text/String.h"
17
18
19///
20namespace Cpl {
21///
22namespace Text {
23
24
25
26/** This partially concrete provides a wrapper class that allows a String
27 object to be stored directly in one the CPL Containers. A StringItem
28 can be stored in a SList, DList, Dictionary, and Map.
29
30 Notes:
31
32 o The allocation of the actual String is deferred to child classes.
33 o When storing a StringItem in a 'keyed' container (i.e. Dictionary
34 and Map) the application MUST NOT change the value of the internal
35 string since it is the 'key' value that is used to determine its
36 placement in the Dictionary/Map. Modifying the internal String while
37 the StringItem is in a Dictionary/Map will CORRUPT the Container.
38 o StringItem instances CANNOT be copied. This is to avoid potential
39 Container corruption since the individual Items contain the memory
40 for the Containers' linkage, i.e. a copied container Item is
41 analogous to storing a single Item in more than one Container at the
42 same time.
43 */
45{
46protected:
47 /// Constructor
48 StringItem( String& string ) :m_myString( string ) {}
49
50public:
51 /// Returns a reference to the actual String
52 inline String& get() const { return m_myString; }
53
54 /// Returns a pointer to the internal C string
55 inline const char* getString() const { return m_myString.getString(); }
56
57 /// Cast to a String reference
58 inline operator String& ( ) const { return m_myString; }
59
60 /// Cast to read-only character string pointer.
61 inline operator const char* ( ) const { return m_myString.getString(); }
62
63 /// Returns a Read-only pointer to the "raw" (short-hand for getString())
64 inline const char* operator()() const { return m_myString.getString(); }
65
66
67public:
68 /// Return Cpl::Container::DictItem (used with Maps and Dictionaries)
69 const Cpl::Container::Key& getKey() const noexcept { return m_myString; }
70
71
72protected:
73 /// Reference to the actual String/storage
75
76
77private:
78 /// Prevent access to the copy constructor -->Container Items should not be copied!
79 StringItem( const StringItem& m );
80
81 /// Prevent access to the assignment operator -->Container Items should not be copied!
82 const StringItem& operator=( const StringItem& m );
83};
84
85
86}; // end namespaces
87};
88#endif // end header latch
This abstract class defines the interface that a contained object must support if it has comparable k...
Definition Key.h:32
This abstract class represents a item that can be contained in an Map (aka a sorted list implemented ...
Definition MapItem.h:33
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
virtual const char * getString() const =0
Read-only Access to the "raw" string.
This partially concrete provides a wrapper class that allows a String object to be stored directly in...
Definition StringItem.h:45
String & get() const
Returns a reference to the actual String.
Definition StringItem.h:52
const char * operator()() const
Returns a Read-only pointer to the "raw" (short-hand for getString())
Definition StringItem.h:64
StringItem(String &string)
Constructor.
Definition StringItem.h:48
String & m_myString
Reference to the actual String/storage.
Definition StringItem.h:74
const char * getString() const
Returns a pointer to the internal C string.
Definition StringItem.h:55
const Cpl::Container::Key & getKey() const noexcept
Return Cpl::Container::DictItem (used with Maps and Dictionaries)
Definition StringItem.h:69
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20