46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package liveshare
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"time"
|
|
|
|
"github.com/opentracing/opentracing-go"
|
|
"github.com/sourcegraph/jsonrpc2"
|
|
)
|
|
|
|
type rpcClient struct {
|
|
*jsonrpc2.Conn
|
|
conn io.ReadWriteCloser
|
|
}
|
|
|
|
func newRPCClient(conn io.ReadWriteCloser) *rpcClient {
|
|
return &rpcClient{conn: conn}
|
|
}
|
|
|
|
func (r *rpcClient) connect(ctx context.Context) {
|
|
stream := jsonrpc2.NewBufferedStream(r.conn, jsonrpc2.VSCodeObjectCodec{})
|
|
r.Conn = jsonrpc2.NewConn(ctx, stream, nullHandler{})
|
|
}
|
|
|
|
func (r *rpcClient) do(ctx context.Context, method string, args, result interface{}) error {
|
|
span, ctx := opentracing.StartSpanFromContext(ctx, method)
|
|
defer span.Finish()
|
|
|
|
waiter, err := r.Conn.DispatchCall(ctx, method, args)
|
|
if err != nil {
|
|
return fmt.Errorf("error dispatching %q call: %w", method, err)
|
|
}
|
|
|
|
// timeout for waiter in case a connection cannot be made
|
|
waitCtx, cancel := context.WithTimeout(ctx, 2*time.Minute)
|
|
defer cancel()
|
|
|
|
return waiter.Wait(waitCtx, result)
|
|
}
|
|
|
|
type nullHandler struct{}
|
|
|
|
func (nullHandler) Handle(ctx context.Context, conn *jsonrpc2.Conn, req *jsonrpc2.Request) {
|
|
}
|