-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathreadprop.go
77 lines (73 loc) · 2.01 KB
/
readprop.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
package bacnet
import (
"context"
"fmt"
"github.com/NubeDev/bacnet/btypes"
"github.com/NubeDev/bacnet/encoding"
"log"
"time"
)
// ReadProperty reads a single property from a single object in the given device.
func (c *client) ReadProperty(device btypes.Device, rp btypes.PropertyData) (btypes.PropertyData, error) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
id, err := c.tsm.ID(ctx)
if err != nil {
return btypes.PropertyData{}, fmt.Errorf("unable to get an transaction id: %v", err)
}
defer c.tsm.Put(id)
enc := encoding.NewEncoder()
device.Addr.SetLength()
npdu := &btypes.NPDU{
Version: btypes.ProtocolVersion,
Destination: &device.Addr,
Source: c.dataLink.GetMyAddress(),
IsNetworkLayerMessage: false,
ExpectingReply: true,
Priority: btypes.Normal,
HopCount: btypes.DefaultHopCount,
}
enc.NPDU(npdu)
err = enc.ReadProperty(uint8(id), rp)
if enc.Error() != nil || err != nil {
return btypes.PropertyData{}, err
}
// the value filled doesn't matter. it just needs to be non nil
err = fmt.Errorf("go")
for count := 0; err != nil && count < retryCount; count++ {
var b []byte
var out btypes.PropertyData
_, err = c.Send(device.Addr, npdu, enc.Bytes(), nil)
if err != nil {
log.Print(err)
continue
}
var raw interface{}
raw, err = c.tsm.Receive(id, time.Duration(5)*time.Second)
if err != nil {
continue
}
switch v := raw.(type) {
case error:
return out, v
case []byte:
b = v
default:
return out, fmt.Errorf("received unknown datatype %T", raw)
}
dec := encoding.NewDecoder(b)
var apdu btypes.APDU
if err = dec.APDU(&apdu); err != nil {
continue
}
if apdu.Error.Class != 0 || apdu.Error.Code != 0 {
err = fmt.Errorf("received error, class: %d, code: %d", apdu.Error.Class, apdu.Error.Code)
continue
}
if err = dec.ReadProperty(&out); err != nil {
continue
}
return out, dec.Error()
}
return btypes.PropertyData{}, err
}