GM6000 Digital Heater Controller Branch: main
SDX-1330
String_.h
Go to the documentation of this file.
1#ifndef Cpl_Text_String_x_h_
2#define Cpl_Text_String_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 "Cpl/Text/String.h"
16
17
18///
19namespace Cpl {
20///
21namespace Text {
22
23
24/** This partially concrete class implements the portions of the String Api
25 that is independent of the internal storage mechanisms.
26 */
27
28class String_ : public String
29{
30protected:
31 /// Flag to track when the internal string get truncated
33
34 /// Pointer to the actual internal string
35 char* m_strPtr;
36
37
38protected:
39 /// Constructor
40 String_( char* internalStringPtr );
41
42
43public:
44 /// See Cpl::Text::String
45 void clear();
46
47 /// See Cpl::Text::String
48 operator char() const;
49
50 /// See Cpl::Text::String
51 int length() const;
52
53 /// See Cpl::Text::String
54 bool isEmpty() const;
55
56 /// See Cpl::Text::String
57 bool truncated() const;
58
59 /// See Cpl::Text::String
60 bool operator ==( const char* string ) const;
61
62 /// See Cpl::Text::String
63 bool operator ==( const String& string ) const;
64
65 /// See Cpl::Text::String
66 bool operator !=( const char* string ) const;
67
68 /// See Cpl::Text::String
69 bool operator !=( const String& string ) const;
70
71 /// See Cpl::Text::String
72 bool isEqualIgnoreCase( const char* string ) const;
73
74 /// See Cpl::Text::String
75 int compare( const char* string ) const;
76
77 /// See Cpl::Text::String
78 int compareIgnoreCase( const char* string ) const;
79
80 /// See Cpl::Text::String
81 bool operator ==( char c ) const;
82
83 /// See Cpl::Text::String
84 bool isEqualSubstring( int startpos, int endpos, const char* string ) const;
85
86 /// See Cpl::Text::String
87 bool isEqualSubstringIgnoreCase( int startpos, int endpos, const char* string ) const;
88
89 /// See Cpl::Text::String
90 bool startsWith( const char* string ) const;
91
92 /// See Cpl::Text::String
93 bool startsWith( const char* string, int startOffset ) const;
94
95 /// See Cpl::Text::String
96 bool endsWith( const char* string ) const;
97
98 /// See Cpl::Text::String
99 void format( const char* format, ... );
100
101 /// See Cpl::Text::String
102 void formatAppend( const char* format, ... );
103
104 /// See Cpl::Text::String
105 void formatOpt( bool appendFlag, const char* format, ... );
106
107 /// See Cpl::Text::String
108 void vformat( const char* format, va_list ap );
109
110 /// See Cpl::Text::String
111 void vformatAppend( const char* format, va_list ap );
112
113 /// See Cpl::Text::String
114 void vformatOpt( bool appendFlag, const char* format, va_list ap );
115
116 /// See Cpl::Text::String
117 int indexOf( char c ) const;
118
119 /// See Cpl::Text::String
120 int indexOf( char c, int startpos ) const;
121
122 /// See Cpl::Text::String
123 int indexOf( const char* str ) const;
124
125 /// See Cpl::Text::String
126 int indexOf( const char* str, int startpos ) const;
127
128 /// See Cpl::Text::String
129 int lastIndexOf( char c ) const;
130
131 /// See Cpl::Text::String
132 int count( char c ) const;
133
134 /// See Cpl::Text::String
135 const char* toUpper();
136
137 /// See Cpl::Text::String
138 const char* toLower();
139
140 /// See Cpl::Text::String
142
143 /// See Cpl::Text::String
145
146 /// See Cpl::Text::String
147 void removeLeadingChars( const char* charsSet );
148
149 /// See Cpl::Text::String
150 void removeTrailingChars( const char* charsSet );
151
152 /// See Cpl::Text::String
153 void cut( int startpos, int endpos );
154
155 /// See Cpl::Text::String
156 void trimRight( int n );
157
158 /// See Cpl::Text::String
159 void setChar( int atPosition, char newchar );
160
161 /// See Cpl::Text::String
162 int replace( char targetChar, char newChar );
163
164 /// See Cpl::Text::String
165 const char* getString() const;
166
167 /// See Cpl::Text::String
168 char* getBuffer( int& maxAllowedLength );
169
170 /// Make parent method visible
171 using Cpl::Text::String::operator=;
172
173 /// Make parent method visible
174 using Cpl::Text::String::operator+=;
175
176 /// Assignment
178
179 /// Assignment
180 Cpl::Text::String& operator=( const char* string );
181
182 /// Assignment
184
185 /// Append
187
188 /// Append
189 Cpl::Text::String& operator +=( const char* string );
190
191 /// Append
193
194public:
195 /// See Cpl::Container::Key
196 int compareKey( const Key& key ) const;
197
198 /// See Cpl::Container::Key
199 const void* getRawKey( unsigned* returnRawKeyLenPtr = 0 ) const;
200
201
202
203protected: // Helpers
204 /// Sets the truncated flag if needed and insures string is null terminated
205 void validateSizeAfterFormat( int availableLen, int formattedLen, int maxlen );
206
207};
208
209}; // end namespaces
210};
211#endif // end header latch
This partially concrete class implements the portions of the String Api that is independent of the in...
Definition String_.h:29
Cpl::Text::String & operator=(const String &string)
Assignment.
int lastIndexOf(char c) const
See Cpl::Text::String.
bool isEmpty() const
See Cpl::Text::String.
char * getBuffer(int &maxAllowedLength)
See Cpl::Text::String.
void cut(int startpos, int endpos)
See Cpl::Text::String.
int compareIgnoreCase(const char *string) const
See Cpl::Text::String.
Cpl::Text::String & operator=(const char *string)
Assignment.
void removeLeadingSpaces()
See Cpl::Text::String.
void vformat(const char *format, va_list ap)
See Cpl::Text::String.
int compareKey(const Key &key) const
See Cpl::Container::Key.
void removeLeadingChars(const char *charsSet)
See Cpl::Text::String.
void removeTrailingSpaces()
See Cpl::Text::String.
int count(char c) const
See Cpl::Text::String.
bool operator!=(const char *string) const
See Cpl::Text::String.
int compare(const char *string) const
See Cpl::Text::String.
bool isEqualIgnoreCase(const char *string) const
See Cpl::Text::String.
void clear()
See Cpl::Text::String.
int indexOf(char c) const
See Cpl::Text::String.
void validateSizeAfterFormat(int availableLen, int formattedLen, int maxlen)
Sets the truncated flag if needed and insures string is null terminated.
void formatAppend(const char *format,...)
See Cpl::Text::String.
bool isEqualSubstring(int startpos, int endpos, const char *string) const
See Cpl::Text::String.
const char * getString() const
See Cpl::Text::String.
const char * toLower()
See Cpl::Text::String.
void removeTrailingChars(const char *charsSet)
See Cpl::Text::String.
int indexOf(const char *str, int startpos) const
See Cpl::Text::String.
void formatOpt(bool appendFlag, const char *format,...)
See Cpl::Text::String.
const char * toUpper()
See Cpl::Text::String.
void vformatAppend(const char *format, va_list ap)
See Cpl::Text::String.
void trimRight(int n)
See Cpl::Text::String.
bool startsWith(const char *string, int startOffset) const
See Cpl::Text::String.
bool startsWith(const char *string) const
See Cpl::Text::String.
const void * getRawKey(unsigned *returnRawKeyLenPtr=0) const
See Cpl::Container::Key.
bool m_truncated
Flag to track when the internal string get truncated.
Definition String_.h:32
void setChar(int atPosition, char newchar)
See Cpl::Text::String.
Cpl::Text::String & operator=(char c)
Assignment.
int replace(char targetChar, char newChar)
See Cpl::Text::String.
int indexOf(char c, int startpos) const
See Cpl::Text::String.
char * m_strPtr
Pointer to the actual internal string.
Definition String_.h:35
void format(const char *format,...)
See Cpl::Text::String.
bool operator==(const char *string) const
See Cpl::Text::String.
bool endsWith(const char *string) const
See Cpl::Text::String.
String_(char *internalStringPtr)
Constructor.
int indexOf(const char *str) const
See Cpl::Text::String.
bool truncated() const
See Cpl::Text::String.
int length() const
See Cpl::Text::String.
bool isEqualSubstringIgnoreCase(int startpos, int endpos, const char *string) const
See Cpl::Text::String.
void vformatOpt(bool appendFlag, const char *format, va_list ap)
See Cpl::Text::String.
Cpl::Text::String & operator+=(const String &string)
Append.
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