1
0
Fork 0
mirror of https://github.com/Luzifer/terraria-docker.git synced 2024-11-08 10:40:00 +00:00

Change start method, add "player left" hook

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-07-06 18:21:50 +02:00
parent a2110af59a
commit 11337506b6
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

64
main.go
View file

@ -5,9 +5,10 @@ import (
"fmt"
"io"
"os"
"os/exec"
"os/signal"
"strings"
"syscall"
"time"
"github.com/Luzifer/rconfig"
log "github.com/sirupsen/logrus"
@ -20,8 +21,6 @@ var (
VersionAndExit bool `flag:"version" default:"false" description:"Prints current version and exits"`
}{}
done = make(chan struct{}, 1)
version = "dev"
)
@ -48,38 +47,59 @@ func main() {
}
defer os.Remove(cfg.FiFoFile)
cmd := exec.Command(rconfig.Args()[1], rconfig.Args()[1:]...)
stdin, err := cmd.StdinPipe()
if err != nil {
log.WithError(err).Fatal("Unable to create stdin pipe")
}
// StdIN processing to send commands to Terraria
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
go handleSignal(sigs)
go handleSignal(sigs, stdin)
go inputLoop()
go inputLoop(stdin)
for {
select {
case <-done:
log.Info("Waiting 5s until quit")
<-time.After(5 * time.Second) // Allow some time for terraria to quit gracefully
return
// StdOUT processing to react on log output
stdoutRead, stdoutWrite := io.Pipe()
cmd.Stdout = stdoutWrite
cmd.Stderr = stdoutWrite
go outputLoop(stdoutRead, stdin)
cmd.Run()
}
func outputLoop(in io.Reader, out io.Writer) {
scanner := bufio.NewScanner(in)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
log.Info(line)
if strings.Contains(line, "has left.") {
// A player left the server and after the last player
// left the server will not save anymore so we'll do
// that whenever a player leaves...
fmt.Fprintln(out, "save")
}
}
}
func inputLoop() {
func inputLoop(comm io.Writer) {
for {
f, err := os.Open(cfg.FiFoFile)
if err != nil {
log.WithError(err).Error("Unable to (re)open fifo, quitting now")
done <- struct{}{}
continue
fmt.Fprintln(comm, "exit")
break
}
defer f.Close()
scanner := bufio.NewScanner(f)
for scanner.Scan() {
fmt.Println(scanner.Text())
if scanner.Text() == "exit" {
done <- struct{}{}
}
fmt.Fprintln(comm, scanner.Text())
}
switch scanner.Err() {
@ -89,15 +109,13 @@ func inputLoop() {
// This is fine
default:
log.WithError(err).Error("Unable to read from fifo")
fmt.Println("exit")
done <- struct{}{}
fmt.Fprintln(comm, "exit")
}
}
}
func handleSignal(sigs chan os.Signal) {
func handleSignal(sigs chan os.Signal, comm io.Writer) {
sig := <-sigs
log.WithField("signal", sig).Info("Received terminating singal")
fmt.Println("exit")
done <- struct{}{}
fmt.Fprintln(comm, "exit")
}