2024-04-20 23:20:52 +00:00
|
|
|
import 'package:grpc/grpc.dart';
|
2024-04-21 18:58:45 +00:00
|
|
|
import 'package:path_provider/path_provider.dart';
|
2024-04-20 23:20:52 +00:00
|
|
|
import 'cw_mweb_platform_interface.dart';
|
|
|
|
import 'mwebd.pbgrpc.dart';
|
|
|
|
|
|
|
|
class CwMweb {
|
2024-04-21 18:58:45 +00:00
|
|
|
static Future<RpcClient> stub() async {
|
|
|
|
final appDir = await getApplicationSupportDirectory();
|
2024-07-17 16:27:31 +00:00
|
|
|
int port = await CwMwebPlatform.instance.start(appDir.path) ?? 0;
|
|
|
|
return RpcClient(
|
|
|
|
ClientChannel('127.0.0.1',
|
|
|
|
port: port,
|
|
|
|
options: const ChannelOptions(
|
|
|
|
credentials: ChannelCredentials.insecure(),
|
|
|
|
keepAlive: ClientKeepAliveOptions(permitWithoutCalls: true),
|
2024-07-19 16:15:28 +00:00
|
|
|
)),
|
2024-07-17 16:27:31 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Future<void> stop() async {
|
|
|
|
await CwMwebPlatform.instance.start("stop");
|
2024-04-20 23:20:52 +00:00
|
|
|
}
|
|
|
|
}
|