template<typename TField, typename... TOptions>
class comms::field::Optional< TField, TOptions >
Adaptor class to any other field, that makes the field optional.
When field is optional, it may either exist or not. The behaviour of length(), read() and write() operations depends on the current field's mode.
- Template Parameters
-
TField | Proper type of the field that needs to be optional. |
TOptions | Zero or more options that modify/refine default behaviour of the field.
Supported options are:
|
|
using | CommsTag = typename BaseImpl::CommsTag |
| Tag indicating type of the field.
|
|
using | Endian = typename BaseImpl::Endian |
| Endian used for serialisation.
|
|
using | Field = TField |
| Type of the field.
|
|
using | FieldType = typename ParsedOptions::FieldType |
| Type of actual extending field specified via comms::option::def::FieldType.
|
|
using | Mode = OptionalMode |
| Mode of the field.
|
|
using | ParsedOptions = details::OptionsParser< TOptions... > |
| All the options provided to this class bundled into struct.
|
|
using | ValueType = Field |
| Value type of this field, equal to Field.
|
|
using | VersionType = typename BaseImpl::VersionType |
| Version type.
|
|
|
| Optional ()=default |
| Default constructor.
|
|
| Optional (const Field &fieldSrc) |
| Construct the field.
|
|
| Optional (const Optional &)=default |
| Copy constructor.
|
|
| Optional (Field &&fieldSrc) |
| Construct the field.
|
|
| Optional (Optional &&)=default |
| Move constructor.
|
|
| ~Optional () noexcept=default |
| Destructor.
|
|
bool | canWrite () const |
| Check of whether the field has a consistent value for writing.
|
|
bool | doesExist () const |
| Check whether mode is equivalent to Mode::Exists.
|
|
Field & | field () |
| Get an access to the wrapped field object.
|
|
const Field & | field () const |
| Get an access to the wrapped field object.
|
|
Mode | getMode () const |
| Get current optional mode.
|
|
const ValueType & | getValue () const |
| Get value.
|
|
VersionType | getVersion () const |
| Get version of the field.
|
|
bool | isMissing () const |
| Check whether mode is equivalent to Mode::Missing.
|
|
bool | isTentative () const |
| Check whether mode is equivalent to Mode::Tentative.
|
|
std::size_t | length () const |
| Get length required to serialise the current field value.
|
|
Optional & | operator= (const Optional &)=default |
| Copy assignment.
|
|
Optional & | operator= (Optional &&)=default |
| Move assignment.
|
|
template<typename TIter > |
ErrorStatus | read (TIter &iter, std::size_t len) |
| Read field value from input data sequence.
|
|
template<typename TIter > |
void | readNoStatus (TIter &iter) |
| Read field value from input data sequence without error check and status report.
|
|
bool | refresh () |
| Refresh the field's value.
|
|
void | setExists () |
| Set mode to Mode::Exists.
|
|
void | setMissing () |
| Set mode to Mode::Missing.
|
|
void | setMode (Mode val) |
| Get optional mode.
|
|
void | setTentative () |
| Set mode to Mode::Tentative.
|
|
template<typename U > |
void | setValue (U &&val) |
| Set value.
|
|
bool | setVersion (VersionType version) |
| Default implementation of version update.
|
|
bool | valid () const |
| Check validity of the field value.
|
|
ValueType & | value () |
| Get an access to the wrapped field object.
|
|
const ValueType & | value () const |
| Get an access to the wrapped field object.
|
|
template<typename TIter > |
ErrorStatus | write (TIter &iter, std::size_t len) const |
| Write current field value to output data sequence.
|
|
template<typename TIter > |
void | writeNoStatus (TIter &iter) const |
| Write current field value to output data sequence without error check and status report.
|
|
|
static constexpr bool | canWrite () |
| Default check of whether the field has a consistent value for writing.
|
|
static constexpr bool | hasEmptySerialization () |
| Compile time inquiry of whether comms::option::def::EmptySerialization option has been used.
|
|
static constexpr bool | hasFailOnInvalid () |
| Compile time inquiry of whether comms::option::def::FailOnInvalid option has been used.
|
|
static constexpr bool | hasFieldType () |
| Compile time inquiry of whether comms::option::def::FieldType option has been used.
|
|
static constexpr bool | hasIgnoreInvalid () |
| Compile time inquiry of whether comms::option::def::IgnoreInvalid option has been used.
|
|
static constexpr bool | hasNonDefaultRefresh () |
| Compile time check if this class has non-default refresh functionality.
|
|
static constexpr bool | hasReadNoStatus () |
| Compile time check of whether the field has proper readNoStatus() member function.
|
|
static constexpr bool | hasVarLength () |
| Default check of whether the field has variable length definition via comms::option::def::VarLength option.
|
|
static constexpr bool | hasWriteNoStatus () |
| Compile time check of whether the field has proper writeNoStatus() member function.
|
|
static constexpr bool | isVersionDependent () |
| Compile time check if this class is version dependent.
|
|
static constexpr std::size_t | maxLength () |
| Get maximal length that is required to serialise field of this type.
|
|
static constexpr std::size_t | minLength () |
| Get minimal length that is required to serialise field of this type.
|
|
static constexpr bool | valid () |
| Default validity check.
|
|
|
template<typename T , typename TIter > |
static T | readData (TIter &iter) |
| Read data from input buffer.
|
|
template<typename T , std::size_t TSize, typename TIter > |
static T | readData (TIter &iter) |
| Read partial data from input buffer.
|
|
template<typename T , typename TIter > |
static void | writeData (T value, TIter &iter) |
| Write data into the output buffer.
|
|
template<std::size_t TSize, typename T , typename TIter > |
static void | writeData (T value, TIter &iter) |
| Write partial data into the output buffer.
|
|
|
(Note that these are not member symbols.)
|
template<typename T > |
constexpr bool | isOptional () |
| Compile time check function of whether a provided type is any variant of comms::field::Optional.
|
|
template<typename TField , typename... TOptions> |
bool | operator!= (const Optional< TField, TOptions... > &field1, const Optional< TField, TOptions... > &field2) noexcept |
| Non-equality comparison operator.
|
|
template<typename TField , typename... TOptions> |
bool | operator< (const Optional< TField, TOptions... > &field1, const Optional< TField, TOptions... > &field2) noexcept |
| Equivalence comparison operator.
|
|
template<typename TField , typename... TOptions> |
bool | operator<= (const Optional< TField, TOptions... > &field1, const Optional< TField, TOptions... > &field2) noexcept |
| Equivalence comparison operator.
|
|
template<typename TField , typename... TOptions> |
bool | operator== (const Optional< TField, TOptions... > &field1, const Optional< TField, TOptions... > &field2) noexcept |
| Equality comparison operator.
|
|
template<typename TField , typename... TOptions> |
bool | operator> (const Optional< TField, TOptions... > &field1, const Optional< TField, TOptions... > &field2) noexcept |
| Equivalence comparison operator.
|
|
template<typename TField , typename... TOptions> |
bool | operator>= (const Optional< TField, TOptions... > &field1, const Optional< TField, TOptions... > &field2) noexcept |
| Equivalence comparison operator.
|
|
template<typename TField , typename... TOptions> |
const Optional< TField, TOptions... > & | toFieldBase (const Optional< TField, TOptions... > &field) |
| Upcast type of the field definition to its parent comms::field::Optional type in order to have access to its internal types.
|
|
template<typename TField , typename... TOptions> |
Optional< TField, TOptions... > & | toFieldBase (Optional< TField, TOptions... > &field) |
| Upcast type of the field definition to its parent comms::field::Optional type in order to have access to its internal types.
|
|
template<typename TField , typename... TOptions>
template<typename TIter >
Read field value from input data sequence.
If field is marked as missing (mode is OptionalMode::Missing), function returns comms::ErrorStatus::Success without advancing iterator.
If field is marked as existing (mode is OptionalMode::Exists) the read() member function of the wrapped field object is invoked.
If field is marked to be tentative (mode is OptionalMode::Tentative), the call redirected to wrapped field's read() member function if value of the "len" parameter is greater than 0, i.e. there are still bytes available for reading, and field itself is marked as existing.
Otherwise, field is marked as missing and comms::ErrorStatus::Success is returned.
- Parameters
-
[in,out] | iter | Iterator to read the data. |
[in] | len | Number of bytes available for reading. |
- Returns
- Status of read operation.
- Postcondition
- Iterator is advanced.
template<typename... TOptions>
template<typename T , typename TIter >
Read data from input buffer.
Use this function to read data from the intput buffer maintained by the caller. The endianness of the data will be as specified in options of the class.
- Template Parameters
-
T | Return type |
TIter | Type of input iterator |
- Parameters
-
[in,out] | iter | Input iterator. |
- Returns
- The integral type value.
- Precondition
- TSize <= sizeof(T)
-
The iterator must be valid and can be successfully dereferenced and incremented at least sizeof(T) times.
- Postcondition
- The iterator is advanced.
- Note
- Thread safety: Safe for distinct stream buffers, unsafe otherwise.
template<typename... TOptions>
template<typename T , std::size_t TSize, typename TIter >
Read partial data from input buffer.
Use this function to read data from the intput buffer maintained by the caller. The endianness of the data will be as specified in options of the class.
- Template Parameters
-
T | Return type |
TSize | number of bytes to read |
TIter | Type of input iterator |
- Parameters
-
[in,out] | iter | Input iterator. |
- Returns
- The integral type value.
- Precondition
- TSize <= sizeof(T)
-
The iterator must be valid and can be successfully dereferenced and incremented at least TSize times.
- Postcondition
- The internal pointer of the stream buffer is advanced.
- Note
- Thread safety: Safe for distinct stream buffers, unsafe otherwise.
template<typename TField , typename... TOptions>
template<typename TIter >
Read field value from input data sequence without error check and status report.
Similar to read(), but doesn't perform any correctness checks and doesn't report any failures.
- Parameters
-
[in,out] | iter | Iterator to read the data. |
- Postcondition
- Iterator is advanced.
template<typename... TOptions>
template<typename T , typename TIter >
static void comms::Field< TOptions >::writeData |
( |
T |
value, |
|
|
TIter & |
iter |
|
) |
| |
|
staticprotectedinherited |
Write data into the output buffer.
Use this function to write data to the the buffer maintained by the caller. The endianness of the data will be as specified in the options provided to the class.
- Template Parameters
-
T | Type of the value to write. Must be integral. |
Type | of output iterator |
- Parameters
-
[in] | value | Integral type value to be written. |
[in,out] | iter | Output iterator. |
- Precondition
- The iterator must be valid and can be successfully dereferenced and incremented at least sizeof(T) times.
- Postcondition
- The iterator is advanced.
- Note
- Thread safety: Safe for distinct buffers, unsafe otherwise.
template<typename... TOptions>
template<std::size_t TSize, typename T , typename TIter >
static void comms::Field< TOptions >::writeData |
( |
T |
value, |
|
|
TIter & |
iter |
|
) |
| |
|
staticprotectedinherited |
Write partial data into the output buffer.
Use this function to write partial data to the buffer maintained by the caller. The endianness of the data will be as specified the class options.
- Template Parameters
-
TSize | Length of the value in bytes known in compile time. |
T | Type of the value to write. Must be integral. |
TIter | Type of output iterator |
- Parameters
-
[in] | value | Integral type value to be written. |
[in,out] | iter | Output iterator. |
- Precondition
- TSize <= sizeof(T)
-
The iterator must be valid and can be successfully dereferenced and incremented at least TSize times.
- Postcondition
- The iterator is advanced.
- Note
- Thread safety: Safe for distinct buffers, unsafe otherwise.
template<typename TField , typename... TOptions>
template<typename TIter >
Write current field value to output data sequence without error check and status report.
Similar to write(), but doesn't perform any correctness checks and doesn't report any failures.
- Parameters
-
[in,out] | iter | Iterator to write the data. |
- Postcondition
- Iterator is advanced.