mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
76 lines
1.8 KiB
Go
76 lines
1.8 KiB
Go
package proxy
|
|
|
|
import (
|
|
"context"
|
|
"github.com/siderolabs/grpc-proxy/proxy"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/credentials/insecure"
|
|
"google.golang.org/grpc/metadata"
|
|
"sync"
|
|
)
|
|
|
|
// LocalBackend is a proxy.One2ManyResponder implementation that proxies to a local gRPC server listening on a Unix socket.
|
|
type LocalBackend struct {
|
|
One2ManyResponder
|
|
sockPath string
|
|
|
|
mu sync.RWMutex
|
|
conn *grpc.ClientConn
|
|
}
|
|
|
|
var _ proxy.Backend = (*LocalBackend)(nil)
|
|
|
|
// NewLocalBackend returns a new LocalBackend for the given Unix socket path. The addr parameter is the local address
|
|
// of the current machine which could be empty if it's not known. The address is used to populate response metadata
|
|
// in one2many mode.
|
|
func NewLocalBackend(sockPath, addr string) *LocalBackend {
|
|
return &LocalBackend{
|
|
One2ManyResponder: One2ManyResponder{
|
|
machine: addr,
|
|
},
|
|
sockPath: sockPath,
|
|
}
|
|
}
|
|
|
|
func (b *LocalBackend) String() string {
|
|
return b.machine
|
|
}
|
|
|
|
// GetConnection returns a gRPC connection to the local server listening on the Unix socket.
|
|
func (b *LocalBackend) GetConnection(ctx context.Context, _ string) (context.Context, *grpc.ClientConn, error) {
|
|
md, _ := metadata.FromIncomingContext(ctx)
|
|
outCtx := metadata.NewOutgoingContext(ctx, md)
|
|
|
|
b.mu.RLock()
|
|
if b.conn != nil {
|
|
defer b.mu.RUnlock()
|
|
return outCtx, b.conn, nil
|
|
}
|
|
b.mu.RUnlock()
|
|
|
|
b.mu.Lock()
|
|
defer b.mu.Unlock()
|
|
|
|
var err error
|
|
b.conn, err = grpc.NewClient(
|
|
"unix://"+b.sockPath,
|
|
grpc.WithTransportCredentials(insecure.NewCredentials()),
|
|
grpc.WithDefaultCallOptions(
|
|
grpc.ForceCodecV2(proxy.Codec()),
|
|
),
|
|
)
|
|
|
|
return outCtx, b.conn, err
|
|
}
|
|
|
|
// Close closes the upstream gRPC connection.
|
|
func (b *LocalBackend) Close() {
|
|
b.mu.Lock()
|
|
defer b.mu.Unlock()
|
|
|
|
if b.conn != nil {
|
|
b.conn.Close()
|
|
b.conn = nil
|
|
}
|
|
}
|