2022-08-26 08:11:35 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:io';
|
2023-05-24 18:27:19 +00:00
|
|
|
import 'dart:typed_data';
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
import 'package:mutex/mutex.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/utilities/logger.dart';
|
|
|
|
|
|
|
|
// hacky fix to receive large jsonrpc responses
|
|
|
|
class JsonRPC {
|
|
|
|
JsonRPC({
|
|
|
|
required this.host,
|
|
|
|
required this.port,
|
|
|
|
this.useSSL = false,
|
|
|
|
this.connectionTimeout = const Duration(seconds: 60),
|
|
|
|
});
|
2023-05-24 18:12:54 +00:00
|
|
|
final bool useSSL;
|
|
|
|
final String host;
|
|
|
|
final int port;
|
|
|
|
final Duration connectionTimeout;
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
final _JsonRPCRequestQueue _requestQueue = _JsonRPCRequestQueue();
|
|
|
|
Socket? _socket;
|
2023-05-24 18:27:19 +00:00
|
|
|
StreamSubscription<Uint8List>? _subscription;
|
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
void _dataHandler(List<int> data) {
|
|
|
|
if (_requestQueue.isEmpty) {
|
|
|
|
// probably just return although this case should never actually hit
|
|
|
|
// TODO anything else here?
|
|
|
|
return;
|
|
|
|
}
|
2023-05-24 20:55:24 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
final req = _requestQueue.next;
|
|
|
|
req.appendDataAndCheckIfComplete(data);
|
2023-05-24 18:39:21 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
if (req.isComplete) {
|
|
|
|
_onReqCompleted(req);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
2023-05-25 20:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _errorHandler(Object error, StackTrace trace) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"JsonRPC errorHandler: $error\n$trace",
|
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
|
|
|
|
|
|
|
final req = _requestQueue.next;
|
|
|
|
req.completer.completeError(error, trace);
|
|
|
|
_onReqCompleted(req);
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
void _doneHandler() {
|
|
|
|
Logging.instance.log(
|
|
|
|
"JsonRPC doneHandler: "
|
|
|
|
"connection closed to ${_socket?.address}:${_socket?.port}, destroying socket",
|
|
|
|
level: LogLevel.Info,
|
|
|
|
);
|
|
|
|
_socket?.destroy();
|
|
|
|
_socket = null; // is this redundant?
|
|
|
|
// should we also cancel and/or null the subscription?
|
2023-05-24 18:39:21 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
if (_requestQueue.isNotEmpty) {
|
2023-05-24 18:27:19 +00:00
|
|
|
Logging.instance.log(
|
2023-05-25 20:52:07 +00:00
|
|
|
"JsonRPC doneHandler: queue not empty but connection closed, completing pending requests with errors",
|
|
|
|
level: LogLevel.Error,
|
2023-05-24 18:27:19 +00:00
|
|
|
);
|
2023-05-25 20:52:07 +00:00
|
|
|
_errorPendingRequests();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _onReqCompleted(_JsonRPCRequest req) async {
|
|
|
|
await _requestQueue.remove(req);
|
|
|
|
if (_requestQueue.isNotEmpty) {
|
|
|
|
_sendNextAvailableRequest();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _sendNextAvailableRequest() {
|
|
|
|
if (_requestQueue.isEmpty) {
|
|
|
|
// TODO handle properly
|
|
|
|
throw Exception("JSON RPC queue empty");
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
final req = _requestQueue.next;
|
|
|
|
|
|
|
|
_socket!.write('${req.jsonRequest}\r\n');
|
|
|
|
Logging.instance.log(
|
|
|
|
"JsonRPC request: wrote request ${req.jsonRequest} "
|
|
|
|
"to socket ${_socket?.address}:${_socket?.port}",
|
|
|
|
level: LogLevel.Info,
|
|
|
|
);
|
|
|
|
}
|
2023-05-24 18:39:21 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
void _errorPendingRequests() {
|
|
|
|
if (_requestQueue.isNotEmpty) {
|
|
|
|
final req = _requestQueue.next;
|
|
|
|
if (!(req.isComplete)) {
|
|
|
|
req.completer.completeError('JsonRPC doneHandler: socket closed before request could complete');
|
|
|
|
_requestQueue.remove(req).then((ret) {
|
|
|
|
if (_requestQueue.isNotEmpty) {
|
|
|
|
_errorPendingRequests();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
2023-05-24 18:27:19 +00:00
|
|
|
Logging.instance.log(
|
2023-05-25 20:52:07 +00:00
|
|
|
"JsonRPC _errorPendingRequests: done completing pending requests with errors",
|
2023-05-24 18:27:19 +00:00
|
|
|
level: LogLevel.Info,
|
|
|
|
);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
2023-05-25 20:52:07 +00:00
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
Future<dynamic> request(String jsonRpcRequest) async {
|
|
|
|
// todo: handle this better?
|
|
|
|
// Do we need to check the subscription, too?
|
|
|
|
if (_socket == null) {
|
2023-05-24 21:06:56 +00:00
|
|
|
Logging.instance.log(
|
|
|
|
"JsonRPC request: opening socket $host:$port",
|
|
|
|
level: LogLevel.Info,
|
|
|
|
);
|
2023-05-25 20:52:07 +00:00
|
|
|
await connect();
|
2023-05-24 18:15:10 +00:00
|
|
|
}
|
2023-05-24 20:55:24 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
final req = _JsonRPCRequest(
|
|
|
|
jsonRequest: jsonRpcRequest,
|
|
|
|
completer: Completer<dynamic>(),
|
|
|
|
);
|
|
|
|
|
|
|
|
await _requestQueue.add(req);
|
2023-05-24 18:15:10 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
// if this is the only/first request then send it right away
|
|
|
|
if (_requestQueue.length == 1) {
|
|
|
|
_sendNextAvailableRequest();
|
|
|
|
} else {
|
|
|
|
Logging.instance.log(
|
|
|
|
"JsonRPC request: queued request $jsonRpcRequest "
|
|
|
|
"to socket ${_socket?.address}:${_socket?.port}",
|
|
|
|
level: LogLevel.Info,
|
2023-05-24 18:27:19 +00:00
|
|
|
);
|
2023-05-25 20:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return req.completer.future;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> disconnect() async {
|
|
|
|
await _subscription?.cancel();
|
|
|
|
_subscription = null;
|
|
|
|
_socket?.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> connect() async {
|
|
|
|
if (useSSL) {
|
|
|
|
_socket ??= await SecureSocket.connect(
|
|
|
|
host,
|
|
|
|
port,
|
|
|
|
timeout: connectionTimeout,
|
|
|
|
onBadCertificate: (_) => true,
|
|
|
|
); // TODO do not automatically trust bad certificates
|
2022-08-26 08:11:35 +00:00
|
|
|
} else {
|
2023-05-25 20:52:07 +00:00
|
|
|
_socket ??= await Socket.connect(
|
2023-05-24 18:27:19 +00:00
|
|
|
host,
|
|
|
|
port,
|
|
|
|
timeout: connectionTimeout,
|
|
|
|
);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
2023-05-25 20:52:07 +00:00
|
|
|
await _subscription?.cancel();
|
|
|
|
_subscription = _socket!.listen(
|
|
|
|
_dataHandler,
|
|
|
|
onError: _errorHandler,
|
|
|
|
onDone: _doneHandler,
|
|
|
|
cancelOnError: true,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
// mutex *may* not be needed as the protected functions are not async
|
|
|
|
class _JsonRPCRequestQueue {
|
|
|
|
final _m = Mutex();
|
|
|
|
final List<_JsonRPCRequest> _rq = [];
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
Future<void> add(_JsonRPCRequest req) async {
|
|
|
|
await _m.protect(() async => _rq.add(req));
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> remove(_JsonRPCRequest req) async {
|
|
|
|
await _m.protect(() async => _rq.remove(req));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool get isEmpty => _rq.isEmpty;
|
|
|
|
bool get isNotEmpty => _rq.isNotEmpty;
|
|
|
|
int get length => _rq.length;
|
|
|
|
_JsonRPCRequest get next => _rq.first;
|
|
|
|
}
|
2023-05-24 20:55:55 +00:00
|
|
|
|
2023-05-25 20:52:07 +00:00
|
|
|
class _JsonRPCRequest {
|
|
|
|
final String jsonRequest;
|
|
|
|
final Completer<dynamic> completer;
|
|
|
|
final List<int> _responseData = [];
|
|
|
|
|
|
|
|
_JsonRPCRequest({required this.jsonRequest, required this.completer});
|
|
|
|
|
|
|
|
void appendDataAndCheckIfComplete(List<int> data) {
|
|
|
|
_responseData.addAll(data);
|
|
|
|
// 0x0A is newline
|
|
|
|
// https://electrumx-spesmilo.readthedocs.io/en/latest/protocol-basics.html
|
|
|
|
if (data.last == 0x0A) {
|
|
|
|
try {
|
|
|
|
final response = json.decode(String.fromCharCodes(_responseData));
|
|
|
|
completer.complete(response);
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"JsonRPC json.decode: $e\n$s",
|
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
|
|
|
completer.completeError(e, s);
|
|
|
|
}
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
2023-05-25 20:52:07 +00:00
|
|
|
|
|
|
|
bool get isComplete => completer.isCompleted;
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|