-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreaddiscreteinputsrequest.go
193 lines (175 loc) · 6.67 KB
/
readdiscreteinputsrequest.go
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package packet
import (
"encoding/binary"
"fmt"
"math"
"math/rand/v2"
)
// ReadDiscreteInputsRequestTCP is TCP Request for Read Discrete Inputs (FC=02)
//
// Example packet: 0x81 0x80 0x00 0x00 0x00 0x06 0x10 0x02 0x00 0x6B 0x00 0x03
// 0x81 0x80 - transaction id (0,1)
// 0x00 0x00 - protocol id (2,3)
// 0x00 0x06 - number of bytes in the message (PDU = ProtocolDataUnit) to follow (4,5)
// 0x10 - unit id (6)
// 0x02 - function code (7)
// 0x00 0x6B - start address (8,9)
// 0x00 0x03 - discrete inputs quantity to return (10,11)
type ReadDiscreteInputsRequestTCP struct {
MBAPHeader
ReadDiscreteInputsRequest
}
// ReadDiscreteInputsRequestRTU is RTU Request for Read Discrete Inputs (FC=02)
//
// Example packet: 0x10 0x02 0x00 0x6B 0x00 0x03 0x4a 0x96
// 0x10 - unit id (0)
// 0x02 - function code (1)
// 0x00 0x6B - start address (2,3)
// 0x00 0x03 - discrete inputs quantity to return (4,5)
// 0x4a 0x96 - CRC16 (6,7)
type ReadDiscreteInputsRequestRTU struct {
ReadDiscreteInputsRequest
}
// ReadDiscreteInputsRequest is Request for Read Discrete Inputs (FC=02)
type ReadDiscreteInputsRequest struct {
UnitID uint8
StartAddress uint16
Quantity uint16
}
// NewReadDiscreteInputsRequestTCP creates new instance of Read Discrete Inputs TCP request
func NewReadDiscreteInputsRequestTCP(unitID uint8, startAddress uint16, quantity uint16) (*ReadDiscreteInputsRequestTCP, error) {
if quantity == 0 || quantity > MaxCoilsInReadResponse {
// 2000 coils is due that in response data size field is 1 byte so max 250*8=2000 coils can be returned
return nil, fmt.Errorf("quantity is out of range (1-2000): %v", quantity)
}
return &ReadDiscreteInputsRequestTCP{
MBAPHeader: MBAPHeader{
TransactionID: 1 + rand.N(uint16(65534)), // #nosec G404
ProtocolID: 0,
},
ReadDiscreteInputsRequest: ReadDiscreteInputsRequest{
UnitID: unitID,
// function code is added by Bytes()
StartAddress: startAddress,
Quantity: quantity,
},
}, nil
}
// Bytes returns ReadDiscreteInputsRequestTCP packet as bytes form
func (r ReadDiscreteInputsRequestTCP) Bytes() []byte {
length := uint16(6)
result := make([]byte, tcpMBAPHeaderLen+length)
r.MBAPHeader.bytes(result[0:6], length)
r.ReadDiscreteInputsRequest.bytes(result[6:12])
return result
}
// ExpectedResponseLength returns length of bytes that valid response to this request would be
func (r ReadDiscreteInputsRequestTCP) ExpectedResponseLength() int {
// response = 6 header len + 1 unitid + 1 fc + 1 coil byte count + N data len (1-256)
return 6 + 3 + r.coilByteLength()
}
// ParseReadDiscreteInputsRequestTCP parses given bytes into ReadDiscreteInputsRequestTCP
func ParseReadDiscreteInputsRequestTCP(data []byte) (*ReadDiscreteInputsRequestTCP, error) {
header, err := ParseMBAPHeader(data)
if err != nil {
return nil, err
}
unitID := data[6]
if data[7] != FunctionReadDiscreteInputs {
tmpErr := NewErrorParseTCP(ErrIllegalFunction, "received function code in packet is not 0x02")
tmpErr.Packet.TransactionID = header.TransactionID
tmpErr.Packet.UnitID = unitID
tmpErr.Packet.Function = FunctionReadDiscreteInputs
return nil, tmpErr
}
quantity := binary.BigEndian.Uint16(data[10:12])
if !(quantity >= 1 && quantity <= 125) { // 0x0001 to 0x007D
tmpErr := NewErrorParseTCP(ErrIllegalDataValue, "invalid quantity. valid range 1..125")
tmpErr.Packet.TransactionID = header.TransactionID
tmpErr.Packet.UnitID = unitID
tmpErr.Packet.Function = FunctionReadDiscreteInputs
return nil, tmpErr
}
return &ReadDiscreteInputsRequestTCP{
MBAPHeader: header,
ReadDiscreteInputsRequest: ReadDiscreteInputsRequest{
UnitID: unitID,
// function code = data[7]
StartAddress: binary.BigEndian.Uint16(data[8:10]),
Quantity: quantity,
},
}, nil
}
// NewReadDiscreteInputsRequestRTU creates new instance of Read Discrete Inputs RTU request
func NewReadDiscreteInputsRequestRTU(unitID uint8, startAddress uint16, quantity uint16) (*ReadDiscreteInputsRequestRTU, error) {
if quantity == 0 || quantity > MaxCoilsInReadResponse {
// 2000 coils is due that in response data size field is 1 byte so max 250*8=2000 coils can be returned
return nil, fmt.Errorf("quantity is out of range (1-2000): %v", quantity)
}
return &ReadDiscreteInputsRequestRTU{
ReadDiscreteInputsRequest: ReadDiscreteInputsRequest{
UnitID: unitID,
// function code is added by Bytes()
StartAddress: startAddress,
Quantity: quantity,
},
}, nil
}
// Bytes returns ReadDiscreteInputsRequestRTU packet as bytes form
func (r ReadDiscreteInputsRequestRTU) Bytes() []byte {
result := make([]byte, 6+2)
bytes := r.ReadDiscreteInputsRequest.bytes(result)
crc := CRC16(bytes[:6])
result[6] = uint8(crc)
result[7] = uint8(crc >> 8)
return result
}
// ExpectedResponseLength returns length of bytes that valid response to this request would be
func (r ReadDiscreteInputsRequestRTU) ExpectedResponseLength() int {
// response = 1 UnitID + 1 functionCode + 1 coils byte count + N coils data + 2 CRC
return 3 + r.coilByteLength() + 2
}
// ParseReadDiscreteInputsRequestRTU parses given bytes into ReadDiscreteInputsRequestRTU
func ParseReadDiscreteInputsRequestRTU(data []byte) (*ReadDiscreteInputsRequestRTU, error) {
dLen := len(data)
if dLen != 8 && dLen != 6 { // with or without CRC bytes
return nil, NewErrorParseRTU(ErrServerFailure, "invalid data length to be valid packet")
}
unitID := data[0]
if data[1] != FunctionReadDiscreteInputs {
tmpErr := NewErrorParseRTU(ErrIllegalFunction, "received function code in packet is not 0x02")
tmpErr.Packet.UnitID = unitID
tmpErr.Packet.Function = FunctionReadDiscreteInputs
return nil, tmpErr
}
quantity := binary.BigEndian.Uint16(data[4:6])
if !(quantity >= 1 && quantity <= 125) { // 0x0001 to 0x007D
tmpErr := NewErrorParseRTU(ErrIllegalDataValue, "invalid quantity. valid range 1..125")
tmpErr.Packet.UnitID = unitID
tmpErr.Packet.Function = FunctionReadDiscreteInputs
return nil, tmpErr
}
return &ReadDiscreteInputsRequestRTU{
ReadDiscreteInputsRequest: ReadDiscreteInputsRequest{
UnitID: unitID,
// function code = data[1]
StartAddress: binary.BigEndian.Uint16(data[2:4]),
Quantity: quantity,
},
}, nil
}
// FunctionCode returns function code of this request
func (r ReadDiscreteInputsRequest) FunctionCode() uint8 {
return FunctionReadDiscreteInputs
}
func (r ReadDiscreteInputsRequest) coilByteLength() int {
return int(math.Ceil(float64(r.Quantity) / 8))
}
// Bytes returns ReadDiscreteInputsRequest packet as bytes form
func (r ReadDiscreteInputsRequest) Bytes() []byte {
return r.bytes(make([]byte, 6))
}
func (r ReadDiscreteInputsRequest) bytes(bytes []byte) []byte {
putReadRequestBytes(bytes, r.UnitID, FunctionReadDiscreteInputs, r.StartAddress, r.Quantity)
return bytes
}