mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 14:34:26 +00:00
4276a04f0c
Completely switch to zerolog (Remove usage of logrus and std logger) Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: 6543 <6543@obermui.de>
60 lines
1.2 KiB
Go
60 lines
1.2 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/rpc/proto"
|
|
)
|
|
|
|
// generate protobuffs
|
|
// protoc --go_out=plugins=grpc,import_path=proto:. *.proto
|
|
|
|
type healthClient struct {
|
|
client proto.HealthClient
|
|
conn *grpc.ClientConn
|
|
}
|
|
|
|
// NewGrpcHealthClient returns a new grpc Client.
|
|
func NewGrpcHealthClient(conn *grpc.ClientConn) Health {
|
|
client := new(healthClient)
|
|
client.client = proto.NewHealthClient(conn)
|
|
client.conn = conn
|
|
return client
|
|
}
|
|
|
|
func (c *healthClient) Close() error {
|
|
return c.conn.Close()
|
|
}
|
|
|
|
func (c *healthClient) Check(ctx context.Context) (bool, error) {
|
|
var res *proto.HealthCheckResponse
|
|
var err error
|
|
req := new(proto.HealthCheckRequest)
|
|
|
|
for {
|
|
res, err = c.client.Check(ctx, req)
|
|
if err == nil {
|
|
if res.GetStatus() == proto.HealthCheckResponse_SERVING {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}
|
|
switch status.Code(err) {
|
|
case
|
|
codes.Aborted,
|
|
codes.DataLoss,
|
|
codes.DeadlineExceeded,
|
|
codes.Internal,
|
|
codes.Unavailable:
|
|
// non-fatal errors
|
|
default:
|
|
return false, err
|
|
}
|
|
<-time.After(backoff)
|
|
}
|
|
}
|