Result Codes#
Macros#
- OMNI_FAILED
Returns
true
if the given omni::core::Result is a failure code.- OMNI_RETURN_IF_FAILED
If the given omni::core::Result is a failure code, calls
return result
to exit the current function.- OMNI_SUCCEEDED
Returns
true
if the given omni::core::Result is not a failure code.
Typedefs#
- omni::core::Result
Error code for the result of an operation.
Variables#
- constexpr Result omni::core::kResultAccessDenied
Access has been denied for this operation.
- constexpr Result omni::core::kResultAlreadyExists
Object already exists.
- constexpr Result omni::core::kResultFail
The operation failed.
- constexpr Result omni::core::kResultInsufficientBuffer
Insufficient buffer.
- constexpr Result omni::core::kResultInterrupted
An operation was interrupted. An "interruption" happens in cases where the operation did not complete successfully due to an outside system (such as a timer) interrupting it. For example, a function
Result wait_for(duration d)
might givekResultSuccess
when function returns because the duration expired andkResultInterrupted
if the system is shutting down.- constexpr Result omni::core::kResultInvalidArgument
One or more of the arguments passed to a given function was invalid.
- constexpr Result omni::core::kResultInvalidDataSize
Invalid data size. This arises when the correct type of data is requested, but the requester believes the data size is different from the receiver. The cause of this is typically a version mismatch.
- constexpr Result omni::core::kResultInvalidDataType
Invalid data type. This is used in cases where a specific type of data is requested, but that is not the data which the receiver has.
- constexpr Result omni::core::kResultInvalidIndex
Invalid index.
- constexpr Result omni::core::kResultInvalidOperation
The operation was not valid for the target. For example, attempting to perform a write operation on a read-only file would result in this error.
- constexpr Result omni::core::kResultInvalidState
The system is in an invalid state to perform the operation. This is distinct from
kResultInvalidOperation
in that it covers situations like "system is not yet started" or "file is closed.".- constexpr Result omni::core::kResultNoInterface
Interface not implemented.
- constexpr Result omni::core::kResultNoMoreItems
No more items to return. This is meant for things like reader queues when they have run out of data and will never have more data. For cases where something like an async queue being temporarily empty, use
kResultTryAgain
.- constexpr Result omni::core::kResultNotEnoughData
Not enough data.
- constexpr Result omni::core::kResultNotFound
The item was not found.
- constexpr Result omni::core::kResultNotImplemented
The feature or method was not implemented. It might be at some point in the future.
- constexpr Result omni::core::kResultNotSupported
The operation is not supported.
- constexpr Result omni::core::kResultNullPointer
Pointer is null.
- constexpr Result omni::core::kResultOperationAborted
The operation was aborted.
- constexpr Result omni::core::kResultOutOfMemory
A system is out of memory. This does not necessarily mean resident memory has been exhausted (although it can), as this code can be used to special conditions such as exhausting graphics memory or running out of a specific memory pool. It can also indicate that an allocation would have been too big and failed ahead of time.
- constexpr Result omni::core::kResultSuccess
Operation successful. No error occurred.
- constexpr Result omni::core::kResultTimedOut
Timed out.
- constexpr Result omni::core::kResultTooMuchData
Too much data.
- constexpr Result omni::core::kResultTryAgain
Try the operation again. This is typically emitted in situations where an operation would require blocking, but the system is configured to be non-blocking. For example, attempting to read from a TCP socket when no data has been received would return
kResultTryAgain
.- constexpr Result omni::core::kResultVersionCheckFailure
Version check failure.
- constexpr Result omni::core::kResultVersionParseError
Failed to parse the version.
- constexpr Result omni::core::kResultWouldBlock
Would block.