1
0
mirror of https://github.com/Luzifer/terraria-docker.git synced 2024-09-16 13:58:28 +00:00

Initial version

This commit is contained in:
Knut Ahlers 2018-06-08 12:22:28 +02:00
commit 966d962eed
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
2 changed files with 104 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
terraria-docker

103
main.go Normal file
View File

@ -0,0 +1,103 @@
package main
import (
"bufio"
"fmt"
"io"
"os"
"os/signal"
"syscall"
"time"
"github.com/Luzifer/rconfig"
log "github.com/sirupsen/logrus"
)
var (
cfg = struct {
FiFoFile string `flag:"fifo" default:"/home/gameserver/terraria_cmd" description:"Path to create the fifo at"`
LogLevel string `flag:"log-level" default:"info" description:"Log level (debug, info, warn, error, fatal)"`
VersionAndExit bool `flag:"version" default:"false" description:"Prints current version and exits"`
}{}
done = make(chan struct{}, 1)
version = "dev"
)
func init() {
if err := rconfig.ParseAndValidate(&cfg); err != nil {
log.Fatalf("Unable to parse commandline options: %s", err)
}
if cfg.VersionAndExit {
fmt.Printf("terraria-docker %s\n", version)
os.Exit(0)
}
if l, err := log.ParseLevel(cfg.LogLevel); err != nil {
log.WithError(err).Fatal("Unable to parse log level")
} else {
log.SetLevel(l)
}
}
func main() {
if err := syscall.Mkfifo(cfg.FiFoFile, 0644); err != nil {
log.WithError(err).Fatal("Unable to create fifo")
}
defer os.Remove(cfg.FiFoFile)
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go handleSignal(sigs)
go inputLoop()
for {
select {
case <-done:
log.Info("Waiting 5s until quit")
<-time.After(5 * time.Second) // Allow some time for terraria to quit gracefully
return
}
}
}
func inputLoop() {
for {
f, err := os.Open(cfg.FiFoFile)
if err != nil {
log.WithError(err).Error("Unable to (re)open fifo, quitting now")
done <- struct{}{}
continue
}
defer f.Close()
scanner := bufio.NewScanner(f)
for scanner.Scan() {
fmt.Println(scanner.Text())
if scanner.Text() == "exit" {
done <- struct{}{}
}
}
switch scanner.Err() {
case nil:
// This is fine
case io.EOF:
// This is fine
default:
log.WithError(err).Error("Unable to read from fifo")
fmt.Println("exit")
done <- struct{}{}
}
}
}
func handleSignal(sigs chan os.Signal) {
sig := <-sigs
log.WithField("signal", sig).Info("Received terminating singal")
fmt.Println("exit")
done <- struct{}{}
}