GM6000 Digital Heater Controller Branch: main
SDX-1330
DString.h
Go to the documentation of this file.
1#ifndef Cpl_Text_DString_h_
2#define Cpl_Text_DString_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
15#include "Cpl/Text/String_.h"
16#include "colony_config.h"
17#include <new>
18
19///
20namespace Cpl {
21///
22namespace Text {
23
24
25/** This magic constant defines the default block size that the DString class
26 uses when allocating memory, i.e. the size of all chunks of memory allocated
27 is a multiple of the block size.
28 */
29#ifndef OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE
30#define OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE 16
31#endif
32
33
34 /** This concrete class implements a simple "dynamic storage" String Type.
35 All memory is allocated from the heap. For memory allocation errors,
36 the following happens:
37 1) The _truncated flag is set to true.
38 2) If the error occurred in the constructor, then the internal string
39 is set an empty string. If the error occurred because of a requested
40 size increase, the internal string is simply truncated.
41 */
42
43class DString : public String_
44{
45protected:
46 /// Block size in bytes
48
49 /// Size, in bytes, of allocated storage
51
52
53public:
54 /** Constructor. The amount of storage initially allocated for the string is
55 the maximum of the size of the source string AND the value of initialSize.
56 Whatever value is chosen, it is then rounded up to the nearest block size
57 multiple. There are two main reasons to specify an intialSize. 1) To
58 reduce the number of malloc/free that occur over the life of the String.
59 If you supply a large enough initialSize - no additional mallocs will be
60 needed. 2) If you plan to use the format(..) methods. The format()
61 methods will NOT allocate additional storage. To prevent the format()
62 methods from truncating, you must start with a large enough 'buffer'.
63 The block size parameter can be used to control the size of the 'chunks'
64 memory is allocated in. This 'blocking' paradigm helps to reduce
65 fragmentation and number of internal malloc/free operations.
66
67 NOTE: The space reserved for the trailing null terminator is part of the
68 block calculation, i.e. if your initial size is 16, and your
69 block size is 16, then number of bytes allocated is 32 to allow
70 space for a 16 byte string and a one byte terminator and then
71 rounded up to the next block size.
72 */
73 DString( const String& string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
74
75 /// Constructor. See above constructor for details
76 DString( const DString& string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
77
78 /// Constructor. See above constructor for details
79 DString( const char* string="", int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
80
81 /// Constructor. See above constructor for details
82 DString( char c, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
83
84 /// Constructor. See above constructor for details
85 DString( int num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
86
87 /// Constructor. See above constructor for details
88 DString( unsigned num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
89
90 /// Constructor. See above constructor for details
91 DString( long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
92
93 /// Constructor. See above constructor for details
94 DString( long long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
95
96 /// Constructor. See above constructor for details
97 DString( unsigned long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
98
99 /// Constructor. See above constructor for details
100 DString( unsigned long long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE );
101
102 /// Destructor
104
105
106public:
107 ///@{
108 /// Assignment
110
111 /// Assignment
113
114 /// Assignment
115 Cpl::Text::String& operator =( unsigned int num );
116
117 /// Assignment
119
120 /// Assignment
121 Cpl::Text::String& operator =( long long num );
122
123 /// Assignment
124 Cpl::Text::String& operator =( unsigned long num );
125
126 /// Assignment
127 Cpl::Text::String& operator =( unsigned long long num );
128 ///@}
129
130 /// Make parent method visible
131 using Cpl::Text::String::operator=;
132
133 /// Make parent method visible
134 using Cpl::Text::String::operator+=;
135
136public:
137 ///@{
138
139 /// Append
141
142 /// Append
144
145 /// Append
146 Cpl::Text::String& operator +=( unsigned int num );
147
148 /// Append
150
151 /// Append
153
154 /// Append
155 Cpl::Text::String& operator +=( unsigned long num );
156
157 /// Append
158 Cpl::Text::String& operator +=( unsigned long long num );
159 ///@}
160
161
162public:
163 ///@{
164 /// Override base class
165 void copyIn( const char* string, int n );
166
167 /// Override base class
168 void appendTo( const char* string, int n );
169
170 /// Override base class
171 void insertAt( int insertOffset, const char* stringToInsert );
172
173 /// Override base class
174 int maxLength() const;
175 ///@}
176
177
178protected: // Helper methods
179 /** Returns the need memory size in "block units". Note: The size calculation
180 includes the memory for the trailing '\0' string terminator.
181 */
182 inline int calcMemSize( int len ) { return ( ( len + m_blockSize ) / m_blockSize )*m_blockSize; }
183
184 /// Frees the current string memory - IF it was previously allocated
185 void freeCurrentString( void );
186
187 /// Returns the max length of internal WITHOUT the '\0' string terminator
188 inline int maxStrLen( void ) const { return m_storageLen - 1; }
189
190 /// Validates the just created string is 'valid'
191 void validateAndCopy( const char* string, int len );
192};
193
194
195}; // end namespaces
196};
197#endif // end header latch
#define OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE
This magic constant defines the default block size that the DString class uses when allocating memory...
Definition DString.h:30
This concrete class implements a simple "dynamic storage" String Type.
Definition DString.h:44
DString(unsigned num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
DString(unsigned long long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
void appendTo(const char *string, int n)
Override base class.
int calcMemSize(int len)
Returns the need memory size in "block units".
Definition DString.h:182
DString(char c, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
DString(unsigned long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
int maxStrLen(void) const
Returns the max length of internal WITHOUT the '\0' string terminator.
Definition DString.h:188
DString(long long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
~DString()
Destructor.
void validateAndCopy(const char *string, int len)
Validates the just created string is 'valid'
void copyIn(const char *string, int n)
Override base class.
DString(long num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
int m_storageLen
Size, in bytes, of allocated storage.
Definition DString.h:50
int maxLength() const
Override base class.
DString(const String &string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor.
Cpl::Text::String & operator+=(const DString &string)
Append.
int m_blockSize
Block size in bytes.
Definition DString.h:47
DString(const char *string="", int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
Cpl::Text::String & operator=(const DString &string)
Assignment.
DString(int num, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
void freeCurrentString(void)
Frees the current string memory - IF it was previously allocated.
void insertAt(int insertOffset, const char *stringToInsert)
Override base class.
DString(const DString &string, int initialSize=0, int blocksize=OPTION_CPL_TEXT_DSTRING_ALLOC_BLOCK_SIZE)
Constructor. See above constructor for details.
This partially concrete class implements the portions of the String Api that is independent of the in...
Definition String_.h:29
This abstract class defines the operations that can be before on a NULL terminated string.
Definition String.h:40
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20