F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
Loading...
Searching...
No Matches
TextLogString.hpp
Go to the documentation of this file.
1// ======================================================================
2// @file TextLogString.hpp
3// @author F Prime
4// @brief A string sized for an event log entry
5// ======================================================================
6
7#ifndef FW_TEXT_LOG_STRING_HPP
8#define FW_TEXT_LOG_STRING_HPP
9
10#include <FpConfig.hpp>
11
12#include "Fw/Cfg/SerIds.hpp"
14
15namespace Fw {
16
17class TextLogString final : public StringBase {
18 public:
19 enum {
23 };
24
25 TextLogString() : StringBase() { *this = ""; }
26
27 TextLogString(const TextLogString& src) : StringBase() { *this = src; }
28
29 TextLogString(const StringBase& src) : StringBase() { *this = src; }
30
31 TextLogString(const char* src) : StringBase() { *this = src; }
32
34
36 (void)StringBase::operator=(src);
37 return *this;
38 }
39
41 (void)StringBase::operator=(src);
42 return *this;
43 }
44
45 TextLogString& operator=(const char* src) {
46 (void)StringBase::operator=(src);
47 return *this;
48 }
49
50 const char* toChar() const { return this->m_buf; }
51
52 StringBase::SizeType getCapacity() const { return sizeof this->m_buf; }
53
54 private:
55 char m_buf[BUFFER_SIZE(STRING_SIZE)];
56};
57} // namespace Fw
58
59#endif
#define FW_LOG_TEXT_BUFFER_SIZE
Max size of string for text log message.
Definition FpConfig.h:359
C++-compatible configuration header for fprime configuration.
Definitions for ISF type serial IDs.
Declares F Prime string base class.
NATIVE_UINT_TYPE SizeType
static constexpr SizeType STATIC_SERIALIZED_SIZE(SizeType maxLength)
static constexpr SizeType BUFFER_SIZE(SizeType maxLength)
Get the size of a null-terminated string buffer.
StringBase::SizeType getCapacity() const
return size of buffer
TextLogString & operator=(const TextLogString &src)
TextLogString(const char *src)
TextLogString(const TextLogString &src)
TextLogString & operator=(const StringBase &src)
TextLogString & operator=(const char *src)
const char * toChar() const
TextLogString(const StringBase &src)
@ FW_TYPEID_LOG_STR
Log string type id.
Definition SerIds.hpp:50