nurse/protocols/redis/ping.go

84 lines
1.9 KiB
Go
Raw Normal View History

2022-04-28 16:35:02 +00:00
package redis
import (
"context"
"fmt"
"log/slog"
2022-04-28 16:35:02 +00:00
"github.com/redis/go-redis/v9"
2022-04-28 16:35:02 +00:00
2022-09-22 09:46:36 +00:00
"code.icb4dc0.de/prskr/nurse/check"
"code.icb4dc0.de/prskr/nurse/config"
"code.icb4dc0.de/prskr/nurse/grammar"
"code.icb4dc0.de/prskr/nurse/internal/retry"
2022-09-22 09:46:36 +00:00
"code.icb4dc0.de/prskr/nurse/validation"
2022-04-28 16:35:02 +00:00
)
var _ check.SystemChecker = (*PingCheck)(nil)
2022-04-28 16:35:02 +00:00
type PingCheck struct {
redis.UniversalClient
2022-06-09 20:12:45 +00:00
validators validation.Validator[redis.Cmder]
2022-04-28 16:35:02 +00:00
Message string
}
func (p *PingCheck) Execute(ctx check.Context) error {
logger := slog.Default().With(
slog.String("check", "redis.PING"),
slog.String("msg", p.Message),
)
return retry.Retry(ctx, ctx.AttemptCount(), ctx.AttemptTimeout(), func(ctx context.Context, attempt int) error {
logger.Debug("Execute check", slog.Int("attempt", attempt))
if p.Message == "" {
return p.Ping(ctx).Err()
}
if resp, err := p.Do(ctx, "PING", p.Message).Text(); err != nil {
return err
} else if resp != p.Message {
return fmt.Errorf("expected value %s got %s", p.Message, resp)
}
2022-04-28 16:35:02 +00:00
return nil
})
2022-04-28 16:35:02 +00:00
}
func (p *PingCheck) UnmarshalCheck(c grammar.Check, lookup config.ServerLookup) error {
2022-04-28 16:35:02 +00:00
const (
serverOnlyArgCount = 1
serverAndMessageArgCount = 2
)
val, _ := GenericCommandValidatorFor("PONG")
2022-06-09 20:12:45 +00:00
validators := validation.Chain[redis.Cmder]{}
validators = append(validators, val)
p.validators = validators
2022-04-28 16:35:02 +00:00
init := c.Initiator
switch len(init.Params) {
case 0:
return grammar.ErrMissingServer
case serverAndMessageArgCount:
if msg, err := init.Params[1].AsString(); err != nil {
return err
} else {
val, _ := GenericCommandValidatorFor(msg)
2022-06-09 20:12:45 +00:00
p.validators = validation.Chain[redis.Cmder]{val}
2022-04-28 16:35:02 +00:00
}
fallthrough
case serverOnlyArgCount:
if cli, err := clientFromParam(init.Params[0], lookup); err != nil {
2022-04-28 16:35:02 +00:00
return err
} else {
p.UniversalClient = cli
}
return nil
default:
return grammar.ErrAmbiguousParamCount
}
}