From 46e2161195ae30700caf7c0f2f6d928b68402088 Mon Sep 17 00:00:00 2001 From: Herobone Date: Sat, 13 Feb 2021 13:58:34 +0100 Subject: [PATCH] Add timed ping to java --- java_status.go | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/java_status.go b/java_status.go index 3f0ca2e..5bbbe93 100644 --- a/java_status.go +++ b/java_status.go @@ -4,12 +4,13 @@ import ( "context" "flag" "fmt" - "github.com/Raqbit/mc-pinger" - "github.com/google/subcommands" - "github.com/itzg/go-flagsfiller" "log" "os" "time" + + mcpinger "github.com/Raqbit/mc-pinger" + "github.com/google/subcommands" + "github.com/itzg/go-flagsfiller" ) type statusCmd struct { @@ -18,6 +19,7 @@ type statusCmd struct { RetryInterval time.Duration `usage:"if retry-limit is non-zero, status will be retried at this interval" default:"10s"` RetryLimit int `usage:"if non-zero, failed status will be retried this many times before exiting"` + TimeOut time.Duration `usage:"if non-zero, this is the timeout the ping can take as a maximum"` } func (c *statusCmd) Name() string { @@ -41,7 +43,12 @@ func (c *statusCmd) SetFlags(flags *flag.FlagSet) { } func (c *statusCmd) Execute(ctx context.Context, f *flag.FlagSet, args ...interface{}) subcommands.ExitStatus { - pinger := mcpinger.New(c.Host, uint16(c.Port)) + var pinger mcpinger.Pinger + if c.TimeOut > 0 { + pinger = mcpinger.NewTimed(c.Host, uint16(c.Port), c.TimeOut) + } else { + pinger = mcpinger.New(c.Host, uint16(c.Port)) + } if c.RetryInterval <= 0 { c.RetryInterval = 1 * time.Second }