GM6000 Digital Heater Controller Branch: main
SDX-1330
FString.h
Go to the documentation of this file.
1#ifndef Cpl_Text_FString_h_
2#define Cpl_Text_FString_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/FString_.h"
16#include <string.h>
17
18///
19namespace Cpl {
20namespace Text {
21
22
23
24/** This template class represents a NULL terminated string of a
25 specific length. The size (aka in the internal storage) of string cannot
26 be changed. Any 'write' operations that exceed the length of the internal
27 storage - the results are silently truncated and the string is ALWAYS
28 left in null terminated state.
29
30 Template Args: S:= Max Size of the String WITHOUT the null
31 terminator!
32
33 NOTE: See base class - String - for a complete listing/description of
34 the class's methods.
35 */
36template <int S>
37class FString : public FString_
38{
39private:
40 /// Storage for the string
41 char m_strMem[S + 1];
42
43public:
44 /// Constructor
45 FString( const FString<S>& string ) :FString_( string.getString(), m_strMem, S ) {}
46
47 /// Constructor
48 FString( const Cpl::Text::String& string ) :FString_( string.getString(), m_strMem, S ) {}
49
50 /// Constructor
51 FString( const char* string="" ) :FString_( string, m_strMem, S ) {}
52
53 /// Constructor
54 FString( char c ) :FString_( c, m_strMem, S ) {}
55
56 /// Constructor
57 FString( int num ) :FString_( num, m_strMem, S ) {}
58
59 /// Constructor
60 FString( unsigned num ) :FString_( num, m_strMem, S ) {}
61
62 /// Constructor
63 FString( long num ) :FString_( num, m_strMem, S ) {}
64
65 /// Constructor
66 FString( long long num ) :FString_( num, m_strMem, S ) {}
67
68 /// Constructor
69 FString( unsigned long num ) :FString_( num, m_strMem, S ) {}
70
71 /// Constructor
72 FString( unsigned long long num ) :FString_( num, m_strMem, S ) {}
73
74
75public:
76 /// Make parent method visible
77 using Cpl::Text::String::operator=;
78
79 /// Assignment
80 Cpl::Text::String& operator =( const FString<S>& string ) { copyIn( string, string.length() );return *this; }
81
82public:
83 /// Make parent method visible
84 using Cpl::Text::String::operator+=;
85
86 /// Append
87 Cpl::Text::String& operator +=( const FString<S>& string ) { appendTo( string, string.length() ); return *this; }
88
89};
90
91
92}; // end namespaces
93};
94#endif // end header latch
This mostly concrete class implements a "fixed storage" String Type.
Definition FString_.h:37
void appendTo(const char *string, int n)
see Cpl::Text::String
void copyIn(const char *string, int n)
see Cpl::Text::String
This template class represents a NULL terminated string of a specific length.
Definition FString.h:38
FString(unsigned num)
Constructor.
Definition FString.h:60
FString(unsigned long long num)
Constructor.
Definition FString.h:72
FString(const Cpl::Text::String &string)
Constructor.
Definition FString.h:48
FString(const FString< S > &string)
Constructor.
Definition FString.h:45
FString(char c)
Constructor.
Definition FString.h:54
FString(const char *string="")
Constructor.
Definition FString.h:51
Cpl::Text::String & operator=(const FString< S > &string)
Assignment.
Definition FString.h:80
FString(unsigned long num)
Constructor.
Definition FString.h:69
FString(long num)
Constructor.
Definition FString.h:63
FString(int num)
Constructor.
Definition FString.h:57
FString(long long num)
Constructor.
Definition FString.h:66
Cpl::Text::String & operator+=(const FString< S > &string)
Append.
Definition FString.h:87
const char * getString() const
See Cpl::Text::String.
int length() const
See Cpl::Text::String.
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