a20a7db793
It provides an abstraction around the rpc details so that one can use dprc or gprc with the same code. It subsumes using the protobuf package directly for client interfaces as well as the pkg/transport package to perform dials. Change-Id: I8f5688bd71be8b0c766f13029128a77e5d46320b
199 lines
6.3 KiB
Go
199 lines
6.3 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
// +build drpc
|
|
|
|
package rpc
|
|
|
|
import (
|
|
"storj.io/drpc/drpcconn"
|
|
"storj.io/storj/pkg/pb"
|
|
)
|
|
|
|
// RawConn is a type alias to a drpc client connection
|
|
type RawConn = drpcconn.Conn
|
|
|
|
type (
|
|
// CertificatesClient is an alias to the drpc client interface
|
|
CertificatesClient = pb.DRPCCertificatesClient
|
|
|
|
// ContactClient is an alias to the drpc client interface
|
|
ContactClient = pb.DRPCContactClient
|
|
|
|
// HealthInspectorClient is an alias to the drpc client interface
|
|
HealthInspectorClient = pb.DRPCHealthInspectorClient
|
|
|
|
// IrreparableInspectorClient is an alias to the drpc client interface
|
|
IrreparableInspectorClient = pb.DRPCIrreparableInspectorClient
|
|
|
|
// KadInspectorClient is an alias to the drpc client interface
|
|
KadInspectorClient = pb.DRPCKadInspectorClient
|
|
|
|
// MetainfoClient is an alias to the drpc client interface
|
|
MetainfoClient = pb.DRPCMetainfoClient
|
|
|
|
// NodeClient is an alias to the drpc client interface
|
|
NodeClient = pb.DRPCNodeClient
|
|
|
|
// NodeStatsClient is an alias to the drpc client interface
|
|
NodeStatsClient = pb.DRPCNodeStatsClient
|
|
|
|
// NodesClient is an alias to the drpc client interface
|
|
NodesClient = pb.DRPCNodesClient
|
|
|
|
// OrdersClient is an alias to the drpc client interface
|
|
OrdersClient = pb.DRPCOrdersClient
|
|
|
|
// OverlayInspectorClient is an alias to the drpc client interface
|
|
OverlayInspectorClient = pb.DRPCOverlayInspectorClient
|
|
|
|
// PieceStoreInspectorClient is an alias to the drpc client interface
|
|
PieceStoreInspectorClient = pb.DRPCPieceStoreInspectorClient
|
|
|
|
// PiecestoreClient is an alias to the drpc client interface
|
|
PiecestoreClient = pb.DRPCPiecestoreClient
|
|
|
|
// VouchersClient is an alias to the drpc client interface
|
|
VouchersClient = pb.DRPCVouchersClient
|
|
)
|
|
|
|
// NewCertificatesClient returns the drpc version of a CertificatesClient
|
|
func NewCertificatesClient(rc *RawConn) CertificatesClient {
|
|
return pb.NewDRPCCertificatesClient(rc)
|
|
}
|
|
|
|
// CertificatesClient returns a CertificatesClient for this connection
|
|
func (c *Conn) CertificatesClient() CertificatesClient {
|
|
return NewCertificatesClient(c.raw)
|
|
}
|
|
|
|
// NewContactClient returns the drpc version of a ContactClient
|
|
func NewContactClient(rc *RawConn) ContactClient {
|
|
return pb.NewDRPCContactClient(rc)
|
|
}
|
|
|
|
// ContactClient returns a ContactClient for this connection
|
|
func (c *Conn) ContactClient() ContactClient {
|
|
return NewContactClient(c.raw)
|
|
}
|
|
|
|
// NewHealthInspectorClient returns the drpc version of a HealthInspectorClient
|
|
func NewHealthInspectorClient(rc *RawConn) HealthInspectorClient {
|
|
return pb.NewDRPCHealthInspectorClient(rc)
|
|
}
|
|
|
|
// HealthInspectorClient returns a HealthInspectorClient for this connection
|
|
func (c *Conn) HealthInspectorClient() HealthInspectorClient {
|
|
return NewHealthInspectorClient(c.raw)
|
|
}
|
|
|
|
// NewIrreparableInspectorClient returns the drpc version of a IrreparableInspectorClient
|
|
func NewIrreparableInspectorClient(rc *RawConn) IrreparableInspectorClient {
|
|
return pb.NewDRPCIrreparableInspectorClient(rc)
|
|
}
|
|
|
|
// IrreparableInspectorClient returns a IrreparableInspectorClient for this connection
|
|
func (c *Conn) IrreparableInspectorClient() IrreparableInspectorClient {
|
|
return NewIrreparableInspectorClient(c.raw)
|
|
}
|
|
|
|
// NewKadInspectorClient returns the drpc version of a KadInspectorClient
|
|
func NewKadInspectorClient(rc *RawConn) KadInspectorClient {
|
|
return pb.NewDRPCKadInspectorClient(rc)
|
|
}
|
|
|
|
// KadInspectorClient returns a KadInspectorClient for this connection
|
|
func (c *Conn) KadInspectorClient() KadInspectorClient {
|
|
return NewKadInspectorClient(c.raw)
|
|
}
|
|
|
|
// NewMetainfoClient returns the drpc version of a MetainfoClient
|
|
func NewMetainfoClient(rc *RawConn) MetainfoClient {
|
|
return pb.NewDRPCMetainfoClient(rc)
|
|
}
|
|
|
|
// MetainfoClient returns a MetainfoClient for this connection
|
|
func (c *Conn) MetainfoClient() MetainfoClient {
|
|
return NewMetainfoClient(c.raw)
|
|
}
|
|
|
|
// NewNodeClient returns the drpc version of a NodeClient
|
|
func NewNodeClient(rc *RawConn) NodeClient {
|
|
return pb.NewDRPCNodeClient(rc)
|
|
}
|
|
|
|
// NodeClient returns a NodeClient for this connection
|
|
func (c *Conn) NodeClient() NodeClient {
|
|
return NewNodeClient(c.raw)
|
|
}
|
|
|
|
// NewNodeStatsClient returns the drpc version of a NodeStatsClient
|
|
func NewNodeStatsClient(rc *RawConn) NodeStatsClient {
|
|
return pb.NewDRPCNodeStatsClient(rc)
|
|
}
|
|
|
|
// NodeStatsClient returns a NodeStatsClient for this connection
|
|
func (c *Conn) NodeStatsClient() NodeStatsClient {
|
|
return NewNodeStatsClient(c.raw)
|
|
}
|
|
|
|
// NewNodesClient returns the drpc version of a NodesClient
|
|
func NewNodesClient(rc *RawConn) NodesClient {
|
|
return pb.NewDRPCNodesClient(rc)
|
|
}
|
|
|
|
// NodesClient returns a NodesClient for this connection
|
|
func (c *Conn) NodesClient() NodesClient {
|
|
return NewNodesClient(c.raw)
|
|
}
|
|
|
|
// NewOrdersClient returns the drpc version of a OrdersClient
|
|
func NewOrdersClient(rc *RawConn) OrdersClient {
|
|
return pb.NewDRPCOrdersClient(rc)
|
|
}
|
|
|
|
// OrdersClient returns a OrdersClient for this connection
|
|
func (c *Conn) OrdersClient() OrdersClient {
|
|
return NewOrdersClient(c.raw)
|
|
}
|
|
|
|
// NewOverlayInspectorClient returns the drpc version of a OverlayInspectorClient
|
|
func NewOverlayInspectorClient(rc *RawConn) OverlayInspectorClient {
|
|
return pb.NewDRPCOverlayInspectorClient(rc)
|
|
}
|
|
|
|
// OverlayInspectorClient returns a OverlayInspectorClient for this connection
|
|
func (c *Conn) OverlayInspectorClient() OverlayInspectorClient {
|
|
return NewOverlayInspectorClient(c.raw)
|
|
}
|
|
|
|
// NewPieceStoreInspectorClient returns the drpc version of a PieceStoreInspectorClient
|
|
func NewPieceStoreInspectorClient(rc *RawConn) PieceStoreInspectorClient {
|
|
return pb.NewDRPCPieceStoreInspectorClient(rc)
|
|
}
|
|
|
|
// PieceStoreInspectorClient returns a PieceStoreInspectorClient for this connection
|
|
func (c *Conn) PieceStoreInspectorClient() PieceStoreInspectorClient {
|
|
return NewPieceStoreInspectorClient(c.raw)
|
|
}
|
|
|
|
// NewPiecestoreClient returns the drpc version of a PiecestoreClient
|
|
func NewPiecestoreClient(rc *RawConn) PiecestoreClient {
|
|
return pb.NewDRPCPiecestoreClient(rc)
|
|
}
|
|
|
|
// PiecestoreClient returns a PiecestoreClient for this connection
|
|
func (c *Conn) PiecestoreClient() PiecestoreClient {
|
|
return NewPiecestoreClient(c.raw)
|
|
}
|
|
|
|
// NewVouchersClient returns the drpc version of a VouchersClient
|
|
func NewVouchersClient(rc *RawConn) VouchersClient {
|
|
return pb.NewDRPCVouchersClient(rc)
|
|
}
|
|
|
|
// VouchersClient returns a VouchersClient for this connection
|
|
func (c *Conn) VouchersClient() VouchersClient {
|
|
return NewVouchersClient(c.raw)
|
|
}
|