F´ Flight Software - C/C++ Documentation
NASA-v1.6.0
A framework for building embedded system applications to NASA flight quality standards.
Loading...
Searching...
No Matches
String.cpp
Go to the documentation of this file.
1
#include <
Fw/Types/String.hpp
>
2
#include <
Fw/Types/StringUtils.hpp
>
3
4
namespace
Fw
{
5
6
String::String
(
const
char
* src) :
StringBase
() {
7
Fw::StringUtils::string_copy
(this->m_buf, src,
sizeof
(this->m_buf));
8
}
9
10
String::String
(
const
StringBase
& src) :
StringBase
() {
11
Fw::StringUtils::string_copy
(this->m_buf, src.
toChar
(),
sizeof
(this->m_buf));
12
}
13
14
String::String
(
const
String
& src) :
StringBase
() {
15
Fw::StringUtils::string_copy
(this->m_buf, src.
toChar
(),
sizeof
(this->m_buf));
16
}
17
18
String::String
() :
StringBase
() {
19
this->m_buf[0] = 0;
20
}
21
22
String
&
String::operator=
(
const
String
& other) {
23
if
(
this
== &other) {
24
return
*
this
;
25
}
26
27
Fw::StringUtils::string_copy
(this->m_buf, other.
toChar
(),
sizeof
(this->m_buf));
28
return
*
this
;
29
}
30
31
String
&
String::operator=
(
const
StringBase
& other) {
32
if
(
this
== &other) {
33
return
*
this
;
34
}
35
36
Fw::StringUtils::string_copy
(this->m_buf, other.
toChar
(),
sizeof
(this->m_buf));
37
return
*
this
;
38
}
39
40
String
&
String::operator=
(
const
char
* other) {
41
Fw::StringUtils::string_copy
(this->m_buf, other,
sizeof
(this->m_buf));
42
return
*
this
;
43
}
44
45
String::~String
() {
46
}
47
48
const
char
*
String::toChar
()
const
{
49
return
this->m_buf;
50
}
51
52
NATIVE_UINT_TYPE
String::getCapacity
()
const
{
53
return
STRING_SIZE
;
54
}
55
}
NATIVE_UINT_TYPE
PlatformUIntType NATIVE_UINT_TYPE
Definition
BasicTypes.h:52
String.hpp
StringUtils.hpp
Fw::StringBase
Definition
StringType.hpp:23
Fw::StringBase::toChar
virtual const CHAR * toChar() const =0
Fw::String
Definition
String.hpp:10
Fw::String::getCapacity
NATIVE_UINT_TYPE getCapacity() const
return buffer size
Definition
String.cpp:52
Fw::String::toChar
const char * toChar() const
gets char buffer
Definition
String.cpp:48
Fw::String::STRING_SIZE
@ STRING_SIZE
Storage for string.
Definition
String.hpp:15
Fw::String::~String
~String()
destructor
Definition
String.cpp:45
Fw::String::operator=
String & operator=(const String &other)
assignment operator
Definition
String.cpp:22
Fw::String::String
String()
default constructor
Definition
String.cpp:18
Fw::StringUtils::string_copy
char * string_copy(char *destination, const char *source, U32 num)
copy string with null-termination guaranteed
Definition
StringUtils.cpp:5
Fw
Definition
Buffer.cpp:21
Fw
Types
String.cpp
Generated by
1.9.7