| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | // Copyright 2016 The go-ethereum Authors | 
					
						
							|  |  |  | // This file is part of the go-ethereum library. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Lesser General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							|  |  |  | // GNU Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							|  |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package rpc | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2017-03-22 18:20:33 +01:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	"encoding/json" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"net/url" | 
					
						
							|  |  |  | 	"reflect" | 
					
						
							|  |  |  | 	"strconv" | 
					
						
							|  |  |  | 	"sync/atomic" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-22 14:10:07 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/log" | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							| 
									
										
										
										
											2016-08-04 21:18:13 +02:00
										 |  |  | 	ErrClientQuit                = errors.New("client is closed") | 
					
						
							|  |  |  | 	ErrNoResult                  = errors.New("no result in JSON-RPC response") | 
					
						
							|  |  |  | 	ErrSubscriptionQueueOverflow = errors.New("subscription queue overflow") | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	errClientReconnected         = errors.New("client reconnected") | 
					
						
							|  |  |  | 	errDead                      = errors.New("connection lost") | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2016-08-04 21:18:13 +02:00
										 |  |  | 	// Timeouts | 
					
						
							| 
									
										
										
										
											2019-07-22 12:22:39 +02:00
										 |  |  | 	defaultDialTimeout = 10 * time.Second // used if context has no deadline | 
					
						
							|  |  |  | 	subscribeTimeout   = 5 * time.Second  // overall timeout eth_subscribe, rpc_modules calls | 
					
						
							| 
									
										
										
										
											2016-08-04 21:18:13 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	// Subscriptions are removed when the subscriber cannot keep up. | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// This can be worked around by supplying a channel with sufficiently sized buffer, | 
					
						
							|  |  |  | 	// but this can be inconvenient and hard to explain in the docs. Another issue with | 
					
						
							|  |  |  | 	// buffered channels is that the buffer is static even though it might not be needed | 
					
						
							|  |  |  | 	// most of the time. | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// The approach taken here is to maintain a per-subscription linked list buffer | 
					
						
							|  |  |  | 	// shrinks on demand. If the buffer reaches the size below, the subscription is | 
					
						
							|  |  |  | 	// dropped. | 
					
						
							| 
									
										
										
										
											2018-06-14 11:21:17 +02:00
										 |  |  | 	maxClientSubscriptionBuffer = 20000 | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | const ( | 
					
						
							|  |  |  | 	httpScheme = "http" | 
					
						
							|  |  |  | 	wsScheme   = "ws" | 
					
						
							|  |  |  | 	ipcScheme  = "ipc" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | // BatchElem is an element in a batch request. | 
					
						
							|  |  |  | type BatchElem struct { | 
					
						
							|  |  |  | 	Method string | 
					
						
							|  |  |  | 	Args   []interface{} | 
					
						
							|  |  |  | 	// The result is unmarshaled into this field. Result must be set to a | 
					
						
							|  |  |  | 	// non-nil pointer value of the desired type, otherwise the response will be | 
					
						
							|  |  |  | 	// discarded. | 
					
						
							|  |  |  | 	Result interface{} | 
					
						
							|  |  |  | 	// Error is set if the server returns an error for this request, or if | 
					
						
							|  |  |  | 	// unmarshaling into Result fails. It is not set for I/O errors. | 
					
						
							|  |  |  | 	Error error | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | // Client represents a connection to an RPC server. | 
					
						
							|  |  |  | type Client struct { | 
					
						
							|  |  |  | 	idgen    func() ID // for subscriptions | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	scheme   string    // connection type: http, ws or ipc | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	services *serviceRegistry | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	idCounter uint32 | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	// This function, if non-nil, is called when the connection is lost. | 
					
						
							|  |  |  | 	reconnectFunc reconnectFunc | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// writeConn is used for writing to the connection on the caller's goroutine. It should | 
					
						
							|  |  |  | 	// only be accessed outside of dispatch, with the write lock held. The write lock is | 
					
						
							| 
									
										
										
										
											2020-08-03 14:08:42 +02:00
										 |  |  | 	// taken by sending on reqInit and released by sending on reqSent. | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	writeConn jsonWriter | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	// for dispatch | 
					
						
							|  |  |  | 	close       chan struct{} | 
					
						
							|  |  |  | 	closing     chan struct{}    // closed when client is quitting | 
					
						
							|  |  |  | 	didClose    chan struct{}    // closed when client quits | 
					
						
							|  |  |  | 	reconnected chan ServerCodec // where write/reconnect sends the new connection | 
					
						
							|  |  |  | 	readOp      chan readOp      // read messages | 
					
						
							|  |  |  | 	readErr     chan error       // errors from read | 
					
						
							|  |  |  | 	reqInit     chan *requestOp  // register response IDs, takes write lock | 
					
						
							|  |  |  | 	reqSent     chan error       // signals write completion, releases write lock | 
					
						
							|  |  |  | 	reqTimeout  chan *requestOp  // removes response IDs when call timeout expires | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | type reconnectFunc func(ctx context.Context) (ServerCodec, error) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type clientContextKey struct{} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type clientConn struct { | 
					
						
							|  |  |  | 	codec   ServerCodec | 
					
						
							|  |  |  | 	handler *handler | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | func (c *Client) newClientConn(conn ServerCodec) *clientConn { | 
					
						
							|  |  |  | 	ctx := context.WithValue(context.Background(), clientContextKey{}, c) | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	// Http connections have already set the scheme | 
					
						
							|  |  |  | 	if !c.isHTTP() && c.scheme != "" { | 
					
						
							|  |  |  | 		ctx = context.WithValue(ctx, "scheme", c.scheme) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	handler := newHandler(ctx, conn, c.idgen, c.services) | 
					
						
							|  |  |  | 	return &clientConn{conn, handler} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | func (cc *clientConn) close(err error, inflightReq *requestOp) { | 
					
						
							|  |  |  | 	cc.handler.close(err, inflightReq) | 
					
						
							| 
									
										
										
										
											2019-11-18 09:40:59 +01:00
										 |  |  | 	cc.codec.close() | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | type readOp struct { | 
					
						
							|  |  |  | 	msgs  []*jsonrpcMessage | 
					
						
							|  |  |  | 	batch bool | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type requestOp struct { | 
					
						
							|  |  |  | 	ids  []json.RawMessage | 
					
						
							|  |  |  | 	err  error | 
					
						
							|  |  |  | 	resp chan *jsonrpcMessage // receives up to len(ids) responses | 
					
						
							|  |  |  | 	sub  *ClientSubscription  // only set for EthSubscribe requests | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | func (op *requestOp) wait(ctx context.Context, c *Client) (*jsonrpcMessage, error) { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	select { | 
					
						
							|  |  |  | 	case <-ctx.Done(): | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		// Send the timeout to dispatch so it can remove the request IDs. | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 		if !c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2019-06-20 08:36:27 +02:00
										 |  |  | 			select { | 
					
						
							|  |  |  | 			case c.reqTimeout <- op: | 
					
						
							|  |  |  | 			case <-c.closing: | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		return nil, ctx.Err() | 
					
						
							|  |  |  | 	case resp := <-op.resp: | 
					
						
							|  |  |  | 		return resp, op.err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Dial creates a new client for the given URL. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The currently supported URL schemes are "http", "https", "ws" and "wss". If rawurl is a | 
					
						
							|  |  |  | // file name with no URL scheme, a local socket connection is established using UNIX | 
					
						
							|  |  |  | // domain sockets on supported platforms and named pipes on Windows. If you want to | 
					
						
							|  |  |  | // configure transport options, use DialHTTP, DialWebsocket or DialIPC instead. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // For websocket connections, the origin is set to the local host name. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The client reconnects automatically if the connection is lost. | 
					
						
							|  |  |  | func Dial(rawurl string) (*Client, error) { | 
					
						
							|  |  |  | 	return DialContext(context.Background(), rawurl) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // DialContext creates a new RPC client, just like Dial. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The context is used to cancel or time out the initial connection establishment. It does | 
					
						
							|  |  |  | // not affect subsequent interactions with the client. | 
					
						
							|  |  |  | func DialContext(ctx context.Context, rawurl string) (*Client, error) { | 
					
						
							|  |  |  | 	u, err := url.Parse(rawurl) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	switch u.Scheme { | 
					
						
							|  |  |  | 	case "http", "https": | 
					
						
							|  |  |  | 		return DialHTTP(rawurl) | 
					
						
							|  |  |  | 	case "ws", "wss": | 
					
						
							|  |  |  | 		return DialWebsocket(ctx, rawurl, "") | 
					
						
							| 
									
										
											  
											
												cmd/clef, signer: initial poc of the standalone signer (#16154)
* signer: introduce external signer command
* cmd/signer, rpc: Implement new signer. Add info about remote user to Context
* signer: refactored request/response, made use of urfave.cli
* cmd/signer: Use common flags
* cmd/signer: methods to validate calldata against abi
* cmd/signer: work on abi parser
* signer: add mutex around UI
* cmd/signer: add json 4byte directory, remove passwords from api
* cmd/signer: minor changes
* cmd/signer: Use ErrRequestDenied, enable lightkdf
* cmd/signer: implement tests
* cmd/signer: made possible for UI to modify tx parameters
* cmd/signer: refactors, removed channels in ui comms, added UI-api via stdin/out
* cmd/signer: Made lowercase json-definitions, added UI-signer test functionality
* cmd/signer: update documentation
* cmd/signer: fix bugs, improve abi detection, abi argument display
* cmd/signer: minor change in json format
* cmd/signer: rework json communication
* cmd/signer: implement mixcase addresses in API, fix json id bug
* cmd/signer: rename fromaccount, update pythonpoc with new json encoding format
* cmd/signer: make use of new abi interface
* signer: documentation
* signer/main: remove redundant  option
* signer: implement audit logging
* signer: create package 'signer', minor changes
* common: add 0x-prefix to mixcaseaddress in json marshalling + validation
* signer, rules, storage: implement rules + ephemeral storage for signer rules
* signer: implement OnApprovedTx, change signing response (API BREAKAGE)
* signer: refactoring + documentation
* signer/rules: implement dispatching to next handler
* signer: docs
* signer/rules: hide json-conversion from users, ensure context is cleaned
* signer: docs
* signer: implement validation rules, change signature of call_info
* signer: fix log flaw with string pointer
* signer: implement custom 4byte databsae that saves submitted signatures
* signer/storage: implement aes-gcm-backed credential storage
* accounts: implement json unmarshalling of url
* signer: fix listresponse, fix gas->uint64
* node: make http/ipc start methods public
* signer: add ipc capability+review concerns
* accounts: correct docstring
* signer: address review concerns
* rpc: go fmt -s
* signer: review concerns+ baptize Clef
* signer,node: move Start-functions to separate file
* signer: formatting
											
										 
											2018-04-16 14:04:32 +02:00
										 |  |  | 	case "stdio": | 
					
						
							|  |  |  | 		return DialStdIO(ctx) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	case "": | 
					
						
							|  |  |  | 		return DialIPC(ctx, rawurl) | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return nil, fmt.Errorf("no known transport for URL scheme %q", u.Scheme) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | // Client retrieves the client from the context, if any. This can be used to perform | 
					
						
							|  |  |  | // 'reverse calls' in a handler method. | 
					
						
							|  |  |  | func ClientFromContext(ctx context.Context) (*Client, bool) { | 
					
						
							|  |  |  | 	client, ok := ctx.Value(clientContextKey{}).(*Client) | 
					
						
							|  |  |  | 	return client, ok | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func newClient(initctx context.Context, connect reconnectFunc) (*Client, error) { | 
					
						
							|  |  |  | 	conn, err := connect(initctx) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	c := initClient(conn, randomIDGenerator(), new(serviceRegistry)) | 
					
						
							|  |  |  | 	c.reconnectFunc = connect | 
					
						
							|  |  |  | 	return c, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func initClient(conn ServerCodec, idgen func() ID, services *serviceRegistry) *Client { | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	scheme := "" | 
					
						
							|  |  |  | 	switch conn.(type) { | 
					
						
							|  |  |  | 	case *httpConn: | 
					
						
							|  |  |  | 		scheme = httpScheme | 
					
						
							|  |  |  | 	case *websocketCodec: | 
					
						
							|  |  |  | 		scheme = wsScheme | 
					
						
							|  |  |  | 	case *jsonCodec: | 
					
						
							|  |  |  | 		scheme = ipcScheme | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	c := &Client{ | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		idgen:       idgen, | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 		scheme:      scheme, | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		services:    services, | 
					
						
							|  |  |  | 		writeConn:   conn, | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		close:       make(chan struct{}), | 
					
						
							| 
									
										
										
										
											2018-10-15 10:56:04 +02:00
										 |  |  | 		closing:     make(chan struct{}), | 
					
						
							|  |  |  | 		didClose:    make(chan struct{}), | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		reconnected: make(chan ServerCodec), | 
					
						
							|  |  |  | 		readOp:      make(chan readOp), | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		readErr:     make(chan error), | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		reqInit:     make(chan *requestOp), | 
					
						
							|  |  |  | 		reqSent:     make(chan error, 1), | 
					
						
							|  |  |  | 		reqTimeout:  make(chan *requestOp), | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	if !c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		go c.dispatch(conn) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	return c | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // RegisterName creates a service for the given receiver type under the given name. When no | 
					
						
							|  |  |  | // methods on the given receiver match the criteria to be either a RPC method or a | 
					
						
							|  |  |  | // subscription an error is returned. Otherwise a new service is created and added to the | 
					
						
							|  |  |  | // service collection this client provides to the server. | 
					
						
							|  |  |  | func (c *Client) RegisterName(name string, receiver interface{}) error { | 
					
						
							|  |  |  | 	return c.services.registerName(name, receiver) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (c *Client) nextID() json.RawMessage { | 
					
						
							|  |  |  | 	id := atomic.AddUint32(&c.idCounter, 1) | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	return strconv.AppendUint(nil, uint64(id), 10) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SupportedModules calls the rpc_modules method, retrieving the list of | 
					
						
							|  |  |  | // APIs that are available on the server. | 
					
						
							|  |  |  | func (c *Client) SupportedModules() (map[string]string, error) { | 
					
						
							|  |  |  | 	var result map[string]string | 
					
						
							|  |  |  | 	ctx, cancel := context.WithTimeout(context.Background(), subscribeTimeout) | 
					
						
							|  |  |  | 	defer cancel() | 
					
						
							|  |  |  | 	err := c.CallContext(ctx, &result, "rpc_modules") | 
					
						
							|  |  |  | 	return result, err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Close closes the client, aborting any in-flight requests. | 
					
						
							|  |  |  | func (c *Client) Close() { | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	if c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	select { | 
					
						
							|  |  |  | 	case c.close <- struct{}{}: | 
					
						
							| 
									
										
										
										
											2018-10-15 10:56:04 +02:00
										 |  |  | 		<-c.didClose | 
					
						
							|  |  |  | 	case <-c.didClose: | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-03 14:08:42 +02:00
										 |  |  | // SetHeader adds a custom HTTP header to the client's requests. | 
					
						
							|  |  |  | // This method only works for clients using HTTP, it doesn't have | 
					
						
							|  |  |  | // any effect for clients using another transport. | 
					
						
							|  |  |  | func (c *Client) SetHeader(key, value string) { | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	if !c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2020-08-03 14:08:42 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	conn := c.writeConn.(*httpConn) | 
					
						
							|  |  |  | 	conn.mu.Lock() | 
					
						
							|  |  |  | 	conn.headers.Set(key, value) | 
					
						
							|  |  |  | 	conn.mu.Unlock() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | // Call performs a JSON-RPC call with the given arguments and unmarshals into | 
					
						
							|  |  |  | // result if no error occurred. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The result must be a pointer so that package json can unmarshal into it. You | 
					
						
							|  |  |  | // can also pass nil, in which case the result is ignored. | 
					
						
							|  |  |  | func (c *Client) Call(result interface{}, method string, args ...interface{}) error { | 
					
						
							|  |  |  | 	ctx := context.Background() | 
					
						
							|  |  |  | 	return c.CallContext(ctx, result, method, args...) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // CallContext performs a JSON-RPC call with the given arguments. If the context is | 
					
						
							|  |  |  | // canceled before the call has successfully returned, CallContext returns immediately. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The result must be a pointer so that package json can unmarshal into it. You | 
					
						
							|  |  |  | // can also pass nil, in which case the result is ignored. | 
					
						
							|  |  |  | func (c *Client) CallContext(ctx context.Context, result interface{}, method string, args ...interface{}) error { | 
					
						
							| 
									
										
										
										
											2020-02-11 09:48:58 +01:00
										 |  |  | 	if result != nil && reflect.TypeOf(result).Kind() != reflect.Ptr { | 
					
						
							|  |  |  | 		return fmt.Errorf("call result parameter must be pointer or nil interface: %v", result) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	msg, err := c.newMessage(method, args...) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	op := &requestOp{ids: []json.RawMessage{msg.ID}, resp: make(chan *jsonrpcMessage, 1)} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	if c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		err = c.sendHTTP(ctx, op, msg) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		err = c.send(ctx, op, msg) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 16:31:59 +08:00
										 |  |  | 	// dispatch has accepted the request and will close the channel when it quits. | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	switch resp, err := op.wait(ctx, c); { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	case err != nil: | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	case resp.Error != nil: | 
					
						
							|  |  |  | 		return resp.Error | 
					
						
							|  |  |  | 	case len(resp.Result) == 0: | 
					
						
							|  |  |  | 		return ErrNoResult | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return json.Unmarshal(resp.Result, &result) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // BatchCall sends all given requests as a single batch and waits for the server | 
					
						
							|  |  |  | // to return a response for all of them. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // In contrast to Call, BatchCall only returns I/O errors. Any error specific to | 
					
						
							|  |  |  | // a request is reported through the Error field of the corresponding BatchElem. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Note that batch calls may not be executed atomically on the server side. | 
					
						
							|  |  |  | func (c *Client) BatchCall(b []BatchElem) error { | 
					
						
							|  |  |  | 	ctx := context.Background() | 
					
						
							|  |  |  | 	return c.BatchCallContext(ctx, b) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // BatchCall sends all given requests as a single batch and waits for the server | 
					
						
							|  |  |  | // to return a response for all of them. The wait duration is bounded by the | 
					
						
							|  |  |  | // context's deadline. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2016-08-04 21:18:13 +02:00
										 |  |  | // In contrast to CallContext, BatchCallContext only returns errors that have occurred | 
					
						
							|  |  |  | // while sending the request. Any error specific to a request is reported through the | 
					
						
							|  |  |  | // Error field of the corresponding BatchElem. | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | // | 
					
						
							|  |  |  | // Note that batch calls may not be executed atomically on the server side. | 
					
						
							|  |  |  | func (c *Client) BatchCallContext(ctx context.Context, b []BatchElem) error { | 
					
						
							|  |  |  | 	msgs := make([]*jsonrpcMessage, len(b)) | 
					
						
							|  |  |  | 	op := &requestOp{ | 
					
						
							|  |  |  | 		ids:  make([]json.RawMessage, len(b)), | 
					
						
							|  |  |  | 		resp: make(chan *jsonrpcMessage, len(b)), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	for i, elem := range b { | 
					
						
							|  |  |  | 		msg, err := c.newMessage(elem.Method, elem.Args...) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		msgs[i] = msg | 
					
						
							|  |  |  | 		op.ids[i] = msg.ID | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var err error | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	if c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		err = c.sendBatchHTTP(ctx, op, msgs) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		err = c.send(ctx, op, msgs) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Wait for all responses to come back. | 
					
						
							|  |  |  | 	for n := 0; n < len(b) && err == nil; n++ { | 
					
						
							|  |  |  | 		var resp *jsonrpcMessage | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		resp, err = op.wait(ctx, c) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			break | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// Find the element corresponding to this response. | 
					
						
							|  |  |  | 		// The element is guaranteed to be present because dispatch | 
					
						
							|  |  |  | 		// only sends valid IDs to our channel. | 
					
						
							|  |  |  | 		var elem *BatchElem | 
					
						
							|  |  |  | 		for i := range msgs { | 
					
						
							|  |  |  | 			if bytes.Equal(msgs[i].ID, resp.ID) { | 
					
						
							|  |  |  | 				elem = &b[i] | 
					
						
							|  |  |  | 				break | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if resp.Error != nil { | 
					
						
							|  |  |  | 			elem.Error = resp.Error | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if len(resp.Result) == 0 { | 
					
						
							|  |  |  | 			elem.Error = ErrNoResult | 
					
						
							|  |  |  | 			continue | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		elem.Error = json.Unmarshal(resp.Result, elem.Result) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | // Notify sends a notification, i.e. a method call that doesn't expect a response. | 
					
						
							|  |  |  | func (c *Client) Notify(ctx context.Context, method string, args ...interface{}) error { | 
					
						
							|  |  |  | 	op := new(requestOp) | 
					
						
							|  |  |  | 	msg, err := c.newMessage(method, args...) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	msg.ID = nil | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	if c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		return c.sendHTTP(ctx, op, msg) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-11-25 09:24:50 +01:00
										 |  |  | 	return c.send(ctx, op, msg) | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | // EthSubscribe registers a subscripion under the "eth" namespace. | 
					
						
							|  |  |  | func (c *Client) EthSubscribe(ctx context.Context, channel interface{}, args ...interface{}) (*ClientSubscription, error) { | 
					
						
							|  |  |  | 	return c.Subscribe(ctx, "eth", channel, args...) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-06-13 11:49:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | // ShhSubscribe registers a subscripion under the "shh" namespace. | 
					
						
							| 
									
										
										
										
											2021-01-27 09:20:34 +00:00
										 |  |  | // Deprecated: use Subscribe(ctx, "shh", ...). | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | func (c *Client) ShhSubscribe(ctx context.Context, channel interface{}, args ...interface{}) (*ClientSubscription, error) { | 
					
						
							|  |  |  | 	return c.Subscribe(ctx, "shh", channel, args...) | 
					
						
							| 
									
										
										
										
											2017-06-13 11:49:07 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | // Subscribe calls the "<namespace>_subscribe" method with the given arguments, | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | // registering a subscription. Server notifications for the subscription are | 
					
						
							|  |  |  | // sent to the given channel. The element type of the channel must match the | 
					
						
							|  |  |  | // expected type of content returned by the subscription. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2016-08-05 13:24:48 +02:00
										 |  |  | // The context argument cancels the RPC request that sets up the subscription but has no | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | // effect on the subscription after Subscribe has returned. | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2019-06-24 05:43:18 -05:00
										 |  |  | // Slow subscribers will be dropped eventually. Client buffers up to 20000 notifications | 
					
						
							| 
									
										
										
										
											2016-08-04 21:18:13 +02:00
										 |  |  | // before considering the subscriber dead. The subscription Err channel will receive | 
					
						
							|  |  |  | // ErrSubscriptionQueueOverflow. Use a sufficiently large buffer on the channel or ensure | 
					
						
							|  |  |  | // that the channel usually has at least one reader to prevent this issue. | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | func (c *Client) Subscribe(ctx context.Context, namespace string, channel interface{}, args ...interface{}) (*ClientSubscription, error) { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	// Check type of channel first. | 
					
						
							|  |  |  | 	chanVal := reflect.ValueOf(channel) | 
					
						
							|  |  |  | 	if chanVal.Kind() != reflect.Chan || chanVal.Type().ChanDir()&reflect.SendDir == 0 { | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | 		panic("first argument to Subscribe must be a writable channel") | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if chanVal.IsNil() { | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | 		panic("channel given to Subscribe must not be nil") | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 	if c.isHTTP() { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		return nil, ErrNotificationsUnsupported | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | 	msg, err := c.newMessage(namespace+subscribeMethodSuffix, args...) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	op := &requestOp{ | 
					
						
							|  |  |  | 		ids:  []json.RawMessage{msg.ID}, | 
					
						
							|  |  |  | 		resp: make(chan *jsonrpcMessage), | 
					
						
							| 
									
										
										
										
											2017-09-25 09:08:07 +01:00
										 |  |  | 		sub:  newClientSubscription(c, namespace, chanVal), | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Send the subscription request. | 
					
						
							|  |  |  | 	// The arrival and validity of the response is signaled on sub.quit. | 
					
						
							|  |  |  | 	if err := c.send(ctx, op, msg); err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	if _, err := op.wait(ctx, c); err != nil { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return op.sub, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (c *Client) newMessage(method string, paramsIn ...interface{}) (*jsonrpcMessage, error) { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	msg := &jsonrpcMessage{Version: vsn, ID: c.nextID(), Method: method} | 
					
						
							|  |  |  | 	if paramsIn != nil { // prevent sending "params":null | 
					
						
							|  |  |  | 		var err error | 
					
						
							|  |  |  | 		if msg.Params, err = json.Marshal(paramsIn); err != nil { | 
					
						
							|  |  |  | 			return nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	return msg, nil | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // send registers op with the dispatch loop, then sends msg on the connection. | 
					
						
							|  |  |  | // if sending fails, op is deregistered. | 
					
						
							|  |  |  | func (c *Client) send(ctx context.Context, op *requestOp, msg interface{}) error { | 
					
						
							|  |  |  | 	select { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	case c.reqInit <- op: | 
					
						
							| 
									
										
										
										
											2020-01-27 21:03:15 +08:00
										 |  |  | 		err := c.write(ctx, msg, false) | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		c.reqSent <- err | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2016-08-04 02:10:44 +02:00
										 |  |  | 	case <-ctx.Done(): | 
					
						
							|  |  |  | 		// This can happen if the client is overloaded or unable to keep up with | 
					
						
							|  |  |  | 		// subscription notifications. | 
					
						
							|  |  |  | 		return ctx.Err() | 
					
						
							| 
									
										
										
										
											2018-10-15 10:56:04 +02:00
										 |  |  | 	case <-c.closing: | 
					
						
							|  |  |  | 		return ErrClientQuit | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-27 21:03:15 +08:00
										 |  |  | func (c *Client) write(ctx context.Context, msg interface{}, retry bool) error { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	// The previous write failed. Try to establish a new connection. | 
					
						
							|  |  |  | 	if c.writeConn == nil { | 
					
						
							|  |  |  | 		if err := c.reconnect(ctx); err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-11-18 09:40:59 +01:00
										 |  |  | 	err := c.writeConn.writeJSON(ctx, msg) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		c.writeConn = nil | 
					
						
							| 
									
										
										
										
											2020-01-27 21:03:15 +08:00
										 |  |  | 		if !retry { | 
					
						
							|  |  |  | 			return c.write(ctx, msg, true) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (c *Client) reconnect(ctx context.Context) error { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	if c.reconnectFunc == nil { | 
					
						
							|  |  |  | 		return errDead | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if _, ok := ctx.Deadline(); !ok { | 
					
						
							|  |  |  | 		var cancel func() | 
					
						
							|  |  |  | 		ctx, cancel = context.WithTimeout(ctx, defaultDialTimeout) | 
					
						
							|  |  |  | 		defer cancel() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	newconn, err := c.reconnectFunc(ctx) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		log.Trace("RPC client reconnect failed", "err", err) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	select { | 
					
						
							|  |  |  | 	case c.reconnected <- newconn: | 
					
						
							|  |  |  | 		c.writeConn = newconn | 
					
						
							|  |  |  | 		return nil | 
					
						
							| 
									
										
										
										
											2018-10-15 10:56:04 +02:00
										 |  |  | 	case <-c.didClose: | 
					
						
							| 
									
										
										
										
											2019-11-18 09:40:59 +01:00
										 |  |  | 		newconn.close() | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		return ErrClientQuit | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // dispatch is the main loop of the client. | 
					
						
							|  |  |  | // It sends read messages to waiting calls to Call and BatchCall | 
					
						
							|  |  |  | // and subscription notifications to registered subscriptions. | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | func (c *Client) dispatch(codec ServerCodec) { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	var ( | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		lastOp      *requestOp  // tracks last send operation | 
					
						
							|  |  |  | 		reqInitLock = c.reqInit // nil while the send lock is held | 
					
						
							|  |  |  | 		conn        = c.newClientConn(codec) | 
					
						
							|  |  |  | 		reading     = true | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	) | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							| 
									
										
										
										
											2018-10-15 10:56:04 +02:00
										 |  |  | 		close(c.closing) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		if reading { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 			conn.close(ErrClientQuit, nil) | 
					
						
							|  |  |  | 			c.drainRead() | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		close(c.didClose) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 	// Spawn the initial read loop. | 
					
						
							|  |  |  | 	go c.read(codec) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	for { | 
					
						
							|  |  |  | 		select { | 
					
						
							|  |  |  | 		case <-c.close: | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		// Read path: | 
					
						
							|  |  |  | 		case op := <-c.readOp: | 
					
						
							|  |  |  | 			if op.batch { | 
					
						
							|  |  |  | 				conn.handler.handleBatch(op.msgs) | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				conn.handler.handleMsg(op.msgs[0]) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case err := <-c.readErr: | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 			conn.handler.log.Debug("RPC connection read error", "err", err) | 
					
						
							|  |  |  | 			conn.close(err, lastOp) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			reading = false | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		// Reconnect: | 
					
						
							|  |  |  | 		case newcodec := <-c.reconnected: | 
					
						
							| 
									
										
										
										
											2019-11-18 09:40:59 +01:00
										 |  |  | 			log.Debug("RPC client reconnected", "reading", reading, "conn", newcodec.remoteAddr()) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			if reading { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 				// Wait for the previous read loop to exit. This is a rare case which | 
					
						
							|  |  |  | 				// happens if this loop isn't notified in time after the connection breaks. | 
					
						
							|  |  |  | 				// In those cases the caller will notice first and reconnect. Closing the | 
					
						
							|  |  |  | 				// handler terminates all waiting requests (closing op.resp) except for | 
					
						
							|  |  |  | 				// lastOp, which will be transferred to the new handler. | 
					
						
							|  |  |  | 				conn.close(errClientReconnected, lastOp) | 
					
						
							|  |  |  | 				c.drainRead() | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 			go c.read(newcodec) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			reading = true | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 			conn = c.newClientConn(newcodec) | 
					
						
							|  |  |  | 			// Re-register the in-flight request on the new handler | 
					
						
							|  |  |  | 			// because that's where it will be sent. | 
					
						
							|  |  |  | 			conn.handler.addRequestOp(lastOp) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Send path: | 
					
						
							|  |  |  | 		case op := <-reqInitLock: | 
					
						
							|  |  |  | 			// Stop listening for further requests until the current one has been sent. | 
					
						
							|  |  |  | 			reqInitLock = nil | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			lastOp = op | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 			conn.handler.addRequestOp(op) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		case err := <-c.reqSent: | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			if err != nil { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 				// Remove response handlers for the last send. When the read loop | 
					
						
							|  |  |  | 				// goes down, it will signal all other current operations. | 
					
						
							|  |  |  | 				conn.handler.removeRequestOp(lastOp) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 			// Let the next request in. | 
					
						
							|  |  |  | 			reqInitLock = c.reqInit | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 			lastOp = nil | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		case op := <-c.reqTimeout: | 
					
						
							|  |  |  | 			conn.handler.removeRequestOp(op) | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | // drainRead drops read messages until an error occurs. | 
					
						
							|  |  |  | func (c *Client) drainRead() { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		select { | 
					
						
							|  |  |  | 		case <-c.readOp: | 
					
						
							|  |  |  | 		case <-c.readErr: | 
					
						
							|  |  |  | 			return | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | // read decodes RPC messages from a codec, feeding them into dispatch. | 
					
						
							|  |  |  | func (c *Client) read(codec ServerCodec) { | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	for { | 
					
						
							| 
									
										
										
										
											2019-11-18 09:40:59 +01:00
										 |  |  | 		msgs, batch, err := codec.readBatch() | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		if _, ok := err.(*json.SyntaxError); ok { | 
					
						
							| 
									
										
										
										
											2019-11-18 09:40:59 +01:00
										 |  |  | 			codec.writeJSON(context.Background(), errorMessage(&parseError{err.Error()})) | 
					
						
							| 
									
										
										
										
											2016-08-04 21:18:13 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			c.readErr <- err | 
					
						
							|  |  |  | 			return | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-02-04 13:47:34 +01:00
										 |  |  | 		c.readOp <- readOp{msgs, batch} | 
					
						
							| 
									
										
										
										
											2016-07-12 17:47:15 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-09-21 22:26:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (c *Client) isHTTP() bool { | 
					
						
							|  |  |  | 	return c.scheme == httpScheme | 
					
						
							|  |  |  | } |