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 152 153 154 155 156 157 158 159 160
|
package service
import (
"fmt"
"github.com/godbus/dbus/v5"
"github.com/muka/go-bluetooth/api"
"github.com/muka/go-bluetooth/bluez"
"github.com/muka/go-bluetooth/bluez/profile/gatt"
log "github.com/sirupsen/logrus"
)
type Service struct {
UUID string
app *App
path dbus.ObjectPath
Properties *gatt.GattService1Properties
chars map[dbus.ObjectPath]*Char
iprops *api.DBusProperties
}
func (s *Service) DBusProperties() *api.DBusProperties {
return s.iprops
}
func (s *Service) Path() dbus.ObjectPath {
return s.path
}
func (s *Service) Interface() string {
return gatt.GattService1Interface
}
func (s *Service) GetProperties() bluez.Properties {
chars := []dbus.ObjectPath{}
for cpath := range s.chars {
chars = append(chars, cpath)
}
s.Properties.Characteristics = chars
return s.Properties
}
func (s *Service) App() *App {
return s.app
}
func (s *Service) DBusObjectManager() *api.DBusObjectManager {
return s.App().DBusObjectManager()
}
func (s *Service) DBusConn() *dbus.Conn {
return s.App().DBusConn()
}
// Expose service to dbus
func (s *Service) Expose() error {
return api.ExposeDBusService(s)
}
// Remove service from dbus
func (s *Service) Remove() error {
return api.RemoveDBusService(s)
}
func (s *Service) GetChars() map[dbus.ObjectPath]*Char {
return s.chars
}
// NewChar Create a new characteristic
func (s *Service) NewChar(uuid string) (*Char, error) {
char := new(Char)
char.UUID = s.App().GenerateUUID(uuid)
char.path = dbus.ObjectPath(
fmt.Sprintf("%s/char%d", s.Path(), len(s.GetChars())),
)
char.app = s.App()
char.service = s
char.descr = make(map[dbus.ObjectPath]*Descr)
char.Properties = NewGattCharacteristic1Properties(char.UUID)
iprops, err := api.NewDBusProperties(s.App().DBusConn())
if err != nil {
return nil, err
}
char.iprops = iprops
return char, nil
}
func (s *Service) AddChar(char *Char) error {
s.chars[char.Path()] = char
err := api.ExposeDBusService(char)
if err != nil {
return err
}
err = s.DBusObjectManager().AddObject(char.Path(), map[string]bluez.Properties{
char.Interface(): char.GetProperties(),
})
if err != nil {
return err
}
// update OM service rapresentation also
err = s.DBusObjectManager().AddObject(s.Path(), map[string]bluez.Properties{
s.Interface(): s.GetProperties(),
})
if err != nil {
return err
}
log.Tracef("Added GATT Characteristic UUID=%s %s", char.UUID, char.Path())
err = s.App().ExportTree()
return err
}
// RemoveChar remove a characteristic from the service
func (s *Service) RemoveChar(char *Char) error {
// todo unregister properties
if _, ok := s.chars[char.Path()]; !ok {
return nil
}
for _, descr := range char.GetDescr() {
err := char.RemoveDescr(descr)
if err != nil {
return err
}
}
// remove the char from the three
err := s.DBusObjectManager().RemoveObject(s.Path())
if err != nil {
return err
}
// update OM service rapresentation also
err = s.DBusObjectManager().AddObject(s.Path(), map[string]bluez.Properties{
s.Interface(): s.GetProperties(),
})
if err != nil {
return err
}
// err = s.ExportTree()
// if err != nil {
// return err
// }
delete(s.chars, char.Path())
return nil
}
|