OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
RunResult.h
Go to the documentation of this file.
1#pragma once
2#include <stdint.h>
3#include <string>
4
5#pragma warning(disable:4251)
6
7namespace ot
8{
9 namespace app
10 {
11 class __declspec(dllexport) RunResult {
12 public:
13 const static uint32_t successCode = 0;
14 const static uint32_t genericErrorCode = 1;
15
16 bool isOk()
17 {
18 return m_value == successCode;
19 }
20
21 void setAsError(uint32_t _errorCode)
22 {
23 if (_errorCode == successCode)
24 {
25 m_value = genericErrorCode;
26 m_fallBackToGenericErrorCode = true;
27 }
28 else
29 {
30 m_value = _errorCode;
31 }
32 }
33
34 uint32_t getErrorCode() const
35 {
36 return m_value;
37 }
38
39 void setErrorMessage(const std::string& _message)
40 {
41 m_message = _message;
42 }
43 void addToErrorMessage(const std::string& _message)
44 {
45 m_message += _message;
46 }
47
48 const std::string getErrorMessage() const
49 {
50 if (m_fallBackToGenericErrorCode)
51 {
52 return m_message + std::string("\nOrriginal error code was 0 (success), but it was logged as error");
53 }
54 return m_message;
55 }
56
57 RunResult() = default;
58 RunResult& operator=(const RunResult& _other) = default;
59 RunResult& operator=(RunResult&& _other) = default;
60
61
62 RunResult(const RunResult& _other) = default;
63 RunResult(RunResult&& _other) = default;
64
65 bool operator==(const RunResult& _other)
66 {
67 return m_value == _other.m_value;
68 }
69
70 bool operator!=(const RunResult& _other)
71 {
72 return !(*this == _other);
73 }
74
75 private:
76 std::string m_message = "";
77 uint32_t m_value = successCode;
78 bool m_fallBackToGenericErrorCode = false;
79 };
80 }
81}
bool operator==(const FaceSelection &left, const FaceSelection &right)
Definition Model.cpp:45
The app namespace contains several functions that may be used to start processes.
Definition Connector.h:8