F´ Flight Software - C/C++ Documentation
devel
A framework for building embedded system applications to NASA flight quality standards.
|
FPP shadow-enum representing Os::Directory::Status. More...
#include <Os/Models/DirectoryStatusEnumAc.hpp>
Public Types | |
enum | T { OP_OK = 0 , DOESNT_EXIST = 1 , NO_PERMISSION = 2 , NOT_OPENED = 3 , NOT_DIR = 4 , NO_MORE_FILES = 5 , FILE_LIMIT = 6 , BAD_DESCRIPTOR = 7 , ALREADY_EXISTS = 8 , NOT_SUPPORTED = 9 , OTHER_ERROR = 10 } |
The raw enum type. More... | |
enum | { SERIALIZED_SIZE = sizeof(SerialType) , NUM_CONSTANTS = 11 } |
typedef I32 | SerialType |
The serial representation type. More... | |
typedef T | t |
For backwards compatibility. More... | |
Public Types inherited from Fw::Serializable | |
using | SizeType = NATIVE_UINT_TYPE |
Public Member Functions | |
DirectoryStatus () | |
Constructor (default value of OP_OK) More... | |
DirectoryStatus (const T e1) | |
Constructor (user-provided value) More... | |
DirectoryStatus (const DirectoryStatus &obj) | |
Copy constructor. More... | |
DirectoryStatus & | operator= (const DirectoryStatus &obj) |
Copy assignment operator (object) More... | |
DirectoryStatus & | operator= (T e1) |
Copy assignment operator (raw enum) More... | |
operator T () const | |
Conversion operator. More... | |
bool | operator== (T e1) const |
Equality operator. More... | |
bool | operator!= (T e1) const |
Inequality operator. More... | |
bool | isValid () const |
Check raw enum value for validity. More... | |
Fw::SerializeStatus | serialize (Fw::SerializeBufferBase &buffer) const |
Serialize raw enum value to SerialType. More... | |
Fw::SerializeStatus | deserialize (Fw::SerializeBufferBase &buffer) |
Deserialize raw enum value from SerialType. More... | |
Public Attributes | |
T | e |
The raw enum value. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from Fw::Serializable | |
Serializable () | |
Default constructor. More... | |
virtual | ~Serializable () |
destructor More... | |
FPP shadow-enum representing Os::Directory::Status.
Definition at line 17 of file DirectoryStatusEnumAc.hpp.
typedef I32 Os::DirectoryStatus::SerialType |
The serial representation type.
Definition at line 28 of file DirectoryStatusEnumAc.hpp.
typedef T Os::DirectoryStatus::t |
For backwards compatibility.
Definition at line 57 of file DirectoryStatusEnumAc.hpp.
anonymous enum |
Enumerator | |
---|---|
SERIALIZED_SIZE | The size of the serial representation. |
NUM_CONSTANTS | The number of enumerated constants. |
Definition at line 65 of file DirectoryStatusEnumAc.hpp.
The raw enum type.
Enumerator | |
---|---|
OP_OK | Operation was successful. |
DOESNT_EXIST | Directory doesn't exist. |
NO_PERMISSION | No permission to read directory. |
NOT_OPENED | Directory hasn't been opened yet. |
NOT_DIR | Path is not a directory. |
NO_MORE_FILES | Directory stream has no more files. |
FILE_LIMIT | Directory has more files than can be read. |
BAD_DESCRIPTOR | Directory stream descriptor is invalid. |
ALREADY_EXISTS | Directory already exists. |
NOT_SUPPORTED | Operation is not supported by the current implementation. |
OTHER_ERROR | A catch-all for other errors. Have to look in implementation-specific code. |
Definition at line 31 of file DirectoryStatusEnumAc.hpp.
|
inline |
Constructor (default value of OP_OK)
Definition at line 79 of file DirectoryStatusEnumAc.hpp.
|
inline |
Constructor (user-provided value)
e1 | The raw enum value |
Definition at line 85 of file DirectoryStatusEnumAc.hpp.
|
inline |
Copy constructor.
obj | The source object |
Definition at line 93 of file DirectoryStatusEnumAc.hpp.
|
virtual |
Deserialize raw enum value from SerialType.
buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 63 of file DirectoryStatusEnumAc.cpp.
bool Os::DirectoryStatus::isValid | ( | ) | const |
Check raw enum value for validity.
Definition at line 48 of file DirectoryStatusEnumAc.cpp.
|
inline |
Conversion operator.
Definition at line 117 of file DirectoryStatusEnumAc.hpp.
|
inline |
Inequality operator.
Definition at line 129 of file DirectoryStatusEnumAc.hpp.
DirectoryStatus & Os::DirectoryStatus::operator= | ( | const DirectoryStatus & | obj | ) |
Copy assignment operator (object)
obj | The source object |
Definition at line 19 of file DirectoryStatusEnumAc.cpp.
DirectoryStatus & Os::DirectoryStatus::operator= | ( | T | e1 | ) |
Copy assignment operator (raw enum)
e1 | The enum value |
Definition at line 26 of file DirectoryStatusEnumAc.cpp.
|
inline |
Equality operator.
Definition at line 123 of file DirectoryStatusEnumAc.hpp.
|
virtual |
Serialize raw enum value to SerialType.
buffer | The serial buffer |
Implements Fw::Serializable.
Definition at line 54 of file DirectoryStatusEnumAc.cpp.
T Os::DirectoryStatus::e |
The raw enum value.
Definition at line 179 of file DirectoryStatusEnumAc.hpp.