2022-09-20 09:24:59 +03:00
|
|
|
/*
|
|
|
|
DESCRIPTION
|
|
|
|
vidforward is a service for receiving video from cameras and then forwarding to
|
2022-09-28 07:00:30 +03:00
|
|
|
youtube. By acting as the RTMP encoder (instead of the camera) vidforward can enable
|
2022-09-20 09:24:59 +03:00
|
|
|
persistent streams by sending slate images during camera downtime.
|
|
|
|
|
|
|
|
AUTHORS
|
|
|
|
Saxon A. Nelson-Milton <saxon@ausocean.org>
|
|
|
|
|
|
|
|
LICENSE
|
|
|
|
Copyright (C) 2022 the Australian Ocean Lab (AusOcean)
|
|
|
|
|
|
|
|
It is free software: you can redistribute it and/or modify them
|
|
|
|
under the terms of the GNU General Public License as published by the
|
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
|
|
|
|
*/
|
|
|
|
|
2022-09-09 04:54:29 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-09-14 10:44:35 +03:00
|
|
|
"encoding/json"
|
2022-09-28 07:00:30 +03:00
|
|
|
"errors"
|
2022-09-09 04:54:29 +03:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"sync"
|
2022-11-19 08:05:39 +03:00
|
|
|
"time"
|
2022-09-09 04:54:29 +03:00
|
|
|
|
2023-01-11 01:31:38 +03:00
|
|
|
"bitbucket.org/ausocean/av/cmd/vidforward/global"
|
2022-09-09 04:54:29 +03:00
|
|
|
"bitbucket.org/ausocean/av/codec/codecutil"
|
|
|
|
"bitbucket.org/ausocean/av/container/mts"
|
|
|
|
"bitbucket.org/ausocean/av/revid"
|
|
|
|
"bitbucket.org/ausocean/av/revid/config"
|
|
|
|
"bitbucket.org/ausocean/utils/logging"
|
|
|
|
"gopkg.in/natefinch/lumberjack.v2"
|
|
|
|
)
|
|
|
|
|
2022-09-20 09:24:59 +03:00
|
|
|
// Server defaults.
|
2022-09-09 04:54:29 +03:00
|
|
|
const (
|
|
|
|
defaultPort = "8080"
|
|
|
|
defaultHost = ""
|
|
|
|
)
|
|
|
|
|
|
|
|
// Logging configuration.
|
|
|
|
const (
|
2022-11-19 08:05:39 +03:00
|
|
|
logPath = "/var/log/vidforward/vidforward.log"
|
2022-09-09 04:54:29 +03:00
|
|
|
logMaxSize = 500 // MB
|
|
|
|
logMaxBackup = 10
|
|
|
|
logMaxAge = 28 // days
|
|
|
|
logVerbosity = logging.Info
|
2022-11-19 08:05:39 +03:00
|
|
|
logSuppress = true
|
2022-09-09 04:54:29 +03:00
|
|
|
)
|
|
|
|
|
2022-11-19 08:05:39 +03:00
|
|
|
// recvErrorDelay is a delay used when there's recv issues. It is intended to
|
|
|
|
// prevent spamming from a single client.
|
|
|
|
const recvErrorDelay = 7 * time.Second
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
type MAC string
|
2022-09-09 04:54:29 +03:00
|
|
|
|
2023-01-11 01:31:38 +03:00
|
|
|
// The possible states for a broadcast.
|
|
|
|
const (
|
|
|
|
statusActive = "active"
|
|
|
|
statusSlate = "slate"
|
|
|
|
statusCreate = "create"
|
|
|
|
statusPlay = "play"
|
|
|
|
)
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// Broadcast is representative of a broadcast to be forwarded.
|
|
|
|
type Broadcast struct {
|
2023-01-11 01:31:38 +03:00
|
|
|
mac MAC // MAC address of the device from which the video is being received.
|
|
|
|
url string // The destination youtube RTMP URL.
|
|
|
|
status string // The broadcast status i.e. active or slate.
|
|
|
|
rv *revid.Revid // The revid pipeline which will handle forwarding to youtube.
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// broadcastManager manages a map of Broadcasts we expect to be forwarding video
|
|
|
|
// for. The broadcastManager is communicated with through a series of HTTP request
|
|
|
|
// handlers. There is a basic REST API through which we can add/delete broadcasts,
|
|
|
|
// and a recv handler which is invoked when a camera wishes to get its video
|
|
|
|
// forwarded to youtube.
|
|
|
|
type broadcastManager struct {
|
2022-11-19 08:05:39 +03:00
|
|
|
broadcasts map[MAC]Broadcast
|
|
|
|
slateExitSignals map[MAC]chan struct{} // Used to signal to stop writing slate image.
|
|
|
|
log logging.Logger
|
2022-11-27 02:52:57 +03:00
|
|
|
dogNotifier *watchdogNotifier
|
2022-11-19 08:05:39 +03:00
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
// newBroadcastManager returns a new broadcastManager with the provided logger.
|
2022-11-27 02:52:57 +03:00
|
|
|
func newBroadcastManager(l logging.Logger) (*broadcastManager, error) {
|
|
|
|
m := &broadcastManager{
|
|
|
|
log: l,
|
|
|
|
broadcasts: make(map[MAC]Broadcast),
|
|
|
|
slateExitSignals: make(map[MAC]chan struct{}),
|
|
|
|
}
|
2023-01-11 01:31:38 +03:00
|
|
|
notifier, err := newWatchdogNotifier(l, terminationCallback(m))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
m.dogNotifier = notifier
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// terminationCallback provides a callback that saves the provided
|
|
|
|
// broadcastManagers state.
|
|
|
|
func terminationCallback(m *broadcastManager) func() {
|
|
|
|
return func() {
|
2022-11-27 02:52:57 +03:00
|
|
|
err := m.save()
|
|
|
|
if err != nil {
|
|
|
|
m.log.Error("could not save on notifier termination signal", "error", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
m.log.Info("successfully saved broadcast manager state on termination signal")
|
|
|
|
}
|
2022-09-28 07:00:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// recvHandler handles recv requests for video forwarding. The MAC is firstly
|
2022-09-20 09:24:59 +03:00
|
|
|
// checked to ensure it is "active" i.e. should be sending data, and then the
|
|
|
|
// video is extracted from the request body and provided to the revid pipeline
|
|
|
|
// corresponding to said MAC.
|
2022-09-28 07:00:30 +03:00
|
|
|
// Clips of MPEG-TS h264 are the only accepted format and codec.
|
|
|
|
func (m *broadcastManager) recv(w http.ResponseWriter, r *http.Request) {
|
2022-11-27 02:52:57 +03:00
|
|
|
done := m.dogNotifier.handlerInvoked("recv")
|
|
|
|
defer done()
|
|
|
|
|
2022-09-09 04:54:29 +03:00
|
|
|
q := r.URL.Query()
|
2022-09-28 07:00:30 +03:00
|
|
|
ma := MAC(q.Get("ma"))
|
2022-09-09 04:54:29 +03:00
|
|
|
|
2022-11-19 08:05:39 +03:00
|
|
|
if !m.isActive(ma) {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "forward request mac is not mapped, doing nothing", "mac", ma)
|
2022-11-19 08:05:39 +03:00
|
|
|
time.Sleep(recvErrorDelay)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// We can't receive video if we're in slate mode.
|
2023-01-11 01:31:38 +03:00
|
|
|
if m.getStatus(ma) == statusSlate {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "cannot receive video for this mac, status is slate", "mac", ma)
|
2022-11-19 08:05:39 +03:00
|
|
|
time.Sleep(recvErrorDelay)
|
2022-09-09 04:54:29 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const videoPin = "V0"
|
2022-09-28 07:00:30 +03:00
|
|
|
sizeStr := q.Get(videoPin)
|
|
|
|
size, err := strconv.Atoi(sizeStr)
|
|
|
|
if err != nil || size <= 0 {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "invalid video size", "error", err, "size str", sizeStr)
|
2022-09-09 04:54:29 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// Prepare HTTP response with received video size and device mac.
|
2022-09-14 10:44:35 +03:00
|
|
|
resp := map[string]interface{}{"ma": ma, "V0": size}
|
|
|
|
|
2022-09-09 04:54:29 +03:00
|
|
|
mtsClip, err := io.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "could not read forward request body", "error", err)
|
2022-09-09 04:54:29 +03:00
|
|
|
return
|
|
|
|
}
|
2022-09-20 09:24:59 +03:00
|
|
|
defer r.Body.Close()
|
2022-09-09 04:54:29 +03:00
|
|
|
|
|
|
|
if len(mtsClip)%mts.PacketSize != 0 {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "invalid clip length", "length", len(mtsClip))
|
2022-09-09 04:54:29 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// Extract the pure h264 from the MPEG-TS clip.
|
2022-09-09 04:54:29 +03:00
|
|
|
h264Clip, err := mts.Extract(mtsClip)
|
|
|
|
if err != nil {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "could not extract m.264 from the MPEG-TS clip", "error", err)
|
2022-09-09 04:54:29 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
rv := m.getPipeline(ma)
|
|
|
|
if r == nil {
|
|
|
|
panic(fmt.Sprintf("no revid pipeline for mac address: %s", ma))
|
|
|
|
}
|
|
|
|
|
2022-09-09 04:54:29 +03:00
|
|
|
for i, frame := range h264Clip.Frames() {
|
|
|
|
_, err := rv.Write(frame.Media)
|
|
|
|
if err != nil {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "could not write frame", "no.", i, "error", err)
|
2022-09-09 04:54:29 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2022-09-14 10:44:35 +03:00
|
|
|
|
2022-09-20 09:24:59 +03:00
|
|
|
// Return response to client as JSON.
|
2022-09-14 10:44:35 +03:00
|
|
|
jsn, err := json.Marshal(resp)
|
|
|
|
if err != nil {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "could not get json for response", "error", err)
|
2022-09-14 10:44:35 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Fprint(w, string(jsn))
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// control handles control API requests.
|
|
|
|
func (m *broadcastManager) control(w http.ResponseWriter, r *http.Request) {
|
2022-11-27 02:52:57 +03:00
|
|
|
done := m.dogNotifier.handlerInvoked("control")
|
|
|
|
defer done()
|
|
|
|
|
2022-11-19 08:05:39 +03:00
|
|
|
m.log.Info("control request", "method", r.Method)
|
2022-09-28 07:00:30 +03:00
|
|
|
switch r.Method {
|
|
|
|
case http.MethodPut:
|
|
|
|
m.processRequest(w, r, m.createOrUpdate)
|
|
|
|
case http.MethodDelete:
|
|
|
|
m.processRequest(w, r, m.delete)
|
|
|
|
default:
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "unhandled http method", "method", r.Method)
|
2022-09-28 07:00:30 +03:00
|
|
|
}
|
|
|
|
}
|
2022-09-20 09:24:59 +03:00
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// processRequest unmarshals the broadcast data object from the request into
|
|
|
|
// a Broadcast value, and then performs the provided action with that value.
|
|
|
|
func (m *broadcastManager) processRequest(w http.ResponseWriter, r *http.Request, action func(Broadcast) error) {
|
|
|
|
body, err := io.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "could not read request body", "body", r.Body)
|
2022-09-28 07:00:30 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
defer r.Body.Close()
|
2022-09-20 09:24:59 +03:00
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
var broadcast Broadcast
|
|
|
|
err = json.Unmarshal(body, &broadcast)
|
|
|
|
if err != nil {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "could not marshal data", "error", err)
|
2022-09-28 07:00:30 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
err = action(broadcast)
|
|
|
|
if err != nil {
|
2022-11-27 02:27:39 +03:00
|
|
|
m.errorLogWrite(m.log, w, "could not perform action", "method", r.Method, "error", err)
|
2022-09-20 09:24:59 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// getPipeline gets the revid pipeline corresponding to a provided device MAC.
|
|
|
|
func (m *broadcastManager) getPipeline(ma MAC) *revid.Revid {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
v, ok := m.broadcasts[ma]
|
2022-09-09 04:54:29 +03:00
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
2023-01-11 01:31:38 +03:00
|
|
|
return v.rv
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
|
|
|
|
2022-11-19 08:05:39 +03:00
|
|
|
// getStatus gets the broadcast's status corresponding to the provided MAC.
|
|
|
|
func (m *broadcastManager) getStatus(ma MAC) string {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
v, ok := m.broadcasts[ma]
|
|
|
|
if !ok {
|
|
|
|
return ""
|
|
|
|
}
|
2023-01-11 01:31:38 +03:00
|
|
|
return v.status
|
2022-11-19 08:05:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// isActive returns true if a MAC is registered to the broadcast manager.
|
|
|
|
func (m *broadcastManager) isActive(ma MAC) bool {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
_, ok := m.broadcasts[ma]
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// createOrUpdate creates or updates a Broadcast record. The revid pipeline
|
|
|
|
// corresponding to the broadcast MAC is firsty configured/re-configured, and
|
|
|
|
// the pipeline is "started", which will ready it for receiving video on its
|
|
|
|
// input. In the case that the status is "slate", we will spin up a routine to
|
|
|
|
// handle writing a slate image to the pipeline.
|
|
|
|
func (m *broadcastManager) createOrUpdate(broadcast Broadcast) error {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
|
2022-09-09 04:54:29 +03:00
|
|
|
cfg := config.Config{
|
2022-09-28 07:00:30 +03:00
|
|
|
Logger: m.log,
|
2022-09-09 04:54:29 +03:00
|
|
|
Input: config.InputManual,
|
2022-09-20 09:24:59 +03:00
|
|
|
InputCodec: codecutil.H264_AU,
|
2022-09-14 10:44:35 +03:00
|
|
|
Outputs: []uint8{config.OutputRTMP},
|
2023-01-11 01:31:38 +03:00
|
|
|
RTMPURL: broadcast.url,
|
2022-09-14 10:44:35 +03:00
|
|
|
LogLevel: logging.Debug,
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
var err error
|
2023-01-11 01:31:38 +03:00
|
|
|
broadcast.rv, err = revid.New(cfg, nil)
|
2022-09-09 04:54:29 +03:00
|
|
|
if err != nil {
|
2022-09-28 07:00:30 +03:00
|
|
|
return fmt.Errorf("could not initialise revid: %w", err)
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
2022-09-28 07:00:30 +03:00
|
|
|
|
2023-01-11 01:31:38 +03:00
|
|
|
m.broadcasts[broadcast.mac] = broadcast
|
|
|
|
err = broadcast.rv.Start()
|
2022-09-14 10:44:35 +03:00
|
|
|
if err != nil {
|
2022-09-28 07:00:30 +03:00
|
|
|
return fmt.Errorf("could not start revid pipeline: %w", err)
|
2022-09-14 10:44:35 +03:00
|
|
|
}
|
2022-09-09 04:54:29 +03:00
|
|
|
|
2023-01-11 01:31:38 +03:00
|
|
|
switch broadcast.status {
|
2023-02-08 09:45:30 +03:00
|
|
|
case statusActive, statusPlay, statusCreate:
|
2023-02-16 02:47:11 +03:00
|
|
|
m.log.Info("updating configuration for mac", "mac", broadcast.mac)
|
2023-01-11 01:31:38 +03:00
|
|
|
signal, ok := m.slateExitSignals[broadcast.mac]
|
2022-11-19 08:05:39 +03:00
|
|
|
if ok {
|
|
|
|
close(signal)
|
2023-01-11 01:31:38 +03:00
|
|
|
delete(m.slateExitSignals, broadcast.mac)
|
2022-11-19 08:05:39 +03:00
|
|
|
}
|
2023-01-11 01:31:38 +03:00
|
|
|
case statusSlate:
|
2023-02-08 09:45:30 +03:00
|
|
|
m.log.Info("slate request")
|
2022-11-19 08:05:39 +03:00
|
|
|
// If there's a signal channel it means that we're already writing the slate
|
|
|
|
// image and theres nothing to do, so return.
|
2023-01-11 01:31:38 +03:00
|
|
|
_, ok := m.slateExitSignals[broadcast.mac]
|
2022-11-19 08:05:39 +03:00
|
|
|
if ok {
|
|
|
|
m.log.Warning("already writing slate")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// First create a signal that can be used to stop the slate writing routine.
|
|
|
|
// This will be provided to the writeSlate routine below.
|
|
|
|
signalCh := make(chan struct{})
|
2023-01-11 01:31:38 +03:00
|
|
|
m.slateExitSignals[broadcast.mac] = signalCh
|
|
|
|
|
|
|
|
err = writeSlateAndCheckErrors(broadcast.rv, signalCh, m.log)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-11-19 08:05:39 +03:00
|
|
|
}
|
|
|
|
default:
|
2023-01-11 01:31:38 +03:00
|
|
|
return fmt.Errorf("unknown status string: %s", broadcast.status)
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
2022-09-28 07:00:30 +03:00
|
|
|
return nil
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
|
|
|
|
2022-09-28 07:00:30 +03:00
|
|
|
// delete removes a broadcast from the record.
|
|
|
|
func (m *broadcastManager) delete(broadcast Broadcast) error {
|
|
|
|
m.mu.Lock()
|
2023-01-11 01:31:38 +03:00
|
|
|
b, ok := m.broadcasts[broadcast.mac]
|
2022-09-28 07:00:30 +03:00
|
|
|
if !ok {
|
|
|
|
return errors.New("no broadcast by that mac in record")
|
|
|
|
}
|
2023-01-11 01:31:38 +03:00
|
|
|
b.rv.Stop()
|
|
|
|
delete(m.broadcasts, broadcast.mac)
|
2022-09-28 07:00:30 +03:00
|
|
|
m.mu.Unlock()
|
|
|
|
return nil
|
2022-09-09 04:54:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2022-09-28 07:00:30 +03:00
|
|
|
host := flag.String("host", defaultHost, "Host IP to run video forwarder on.")
|
2022-09-09 04:54:29 +03:00
|
|
|
port := flag.String("port", defaultPort, "Port to run video forwarder on.")
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
if *host == "" || net.ParseIP(*host) == nil {
|
|
|
|
panic(fmt.Sprintf("invalid host, host: %s", *host))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create lumberjack logger to handle logging to file.
|
|
|
|
fileLog := &lumberjack.Logger{
|
|
|
|
Filename: logPath,
|
|
|
|
MaxSize: logMaxSize,
|
|
|
|
MaxBackups: logMaxBackup,
|
|
|
|
MaxAge: logMaxAge,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create logger that we call methods on to log, which in turn writes to the
|
|
|
|
// lumberjack and netloggers.
|
2023-01-11 01:31:38 +03:00
|
|
|
log := logging.New(logVerbosity, io.MultiWriter(fileLog), logSuppress)
|
|
|
|
|
|
|
|
global.SetLogger(log)
|
2022-09-09 04:54:29 +03:00
|
|
|
|
2022-11-27 02:52:57 +03:00
|
|
|
m, err := newBroadcastManager(log)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal("could not create new broadcast manager", "error", err)
|
|
|
|
}
|
2023-02-16 02:47:11 +03:00
|
|
|
|
|
|
|
// Try to load any previous state. There may be a previous state if the
|
|
|
|
// watchdog did a process restart.
|
|
|
|
err = m.load()
|
|
|
|
if err != nil {
|
|
|
|
log.Warning("could not load previous state", "error", err)
|
|
|
|
}
|
|
|
|
|
2022-11-27 02:52:57 +03:00
|
|
|
http.HandleFunc("/recv", m.recv)
|
|
|
|
http.HandleFunc("/control", m.control)
|
|
|
|
|
|
|
|
go m.dogNotifier.notify()
|
|
|
|
|
2023-02-08 09:45:30 +03:00
|
|
|
log.Info("listening", "host", *host, "port", *port)
|
2022-09-09 04:54:29 +03:00
|
|
|
http.ListenAndServe(*host+":"+*port, nil)
|
|
|
|
}
|