F´ Flight Software - C/C++ Documentation  devel
A framework for building embedded system applications to NASA flight quality standards.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OpenEnumAc.cpp
Go to the documentation of this file.
1 // ======================================================================
2 // \title OpenEnumAc.cpp
3 // \author Generated by fpp-to-cpp
4 // \brief cpp file for Open enum
5 // ======================================================================
6 
7 #include <cstring>
8 #include <limits>
9 
10 #include "Fw/Types/Assert.hpp"
12 
13 namespace Fw {
14 
15  // ----------------------------------------------------------------------
16  // Operators
17  // ----------------------------------------------------------------------
18 
20  operator=(const Open& obj)
21  {
22  this->e = obj.e;
23  return *this;
24  }
25 
27  operator=(T e1)
28  {
29  this->e = e1;
30  return *this;
31  }
32 
33 #ifdef BUILD_UT
34 
35  std::ostream& operator<<(std::ostream& os, const Open& obj) {
36  Fw::String s;
37  obj.toString(s);
38  os << s;
39  return os;
40  }
41 
42 #endif
43 
44  // ----------------------------------------------------------------------
45  // Member functions
46  // ----------------------------------------------------------------------
47 
48  bool Open ::
49  isValid() const
50  {
51  return ((e >= CLOSED) && (e <= OPEN));
52  }
53 
56  {
57  const Fw::SerializeStatus status = buffer.serialize(
58  static_cast<SerialType>(this->e)
59  );
60  return status;
61  }
62 
65  {
66  SerialType es;
67  Fw::SerializeStatus status = buffer.deserialize(es);
68  if (status == Fw::FW_SERIALIZE_OK) {
69  this->e = static_cast<T>(es);
70  if (!this->isValid()) {
72  }
73  }
74  return status;
75  }
76 
77 #if FW_SERIALIZABLE_TO_STRING
78 
79  void Open ::
80  toString(Fw::StringBase& sb) const
81  {
82  Fw::String s;
83  switch (e) {
84  case CLOSED:
85  s = "CLOSED";
86  break;
87  case OPEN:
88  s = "OPEN";
89  break;
90  default:
91  s = "[invalid]";
92  break;
93  }
94  sb.format("%s (%" PRIi32 ")", s.toChar(), e);
95  }
96 
97 #elif FW_ENABLE_TEXT_LOGGING
98 
99  void Open ::
100  toString(Fw::StringBase& sb) const
101  {
102  sb.format("%" PRIi32 "", e);
103  }
104 
105 #endif
106 
107 }
Open and closed states.
Definition: OpenEnumAc.hpp:19
Open & operator=(const Open &obj)
Copy assignment operator (object)
Definition: OpenEnumAc.cpp:20
I32 SerialType
The serial representation type.
Definition: OpenEnumAc.hpp:28
bool isValid() const
Check raw enum value for validity.
Definition: OpenEnumAc.cpp:49
Fw::SerializeStatus serialize(Fw::SerializeBufferBase &buffer) const
Serialize raw enum value to SerialType.
Definition: OpenEnumAc.cpp:55
Fw::SerializeStatus deserialize(Fw::SerializeBufferBase &buffer)
Deserialize raw enum value from SerialType.
Definition: OpenEnumAc.cpp:64
T
The raw enum type.
Definition: OpenEnumAc.hpp:31
@ OPEN
Open state.
Definition: OpenEnumAc.hpp:35
@ CLOSED
Closed state.
Definition: OpenEnumAc.hpp:33
T e
The raw enum value.
Definition: OpenEnumAc.hpp:161
SerializeStatus deserialize(U8 &val)
deserialize 8-bit unsigned int
SerializeStatus serialize(U8 val)
serialize 8-bit unsigned int
void format(const CHAR *formatString,...)
write formatted string to buffer
Definition: StringBase.cpp:56
const char * toChar() const
Definition: String.hpp:50
SerializeStatus
forward declaration for string
@ FW_DESERIALIZE_FORMAT_ERROR
Deserialization data had incorrect values (unexpected data types)
@ FW_SERIALIZE_OK
Serialization/Deserialization operation was successful.