-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmodbusException.hpp
114 lines (97 loc) · 3.72 KB
/
modbusException.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Modbus for c++ <https://github.com/Mazurel/Modbus>
// Copyright (c) 2024 Mateusz Mazur aka Mazurel
// Licensed under: MIT License <http://opensource.org/licenses/MIT>
#pragma once
#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <vector>
#include "modbusUtils.hpp"
/**
* Namespace that contains whole project
*/
namespace MB {
/**
* Thic class represent Modbus exception and is
* derived form std::exception. It is just a wrapper
* around standard error codes and some custom codes.
*/
class ModbusException : public std::exception {
private:
uint8_t _slaveId;
bool _validSlave;
utils::MBErrorCode _errorCode;
utils::MBFunctionCode _functionCode;
public:
// We do not allow default CTORs: https://github.com/Mazurel/Modbus/issues/6
ModbusException() = delete;
/**
* @brief Constructs Exception from raw data
* @param inputData is vector of bytes that will be be interpreted
* @param CRC based on this param method performs CRC calculation and throws
* exception if it is invalid
* @note if CRC = true input data needs to contain 2 CRC bytes on back (used
* in RS)
* */
explicit ModbusException(const std::vector<uint8_t> &inputData,
bool CRC = false) noexcept;
//! Constructs Exception based on error code, function code and slaveId
explicit ModbusException(
utils::MBErrorCode errorCode, uint8_t slaveId = 0xFF,
utils::MBFunctionCode functionCode = utils::Undefined) noexcept
: _slaveId(slaveId), _validSlave(true), _errorCode(errorCode),
_functionCode(functionCode) {}
/*
* Check if there is Modbus error in raw modbus input
* NOTE: this method doesn't detect invalid byte order, byte order is
* checked at ModbusRequest/ModbusResponse
* */
static bool exist(const std::vector<uint8_t> &inputData) noexcept {
if (inputData.size() < 2) // TODO Figure out better solution to such mistake
return false;
return inputData[1] & 0b10000000;
}
/*
* Returns attached SlaveID
* NOTE: it is worth to check if slaveId is specified with isSlaveValid()
* */
[[nodiscard]] uint8_t slaveID() const noexcept { return _slaveId; }
//! Checks if SlaveID is specified
[[nodiscard]] bool isSlaveValid() const noexcept { return _validSlave; }
//! Sets SlaveID
void setSlaveID(uint8_t slaveId) noexcept {
_validSlave = true;
_slaveId = slaveId;
}
//! Returns detected error code
[[nodiscard]] utils::MBErrorCode getErrorCode() const noexcept { return _errorCode; }
/**
* This function is less optimal, it is just to be compatible with
* `std::exception`, you should preferably use toString()
*/
[[nodiscard]] const char *what() const noexcept override {
const std::size_t MAX_STRING_SIZE = 1024;
static char str[MAX_STRING_SIZE];
auto originalStr = toString();
std::strncpy(str, originalStr.c_str(),
std::min(originalStr.size(), MAX_STRING_SIZE));
return str;
}
//! Returns string representation of object
[[nodiscard]] std::string toString() const noexcept;
/**
* @brief Convert Modbus request object into the vector of bytes,
* representing modbus frame, ready to be sent over HW interface
*
* @throws ModbusException - if modbus data in the object is invalid
*/
[[nodiscard]] std::vector<uint8_t> toRaw() const noexcept;
[[nodiscard]] utils::MBFunctionCode functionCode() const noexcept {
return _functionCode;
}
void setFunctionCode(utils::MBFunctionCode functionCode) noexcept {
_functionCode = functionCode;
}
};
} // namespace MB