unified-push-xmpp/distributor/main.go

42 lines
944 B
Go
Raw Normal View History

2021-09-05 13:31:06 +02:00
package main
import (
2021-09-05 19:20:27 +02:00
"os"
"os/signal"
"syscall"
"github.com/bdlm/log"
"github.com/godbus/dbus/v5"
2021-09-05 13:31:06 +02:00
)
func main() {
2021-09-05 19:20:27 +02:00
conn, err := dbus.ConnectSessionBus()
if err != nil {
log.Panicf("on dbus connection: %v", err)
}
defer conn.Close()
log.Debug("connect to dbus")
rp, err := conn.RequestName(DBUSName, dbus.NameFlagReplaceExisting)
if err != nil {
log.Panicf("register name on dbus: %v", err)
}
if rp != dbus.RequestNameReplyPrimaryOwner {
log.Panicf("a other dbus service is running with %s: %v", DBUSName, rp)
}
log.Debug("register name to dbus")
d := NewDistributor(conn)
if err := conn.ExportAll(d, DBUSDistributorPath, DBUSDistributorInterface); err != nil {
log.Panicf("export distributor on %s: %v", DBUSDistributorPath, err)
}
log.Info("startup")
// Wait for INT/TERM
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
sig := <-sigs
log.Infof("received %s", sig)
2021-09-05 13:31:06 +02:00
}