![]() |
F´ Flight Software - C/C++ Documentation
A framework for building embedded system applications to NASA flight quality standards.
|
FPP shadow-enum representing Os::File::Status. More...
#include <Os/Models/FileStatusEnumAc.hpp>
Public Types | |
| enum | T { OP_OK = 0, DOESNT_EXIST = 1, NO_SPACE = 2, NO_PERMISSION = 3, BAD_SIZE = 4, NOT_OPENED = 5, FILE_EXISTS = 6, NOT_SUPPORTED = 7, INVALID_MODE = 8, INVALID_ARGUMENT = 9, NO_MORE_RESOURCES = 10, OTHER_ERROR = 11 } |
| The raw enum type. More... | |
| enum | { SERIALIZED_SIZE = sizeof(SerialType), NUM_CONSTANTS = 12 } |
| typedef U8 | SerialType |
| The serial representation type. More... | |
| typedef T | t |
| For backwards compatibility. More... | |
Public Types inherited from Fw::Serializable | |
| using | SizeType = FwSizeType |
Public Member Functions | |
| FileStatus () | |
| Constructor (default value of OP_OK) More... | |
| FileStatus (const T e1) | |
| Constructor (user-provided value) More... | |
| FileStatus (const FileStatus &obj) | |
| Copy constructor. More... | |
| FileStatus & | operator= (const FileStatus &obj) |
| Copy assignment operator (object) More... | |
| FileStatus & | 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 | serializeTo (Fw::SerialBufferBase &buffer, Fw::Endianness mode=Fw::Endianness::BIG) const |
| Serialize raw enum value to SerialType. More... | |
| Fw::SerializeStatus | deserializeFrom (Fw::SerialBufferBase &buffer, Fw::Endianness mode=Fw::Endianness::BIG) |
| Deserialize raw enum value from SerialType. More... | |
Public Member Functions inherited from Fw::Serializable | |
| Serializable & | operator= (const Serializable &src)=default |
| TODO: this operator should be deleted, this must be done after RawTime is modified though. More... | |
| DEPRECATED (SerializeStatus serialize(SerialBufferBase &buffer) const, "Use serializeTo(SerialBufferBase& buffer) instead") | |
| DEPRECATED (SerializeStatus deserialize(SerialBufferBase &buffer), "Use deserializeFrom(SerialBufferBase& buffer) instead") | |
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 () |
| Virtual destructor. More... | |
FPP shadow-enum representing Os::File::Status.
Definition at line 17 of file FileStatusEnumAc.hpp.
| typedef U8 Os::FileStatus::SerialType |
The serial representation type.
Definition at line 28 of file FileStatusEnumAc.hpp.
| typedef T Os::FileStatus::t |
For backwards compatibility.
Definition at line 59 of file FileStatusEnumAc.hpp.
| anonymous enum |
| Enumerator | |
|---|---|
| SERIALIZED_SIZE | The size of the serial representation. |
| NUM_CONSTANTS | The number of enumerated constants. |
Definition at line 67 of file FileStatusEnumAc.hpp.
| enum Os::FileStatus::T |
The raw enum type.
| Enumerator | |
|---|---|
| OP_OK | Operation was successful. |
| DOESNT_EXIST | File doesn't exist (for read) |
| NO_SPACE | No space left. |
| NO_PERMISSION | No permission to read/write file. |
| BAD_SIZE | Invalid size parameter. |
| NOT_OPENED | file hasn't been opened yet |
| FILE_EXISTS | file already exist (for CREATE with O_EXCL enabled) |
| NOT_SUPPORTED | Kernel or file system does not support operation. |
| INVALID_MODE | Mode for file access is invalid for current operation. |
| INVALID_ARGUMENT | Invalid argument passed in. |
| NO_MORE_RESOURCES | No more available resources. |
| OTHER_ERROR | A catch-all for other errors. Have to look in implementation-specific code. |
Definition at line 31 of file FileStatusEnumAc.hpp.
|
inline |
Constructor (default value of OP_OK)
Definition at line 81 of file FileStatusEnumAc.hpp.
|
inline |
Constructor (user-provided value)
| e1 | The raw enum value |
Definition at line 87 of file FileStatusEnumAc.hpp.
|
inline |
Copy constructor.
| obj | The source object |
Definition at line 95 of file FileStatusEnumAc.hpp.
|
virtual |
Deserialize raw enum value from SerialType.
| buffer | The serial buffer |
| mode | Endianness of serialized buffer |
Implements Fw::Serializable.
Definition at line 68 of file FileStatusEnumAc.cpp.
| bool Os::FileStatus::isValid | ( | ) | const |
Check raw enum value for validity.
Definition at line 49 of file FileStatusEnumAc.cpp.
|
inline |
Conversion operator.
Definition at line 119 of file FileStatusEnumAc.hpp.
|
inline |
Inequality operator.
Definition at line 131 of file FileStatusEnumAc.hpp.
| FileStatus & Os::FileStatus::operator= | ( | const FileStatus & | obj | ) |
Copy assignment operator (object)
| obj | The source object |
Definition at line 20 of file FileStatusEnumAc.cpp.
| FileStatus & Os::FileStatus::operator= | ( | T | e1 | ) |
Copy assignment operator (raw enum)
| e1 | The enum value |
Definition at line 27 of file FileStatusEnumAc.cpp.
|
inline |
Equality operator.
Definition at line 125 of file FileStatusEnumAc.hpp.
|
virtual |
Serialize raw enum value to SerialType.
| buffer | The serial buffer |
| mode | Endianness of serialized buffer |
Implements Fw::Serializable.
Definition at line 55 of file FileStatusEnumAc.cpp.
| T Os::FileStatus::e |
The raw enum value.
Definition at line 183 of file FileStatusEnumAc.hpp.