-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmodbusRequest.hpp
126 lines (109 loc) · 4.17 KB
/
modbusRequest.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
115
116
117
118
119
120
121
122
123
124
125
126
// 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 <cstdint>
#include <string>
#include <vector>
#include "modbusCell.hpp"
#include "modbusUtils.hpp"
/**
* Namespace that contains whole project
*/
namespace MB {
/**
* This class represent Modbus response, it allows
* user to manipulate and display it in various ways.
*/
class ModbusRequest {
private:
uint8_t _slaveID;
utils::MBFunctionCode _functionCode;
uint16_t _address;
uint16_t _registersNumber;
std::vector<ModbusCell> _values;
public:
// We do not allow default CTORs: https://github.com/Mazurel/Modbus/issues/6
ModbusRequest() = delete;
/**
* @brief
* Constructs Request from raw data
* @note
* 1) if CRC = true input data needs to contain 2 CRC bytes on back (used in
*RS)
* @note
* 2) This is private constructor, you need to use fromRaw or fromRawCRC
* @param inputData - Is vector of bytes that will be be interpreted,
*whereas based on CRC parameter method performs CRC calculation and throws
*exception if it is invalid
* @throws ModbusException
**/
explicit ModbusRequest(const std::vector<uint8_t> &inputData,
bool CRC = false) noexcept(false);
/*
* @description Constructs Request from raw data
* @params inputData is a vector of bytes that will be interpreted
* @throws ModbusException
**/
static ModbusRequest fromRaw(const std::vector<uint8_t> &inputData) noexcept(false) {
return ModbusRequest(inputData);
}
/*
* @description Constructs Request from raw data and checks it's CRC
* @params inputData is a vector of bytes that will be interpreted
* @throws ModbusException
* @note This methods performs CRC check that may throw ModbusException on
* invalid CRC
**/
static ModbusRequest fromRawCRC(const std::vector<uint8_t> &inputData) {
return ModbusRequest(inputData, true);
}
/**
* Simple constructor, that allows to create "dummy" ModbusRequest
* object. May be useful in some cases.
*/
explicit ModbusRequest(
uint8_t slaveId = 0,
utils::MBFunctionCode functionCode = static_cast<utils::MBFunctionCode>(0),
uint16_t address = 0, uint16_t registersNumber = 0,
std::vector<ModbusCell> values = {}) noexcept;
/**
* Copy constructor for the response.
*/
ModbusRequest(const ModbusRequest &);
/**
* Equal operator for the response.
*/
ModbusRequest &operator=(const ModbusRequest &);
//! Returns string representation of object
[[nodiscard]] std::string toString() const noexcept;
//! Returns raw bytes representation of object, ready for modbus
//! communication
[[nodiscard]] std::vector<uint8_t> toRaw() const;
//! Returns function type based on Modbus function code
[[nodiscard]] utils::MBFunctionType functionType() const noexcept {
return utils::functionType(_functionCode);
}
//! Returns register type based on Modbus function code
[[nodiscard]] utils::MBFunctionRegisters functionRegisters() const noexcept {
return utils::functionRegister(_functionCode);
}
[[nodiscard]] uint8_t slaveID() const { return _slaveID; }
[[nodiscard]] utils::MBFunctionCode functionCode() const { return _functionCode; }
[[nodiscard]] uint16_t registerAddress() const { return _address; }
[[nodiscard]] uint16_t numberOfRegisters() const { return _registersNumber; }
[[nodiscard]] const std::vector<ModbusCell> ®isterValues() const {
return _values;
}
void setSlaveId(uint8_t slaveId) { _slaveID = slaveId; }
void setFunctionCode(utils::MBFunctionCode functionCode) {
_functionCode = functionCode;
}
void setAddress(uint16_t address) { _address = address; }
void setRegistersNumber(uint16_t registersNumber) {
_registersNumber = registersNumber;
_values.resize(registersNumber);
}
void setValues(const std::vector<ModbusCell> &values) { _values = values; }
};
} // namespace MB