hci: implement Characteristic WriteHandler

Signed-off-by: deadprogram <ron@hybridgroup.com>
This commit is contained in:
deadprogram 2024-01-27 18:38:40 +01:00 committed by BCG
parent 3e90718eb8
commit 9a53d2a327
2 changed files with 40 additions and 3 deletions

View file

@ -22,6 +22,7 @@ type hciAdapter struct {
connectedDevices []Device connectedDevices []Device
notificationsStarted bool notificationsStarted bool
charWriteHandlers []charWriteHandler
} }
func (a *hciAdapter) enable() error { func (a *hciAdapter) enable() error {
@ -174,3 +175,23 @@ func (a *hciAdapter) findConnection(handle uint16) Device {
return Device{} return Device{}
} }
// charWriteHandler contains a handler->callback mapping for characteristic
// writes.
type charWriteHandler struct {
handle uint16
callback func(connection Connection, offset int, value []byte)
}
// getCharWriteHandler returns a characteristic write handler if one matches the
// handle, or nil otherwise.
func (a *Adapter) getCharWriteHandler(handle uint16) *charWriteHandler {
for i := range a.charWriteHandlers {
h := &a.charWriteHandlers[i]
if h.handle == handle {
return h
}
}
return nil
}

View file

@ -53,6 +53,16 @@ func (a *Adapter) AddService(service *Service) error {
service.Characteristics[i].Handle.value = service.Characteristics[i].Value service.Characteristics[i].Handle.value = service.Characteristics[i].Value
} }
if (service.Characteristics[i].Flags.Write() ||
service.Characteristics[i].Flags.WriteWithoutResponse()) &&
service.Characteristics[i].WriteEvent != nil {
handlers := append(a.charWriteHandlers, charWriteHandler{
handle: valueHandle,
callback: service.Characteristics[i].WriteEvent,
})
a.charWriteHandlers = handlers
}
if debug { if debug {
println("added characteristic", charHandle, valueHandle, service.Characteristics[i].UUID.String()) println("added characteristic", charHandle, valueHandle, service.Characteristics[i].UUID.String())
} }
@ -71,11 +81,17 @@ func (a *Adapter) AddService(service *Service) error {
// Write replaces the characteristic value with a new value. // Write replaces the characteristic value with a new value.
func (c *Characteristic) Write(p []byte) (n int, err error) { func (c *Characteristic) Write(p []byte) (n int, err error) {
if !c.permissions.Notify() { if !(c.permissions.Write() || c.permissions.WriteWithoutResponse() ||
return 0, errNoNotify c.permissions.Notify() || c.permissions.Indicate()) {
return 0, errNoWrite
} }
c.value = append([]byte{}, p...) hdl := c.adapter.getCharWriteHandler(c.handle)
if hdl != nil {
hdl.callback(Connection(c.handle), 0, p)
}
copy(c.value, p)
if c.cccd&0x01 != 0 { if c.cccd&0x01 != 0 {
// send notification // send notification