-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwhois.go
54 lines (47 loc) · 1.26 KB
/
whois.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
package encoding
import (
"github.com/NubeDev/bacnet/btypes"
)
func (e *Encoder) WhoIs(low, high int32) error {
apdu := btypes.APDU{
DataType: btypes.UnconfirmedServiceRequest,
UnconfirmedService: btypes.ServiceUnconfirmedWhoIs,
}
e.write(apdu.DataType)
e.write(apdu.UnconfirmedService)
// The range is optional. A scan for all objects is done when either low/high
// are negative or when we are scanning above the max instance
if low >= 0 && high >= 0 && low < btypes.MaxInstance && high <
btypes.MaxInstance {
// Tag 0
e.contextUnsigned(0, uint32(low))
// Tag 1
e.contextUnsigned(1, uint32(high))
}
return e.Error()
}
func (d *Decoder) WhoIs(low, high *int32) error {
// APDU read in a higher level
if d.len() == 0 {
*low = btypes.WhoIsAll
*high = btypes.WhoIsAll
return nil
}
// Tag 0 - Low Value
var expectedTag uint8
tag, _, value := d.tagNumberAndValue()
if tag != expectedTag {
return &ErrorIncorrectTag{Expected: expectedTag, Given: tag}
}
l := d.unsigned(int(value))
*low = int32(l)
// Tag 1 - High Value
expectedTag = 1
tag, _, value = d.tagNumberAndValue()
if tag != expectedTag {
return &ErrorIncorrectTag{Expected: expectedTag, Given: tag}
}
h := d.unsigned(int(value))
*high = int32(h)
return d.Error()
}