GM6000 Digital Heater Controller Branch: main
SDX-1330
FString_.h
Go to the documentation of this file.
1#ifndef Cpl_Text_FString_x_h_
2#define Cpl_Text_FString_x_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/String_.h"
17
18///
19namespace Cpl {
20///
21namespace Text {
22
23
24/** This mostly concrete class implements a "fixed storage" String Type.
25 This class is built on the assumption that "behind-the-scenes"
26 dynamic memory allocation is a bad thing (for a long list of reasons)!
27 Therefore, NO memory allocation is done in this base class. The sub-class
28 is responsible for allocating ALL of storage used by the FString_.
29
30 NOTE: All methods that "modify" the string guarantee that the internal
31 storage limit is not exceeded and the string is always NULL
32 terminated. The "incoming" data is silently truncated if the data
33 size exceeds the storage limit.
34 */
35
36class FString_ : public String_
37{
38protected:
39 /// Maximum length of the internal string (not including the null terminator)
41
42 /// Empty string that is used to return a 'string' when my internal string is not valid
43 static char m_noMemory[1];
44
45protected:
46 /// Constructor
47 FString_( const char* string, char* internalString, int maxLen );
48
49 /// Constructor
50 FString_( char c, char* internalString, int maxLen );
51
52 /// Constructor
53 FString_( int num, char* internalString, int maxLen );
54
55 /// Constructor
56 FString_( unsigned num, char* internalString, int maxLen );
57
58 /// Constructor
59 FString_( long num, char* internalString, int maxLen );
60
61 /// Constructor
62 FString_( long long num, char* internalString, int maxLen );
63
64 /// Constructor
65 FString_( unsigned long num, char* internalString, int maxLen );
66
67 /// Constructor
68 FString_( unsigned long long num, char* internalString, int maxLen );
69
70
71public:
72 /// see Cpl::Text::String
73 void copyIn( const char* string, int n );
74
75 /// see Cpl::Text::String
76 void appendTo( const char* string, int n );
77
78 /// see Cpl::Text::String
79 void insertAt( int insertOffset, const char* stringToInsert );
80
81 /// see Cpl::Text::String
82 int maxLength() const;
83
84public:
85 /// Make parent method visible
86 using Cpl::Text::String::operator=;
87
88 ///@{
89 /// Assignment
91
92 /// Assignment
93 Cpl::Text::String& operator=( unsigned int num );
94
95 /// Assignment
97
98 /// Assignment
99 Cpl::Text::String& operator=( long long num );
100
101 /// Assignment
102 Cpl::Text::String& operator=( unsigned long num );
103
104 /// Assignment
105 Cpl::Text::String& operator=( unsigned long long num );
106 ///@}
107
108public:
109 /// Make parent method visible
110 using Cpl::Text::String::operator+=;
111
112 ///@{
113
114 /// Append
116
117 /// Append
118 Cpl::Text::String& operator +=( unsigned int num );
119
120 /// Append
122
123 /// Append
125
126 /// Append
127 Cpl::Text::String& operator +=( unsigned long num );
128
129 /// Append
130 Cpl::Text::String& operator +=( unsigned long long num );
131 ///@}
132};
133
134
135}; // end namespaces
136};
137#endif // end header latch
This mostly concrete class implements a "fixed storage" String Type.
Definition FString_.h:37
FString_(long long num, char *internalString, int maxLen)
Constructor.
int m_internalMaxlen
Maximum length of the internal string (not including the null terminator)
Definition FString_.h:40
void insertAt(int insertOffset, const char *stringToInsert)
see Cpl::Text::String
Cpl::Text::String & operator+=(int num)
Append.
Cpl::Text::String & operator=(unsigned long num)
Assignment.
FString_(char c, char *internalString, int maxLen)
Constructor.
FString_(unsigned long long num, char *internalString, int maxLen)
Constructor.
Cpl::Text::String & operator=(int num)
Assignment.
void appendTo(const char *string, int n)
see Cpl::Text::String
Cpl::Text::String & operator=(unsigned int num)
Assignment.
FString_(long num, char *internalString, int maxLen)
Constructor.
FString_(const char *string, char *internalString, int maxLen)
Constructor.
Cpl::Text::String & operator=(long num)
Assignment.
FString_(int num, char *internalString, int maxLen)
Constructor.
FString_(unsigned num, char *internalString, int maxLen)
Constructor.
Cpl::Text::String & operator=(unsigned long long num)
Assignment.
static char m_noMemory[1]
Empty string that is used to return a 'string' when my internal string is not valid.
Definition FString_.h:43
void copyIn(const char *string, int n)
see Cpl::Text::String
FString_(unsigned long num, char *internalString, int maxLen)
Constructor.
int maxLength() const
see Cpl::Text::String
Cpl::Text::String & operator=(long long num)
Assignment.
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