AppFlowy/frontend/app_flowy/lib/startup/startup.dart

104 lines
3.5 KiB
Dart
Raw Normal View History

2021-06-19 15:41:19 +00:00
import 'package:app_flowy/startup/tasks/prelude.dart';
import 'package:flutter/material.dart';
import 'package:get_it/get_it.dart';
2021-10-11 05:15:41 +00:00
import 'package:app_flowy/workspace/infrastructure/deps_resolver.dart';
import 'package:app_flowy/user/infrastructure/deps_resolver.dart';
import 'package:flowy_sdk/flowy_sdk.dart';
2021-06-19 15:41:19 +00:00
2021-10-11 05:15:41 +00:00
// [[diagram: flowy startup flow]]
// ┌──────────┐
// │ FlowyApp │
// └──────────┘
// │ impl
// ▼
// ┌────────┐ 1.run ┌──────────┐
// │ System │───┬───▶│EntryPoint│
// └────────┘ │ └──────────┘ ┌─────────────────┐
// │ ┌──▶ │ RustSDKInitTask │
// │ ┌───────────┐ │ └─────────────────┘
// └──▶ │AppLauncher│───┤
// 2.launch └───────────┘ │ ┌─────────────┐ ┌──────────────────┐ ┌───────────────┐
// └───▶│AppWidgetTask│────────▶│ApplicationWidget │─────▶│ SplashScreen │
// └─────────────┘ └──────────────────┘ └───────────────┘
//
// 3.build MeterialApp
2021-06-19 15:41:19 +00:00
final getIt = GetIt.instance;
enum IntegrationEnv {
dev,
pro,
}
2021-09-12 14:19:59 +00:00
abstract class EntryPoint {
2021-06-19 15:41:19 +00:00
Widget create();
}
2021-09-12 14:19:59 +00:00
class System {
2022-02-19 09:12:44 +00:00
static Future<void> run(EntryPoint f) async {
2021-11-19 07:23:58 +00:00
// Specify the env
2021-06-19 15:41:19 +00:00
const env = IntegrationEnv.dev;
// Config the deps graph
2021-09-12 14:19:59 +00:00
getIt.registerFactory<EntryPoint>(() => f);
2021-06-19 15:41:19 +00:00
resolveDependencies(env);
// add task
2021-12-04 14:24:32 +00:00
getIt<AppLauncher>().addTask(InitRustSDKTask());
getIt<AppLauncher>().addTask(ApplicationWidgetTask());
2021-12-04 14:24:32 +00:00
getIt<AppLauncher>().addTask(InitPlatformService());
2021-06-19 15:41:19 +00:00
// execute the tasks
getIt<AppLauncher>().launch();
}
}
2021-10-11 05:15:41 +00:00
void resolveDependencies(IntegrationEnv env) => initGetIt(getIt, env);
Future<void> initGetIt(
GetIt getIt,
IntegrationEnv env,
) async {
getIt.registerLazySingleton<FlowySDK>(() => const FlowySDK());
getIt.registerLazySingleton<AppLauncher>(() => AppLauncher(env, getIt));
await UserDepsResolver.resolve(getIt);
await HomeDepsResolver.resolve(getIt);
}
2022-02-19 05:52:52 +00:00
class LaunchContext {
GetIt getIt;
IntegrationEnv env;
LaunchContext(this.getIt, this.env);
}
enum LaunchTaskType {
dataProcessing,
appLauncher,
}
/// The interface of an app launch task, which will trigger
/// some nonresident indispensable task in app launching task.
abstract class LaunchTask {
LaunchTaskType get type => LaunchTaskType.dataProcessing;
Future<void> initialize(LaunchContext context);
}
class AppLauncher {
List<LaunchTask> tasks;
IntegrationEnv env;
GetIt getIt;
AppLauncher(this.env, this.getIt) : tasks = List.from([]);
void addTask(LaunchTask task) {
tasks.add(task);
}
2022-02-19 09:12:44 +00:00
Future<void> launch() async {
2022-02-19 05:52:52 +00:00
final context = LaunchContext(getIt, env);
for (var task in tasks) {
await task.initialize(context);
}
}
}