veilid/veilid-flutter/lib/default_config.dart

193 lines
5.3 KiB
Dart
Raw Normal View History

2023-07-23 21:49:10 -04:00
import 'dart:io';
2022-12-26 16:33:48 -05:00
import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:path_provider/path_provider.dart';
import 'package:path/path.dart' as p;
2023-05-29 15:24:57 -04:00
import 'package:system_info2/system_info2.dart' as sysinfo;
2023-07-23 21:49:10 -04:00
import 'package:system_info_plus/system_info_plus.dart';
2022-12-26 16:33:48 -05:00
import 'veilid.dart';
2023-05-29 15:24:57 -04:00
const int megaByte = 1024 * 1024;
int getLocalSubkeyCacheSize() {
if (kIsWeb) {
return 128;
}
return 1024;
}
2023-07-23 21:49:10 -04:00
Future<int> getLocalMaxSubkeyCacheMemoryMb() async {
2023-05-29 15:24:57 -04:00
if (kIsWeb) {
return 256;
}
2023-07-23 21:49:10 -04:00
if (Platform.isIOS || Platform.isAndroid) {
return (await SystemInfoPlus.physicalMemory ?? 2048) ~/ 32;
}
2023-05-29 15:24:57 -04:00
return sysinfo.SysInfo.getTotalPhysicalMemory() ~/ 32 ~/ megaByte;
}
int getRemoteSubkeyCacheSize() {
if (kIsWeb) {
return 64;
}
return 128;
}
int getRemoteMaxRecords() {
if (kIsWeb) {
return 64;
}
return 128;
}
2023-07-23 21:49:10 -04:00
Future<int> getRemoteMaxSubkeyCacheMemoryMb() async {
2023-05-29 15:24:57 -04:00
if (kIsWeb) {
return 256;
}
2023-07-23 21:49:10 -04:00
if (Platform.isIOS || Platform.isAndroid) {
return (await SystemInfoPlus.physicalMemory ?? 2048) ~/ 32;
}
2023-05-29 15:24:57 -04:00
return sysinfo.SysInfo.getTotalPhysicalMemory() ~/ 32 ~/ megaByte;
}
int getRemoteMaxStorageSpaceMb() {
if (kIsWeb) {
return 128;
}
return 256;
}
2022-12-26 16:33:48 -05:00
Future<VeilidConfig> getDefaultVeilidConfig(String programName) async {
return VeilidConfig(
programName: programName,
namespace: "",
2023-07-05 23:53:08 -04:00
capabilities: const VeilidConfigCapabilities(disable: []),
protectedStore: const VeilidConfigProtectedStore(
2022-12-26 16:33:48 -05:00
allowInsecureFallback: false,
alwaysUseInsecureStorage: false,
2023-05-29 15:24:57 -04:00
directory: "",
2022-12-26 16:33:48 -05:00
delete: false,
2023-05-29 20:40:49 -04:00
deviceEncryptionKeyPassword: "",
newDeviceEncryptionKeyPassword: null,
2022-12-26 16:33:48 -05:00
),
tableStore: VeilidConfigTableStore(
directory: kIsWeb
? ""
: p.join((await getApplicationSupportDirectory()).absolute.path,
"table_store"),
delete: false,
),
blockStore: VeilidConfigBlockStore(
directory: kIsWeb
? ""
: p.join((await getApplicationSupportDirectory()).absolute.path,
"block_store"),
delete: false,
),
network: VeilidConfigNetwork(
connectionInitialTimeoutMs: 2000,
connectionInactivityTimeoutMs: 60000,
maxConnectionsPerIp4: 32,
maxConnectionsPerIp6Prefix: 32,
maxConnectionsPerIp6PrefixSize: 56,
maxConnectionFrequencyPerMin: 128,
clientWhitelistTimeoutMs: 300000,
reverseConnectionReceiptTimeMs: 5000,
holePunchReceiptTimeMs: 5000,
2023-07-05 23:53:08 -04:00
routingTable: const VeilidConfigRoutingTable(
2023-03-12 12:24:21 -04:00
nodeId: [],
nodeIdSecret: [],
bootstrap: kIsWeb
2023-06-22 17:42:34 -04:00
? ["ws://bootstrap.veilid.net:5150/ws"]
: ["bootstrap.veilid.net"],
2022-12-26 16:33:48 -05:00
limitOverAttached: 64,
limitFullyAttached: 32,
limitAttachedStrong: 16,
limitAttachedGood: 8,
limitAttachedWeak: 4,
),
2023-07-05 23:53:08 -04:00
rpc: const VeilidConfigRPC(
2022-12-26 16:33:48 -05:00
concurrency: 0,
queueSize: 1024,
maxTimestampBehindMs: 10000,
maxTimestampAheadMs: 10000,
2023-05-29 15:24:57 -04:00
timeoutMs: 5000,
2022-12-26 16:33:48 -05:00
maxRouteHopCount: 4,
defaultRouteHopCount: 1,
),
dht: VeilidConfigDHT(
2023-05-29 15:24:57 -04:00
resolveNodeTimeoutMs: 10000,
resolveNodeCount: 20,
resolveNodeFanout: 3,
maxFindNodeCount: 20,
getValueTimeoutMs: 10000,
getValueCount: 20,
getValueFanout: 3,
setValueTimeoutMs: 10000,
setValueCount: 20,
setValueFanout: 5,
minPeerCount: 20,
2023-07-19 10:07:51 -04:00
minPeerRefreshTimeMs: 60000,
2023-05-29 15:24:57 -04:00
validateDialInfoReceiptTimeMs: 2000,
localSubkeyCacheSize: getLocalSubkeyCacheSize(),
2023-07-23 21:49:10 -04:00
localMaxSubkeyCacheMemoryMb: await getLocalMaxSubkeyCacheMemoryMb(),
2023-05-29 15:24:57 -04:00
remoteSubkeyCacheSize: getRemoteSubkeyCacheSize(),
remoteMaxRecords: getRemoteMaxRecords(),
2023-07-23 21:49:10 -04:00
remoteMaxSubkeyCacheMemoryMb: await getRemoteMaxSubkeyCacheMemoryMb(),
2023-05-29 15:24:57 -04:00
remoteMaxStorageSpaceMb: getRemoteMaxStorageSpaceMb()),
2022-12-26 16:33:48 -05:00
upnp: true,
detectAddressChanges: true,
restrictedNatRetries: 0,
2023-07-05 23:53:08 -04:00
tls: const VeilidConfigTLS(
2022-12-26 16:33:48 -05:00
certificatePath: "",
privateKeyPath: "",
connectionInitialTimeoutMs: 2000,
),
2023-07-05 23:53:08 -04:00
application: const VeilidConfigApplication(
2022-12-26 16:33:48 -05:00
https: VeilidConfigHTTPS(
enabled: false,
listenAddress: "",
path: "",
url: null,
),
http: VeilidConfigHTTP(
enabled: false,
listenAddress: "",
path: "",
url: null,
)),
2023-07-05 23:53:08 -04:00
protocol: const VeilidConfigProtocol(
2022-12-26 16:33:48 -05:00
udp: VeilidConfigUDP(
enabled: !kIsWeb,
socketPoolSize: 0,
listenAddress: "",
publicAddress: null,
),
tcp: VeilidConfigTCP(
connect: !kIsWeb,
listen: !kIsWeb,
maxConnections: 32,
listenAddress: "",
publicAddress: null,
),
ws: VeilidConfigWS(
connect: true,
listen: !kIsWeb,
maxConnections: 16,
listenAddress: "",
path: "ws",
url: null,
),
wss: VeilidConfigWSS(
connect: true,
listen: false,
maxConnections: 16,
listenAddress: "",
path: "ws",
url: null,
),
),
),
);
}