forked from alexbeltran/gobacnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
writeprop.go
76 lines (66 loc) · 1.61 KB
/
writeprop.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
package gobacnet
import (
"context"
"fmt"
"time"
"github.com/alexbeltran/gobacnet/encoding"
bactype "github.com/alexbeltran/gobacnet/types"
)
func (c *Client) WriteProperty(dest bactype.Device, wp bactype.ReadPropertyData, priority uint) error {
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
id, err := c.tsm.ID(ctx)
if err != nil {
return fmt.Errorf("unable to get an transaction id: %v", err)
}
defer c.tsm.Put(id)
udp, err := c.localUDPAddress()
if err != nil {
return err
}
src := bactype.UDPToAddress(udp)
enc := encoding.NewEncoder()
enc.NPDU(bactype.NPDU{
Version: bactype.ProtocolVersion,
Destination: &dest.Addr,
Source: &src,
IsNetworkLayerMessage: false,
ExpectingReply: true,
Priority: bactype.Normal,
HopCount: bactype.DefaultHopCount,
})
enc.WriteProperty(uint8(id), wp, priority)
if enc.Error() != nil {
return err
}
// the value filled doesn't matter. it just needs to be non nil
err = fmt.Errorf("go")
for count := 0; err != nil && count < 2; count++ {
var b []byte
var raw interface{}
_, err = c.send(dest.Addr, enc.Bytes())
if err != nil {
continue
}
raw, err = c.tsm.Receive(id, time.Duration(5)*time.Second)
if err != nil {
continue
}
switch v := raw.(type) {
case error:
return err
case []byte:
b = v
default:
return fmt.Errorf("received unknown datatype %T", raw)
}
dec := encoding.NewDecoder(b)
var apdu bactype.APDU
dec.APDU(&apdu)
if err = dec.Error(); err != nil {
continue
}
return err
}
return err
}