go-waku/library/signals.go

77 lines
2.0 KiB
Go
Raw Normal View History

2023-08-10 13:30:38 +00:00
package library
2022-03-21 23:15:53 +00:00
/*
#include <stddef.h>
2022-03-21 23:15:53 +00:00
#include <stdbool.h>
#include <stdlib.h>
extern bool ServiceSignalEvent(void *cb, const char *jsonEvent);
2022-03-21 23:15:53 +00:00
*/
import "C"
2022-03-21 23:15:53 +00:00
import (
"encoding/json"
"fmt"
"unsafe"
)
// MobileSignalHandler is a simple callback function that gets called when any signal is received
2022-03-21 23:15:53 +00:00
type MobileSignalHandler func([]byte)
// storing the current mobile signal handler here
var mobileSignalHandler MobileSignalHandler
// signalEnvelope is a general signal sent upward from node to app
type signalEnvelope struct {
2022-04-03 00:22:42 +00:00
Type string `json:"type"`
Event interface{} `json:"event"`
2022-03-21 23:15:53 +00:00
}
// NewEnvelope creates new envlope of given type and event payload.
func newEnvelope(signalType string, event interface{}) *signalEnvelope {
return &signalEnvelope{
2022-04-03 00:22:42 +00:00
Type: signalType,
Event: event,
2022-03-21 23:15:53 +00:00
}
}
// send sends application signal (in JSON) upwards to application (via default notification handler)
func send(instance *WakuInstance, signalType string, event interface{}) {
signal := newEnvelope(signalType, event)
2022-03-21 23:15:53 +00:00
data, err := json.Marshal(&signal)
if err != nil {
fmt.Println("marshal signal error", err)
return
}
// If a Go implementation of signal handler is set, let's use it.
if instance.mobileSignalHandler != nil {
instance.mobileSignalHandler(data)
2022-03-21 23:15:53 +00:00
} else {
// ...and fallback to C implementation otherwise.
2023-08-10 13:30:38 +00:00
dataStr := string(data)
str := C.CString(dataStr)
C.ServiceSignalEvent(instance.cb, str)
2022-03-21 23:15:53 +00:00
C.free(unsafe.Pointer(str))
}
}
// SetEventCallback is to set a callback in order to receive application
// signals which are used to react to asynchronous events in waku.
func SetEventCallback(instance *WakuInstance, cb unsafe.Pointer) {
if err := validateInstance(instance, None); err != nil {
panic(err.Error())
}
instance.cb = cb
2022-03-21 23:15:53 +00:00
}
// SetMobileSignalHandler sets the callback to be executed when a signal
// is received in a mobile device
func SetMobileSignalHandler(instance *WakuInstance, m MobileSignalHandler) {
if err := validateInstance(instance, None); err != nil {
panic(err.Error())
}
instance.mobileSignalHandler = m
}