forked from BellerophonMobile/gonetworkmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
151 lines (126 loc) · 3.31 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
149
150
151
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{}) {
err := d.callError(value, method, args...)
if err != nil {
panic(err)
}
}
func (d *dbusBase) callError(value interface{}, method string, args ...interface{}) error {
return d.obj.Call(method, 0, args...).Store(value)
}
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{} {
variant, err := d.obj.GetProperty(iface)
if err != nil {
panic(err)
}
return variant.Value()
}
func (d *dbusBase) getObjectProperty(iface string) dbus.ObjectPath {
value, ok := d.getProperty(iface).(dbus.ObjectPath)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getSliceObjectProperty(iface string) []dbus.ObjectPath {
value, ok := d.getProperty(iface).([]dbus.ObjectPath)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getStringProperty(iface string) string {
value, ok := d.getProperty(iface).(string)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getSliceStringProperty(iface string) []string {
value, ok := d.getProperty(iface).([]string)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getMapStringVariantProperty(iface string) map[string]dbus.Variant {
value, ok := d.getProperty(iface).(map[string]dbus.Variant)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getUint8Property(iface string) uint8 {
value, ok := d.getProperty(iface).(uint8)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getUint32Property(iface string) uint32 {
value, ok := d.getProperty(iface).(uint32)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getSliceUint32Property(iface string) []uint32 {
value, ok := d.getProperty(iface).([]uint32)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getSliceSliceUint32Property(iface string) [][]uint32 {
value, ok := d.getProperty(iface).([][]uint32)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
func (d *dbusBase) getSliceByteProperty(iface string) []byte {
value, ok := d.getProperty(iface).([]byte)
if !ok {
panic(makeErrVariantType(iface))
}
return value
}
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()
}