drone/gitrpc/client.go

83 lines
2.5 KiB
Go

// Copyright 2022 Harness Inc. All rights reserved.
// Use of this source code is governed by the Polyform Free Trial License
// that can be found in the LICENSE.md file for this repository.
package gitrpc
import (
"fmt"
"time"
"github.com/harness/gitness/gitrpc/rpc"
"google.golang.org/grpc"
"google.golang.org/grpc/backoff"
"google.golang.org/grpc/credentials/insecure"
)
type Client struct {
conn *grpc.ClientConn
repoService rpc.RepositoryServiceClient
refService rpc.ReferenceServiceClient
httpService rpc.SmartHTTPServiceClient
commitFilesService rpc.CommitFilesServiceClient
diffService rpc.DiffServiceClient
mergeService rpc.MergeServiceClient
blameService rpc.BlameServiceClient
pushService rpc.PushServiceClient
}
func New(config Config) (*Client, error) {
if err := config.Validate(); err != nil {
return nil, fmt.Errorf("provided config is invalid: %w", err)
}
// create interceptors
logIntc := NewClientLogInterceptor()
// preparate all grpc options
grpcOpts := []grpc.DialOption{
grpc.WithDefaultServiceConfig(fmt.Sprintf(`{"loadBalancingPolicy":"%s"}`, config.LoadBalancingPolicy)),
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithChainUnaryInterceptor(
logIntc.UnaryClientInterceptor(),
),
grpc.WithChainStreamInterceptor(
logIntc.StreamClientInterceptor(),
),
grpc.WithConnectParams(
grpc.ConnectParams{
// This config optimizes for connection recovery instead of load reduction.
// NOTE: we only expect limited number of internal clients, thus low number of connections.
Backoff: backoff.Config{
BaseDelay: 100 * time.Millisecond,
Multiplier: 1.6, // same as default
Jitter: 0.2, // same as default
MaxDelay: time.Second,
},
},
),
}
conn, err := grpc.Dial(config.Addr, grpcOpts...)
if err != nil {
return nil, err
}
return NewWithConn(conn), nil
}
func NewWithConn(conn *grpc.ClientConn) *Client {
return &Client{
conn: conn,
repoService: rpc.NewRepositoryServiceClient(conn),
refService: rpc.NewReferenceServiceClient(conn),
httpService: rpc.NewSmartHTTPServiceClient(conn),
commitFilesService: rpc.NewCommitFilesServiceClient(conn),
diffService: rpc.NewDiffServiceClient(conn),
mergeService: rpc.NewMergeServiceClient(conn),
blameService: rpc.NewBlameServiceClient(conn),
pushService: rpc.NewPushServiceClient(conn),
}
}