7.8.1.1. RetVal - Reference

class ito::RetVal

Class for managing status values (like errors or warning)

The RetVal class is used for handling return codes. All classes should use this class. In case an error occurs, only the first error is stored and will not be overridden by potentially subsequent occurring errors. An error is more severe than a warning and will overwrite a warning if it is added to an existing RetVal.

Public Functions

inline RetVal()

default constructor that creates a RetVal with status ito::retOk, code 0 and no message.

inline RetVal(tRetValue retValue)

default constructor that creates a RetVal with the status given by retValue, code 0 and no message.

inline RetVal(int retValue)

default constructor that creates a RetVal with the status given by retValue, code 0 and no message.

RetVal(ito::tRetValue retValue, int retCode, const char *pRetMessage)

constructor with retValue, retCode and errorMessage

Parameters
  • [in] retValue: type of RetVal; for possible values see tRetValue

  • [in] retCode: user definable return code

  • [in] pRetMessage: error message to be passed or NULL, string is copied Makes a deep copy of RetVal, i.e. a copy of the error message

inline ~RetVal()

destructor

RetVal &operator=(const RetVal &rhs)

assignment operator, copies values of rhs to current RetVal. Before copiing current errorMessage is freed

RetVal &operator+=(const RetVal &rhs)

Concatenation of RetVal “Adds” RetVals, i.e. returns the most serious error. In case of equally serious errors the first is retained

inline RetVal operator+(const RetVal &rhs)

Concatenation of RetVal See operator RetVal::operator+=

inline char operator==(const RetVal &rhs)

equality operator compares retValue with with retValue of rhs RetVal. For possible constant values see tRetValue

inline char operator!=(const RetVal &rhs)

unequality operator compares retValue with with retValue of rhs RetVal. For possible constant values see tRetValue

inline char operator==(const tRetValue rhs)

equality operator compares retValue with tRetValue constant. For possible constant values see tRetValue

inline char operator!=(const tRetValue rhs)

unequality operator compares retValue with tRetValue constant. For possible constant values see tRetValue

inline int containsWarning() const

check if any warning has occurred in this return value (true), else (false)

inline int containsError() const

check if any error has occurred in this return value (true), else (false)

inline int containsWarningOrError() const

check if any warning or error has occurred in this return value (true), else (false)

inline bool hasErrorMessage() const

return true if an error or warning message is available

inline int errorCode() const

return the error code (default: 0)

inline const char *errorMessage() const

return zero-terminated error message or empty, zero-terminated string if no error message has been set

Public Static Functions

static RetVal format(ito::tRetValue retValue, int retCode, const char *pRetMessage, ...)

create RetVal with message that may contain placeholders using the formalism of the default sprintf method.

Return

created RetVal

Parameters
  • retValue: is the type of RetVal (retOk, retWarning, retError)

  • retCode: is the code number of RetVal

  • pRetMessage: is the zero-terminated message string that may contain placeholders like s, i, … (see sprintf)

  • ...: are further arguments. Their number and type must correspond to the placeholders in pRetMessage