|
@@ -1,27 +1,18 @@
|
|
|
-library fis_jsonrpc;
|
|
|
-
|
|
|
import 'dart:collection';
|
|
|
|
|
|
import 'package:fis_common/extensions/type.dart';
|
|
|
import 'package:fis_common/logger/logger.dart';
|
|
|
-
|
|
|
-import 'client_base.dart';
|
|
|
-import 'interceptor.dart';
|
|
|
-import 'services/index.dart';
|
|
|
-
|
|
|
-export 'services/index.dart';
|
|
|
-export 'request.dart';
|
|
|
-export 'exception.dart';
|
|
|
-export 'interceptor.dart';
|
|
|
-export 'notifications/index.dart';
|
|
|
+import 'package:fis_jsonrpc/client_base.dart';
|
|
|
+import 'package:fis_jsonrpc/interceptor.dart';
|
|
|
+import 'package:flyinsonolite/fisLib/services/index.dart';
|
|
|
|
|
|
typedef T ServiceBuilder<T extends JsonRpcClientBase>();
|
|
|
|
|
|
const C_SHELL_RPC_DEFAULT_HOST = 'platform.fis.plus';
|
|
|
|
|
|
/// JSON-RPC 代理
|
|
|
-class JsonRpcProxy {
|
|
|
- JsonRpcProxy({
|
|
|
+class JsonRpcProxyForFISLib {
|
|
|
+ JsonRpcProxyForFISLib({
|
|
|
String? host,
|
|
|
this.platformHost = C_SHELL_RPC_DEFAULT_HOST,
|
|
|
}) {
|
|
@@ -42,22 +33,15 @@ class JsonRpcProxy {
|
|
|
|
|
|
HashMap<Type, dynamic> _serviceCache = HashMap();
|
|
|
|
|
|
- static PlatformService? _platformService;
|
|
|
-
|
|
|
/* 服务代理设置 Start */
|
|
|
|
|
|
/// 平台服务
|
|
|
- PlatformService get platform {
|
|
|
- if (_platformService == null)
|
|
|
- _platformService = PlatformService("http://$platformHost", timeout: 15000);
|
|
|
- return _platformService!;
|
|
|
- }
|
|
|
*******Separator******
|
|
|
/* 服务代理设置 End */
|
|
|
|
|
|
/// 设置服务主机地址
|
|
|
void setServerHost(String address, [bool useSSL = false]) {
|
|
|
- logger.i('JsonRpcProxy setServerHost :' + address);
|
|
|
+ logger.i('JsonRpcProxyForFISLib setServerHost :' + address);
|
|
|
_currentProtocol = useSSL ? "https" : "http";
|
|
|
_currentHost = address;
|
|
|
}
|
|
@@ -77,4 +61,4 @@ class JsonRpcProxy {
|
|
|
}
|
|
|
return _serviceCache[serviceType] as T;
|
|
|
}
|
|
|
-}
|
|
|
+}
|