This repository has been archived by the owner on Sep 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
utils.go
148 lines (123 loc) · 3.59 KB
/
utils.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
package gonetworkmanager
import (
"encoding/binary"
"fmt"
"net"
"github.com/godbus/dbus"
)
const (
dbusMethodAddMatch = "org.freedesktop.DBus.AddMatch"
)
type dbusBase struct {
conn *dbus.Conn
obj dbus.BusObject
}
func (d *dbusBase) init(iface string, objectPath dbus.ObjectPath) error {
var err error
d.conn, err = dbus.SystemBus()
if err != nil {
return err
}
d.obj = d.conn.Object(iface, objectPath)
return nil
}
func (d *dbusBase) call(value interface{}, method string, args ...interface{}) error {
return d.obj.Call(method, 0, args...).Store(value)
}
func (d *dbusBase) call2(value1 interface{}, value2 interface{}, method string, args ...interface{}) error {
return d.obj.Call(method, 0, args...).Store(value1, value2)
}
func (d *dbusBase) subscribe(iface, member string) {
rule := fmt.Sprintf("type='signal',interface='%s',path='%s',member='%s'",
iface, d.obj.Path(), NetworkManagerInterface)
d.conn.BusObject().Call(dbusMethodAddMatch, 0, rule)
}
func (d *dbusBase) subscribeNamespace(namespace string) {
rule := fmt.Sprintf("type='signal',path_namespace='%s'", namespace)
d.conn.BusObject().Call(dbusMethodAddMatch, 0, rule)
}
func (d *dbusBase) getProperty(iface string) (interface{}, error) {
variant, err := d.obj.GetProperty(iface)
if err != nil {
return nil, err
}
return variant.Value(), nil
}
func (d *dbusBase) getObjectProperty(iface string) (dbus.ObjectPath, error) {
value, err := d.getProperty(iface)
if err != nil {
return "", makeErrVariantType(iface)
}
return value.(dbus.ObjectPath), nil
}
func (d *dbusBase) getSliceObjectProperty(iface string) ([]dbus.ObjectPath, error) {
value, err := d.getProperty(iface)
if err != nil {
return nil, makeErrVariantType(iface)
}
return value.([]dbus.ObjectPath), nil
}
func (d *dbusBase) getStringProperty(iface string) (string, error) {
value, err := d.getProperty(iface)
if err != nil {
return "", makeErrVariantType(iface)
}
return value.(string), nil
}
func (d *dbusBase) getSliceStringProperty(iface string) ([]string, error) {
value, err := d.getProperty(iface)
if err != nil {
return nil, makeErrVariantType(iface)
}
return value.([]string), nil
}
func (d *dbusBase) getMapStringVariantProperty(iface string) (map[string]dbus.Variant, error) {
value, err := d.getProperty(iface)
if err != nil {
return nil, makeErrVariantType(iface)
}
return value.(map[string]dbus.Variant), nil
}
func (d *dbusBase) getUint8Property(iface string) (uint8, error) {
value, err := d.getProperty(iface)
if err != nil {
return 0, makeErrVariantType(iface)
}
return value.(uint8), nil
}
func (d *dbusBase) getUint32Property(iface string) (uint32, error) {
value, err := d.getProperty(iface)
if err != nil {
return 0, makeErrVariantType(iface)
}
return value.(uint32), nil
}
func (d *dbusBase) getSliceUint32Property(iface string) ([]uint32, error) {
value, err := d.getProperty(iface)
if err != nil {
return nil, makeErrVariantType(iface)
}
return value.([]uint32), nil
}
func (d *dbusBase) getSliceSliceUint32Property(iface string) ([][]uint32, error) {
value, err := d.getProperty(iface)
if err != nil {
return nil, makeErrVariantType(iface)
}
return value.([][]uint32), nil
}
func (d *dbusBase) getSliceByteProperty(iface string) ([]byte, error) {
value, err := d.getProperty(iface)
if err != nil {
return nil, makeErrVariantType(iface)
}
return value.([]byte), nil
}
func makeErrVariantType(iface string) error {
return fmt.Errorf("unexpected variant type for '%s'", iface)
}
func ip4ToString(ip uint32) string {
bs := []byte{0, 0, 0, 0}
binary.LittleEndian.PutUint32(bs, ip)
return net.IP(bs).String()
}