-
Notifications
You must be signed in to change notification settings - Fork 650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dart grpc client #3144
Merged
+394
−16
Merged
Dart grpc client #3144
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
import 'dart:io'; | ||
|
||
import 'package:async/async.dart'; | ||
import 'package:basics/int_basics.dart'; | ||
import 'package:built_collection/built_collection.dart'; | ||
import 'package:flutter_riverpod/flutter_riverpod.dart'; | ||
import 'package:grpc/grpc.dart'; | ||
|
||
import 'ffi.dart'; | ||
import 'generated/multipass.pbgrpc.dart'; | ||
|
||
typedef Status = InstanceStatus_Status; | ||
typedef VmInfo = InfoReply_Info; | ||
|
||
final grpcClientProvider = Provider( | ||
(_) { | ||
final address = getServerAddress(); | ||
final certPair = getCertPair(); | ||
|
||
var channelCredentials = CustomChannelCredentials( | ||
authority: 'localhost', | ||
certificate: certPair.cert, | ||
certificateKey: certPair.key, | ||
); | ||
|
||
return GrpcClient(RpcClient(ClientChannel( | ||
address.scheme == InternetAddressType.unix.name.toLowerCase() | ||
? InternetAddress(address.path, type: InternetAddressType.unix) | ||
: address.host, | ||
port: address.port, | ||
options: ChannelOptions(credentials: channelCredentials), | ||
))); | ||
}, | ||
); | ||
|
||
final vmInfosStreamProvider = StreamProvider( | ||
(ref) => ref.watch(grpcClientProvider).infoStream(), | ||
); | ||
|
||
final vmInfosProvider = Provider( | ||
(ref) => ref.watch(vmInfosStreamProvider).valueOrNull ?? const [], | ||
); | ||
|
||
Map<String, Status> infosToStatusMap(Iterable<VmInfo> infos) { | ||
return {for (final info in infos) info.name: info.instanceStatus.status}; | ||
} | ||
|
||
final vmStatusesProvider = Provider( | ||
(ref) => infosToStatusMap(ref.watch(vmInfosProvider)).build(), | ||
); | ||
|
||
final vmNamesProvider = Provider( | ||
(ref) => ref.watch(vmStatusesProvider).keys.toBuiltSet(), | ||
); | ||
|
||
class GrpcClient { | ||
final RpcClient _client; | ||
|
||
GrpcClient(this._client); | ||
|
||
ResponseStream<LaunchReply> launch(LaunchRequest request) { | ||
return _client.launch(Stream.value(request), options: CallOptions()); | ||
} | ||
|
||
Future<StartReply?> start(Iterable<String> names) async { | ||
final instanceNames = InstanceNames()..instanceName.addAll(names); | ||
final request = StartRequest()..instanceNames = instanceNames; | ||
return _client.start(Stream.value(request)).firstOrNull; | ||
} | ||
|
||
Future<StopReply?> stop(Iterable<String> names) async { | ||
final instanceNames = InstanceNames()..instanceName.addAll(names); | ||
final request = StopRequest()..instanceNames = instanceNames; | ||
return _client.stop(Stream.value(request)).firstOrNull; | ||
} | ||
|
||
Future<SuspendReply?> suspend(Iterable<String> names) async { | ||
final instanceNames = InstanceNames()..instanceName.addAll(names); | ||
final request = SuspendRequest()..instanceNames = instanceNames; | ||
return _client.suspend(Stream.value(request)).firstOrNull; | ||
} | ||
|
||
Future<RestartReply?> restart(Iterable<String> names) async { | ||
final instanceNames = InstanceNames()..instanceName.addAll(names); | ||
final request = RestartRequest()..instanceNames = instanceNames; | ||
return _client.restart(Stream.value(request)).firstOrNull; | ||
} | ||
|
||
Future<DeleteReply?> delete(Iterable<String> names) async { | ||
final instanceNames = InstanceNames()..instanceName.addAll(names); | ||
final request = DeleteRequest()..instanceNames = instanceNames; | ||
return _client.delet(Stream.value(request)).firstOrNull; | ||
} | ||
|
||
Future<RecoverReply?> recover(Iterable<String> names) async { | ||
final instanceNames = InstanceNames()..instanceName.addAll(names); | ||
final request = RecoverRequest()..instanceNames = instanceNames; | ||
return _client.recover(Stream.value(request)).firstOrNull; | ||
} | ||
|
||
Future<DeleteReply?> purge(Iterable<String> names) async { | ||
final instanceNames = InstanceNames()..instanceName.addAll(names); | ||
final request = DeleteRequest() | ||
..instanceNames = instanceNames | ||
..purge = true; | ||
return _client.delet(Stream.value(request)).firstOrNull; | ||
} | ||
|
||
Stream<List<VmInfo>> infoStream() async* { | ||
// this is to de-duplicate errors received from the stream | ||
Object? lastError; | ||
await for (final _ in Stream.periodic(1.seconds)) { | ||
try { | ||
final reply = await _client.info(Stream.value(InfoRequest())).last; | ||
yield reply.info; | ||
lastError = null; | ||
} catch (error, stackTrace) { | ||
if (error != lastError) yield* Stream.error(error, stackTrace); | ||
lastError = error; | ||
} | ||
} | ||
} | ||
|
||
Future<List<FindReply_ImageInfo>> find() { | ||
final request = FindRequest() | ||
..showImages = true | ||
..showBlueprints = true; | ||
return _client.find(Stream.value(request)).single.then((r) => r.imagesInfo); | ||
} | ||
|
||
Future<String> version() { | ||
final request = VersionRequest(); | ||
return _client | ||
.version(Stream.value(request)) | ||
.single | ||
.then((reply) => reply.version); | ||
} | ||
} | ||
|
||
class CustomChannelCredentials extends ChannelCredentials { | ||
final List<int> certificateChain; | ||
final List<int> certificateKey; | ||
|
||
CustomChannelCredentials({ | ||
required List<int> certificate, | ||
required this.certificateKey, | ||
String? authority, | ||
}) : certificateChain = certificate, | ||
super.secure( | ||
certificates: certificate, | ||
authority: authority, | ||
onBadCertificate: allowBadCertificates); | ||
|
||
@override | ||
SecurityContext get securityContext { | ||
final ctx = super.securityContext!; | ||
ctx.useCertificateChainBytes(certificateChain); | ||
ctx.usePrivateKeyBytes(certificateKey); | ||
return ctx; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very clean and tidy implementation.