veilidchat/lib/processor.dart

101 lines
2.8 KiB
Dart
Raw Normal View History

2023-01-09 22:50:34 -05:00
import 'dart:async';
2023-07-26 14:20:29 -04:00
2023-01-09 22:50:34 -05:00
import 'package:veilid/veilid.dart';
2023-07-26 14:20:29 -04:00
2023-09-26 18:46:02 -04:00
import 'providers/connection_state.dart';
2023-09-26 22:32:13 -04:00
import 'tools/tools.dart';
2023-09-26 18:46:02 -04:00
import 'veilid_support/src/config.dart';
import 'veilid_support/src/veilid_log.dart';
2023-01-09 22:50:34 -05:00
class Processor {
2023-07-26 14:20:29 -04:00
Processor();
String _veilidVersion = '';
2023-01-09 22:50:34 -05:00
bool _startedUp = false;
Stream<VeilidUpdate>? _updateStream;
Future<void>? _updateProcessor;
Future<void> startup() async {
if (_startedUp) {
return;
}
try {
_veilidVersion = Veilid.instance.veilidVersionString();
} on Exception {
_veilidVersion = 'Failed to get veilid version.';
}
2023-07-26 14:20:29 -04:00
log.info('Veilid version: $_veilidVersion');
2023-07-22 23:29:10 -04:00
2023-01-09 22:50:34 -05:00
// In case of hot restart shut down first
try {
await Veilid.instance.shutdownVeilidCore();
2023-10-21 19:23:43 -04:00
} on Exception {}
2023-01-09 22:50:34 -05:00
2023-07-26 14:20:29 -04:00
final updateStream =
2023-01-09 22:50:34 -05:00
await Veilid.instance.startupVeilidCore(await getVeilidChatConfig());
_updateStream = updateStream;
_updateProcessor = processUpdates();
_startedUp = true;
await Veilid.instance.attach();
}
Future<void> shutdown() async {
if (!_startedUp) {
return;
}
await Veilid.instance.shutdownVeilidCore();
if (_updateProcessor != null) {
await _updateProcessor;
}
_updateProcessor = null;
_updateStream = null;
_startedUp = false;
}
Future<void> processUpdateAttachment(
VeilidUpdateAttachment updateAttachment) async {
//loggy.info("Attachment: ${updateAttachment.json}");
2023-10-21 19:23:43 -04:00
// // Set connection meter and ui state for connection state
2023-01-09 22:50:34 -05:00
2023-10-21 19:23:43 -04:00
connectionState.state = ConnectionState(
attachment: VeilidStateAttachment(
state: updateAttachment.state,
publicInternetReady: updateAttachment.publicInternetReady,
localNetworkReady: updateAttachment.localNetworkReady));
2023-01-09 22:50:34 -05:00
}
Future<void> processUpdateConfig(VeilidUpdateConfig updateConfig) async {
//loggy.info("Config: ${updateConfig.json}");
}
Future<void> processUpdateNetwork(VeilidUpdateNetwork updateNetwork) async {
//loggy.info("Network: ${updateNetwork.json}");
}
Future<void> processUpdates() async {
2023-07-26 14:20:29 -04:00
final stream = _updateStream;
2023-01-09 22:50:34 -05:00
if (stream != null) {
await for (final update in stream) {
if (update is VeilidLog) {
await processLog(update);
} else if (update is VeilidUpdateAttachment) {
await processUpdateAttachment(update);
} else if (update is VeilidUpdateConfig) {
await processUpdateConfig(update);
} else if (update is VeilidUpdateNetwork) {
await processUpdateNetwork(update);
} else if (update is VeilidAppMessage) {
2023-07-26 14:20:29 -04:00
log.info('AppMessage: ${update.toJson()}');
2023-01-09 22:50:34 -05:00
} else if (update is VeilidAppCall) {
2023-07-26 14:20:29 -04:00
log.info('AppCall: ${update.toJson()}');
2023-01-09 22:50:34 -05:00
} else {
2023-07-26 14:20:29 -04:00
log.trace('Update: ${update.toJson()}');
2023-01-09 22:50:34 -05:00
}
}
}
}
}