GM6000 Digital Heater Controller Branch: main
SDX-1330
DFString.h
Go to the documentation of this file.
1#ifndef Cpl_Text_DFString_h_
2#define Cpl_Text_DFString_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 "colony_config.h"
16#include "Cpl/Text/FString_.h"
17
18
19/** This magic constant defines the default block size that the DString class
20 uses when allocating memory, i.e. the size of all chunks of memory allocated
21 is a multiple of the block size.
22 */
23#ifndef OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE
24#define OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE 16
25#endif
26
27
28///
29namespace Cpl {
30///
31namespace Text {
32
33
34/** This concrete class is a mix of FString and a DString - the
35 initial memory is dynamically allocated - but no additional
36 memory allocation will occur after the instance is created, i.e.
37 it is a 'non-template' version - so to speak - of an FString.
38
39 NOTE: See base class - String - for a complete listing/description of
40 the class's methods.
41 */
42class DFString : public FString_
43{
44public:
45 /// Constructor. The 'memsize' defaults to OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE - 1
46 DFString( void );
47
48 /// Constructor. The new instance uses the 'memSize' of 'string'
49 DFString( const DFString& string );
50
51 /// Constructor. The new instance uses the 'memSize' of 'string'
52 DFString( const Cpl::Text::String& string );
53
54 /// Constructor. 'memSize' is the max length of the string storage WITHOUT the null terminator. If 'memSize' is zero, the storage is defaulted to OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE - 1.
55 DFString( size_t memSize, const DFString& string );
56
57 /// Constructor.
58 DFString( size_t memSize, const Cpl::Text::String& string );
59
60 /// Constructor
61 DFString( size_t memSize, const char* string="" );
62
63 /// Constructor
64 DFString( size_t memSize, char c );
65
66 /// Constructor
67 DFString( size_t memSize, int num );
68
69 /// Constructor
70 DFString( size_t memSize, unsigned num );
71
72 /// Constructor
73 DFString( size_t memSize, long num );
74
75 /// Constructor
76 DFString( size_t memSize, long long num );
77
78 /// Constructor
79 DFString( size_t memSize, unsigned long num );
80
81 /// Constructor
82 DFString( size_t memSize, unsigned long long num );
83
84public:
85 /// Destructor
87
88
89public:
90 /// Make parent method visible
91 using Cpl::Text::String::operator=;
92
93 /// Append
95
96public:
97 /// Make parent method visible
98 using Cpl::Text::String::operator+=;
99
100 /// Append
102
103protected: // Helper methods
104 /** Returns the need memory size in "block units". Note: The size calculation
105 includes the memory for the trailing '\0' string terminator.
106 */
108
109};
110
111}; // end namespaces
112};
113#endif // end header
#define OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE
This magic constant defines the default block size that the DString class uses when allocating memory...
Definition DFString.h:24
This concrete class is a mix of FString and a DString - the initial memory is dynamically allocated -...
Definition DFString.h:43
DFString(size_t memSize, const char *string="")
Constructor.
Cpl::Text::String & operator=(const DFString &string)
Append.
DFString(size_t memSize, const Cpl::Text::String &string)
Constructor.
DFString(size_t memSize, unsigned long long num)
Constructor.
DFString(size_t memSize, const DFString &string)
Constructor. 'memSize' is the max length of the string storage WITHOUT the null terminator....
Cpl::Text::String & operator+=(const DFString &string)
Append.
DFString(size_t memSize, unsigned long num)
Constructor.
DFString(size_t memSize, char c)
Constructor.
DFString(const DFString &string)
Constructor. The new instance uses the 'memSize' of 'string'.
DFString(void)
Constructor. The 'memsize' defaults to OPTION_CPL_TEXT_DFSTRING_ALLOC_BLOCK_SIZE - 1.
int calcMemSize(int len)
Returns the need memory size in "block units".
Definition DFString.h:107
DFString(const Cpl::Text::String &string)
Constructor. The new instance uses the 'memSize' of 'string'.
DFString(size_t memSize, long num)
Constructor.
DFString(size_t memSize, long long num)
Constructor.
~DFString()
Destructor.
DFString(size_t memSize, int num)
Constructor.
DFString(size_t memSize, unsigned num)
Constructor.
This mostly concrete class implements a "fixed storage" String Type.
Definition FString_.h:37
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