1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
//! Host Runtime - orchestrates the full `ModKit` lifecycle
//!
//! This module contains the `HostRuntime` type that owns and coordinates
//! the execution of all lifecycle phases.
//!
//! High-level phase order:
//! - `pre_init` (system modules only)
//! - DB migrations (modules with DB capability)
//! - `init` (all modules)
//! - `post_init` (system modules only; runs after *all* `init` complete)
//! - REST wiring (modules with REST capability; requires a single REST host)
//! - gRPC registration (modules with gRPC capability; requires a single gRPC hub)
//! - start/stop (stateful modules)
//! - `OoP` spawn / wait / stop (host-only orchestration)
use axum::Router;
use std::collections::HashSet;
use std::sync::Arc;
use tokio_util::sync::CancellationToken;
use uuid::Uuid;
use crate::backends::OopSpawnConfig;
use crate::client_hub::ClientHub;
use crate::config::ConfigProvider;
use crate::context::ModuleContextBuilder;
use crate::registry::{
ApiGatewayCap, GrpcHubCap, ModuleEntry, ModuleRegistry, RegistryError, RestApiCap, RunnableCap,
SystemCap,
};
use crate::runtime::{GrpcInstallerStore, ModuleManager, OopSpawnOptions, SystemContext};
#[cfg(feature = "db")]
use crate::registry::DatabaseCap;
/// How the runtime should provide DBs to modules.
#[derive(Clone)]
pub enum DbOptions {
/// No database integration. `ModuleCtx::db()` will be `None`, `db_required()` will error.
None,
/// Use a `DbManager` to handle database connections with Figment-based configuration.
#[cfg(feature = "db")]
Manager(Arc<modkit_db::DbManager>),
}
/// Runtime execution mode that determines which phases to run.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum RunMode {
/// Run all phases and wait for shutdown signal (normal application mode).
Full,
/// Run only pre-init and DB migration phases, then exit (for cloud deployments).
MigrateOnly,
}
/// Environment variable name for passing directory endpoint to `OoP` modules.
pub const MODKIT_DIRECTORY_ENDPOINT_ENV: &str = "MODKIT_DIRECTORY_ENDPOINT";
/// Environment variable name for passing rendered module config to `OoP` modules.
pub const MODKIT_MODULE_CONFIG_ENV: &str = "MODKIT_MODULE_CONFIG";
/// Default shutdown deadline for graceful module stop (35 seconds).
///
/// This is intentionally 5 seconds longer than `WithLifecycle::stop_timeout` (30s default)
/// to ensure deterministic behavior: the lifecycle's internal timeout fires first,
/// and the runtime deadline acts as a hard backstop.
pub const DEFAULT_SHUTDOWN_DEADLINE: std::time::Duration = std::time::Duration::from_secs(35);
/// `HostRuntime` owns the lifecycle orchestration for `ModKit`.
///
/// It encapsulates all runtime state and drives modules through the full lifecycle (see module docs).
pub struct HostRuntime {
registry: ModuleRegistry,
ctx_builder: ModuleContextBuilder,
instance_id: Uuid,
module_manager: Arc<ModuleManager>,
grpc_installers: Arc<GrpcInstallerStore>,
#[allow(dead_code)]
client_hub: Arc<ClientHub>,
cancel: CancellationToken,
#[allow(dead_code)]
db_options: DbOptions,
/// `OoP` module spawn configuration and backend
oop_options: Option<OopSpawnOptions>,
/// Maximum time allowed for graceful shutdown before hard-stop signal is sent.
shutdown_deadline: std::time::Duration,
}
impl HostRuntime {
/// Create a new `HostRuntime` instance.
///
/// This prepares all runtime components but does not start any lifecycle phases.
pub fn new(
registry: ModuleRegistry,
modules_cfg: Arc<dyn ConfigProvider>,
db_options: DbOptions,
client_hub: Arc<ClientHub>,
cancel: CancellationToken,
instance_id: Uuid,
oop_options: Option<OopSpawnOptions>,
) -> Self {
// Create runtime-owned components for system modules
let module_manager = Arc::new(ModuleManager::new());
let grpc_installers = Arc::new(GrpcInstallerStore::new());
// Build the context builder that will resolve per-module DbHandles
let db_manager = match &db_options {
#[cfg(feature = "db")]
DbOptions::Manager(mgr) => Some(mgr.clone()),
DbOptions::None => None,
};
let ctx_builder = ModuleContextBuilder::new(
instance_id,
modules_cfg,
client_hub.clone(),
cancel.clone(),
db_manager,
);
Self {
registry,
ctx_builder,
instance_id,
module_manager,
grpc_installers,
client_hub,
cancel,
db_options,
oop_options,
shutdown_deadline: DEFAULT_SHUTDOWN_DEADLINE,
}
}
/// Set a custom shutdown deadline for graceful module stop.
///
/// This is the maximum time the runtime will wait for each module to stop gracefully
/// before sending the hard-stop signal (cancelling the deadline token).
///
/// # Relationship with `WithLifecycle::stop_timeout`
///
/// When using `WithLifecycle`, its `stop_timeout` (default 30s) races against this
/// `shutdown_deadline` (also default 30s). To ensure deterministic behavior:
///
/// - `WithLifecycle::stop_timeout` should be **less than** `shutdown_deadline`
/// - This allows the lifecycle's internal timeout to trigger first for graceful cleanup
/// - The runtime's `deadline_token` then acts as a hard backstop
///
/// Example: `stop_timeout = 25s`, `shutdown_deadline = 30s`
#[must_use]
pub fn with_shutdown_deadline(mut self, deadline: std::time::Duration) -> Self {
self.shutdown_deadline = deadline;
self
}
/// `PRE_INIT` phase: wire runtime internals into system modules.
///
/// This phase runs before init and only for modules with the "system" capability.
///
/// # Errors
/// Returns `RegistryError` if system wiring fails.
pub fn run_pre_init_phase(&self) -> Result<(), RegistryError> {
tracing::info!("Phase: pre_init");
let sys_ctx = SystemContext::new(
self.instance_id,
Arc::clone(&self.module_manager),
Arc::clone(&self.grpc_installers),
);
for entry in self.registry.modules() {
// Check for cancellation before processing each module
if self.cancel.is_cancelled() {
tracing::warn!("Pre-init phase cancelled by signal");
return Err(RegistryError::Cancelled);
}
if let Some(sys_mod) = entry.caps.query::<SystemCap>() {
tracing::debug!(module = entry.name, "Running system pre_init");
sys_mod
.pre_init(&sys_ctx)
.map_err(|e| RegistryError::PreInit {
module: entry.name,
source: e,
})?;
}
}
Ok(())
}
/// Helper: resolve context for a module with error mapping.
async fn module_context(
&self,
module_name: &'static str,
) -> Result<crate::context::ModuleCtx, RegistryError> {
self.ctx_builder
.for_module(module_name)
.await
.map_err(|e| RegistryError::DbMigrate {
module: module_name,
source: e,
})
}
/// Helper: extract DB handle and module if both exist.
#[cfg(feature = "db")]
async fn db_migration_target(
&self,
module_name: &'static str,
ctx: &crate::context::ModuleCtx,
db_module: Option<Arc<dyn crate::contracts::DatabaseCapability>>,
) -> Result<Option<(modkit_db::Db, Arc<dyn crate::contracts::DatabaseCapability>)>, RegistryError>
{
let Some(dbm) = db_module else {
return Ok(None);
};
// Important: DB migrations require access to the underlying `Db`, not just `DBProvider`.
// `ModuleCtx` intentionally exposes only `DBProvider` for better DX and to reduce mistakes.
// So the runtime resolves the `Db` directly from its `DbManager`.
let db = match &self.db_options {
DbOptions::None => None,
#[cfg(feature = "db")]
DbOptions::Manager(mgr) => {
mgr.get(module_name)
.await
.map_err(|e| RegistryError::DbMigrate {
module: module_name,
source: e.into(),
})?
}
};
_ = ctx; // ctx is kept for parity/error context; DB is resolved from manager above.
Ok(db.map(|db| (db, dbm)))
}
/// Helper: run migrations for a single module using the new migration runner.
///
/// This collects migrations from the module and executes them via the
/// runtime's privileged connection. Modules never see the raw connection.
#[cfg(feature = "db")]
async fn migrate_module(
module_name: &'static str,
db: &modkit_db::Db,
db_module: Arc<dyn crate::contracts::DatabaseCapability>,
) -> Result<(), RegistryError> {
// Collect migrations from the module
let migrations = db_module.migrations();
if migrations.is_empty() {
tracing::debug!(module = module_name, "No migrations to run");
return Ok(());
}
tracing::debug!(
module = module_name,
count = migrations.len(),
"Running DB migrations"
);
// Execute migrations using the migration runner
let result =
modkit_db::migration_runner::run_migrations_for_module(db, module_name, migrations)
.await
.map_err(|e| RegistryError::DbMigrate {
module: module_name,
source: anyhow::Error::new(e),
})?;
tracing::info!(
module = module_name,
applied = result.applied,
skipped = result.skipped,
"DB migrations completed"
);
Ok(())
}
/// DB MIGRATION phase: run migrations for all modules with DB capability.
///
/// Runs before init, with system modules processed first.
///
/// Modules provide migrations via `DatabaseCapability::migrations()`.
/// The runtime executes them with a privileged connection that modules
/// never receive directly. Each module gets a separate migration history
/// table, preventing cross-module interference.
#[cfg(feature = "db")]
async fn run_db_phase(&self) -> Result<(), RegistryError> {
tracing::info!("Phase: db (before init)");
for entry in self.registry.modules_by_system_priority() {
// Check for cancellation before processing each module
if self.cancel.is_cancelled() {
tracing::warn!("DB migration phase cancelled by signal");
return Err(RegistryError::Cancelled);
}
let ctx = self.module_context(entry.name).await?;
let db_module = entry.caps.query::<DatabaseCap>();
match self
.db_migration_target(entry.name, &ctx, db_module.clone())
.await?
{
Some((db, dbm)) => {
Self::migrate_module(entry.name, &db, dbm).await?;
}
None if db_module.is_some() => {
tracing::debug!(
module = entry.name,
"Module has DbModule trait but no DB handle (no config)"
);
}
None => {}
}
}
Ok(())
}
/// INIT phase: initialize all modules in topological order.
///
/// System modules initialize first, followed by user modules.
async fn run_init_phase(&self) -> Result<(), RegistryError> {
tracing::info!("Phase: init");
for entry in self.registry.modules_by_system_priority() {
let ctx =
self.ctx_builder
.for_module(entry.name)
.await
.map_err(|e| RegistryError::Init {
module: entry.name,
source: e,
})?;
tracing::info!(module = entry.name, "Initializing a module...");
entry
.core
.init(&ctx)
.await
.map_err(|e| RegistryError::Init {
module: entry.name,
source: e,
})?;
tracing::info!(module = entry.name, "Initialized a module.");
}
Ok(())
}
/// `POST_INIT` phase: optional hook after ALL modules completed `init()`.
///
/// This provides a global barrier between initialization-time registration
/// and subsequent phases that may rely on a fully-populated runtime registry.
///
/// System modules run first, followed by user modules, preserving topo order.
async fn run_post_init_phase(&self) -> Result<(), RegistryError> {
tracing::info!("Phase: post_init");
let sys_ctx = SystemContext::new(
self.instance_id,
Arc::clone(&self.module_manager),
Arc::clone(&self.grpc_installers),
);
for entry in self.registry.modules_by_system_priority() {
if let Some(sys_mod) = entry.caps.query::<SystemCap>() {
sys_mod
.post_init(&sys_ctx)
.await
.map_err(|e| RegistryError::PostInit {
module: entry.name,
source: e,
})?;
}
}
Ok(())
}
/// REST phase: compose the router against the REST host.
///
/// This is a synchronous phase that builds the final Router by:
/// 1. Preparing the host module
/// 2. Registering all REST providers
/// 3. Finalizing with `OpenAPI` endpoints
async fn run_rest_phase(&self) -> Result<Router, RegistryError> {
tracing::info!("Phase: rest (sync)");
let mut router = Router::new();
// Find host(s) and whether any rest modules exist
let host_count = self
.registry
.modules()
.iter()
.filter(|e| e.caps.has::<ApiGatewayCap>())
.count();
match host_count {
0 => {
return if self
.registry
.modules()
.iter()
.any(|e| e.caps.has::<RestApiCap>())
{
Err(RegistryError::RestRequiresHost)
} else {
Ok(router)
};
}
1 => { /* proceed */ }
_ => return Err(RegistryError::MultipleRestHosts),
}
// Resolve the single host entry and its module context
let host_idx = self
.registry
.modules()
.iter()
.position(|e| e.caps.has::<ApiGatewayCap>())
.ok_or(RegistryError::RestHostNotFoundAfterValidation)?;
let host_entry = &self.registry.modules()[host_idx];
let Some(host) = host_entry.caps.query::<ApiGatewayCap>() else {
return Err(RegistryError::RestHostMissingFromEntry);
};
let host_ctx = self
.ctx_builder
.for_module(host_entry.name)
.await
.map_err(|e| RegistryError::RestPrepare {
module: host_entry.name,
source: e,
})?;
// use host as the registry
let registry: &dyn crate::contracts::OpenApiRegistry = host.as_registry();
// 1) Host prepare: base Router / global middlewares / basic OAS meta
router =
host.rest_prepare(&host_ctx, router)
.map_err(|source| RegistryError::RestPrepare {
module: host_entry.name,
source,
})?;
// 2) Register all REST providers (in the current discovery order)
for e in self.registry.modules() {
if let Some(rest) = e.caps.query::<RestApiCap>() {
let ctx = self.ctx_builder.for_module(e.name).await.map_err(|err| {
RegistryError::RestRegister {
module: e.name,
source: err,
}
})?;
router = rest
.register_rest(&ctx, router, registry)
.map_err(|source| RegistryError::RestRegister {
module: e.name,
source,
})?;
}
}
// 3) Host finalize: attach /openapi.json and /docs, persist Router if needed (no server start)
router = host.rest_finalize(&host_ctx, router).map_err(|source| {
RegistryError::RestFinalize {
module: host_entry.name,
source,
}
})?;
Ok(router)
}
/// gRPC registration phase: collect services from all grpc modules.
///
/// Services are stored in the installer store for the `grpc-hub` to consume during start.
async fn run_grpc_phase(&self) -> Result<(), RegistryError> {
tracing::info!("Phase: grpc (registration)");
// If no grpc_hub and no grpc_services, skip the phase
if self.registry.grpc_hub.is_none() && self.registry.grpc_services.is_empty() {
return Ok(());
}
// If there are grpc_services but no hub, that's an error
if self.registry.grpc_hub.is_none() && !self.registry.grpc_services.is_empty() {
return Err(RegistryError::GrpcRequiresHub);
}
// If there's a hub, collect all services grouped by module and hand them off to the installer store
if let Some(hub_name) = &self.registry.grpc_hub {
let mut modules_data = Vec::new();
let mut seen = HashSet::new();
// Collect services from all grpc modules
for (module_name, service_module) in &self.registry.grpc_services {
let ctx = self
.ctx_builder
.for_module(module_name)
.await
.map_err(|err| RegistryError::GrpcRegister {
module: module_name.clone(),
source: err,
})?;
let installers =
service_module
.get_grpc_services(&ctx)
.await
.map_err(|source| RegistryError::GrpcRegister {
module: module_name.clone(),
source,
})?;
for reg in &installers {
if !seen.insert(reg.service_name) {
return Err(RegistryError::GrpcRegister {
module: module_name.clone(),
source: anyhow::anyhow!(
"Duplicate gRPC service name: {}",
reg.service_name
),
});
}
}
modules_data.push(crate::runtime::ModuleInstallers {
module_name: module_name.clone(),
installers,
});
}
self.grpc_installers
.set(crate::runtime::GrpcInstallerData {
modules: modules_data,
})
.map_err(|source| RegistryError::GrpcRegister {
module: hub_name.clone(),
source,
})?;
}
Ok(())
}
/// START phase: start all stateful modules.
///
/// System modules start first, followed by user modules.
async fn run_start_phase(&self) -> Result<(), RegistryError> {
tracing::info!("Phase: start");
for e in self.registry.modules_by_system_priority() {
if let Some(s) = e.caps.query::<RunnableCap>() {
tracing::debug!(
module = e.name,
is_system = e.caps.has::<SystemCap>(),
"Starting stateful module"
);
s.start(self.cancel.clone())
.await
.map_err(|source| RegistryError::Start {
module: e.name,
source,
})?;
tracing::info!(module = e.name, "Started module");
}
}
Ok(())
}
/// Stop a single module, logging errors but continuing execution.
async fn stop_one_module(entry: &ModuleEntry, cancel: CancellationToken) {
if let Some(s) = entry.caps.query::<RunnableCap>() {
match s.stop(cancel).await {
Err(err) => {
tracing::warn!(module = entry.name, error = %err, "Failed to stop module");
}
_ => {
tracing::info!(module = entry.name, "Stopped module");
}
}
}
}
/// STOP phase: stop all stateful modules in reverse order.
///
/// # Two-Phase Shutdown Contract
///
/// This phase implements a proper two-phase shutdown for **each module**:
///
/// 1. **Graceful stop request**: Each module's `stop(deadline_token)` is called with a
/// *fresh* cancellation token (not the already-cancelled root token). Modules should
/// interpret this as "please stop gracefully".
///
/// 2. **Hard-stop deadline**: After `shutdown_deadline` expires **for that module**,
/// its `deadline_token` is cancelled. Modules should interpret this as "abort immediately".
///
/// Each module gets its own independent deadline — if module A takes 25s to stop,
/// module B still gets the full `shutdown_deadline` for its graceful shutdown.
///
/// This allows modules to implement real graceful shutdown:
/// - Request cooperative shutdown of child tasks
/// - Wait for them to finish gracefully
/// - If `deadline_token` fires, switch to hard-abort mode
///
/// Errors are logged but do not fail the shutdown process.
/// Note: `OoP` modules are stopped automatically by the backend when the
/// cancellation token is triggered.
async fn run_stop_phase(&self) -> Result<(), RegistryError> {
tracing::info!("Phase: stop");
let deadline = self.shutdown_deadline;
// Stop all modules in reverse order, each with its own independent deadline
for e in self.registry.modules().iter().rev() {
let module_name = e.name;
// Create a fresh deadline token for THIS module
// Each module gets the full shutdown_deadline independently
let deadline_token = CancellationToken::new();
let deadline_token_for_timeout = deadline_token.clone();
// Spawn a task to cancel this module's deadline token after shutdown_deadline
let deadline_task = tokio::spawn(async move {
tokio::time::sleep(deadline).await;
tracing::warn!(
module = module_name,
deadline_secs = deadline.as_secs(),
"Module shutdown deadline reached, sending hard-stop signal"
);
deadline_token_for_timeout.cancel();
});
// Stop this module with its own deadline token
// The module can observe the token transition from uncancelled→cancelled
Self::stop_one_module(e, deadline_token).await;
// Cancel the deadline task and await it to ensure full cleanup
deadline_task.abort();
#[allow(clippy::let_underscore_must_use)]
let _ = deadline_task.await;
}
Ok(())
}
/// `OoP` SPAWN phase: spawn out-of-process modules after start phase.
///
/// This phase runs after `grpc-hub` is already listening, so we can pass
/// the real directory endpoint to `OoP` modules.
async fn run_oop_spawn_phase(&self) -> Result<(), RegistryError> {
let oop_opts = match &self.oop_options {
Some(opts) if !opts.modules.is_empty() => opts,
_ => return Ok(()),
};
tracing::info!("Phase: oop_spawn");
// Wait for grpc_hub to publish its endpoint (it runs async in start phase)
let directory_endpoint = self.wait_for_grpc_hub_endpoint().await;
for module_cfg in &oop_opts.modules {
// Build environment with directory endpoint and rendered config
// Note: User controls --config via execution.args in master config
let mut env = module_cfg.env.clone();
env.insert(
MODKIT_MODULE_CONFIG_ENV.to_owned(),
module_cfg.rendered_config_json.clone(),
);
if let Some(ref endpoint) = directory_endpoint {
env.insert(MODKIT_DIRECTORY_ENDPOINT_ENV.to_owned(), endpoint.clone());
}
// Use args from execution config as-is (user controls --config via args)
let args = module_cfg.args.clone();
let spawn_config = OopSpawnConfig {
module_name: module_cfg.module_name.clone(),
binary: module_cfg.binary.clone(),
args,
env,
working_directory: module_cfg.working_directory.clone(),
};
oop_opts
.backend
.spawn(spawn_config)
.await
.map_err(|e| RegistryError::OopSpawn {
module: module_cfg.module_name.clone(),
source: e,
})?;
tracing::info!(
module = %module_cfg.module_name,
directory_endpoint = ?directory_endpoint,
"Spawned OoP module via backend"
);
}
Ok(())
}
/// Wait for `grpc-hub` to publish its bound endpoint.
///
/// Polls the `GrpcHubModule::bound_endpoint()` with a short interval until available or timeout.
/// Returns None if no `grpc-hub` is running or if it times out.
async fn wait_for_grpc_hub_endpoint(&self) -> Option<String> {
const POLL_INTERVAL: std::time::Duration = std::time::Duration::from_millis(10);
const MAX_WAIT: std::time::Duration = std::time::Duration::from_secs(5);
// Find grpc_hub in registry
let grpc_hub = self
.registry
.modules()
.iter()
.find_map(|e| e.caps.query::<GrpcHubCap>());
let Some(hub) = grpc_hub else {
return None; // No grpc_hub registered
};
let start = std::time::Instant::now();
loop {
if let Some(endpoint) = hub.bound_endpoint() {
tracing::debug!(
endpoint = %endpoint,
elapsed_ms = start.elapsed().as_millis(),
"gRPC hub endpoint available"
);
return Some(endpoint);
}
if start.elapsed() > MAX_WAIT {
tracing::warn!("Timed out waiting for gRPC hub to bind");
return None;
}
tokio::time::sleep(POLL_INTERVAL).await;
}
}
/// Run the full module lifecycle (all phases).
///
/// This is the standard entry point for normal application execution.
/// It runs all phases from pre-init through shutdown.
///
/// # Errors
///
/// Returns an error if any module phase fails during execution.
pub async fn run_module_phases(self) -> anyhow::Result<()> {
self.run_phases_internal(RunMode::Full).await
}
/// Run only the migration phases (pre-init + DB migration).
///
/// This is designed for cloud deployment workflows where database migrations
/// need to run as a separate step before starting the application.
/// The process exits after migrations complete.
///
/// # Errors
///
/// Returns an error if pre-init or migration phases fail.
pub async fn run_migration_phases(self) -> anyhow::Result<()> {
self.run_phases_internal(RunMode::MigrateOnly).await
}
/// Internal implementation that runs module phases based on the mode.
///
/// This private method contains the actual phase execution logic and is called
/// by both `run_module_phases()` and `run_migration_phases()`.
///
/// # Modes
///
/// - `RunMode::Full`: Executes all phases and waits for shutdown signal
/// - `RunMode::MigrateOnly`: Executes only pre-init and DB migration phases, then exits
///
/// # Phases (Full Mode)
///
/// 1. Pre-init (system modules only)
/// 2. DB migration (all modules with database capability)
/// 3. Init (all modules)
/// 4. Post-init (system modules only)
/// 5. REST (modules with REST capability)
/// 6. gRPC (modules with gRPC capability)
/// 7. Start (runnable modules)
/// 8. `OoP` spawn (out-of-process modules)
/// 9. Wait for cancellation
/// 10. Stop (runnable modules in reverse order)
async fn run_phases_internal(self, mode: RunMode) -> anyhow::Result<()> {
// Log execution mode
match mode {
RunMode::Full => {
tracing::info!("Running full lifecycle (all phases)");
}
RunMode::MigrateOnly => {
tracing::info!("Running in migration mode (pre-init + db phases only)");
}
}
// 1. Pre-init phase (before init, only for system modules)
self.run_pre_init_phase()?;
// 2. DB migration phase (system modules first)
#[cfg(feature = "db")]
{
self.run_db_phase().await?;
}
#[cfg(not(feature = "db"))]
{
// No DB integration in this build.
}
// Exit early if running in migration-only mode
if mode == RunMode::MigrateOnly {
tracing::info!("Migration phases completed successfully");
return Ok(());
}
// 3. Init phase (system modules first)
self.run_init_phase().await?;
// 4. Post-init phase (barrier after ALL init; system modules only)
self.run_post_init_phase().await?;
// 5. REST phase (synchronous router composition)
let _router = self.run_rest_phase().await?;
// 6. gRPC registration phase
self.run_grpc_phase().await?;
// 7. Start phase
self.run_start_phase().await?;
// 8. OoP spawn phase (after grpc_hub is running)
self.run_oop_spawn_phase().await?;
// 9. Wait for cancellation
self.cancel.cancelled().await;
// 10. Stop phase with hard timeout.
// Blocking syscalls (e.g. libc getaddrinfo in tokio spawn_blocking)
// can saturate all tokio worker threads, preventing tokio timers
// from firing. Use an OS thread so the watchdog works even when
// the tokio runtime is fully blocked.
let stop_timeout = std::time::Duration::from_secs(15);
let disarm = std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false));
let disarm_clone = std::sync::Arc::clone(&disarm);
std::thread::spawn(move || {
std::thread::sleep(stop_timeout);
if !disarm_clone.load(std::sync::atomic::Ordering::Relaxed) {
tracing::warn!(
timeout_secs = stop_timeout.as_secs(),
"shutdown: stop phase timed out, force exiting"
);
std::process::exit(1);
}
});
self.run_stop_phase().await?;
disarm.store(true, std::sync::atomic::Ordering::Relaxed);
Ok(())
}
}
#[cfg(test)]
#[cfg_attr(coverage_nightly, coverage(off))]
mod tests {
use super::*;
use crate::context::ModuleCtx;
use crate::contracts::{Module, RunnableCapability, SystemCapability};
use crate::registry::RegistryBuilder;
use std::sync::Arc;
use std::sync::atomic::{AtomicUsize, Ordering};
use tokio::sync::Mutex;
#[derive(Default)]
#[allow(dead_code)]
struct DummyCore;
#[async_trait::async_trait]
impl Module for DummyCore {
async fn init(&self, _ctx: &ModuleCtx) -> anyhow::Result<()> {
Ok(())
}
}
struct StopOrderTracker {
my_order: usize,
stop_order: Arc<AtomicUsize>,
}
impl StopOrderTracker {
fn new(counter: &Arc<AtomicUsize>, stop_order: Arc<AtomicUsize>) -> Self {
let my_order = counter.fetch_add(1, Ordering::SeqCst);
Self {
my_order,
stop_order,
}
}
}
#[async_trait::async_trait]
impl Module for StopOrderTracker {
async fn init(&self, _ctx: &ModuleCtx) -> anyhow::Result<()> {
Ok(())
}
}
#[async_trait::async_trait]
impl RunnableCapability for StopOrderTracker {
async fn start(&self, _cancel: CancellationToken) -> anyhow::Result<()> {
Ok(())
}
async fn stop(&self, _cancel: CancellationToken) -> anyhow::Result<()> {
let order = self.stop_order.fetch_add(1, Ordering::SeqCst);
tracing::info!(
my_order = self.my_order,
stop_order = order,
"Module stopped"
);
Ok(())
}
}
#[tokio::test]
async fn test_stop_phase_reverse_order() {
let counter = Arc::new(AtomicUsize::new(0));
let stop_order = Arc::new(AtomicUsize::new(0));
let module_a = Arc::new(StopOrderTracker::new(&counter, stop_order.clone()));
let module_b = Arc::new(StopOrderTracker::new(&counter, stop_order.clone()));
let module_c = Arc::new(StopOrderTracker::new(&counter, stop_order.clone()));
let mut builder = RegistryBuilder::default();
builder.register_core_with_meta("a", &[], module_a.clone() as Arc<dyn Module>);
builder.register_core_with_meta("b", &["a"], module_b.clone() as Arc<dyn Module>);
builder.register_core_with_meta("c", &["b"], module_c.clone() as Arc<dyn Module>);
builder.register_stateful_with_meta("a", module_a.clone() as Arc<dyn RunnableCapability>);
builder.register_stateful_with_meta("b", module_b.clone() as Arc<dyn RunnableCapability>);
builder.register_stateful_with_meta("c", module_c.clone() as Arc<dyn RunnableCapability>);
let registry = builder.build_topo_sorted().unwrap();
// Verify module order is a -> b -> c
let module_names: Vec<_> = registry.modules().iter().map(|m| m.name).collect();
assert_eq!(module_names, vec!["a", "b", "c"]);
let client_hub = Arc::new(ClientHub::new());
let cancel = CancellationToken::new();
let config_provider: Arc<dyn ConfigProvider> = Arc::new(EmptyConfigProvider);
let runtime = HostRuntime::new(
registry,
config_provider,
DbOptions::None,
client_hub,
cancel.clone(),
Uuid::new_v4(),
None,
);
// Run stop phase
runtime.run_stop_phase().await.unwrap();
// Verify modules stopped in reverse order: c (stop_order=0), b (stop_order=1), a (stop_order=2)
// Module order is: a=0, b=1, c=2
// Stop order should be: c=0, b=1, a=2
assert_eq!(stop_order.load(Ordering::SeqCst), 3);
}
#[tokio::test]
async fn test_stop_phase_continues_on_error() {
struct FailingModule {
should_fail: bool,
stopped: Arc<AtomicUsize>,
}
#[async_trait::async_trait]
impl Module for FailingModule {
async fn init(&self, _ctx: &ModuleCtx) -> anyhow::Result<()> {
Ok(())
}
}
#[async_trait::async_trait]
impl RunnableCapability for FailingModule {
async fn start(&self, _cancel: CancellationToken) -> anyhow::Result<()> {
Ok(())
}
async fn stop(&self, _cancel: CancellationToken) -> anyhow::Result<()> {
self.stopped.fetch_add(1, Ordering::SeqCst);
if self.should_fail {
anyhow::bail!("Intentional failure")
}
Ok(())
}
}
let stopped = Arc::new(AtomicUsize::new(0));
let module_a = Arc::new(FailingModule {
should_fail: false,
stopped: stopped.clone(),
});
let module_b = Arc::new(FailingModule {
should_fail: true,
stopped: stopped.clone(),
});
let module_c = Arc::new(FailingModule {
should_fail: false,
stopped: stopped.clone(),
});
let mut builder = RegistryBuilder::default();
builder.register_core_with_meta("a", &[], module_a.clone() as Arc<dyn Module>);
builder.register_core_with_meta("b", &["a"], module_b.clone() as Arc<dyn Module>);
builder.register_core_with_meta("c", &["b"], module_c.clone() as Arc<dyn Module>);
builder.register_stateful_with_meta("a", module_a.clone() as Arc<dyn RunnableCapability>);
builder.register_stateful_with_meta("b", module_b.clone() as Arc<dyn RunnableCapability>);
builder.register_stateful_with_meta("c", module_c.clone() as Arc<dyn RunnableCapability>);
let registry = builder.build_topo_sorted().unwrap();
let client_hub = Arc::new(ClientHub::new());
let cancel = CancellationToken::new();
let config_provider: Arc<dyn ConfigProvider> = Arc::new(EmptyConfigProvider);
let runtime = HostRuntime::new(
registry,
config_provider,
DbOptions::None,
client_hub,
cancel.clone(),
Uuid::new_v4(),
None,
);
// Run stop phase - should not fail even though module_b fails
runtime.run_stop_phase().await.unwrap();
// All modules should have attempted to stop
assert_eq!(stopped.load(Ordering::SeqCst), 3);
}
struct EmptyConfigProvider;
impl ConfigProvider for EmptyConfigProvider {
fn get_module_config(&self, _module_name: &str) -> Option<&serde_json::Value> {
None
}
}
#[tokio::test]
async fn test_post_init_runs_after_all_init_and_system_first() {
#[derive(Clone)]
struct TrackHooks {
name: &'static str,
events: Arc<Mutex<Vec<String>>>,
}
#[async_trait::async_trait]
impl Module for TrackHooks {
async fn init(&self, _ctx: &ModuleCtx) -> anyhow::Result<()> {
self.events.lock().await.push(format!("init:{}", self.name));
Ok(())
}
}
#[async_trait::async_trait]
impl SystemCapability for TrackHooks {
fn pre_init(&self, _sys: &crate::runtime::SystemContext) -> anyhow::Result<()> {
Ok(())
}
async fn post_init(&self, _sys: &crate::runtime::SystemContext) -> anyhow::Result<()> {
self.events
.lock()
.await
.push(format!("post_init:{}", self.name));
Ok(())
}
}
let events = Arc::new(Mutex::new(Vec::<String>::new()));
let sys_a = Arc::new(TrackHooks {
name: "sys_a",
events: events.clone(),
});
let user_b = Arc::new(TrackHooks {
name: "user_b",
events: events.clone(),
});
let user_c = Arc::new(TrackHooks {
name: "user_c",
events: events.clone(),
});
let mut builder = RegistryBuilder::default();
builder.register_core_with_meta("sys_a", &[], sys_a.clone() as Arc<dyn Module>);
builder.register_core_with_meta("user_b", &["sys_a"], user_b.clone() as Arc<dyn Module>);
builder.register_core_with_meta("user_c", &["user_b"], user_c.clone() as Arc<dyn Module>);
builder.register_system_with_meta("sys_a", sys_a.clone() as Arc<dyn SystemCapability>);
let registry = builder.build_topo_sorted().unwrap();
let client_hub = Arc::new(ClientHub::new());
let cancel = CancellationToken::new();
let config_provider: Arc<dyn ConfigProvider> = Arc::new(EmptyConfigProvider);
let runtime = HostRuntime::new(
registry,
config_provider,
DbOptions::None,
client_hub,
cancel,
Uuid::new_v4(),
None,
);
// Run init phase for all modules, then post_init as a separate barrier phase.
runtime.run_init_phase().await.unwrap();
runtime.run_post_init_phase().await.unwrap();
let events = events.lock().await.clone();
let first_post_init = events
.iter()
.position(|e| e.starts_with("post_init:"))
.expect("expected post_init events");
assert!(
events[..first_post_init]
.iter()
.all(|e| e.starts_with("init:")),
"expected all init events before post_init, got: {events:?}"
);
// system-first order within each phase
assert_eq!(
events,
vec![
"init:sys_a",
"init:user_b",
"init:user_c",
"post_init:sys_a",
]
);
}
#[tokio::test]
async fn test_stop_phase_provides_fresh_deadline_token() {
use std::sync::atomic::AtomicBool;
struct TokenCheckModule {
stop_was_called: AtomicBool,
token_was_cancelled_on_entry: AtomicBool,
}
#[async_trait::async_trait]
impl Module for TokenCheckModule {
async fn init(&self, _ctx: &ModuleCtx) -> anyhow::Result<()> {
Ok(())
}
}
#[async_trait::async_trait]
impl RunnableCapability for TokenCheckModule {
async fn start(&self, _cancel: CancellationToken) -> anyhow::Result<()> {
Ok(())
}
async fn stop(&self, deadline_token: CancellationToken) -> anyhow::Result<()> {
// Record that stop() was called
self.stop_was_called.store(true, Ordering::SeqCst);
// Record whether the token was already cancelled when stop() was called
self.token_was_cancelled_on_entry
.store(deadline_token.is_cancelled(), Ordering::SeqCst);
Ok(())
}
}
let module = Arc::new(TokenCheckModule {
stop_was_called: AtomicBool::new(false),
// Default to true to detect if stop() was never called
token_was_cancelled_on_entry: AtomicBool::new(true),
});
let mut builder = RegistryBuilder::default();
builder.register_core_with_meta("test", &[], module.clone() as Arc<dyn Module>);
builder.register_stateful_with_meta("test", module.clone() as Arc<dyn RunnableCapability>);
let registry = builder.build_topo_sorted().unwrap();
let client_hub = Arc::new(ClientHub::new());
let cancel = CancellationToken::new();
let config_provider: Arc<dyn ConfigProvider> = Arc::new(EmptyConfigProvider);
let runtime = HostRuntime::new(
registry,
config_provider,
DbOptions::None,
client_hub,
cancel.clone(),
Uuid::new_v4(),
None,
);
// Run stop phase - the deadline token should NOT be cancelled
runtime.run_stop_phase().await.unwrap();
// First, verify stop() was actually called (guards against silent registration failures)
assert!(
module.stop_was_called.load(Ordering::SeqCst),
"stop() was never called - module may not have been registered correctly"
);
// The token should NOT have been cancelled when stop() was called
// This is the key fix: modules get a fresh token, not the already-cancelled root token
assert!(
!module.token_was_cancelled_on_entry.load(Ordering::SeqCst),
"deadline_token should NOT be cancelled when stop() is called - this enables graceful shutdown"
);
}
#[tokio::test]
async fn test_stop_phase_graceful_shutdown_completes_before_deadline() {
use std::sync::atomic::AtomicBool;
use std::time::Duration;
struct GracefulModule {
graceful_completed: AtomicBool,
deadline_fired: AtomicBool,
}
#[async_trait::async_trait]
impl Module for GracefulModule {
async fn init(&self, _ctx: &ModuleCtx) -> anyhow::Result<()> {
Ok(())
}
}
#[async_trait::async_trait]
impl RunnableCapability for GracefulModule {
async fn start(&self, _cancel: CancellationToken) -> anyhow::Result<()> {
Ok(())
}
async fn stop(&self, deadline_token: CancellationToken) -> anyhow::Result<()> {
// Simulate graceful shutdown that completes quickly (10ms)
tokio::select! {
() = tokio::time::sleep(Duration::from_millis(10)) => {
self.graceful_completed.store(true, Ordering::SeqCst);
}
() = deadline_token.cancelled() => {
self.deadline_fired.store(true, Ordering::SeqCst);
}
}
Ok(())
}
}
let module = Arc::new(GracefulModule {
graceful_completed: AtomicBool::new(false),
deadline_fired: AtomicBool::new(false),
});
let mut builder = RegistryBuilder::default();
builder.register_core_with_meta("test", &[], module.clone() as Arc<dyn Module>);
builder.register_stateful_with_meta("test", module.clone() as Arc<dyn RunnableCapability>);
let registry = builder.build_topo_sorted().unwrap();
let client_hub = Arc::new(ClientHub::new());
let cancel = CancellationToken::new();
let config_provider: Arc<dyn ConfigProvider> = Arc::new(EmptyConfigProvider);
// Use a long deadline (5s) - module should complete gracefully before this
let runtime = HostRuntime::new(
registry,
config_provider,
DbOptions::None,
client_hub,
cancel.clone(),
Uuid::new_v4(),
None,
)
.with_shutdown_deadline(Duration::from_secs(5));
runtime.run_stop_phase().await.unwrap();
// Graceful shutdown should have completed
assert!(
module.graceful_completed.load(Ordering::SeqCst),
"graceful shutdown should complete"
);
// Deadline should NOT have fired (module finished before deadline)
assert!(
!module.deadline_fired.load(Ordering::SeqCst),
"deadline should not fire when graceful shutdown completes quickly"
);
}
#[tokio::test]
async fn test_stop_phase_deadline_fires_for_slow_module() {
use std::sync::atomic::AtomicBool;
use std::time::Duration;
struct SlowModule {
graceful_completed: AtomicBool,
deadline_fired: AtomicBool,
}
#[async_trait::async_trait]
impl Module for SlowModule {
async fn init(&self, _ctx: &ModuleCtx) -> anyhow::Result<()> {
Ok(())
}
}
#[async_trait::async_trait]
impl RunnableCapability for SlowModule {
async fn start(&self, _cancel: CancellationToken) -> anyhow::Result<()> {
Ok(())
}
async fn stop(&self, deadline_token: CancellationToken) -> anyhow::Result<()> {
// Simulate slow graceful shutdown (would take 10s, but deadline is 100ms)
tokio::select! {
() = tokio::time::sleep(Duration::from_secs(10)) => {
self.graceful_completed.store(true, Ordering::SeqCst);
}
() = deadline_token.cancelled() => {
self.deadline_fired.store(true, Ordering::SeqCst);
}
}
Ok(())
}
}
let module = Arc::new(SlowModule {
graceful_completed: AtomicBool::new(false),
deadline_fired: AtomicBool::new(false),
});
let mut builder = RegistryBuilder::default();
builder.register_core_with_meta("test", &[], module.clone() as Arc<dyn Module>);
builder.register_stateful_with_meta("test", module.clone() as Arc<dyn RunnableCapability>);
let registry = builder.build_topo_sorted().unwrap();
let client_hub = Arc::new(ClientHub::new());
let cancel = CancellationToken::new();
let config_provider: Arc<dyn ConfigProvider> = Arc::new(EmptyConfigProvider);
// Use a short deadline (100ms) - module should be interrupted by deadline
let runtime = HostRuntime::new(
registry,
config_provider,
DbOptions::None,
client_hub,
cancel.clone(),
Uuid::new_v4(),
None,
)
.with_shutdown_deadline(Duration::from_millis(100));
runtime.run_stop_phase().await.unwrap();
// Graceful shutdown should NOT have completed (deadline fired first)
assert!(
!module.graceful_completed.load(Ordering::SeqCst),
"graceful shutdown should not complete when deadline fires first"
);
// Deadline should have fired
assert!(
module.deadline_fired.load(Ordering::SeqCst),
"deadline should fire for slow modules"
);
}
}