canic-core 0.100.2

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
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
//! Module: config::schema::component_spec
//!
//! Responsibility: define flat Component Spec, direct-child, placement, and funding shapes.
//! Does not own: topology validation, placement execution, or runtime canister state.
//! Boundary: config schema re-exports these data shapes for validated models.

use crate::{
    cdk::{
        candid::{CandidType, Principal},
        types::Cycles,
    },
    ids::CanisterRole,
};
use serde::{Deserialize, Serialize};
use std::{
    collections::{BTreeMap, BTreeSet},
    fmt,
};

mod defaults {
    use super::Cycles;
    use crate::cdk::types::TC;

    pub const fn initial_cycles() -> Cycles {
        Cycles::new(5_000_000_000_000)
    }

    pub const fn topup_threshold() -> Cycles {
        Cycles::new(10 * TC)
    }

    pub const fn topup_amount() -> Cycles {
        Cycles::new(5 * TC)
    }

    pub const fn cycles_funding_max_per_request() -> Cycles {
        Cycles::new(crate::domain::policy::pure::cycles_funding::DEFAULT_MAX_PER_REQUEST)
    }

    pub const fn cycles_funding_max_per_child() -> Cycles {
        Cycles::new(crate::domain::policy::pure::cycles_funding::DEFAULT_MAX_PER_CHILD)
    }

    pub const fn cycles_funding_cooldown_secs() -> u64 {
        crate::domain::policy::pure::cycles_funding::DEFAULT_COOLDOWN_SECS
    }

    pub const fn component_maximum_children() -> u32 {
        super::DEFAULT_COMPONENT_MAXIMUM_CHILDREN
    }

    pub const fn component_maximum_registry_bytes() -> u64 {
        super::DEFAULT_COMPONENT_MAXIMUM_REGISTRY_BYTES
    }

    pub const fn component_cycles_funding_window_secs() -> u64 {
        super::DEFAULT_COMPONENT_CYCLES_FUNDING_WINDOW_SECS
    }

    pub const fn component_cycles_funding_maximum_cycles() -> Cycles {
        Cycles::new(super::DEFAULT_COMPONENT_CYCLES_FUNDING_MAXIMUM_CYCLES)
    }
}

/// Default aggregate direct-child ceiling for one concrete Component.
pub const DEFAULT_COMPONENT_MAXIMUM_CHILDREN: u32 = 4_096;
/// Default maximum canonical Component Registry bytes for one Component.
pub const DEFAULT_COMPONENT_MAXIMUM_REGISTRY_BYTES: u64 = 2_097_152;
/// Default aggregate Component cycles-funding budget window.
pub const DEFAULT_COMPONENT_CYCLES_FUNDING_WINDOW_SECS: u64 = 3_600;
/// Default aggregate Component cycles-funding budget per window.
pub const DEFAULT_COMPONENT_CYCLES_FUNDING_MAXIMUM_CYCLES: u128 = 1_000_000_000_000_000;

///
/// ComponentSpecConfig
///
/// Configuration for one permitted Component and its direct children.
/// Owned by config schema and validated before topology workflows use it.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ComponentSpecConfig {
    /// Role of the Component directly managed by a Fleet Subnet Root.
    pub component_role: CanisterRole,

    /// Fleet-wide ceiling for concrete instances of this Component Spec.
    pub maximum_instances: u32,

    #[serde(default)]
    pub limits: ComponentLimitsConfig,

    #[serde(
        default = "defaults::initial_cycles",
        deserialize_with = "Cycles::from_config"
    )]
    pub initial_cycles: Cycles,

    #[serde(default)]
    pub topup: Option<TopupPolicy>,

    #[serde(default)]
    pub cycles_funding: CyclesFundingPolicyConfig,

    #[serde(default)]
    pub scaling: Option<ScalingConfig>,

    #[serde(default)]
    pub sharding: Option<ShardingConfig>,

    #[serde(default)]
    pub binding: Option<BindingConfig>,

    #[serde(default)]
    pub auth: CanisterAuthConfig,

    #[serde(default)]
    pub standards: StandardsCanisterConfig,

    #[serde(default)]
    pub diagnostics: DiagnosticsCanisterConfig,

    #[serde(default)]
    pub metrics: MetricsCanisterConfig,

    /// Exact direct children owned by each instance of this Component.
    #[serde(default)]
    pub children: BTreeMap<CanisterRole, ComponentChildConfig>,
}

impl ComponentSpecConfig {
    /// Get the runtime configuration for this Component or one direct child.
    #[must_use]
    pub fn get_canister(&self, role: &CanisterRole) -> Option<CanisterConfig> {
        if role == &self.component_role {
            return Some(self.component_canister_config());
        }

        self.children
            .get(role)
            .map(ComponentChildConfig::canister_config)
    }

    /// The one direct Component role created from this Spec.
    #[must_use]
    pub fn auto_create_roles(&self) -> BTreeSet<CanisterRole> {
        BTreeSet::from([self.component_role.clone()])
    }

    /// The one direct Component role exposed through the root-local Directory.
    #[must_use]
    pub fn component_directory_roles(&self) -> BTreeSet<CanisterRole> {
        self.auto_create_roles()
    }

    /// All roles structurally owned by this Spec.
    pub fn roles(&self) -> impl Iterator<Item = &CanisterRole> {
        std::iter::once(&self.component_role).chain(self.children.keys())
    }

    /// Iterate the Component and direct children as common runtime projections.
    pub fn canister_configs(&self) -> impl Iterator<Item = (&CanisterRole, CanisterConfig)> + '_ {
        std::iter::once((&self.component_role, self.component_canister_config())).chain(
            self.children
                .iter()
                .map(|(role, child)| (role, child.canister_config())),
        )
    }

    /// Convert the structurally identified Component into the common runtime view.
    #[must_use]
    pub fn component_canister_config(&self) -> CanisterConfig {
        CanisterConfig {
            kind: CanisterKind::Service,
            initial_cycles: self.initial_cycles.clone(),
            topup: self.topup.clone(),
            icp_refill: None,
            cycles_funding: self.cycles_funding.clone(),
            scaling: self.scaling.clone(),
            sharding: self.sharding.clone(),
            binding: self.binding.clone(),
            auth: self.auth.clone(),
            standards: self.standards.clone(),
            diagnostics: self.diagnostics,
            metrics: self.metrics,
        }
    }
}

///
/// ComponentLimitsConfig
///
/// Configurable aggregate limits compiled into every concrete Component binding.
///

#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ComponentLimitsConfig {
    #[serde(default = "defaults::component_maximum_children")]
    pub maximum_children: u32,

    #[serde(default = "defaults::component_maximum_registry_bytes")]
    pub maximum_registry_bytes: u64,

    #[serde(default)]
    pub cycles_funding: CyclesFundingBudgetConfig,
}

impl Default for ComponentLimitsConfig {
    fn default() -> Self {
        Self {
            maximum_children: defaults::component_maximum_children(),
            maximum_registry_bytes: defaults::component_maximum_registry_bytes(),
            cycles_funding: CyclesFundingBudgetConfig::default(),
        }
    }
}

///
/// CyclesFundingBudgetConfig
///
/// Aggregate cycles-funding ceiling for one Component over one bounded window.
///

#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CyclesFundingBudgetConfig {
    #[serde(default = "defaults::component_cycles_funding_window_secs")]
    pub window_secs: u64,

    #[serde(
        default = "defaults::component_cycles_funding_maximum_cycles",
        deserialize_with = "Cycles::from_config"
    )]
    pub maximum_cycles: Cycles,
}

impl Default for CyclesFundingBudgetConfig {
    fn default() -> Self {
        Self {
            window_secs: defaults::component_cycles_funding_window_secs(),
            maximum_cycles: defaults::component_cycles_funding_maximum_cycles(),
        }
    }
}

///
/// ComponentChildConfig
///
/// Configuration for one direct child role owned by a Component instance.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ComponentChildConfig {
    pub kind: ComponentChildKind,
    pub maximum_instances: u32,

    #[serde(
        default = "defaults::initial_cycles",
        deserialize_with = "Cycles::from_config"
    )]
    pub initial_cycles: Cycles,

    #[serde(default)]
    pub topup: Option<TopupPolicy>,

    #[serde(default)]
    pub cycles_funding: CyclesFundingPolicyConfig,

    #[serde(default)]
    pub auth: CanisterAuthConfig,

    #[serde(default)]
    pub standards: StandardsCanisterConfig,

    #[serde(default)]
    pub diagnostics: DiagnosticsCanisterConfig,

    #[serde(default)]
    pub metrics: MetricsCanisterConfig,
}

impl ComponentChildConfig {
    #[must_use]
    pub fn canister_config(&self) -> CanisterConfig {
        CanisterConfig {
            kind: self.kind.into(),
            initial_cycles: self.initial_cycles.clone(),
            topup: self.topup.clone(),
            icp_refill: None,
            cycles_funding: self.cycles_funding.clone(),
            scaling: None,
            sharding: None,
            binding: None,
            auth: self.auth.clone(),
            standards: self.standards.clone(),
            diagnostics: self.diagnostics,
            metrics: self.metrics,
        }
    }
}

///
/// ComponentChildKind
///
/// Lifecycle class for a direct Component Child.
///

#[derive(CandidType, Clone, Copy, Debug, Deserialize, Eq, PartialEq, Serialize)]
pub enum ComponentChildKind {
    #[serde(rename = "singleton")]
    Singleton,

    #[serde(rename = "replica")]
    Replica,

    #[serde(rename = "shard")]
    Shard,

    #[serde(rename = "instance")]
    Instance,
}

impl fmt::Display for ComponentChildKind {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        let label = match self {
            Self::Singleton => "singleton",
            Self::Replica => "replica",
            Self::Shard => "shard",
            Self::Instance => "instance",
        };
        formatter.write_str(label)
    }
}

impl From<ComponentChildKind> for CanisterKind {
    fn from(kind: ComponentChildKind) -> Self {
        match kind {
            ComponentChildKind::Singleton => Self::Singleton,
            ComponentChildKind::Replica => Self::Replica,
            ComponentChildKind::Shard => Self::Shard,
            ComponentChildKind::Instance => Self::Instance,
        }
    }
}

///
/// PoolImport
///
/// Per-environment import lists for canister pools.
/// Owned by config schema and consumed by pool import workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct PoolImport {
    /// Optional count of canisters to import immediately before queuing the rest.
    #[serde(default)]
    pub initial: Option<u16>,

    #[serde(default)]
    pub local: Vec<Principal>,

    #[serde(default)]
    pub ic: Vec<Principal>,
}

///
/// CanisterPool
///
/// Pool sizing and import configuration for root-managed canister pools.
/// Owned by config schema and validated before pool workflows use it.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CanisterPool {
    pub minimum_size: u8,
    #[serde(default)]
    pub import: PoolImport,
}

///
/// CanisterAuthConfig
///
/// Canister-local auth feature flags.
/// Owned by config schema and consumed by auth/cache setup.
///

// Build the implicit canister configuration for the mandatory store role.
pub fn implicit_wasm_store_canister_config() -> CanisterConfig {
    CanisterConfig {
        kind: CanisterKind::Singleton,
        initial_cycles: defaults::initial_cycles(),
        topup: None,
        icp_refill: None,
        cycles_funding: CyclesFundingPolicyConfig::default(),
        scaling: None,
        sharding: None,
        binding: None,
        auth: CanisterAuthConfig::default(),
        standards: StandardsCanisterConfig::default(),
        diagnostics: DiagnosticsCanisterConfig::default(),
        metrics: MetricsCanisterConfig::default(),
    }
}

/// Build the non-configurable Fleet Subnet Root runtime defaults.
#[must_use]
pub fn implicit_root_canister_config() -> CanisterConfig {
    CanisterConfig {
        kind: CanisterKind::Root,
        initial_cycles: defaults::initial_cycles(),
        topup: None,
        icp_refill: None,
        cycles_funding: CyclesFundingPolicyConfig::default(),
        scaling: None,
        sharding: None,
        binding: None,
        auth: CanisterAuthConfig::default(),
        standards: StandardsCanisterConfig::default(),
        diagnostics: DiagnosticsCanisterConfig::default(),
        metrics: MetricsCanisterConfig::default(),
    }
}

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CanisterAuthConfig {
    #[serde(default)]
    pub delegated_token_issuer: bool,

    #[serde(default)]
    pub delegated_token_verifier: bool,

    #[serde(default)]
    pub role_attestation_cache: bool,
}

///
/// StandardsCanisterConfig
///
/// Canister-local standards feature flags.
/// Owned by config schema and consumed by standards dispatch.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct StandardsCanisterConfig {
    #[serde(default)]
    pub icrc21: bool,
}

///
/// DiagnosticsCanisterConfig
///
/// Canister-local diagnostics feature flags.
/// Owned by config schema and consumed by diagnostics endpoints.
///

#[derive(Clone, Copy, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct DiagnosticsCanisterConfig {
    #[serde(default)]
    pub memory_ledger: bool,
}

///
/// CanisterConfig
///
/// Configuration for one declared canister role.
/// Owned by config schema and consumed by bootstrap and topology workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CanisterConfig {
    /// Kind and placement semantics for this canister role.
    pub kind: CanisterKind,

    #[serde(
        default = "defaults::initial_cycles",
        deserialize_with = "Cycles::from_config"
    )]
    pub initial_cycles: Cycles,

    #[serde(default)]
    pub topup: Option<TopupPolicy>,

    #[serde(default)]
    pub icp_refill: Option<IcpRefillPolicy>,

    #[serde(default)]
    pub cycles_funding: CyclesFundingPolicyConfig,

    #[serde(default)]
    pub scaling: Option<ScalingConfig>,

    #[serde(default)]
    pub sharding: Option<ShardingConfig>,

    #[serde(default)]
    pub binding: Option<BindingConfig>,

    #[serde(default)]
    pub auth: CanisterAuthConfig,

    #[serde(default)]
    pub standards: StandardsCanisterConfig,

    #[serde(default)]
    pub diagnostics: DiagnosticsCanisterConfig,

    #[serde(default)]
    pub metrics: MetricsCanisterConfig,
}

impl CanisterConfig {
    /// Resolve the effective metrics profile for a canister role.
    #[must_use]
    pub fn resolved_metrics_profile(&self, role: &CanisterRole) -> MetricsProfile {
        if let Some(profile) = self.metrics.profile {
            return profile;
        }

        if self.kind == CanisterKind::Root || role.is_root() {
            return MetricsProfile::Root;
        }

        if role.is_wasm_store() {
            return MetricsProfile::Storage;
        }

        if self.scaling.is_some() || self.sharding.is_some() || self.binding.is_some() {
            return MetricsProfile::Hub;
        }

        MetricsProfile::Leaf
    }

    /// Return child roles referenced by exact role-bearing placement fields.
    #[must_use]
    pub fn role_bearing_child_roles(&self) -> Vec<&CanisterRole> {
        let scaling_roles = self
            .scaling
            .iter()
            .flat_map(|scaling| scaling.pools.values().map(|pool| &pool.canister_role));
        let sharding_roles = self
            .sharding
            .iter()
            .flat_map(|sharding| sharding.pools.values().map(|pool| &pool.canister_role));
        let binding_roles = self
            .binding
            .iter()
            .flat_map(|binding| binding.pools.values().map(|pool| &pool.canister_role));

        scaling_roles
            .chain(sharding_roles)
            .chain(binding_roles)
            .collect()
    }
}

///
/// CyclesFundingPolicyConfig
///
/// Parent funding limits applied when this role requests cycles from its parent.
/// Owned by config schema and consumed by cycles funding authorization.
///

#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CyclesFundingPolicyConfig {
    #[serde(
        default = "defaults::cycles_funding_max_per_request",
        deserialize_with = "Cycles::from_config"
    )]
    pub max_per_request: Cycles,

    #[serde(
        default = "defaults::cycles_funding_max_per_child",
        deserialize_with = "Cycles::from_config"
    )]
    pub max_per_child: Cycles,

    #[serde(default = "defaults::cycles_funding_cooldown_secs")]
    pub cooldown_secs: u64,
}

impl Default for CyclesFundingPolicyConfig {
    fn default() -> Self {
        Self {
            max_per_request: defaults::cycles_funding_max_per_request(),
            max_per_child: defaults::cycles_funding_max_per_child(),
            cooldown_secs: defaults::cycles_funding_cooldown_secs(),
        }
    }
}

///
/// MetricsCanisterConfig
///
/// Canister-local metrics profile override.
/// Owned by config schema and consumed by metrics setup.
///

#[derive(Clone, Copy, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct MetricsCanisterConfig {
    #[serde(default)]
    pub profile: Option<MetricsProfile>,
}

///
/// MetricsProfile
///
/// Metrics collection profile for a configured canister role.
/// Owned by config schema and consumed by metrics setup.
///

#[derive(Clone, Copy, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum MetricsProfile {
    Leaf,
    Hub,
    Storage,
    Root,
    Full,
}

///
/// CanisterKind
///
/// Kind semantics for canister roles within the topology.
///
/// Do not encode parent relationships here; this is role-level intent only.
///

#[derive(Clone, Copy, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum CanisterKind {
    Root,
    Service,
    Singleton,
    Replica,
    Shard,
    Instance,
}

impl fmt::Display for CanisterKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let label = match self {
            Self::Root => "root",
            Self::Service => "service",
            Self::Singleton => "singleton",
            Self::Replica => "replica",
            Self::Shard => "shard",
            Self::Instance => "instance",
        };

        f.write_str(label)
    }
}

///
/// TopupPolicy
///
/// Cycle top-up policy for one configured canister role.
/// Owned by config schema and consumed by funding workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct TopupPolicy {
    #[serde(
        default = "defaults::topup_threshold",
        deserialize_with = "Cycles::from_config"
    )]
    pub threshold: Cycles,

    #[serde(
        default = "defaults::topup_amount",
        deserialize_with = "Cycles::from_config"
    )]
    pub amount: Cycles,
}

impl Default for TopupPolicy {
    fn default() -> Self {
        Self {
            threshold: defaults::topup_threshold(),
            amount: defaults::topup_amount(),
        }
    }
}

///
/// IcpRefillPolicy
///
/// Manual ICP-funded cycle refill policy for the root canister.
/// Owned by config schema and consumed by ICP refill workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct IcpRefillPolicy {
    pub max_refill_e8s_per_call: u64,

    #[serde(default)]
    pub min_xdr_permyriad_per_icp: Option<u64>,

    #[serde(default)]
    pub ledger_canister_id: Option<Principal>,

    #[serde(default)]
    pub cmc_canister_id: Option<Principal>,

    #[serde(default)]
    pub allow_ic_system_canister_overrides: bool,
}

///
/// ScalingConfig
///
/// Stateless replica-group placement configuration.
/// Owned by config schema and consumed by scaling placement workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ScalingConfig {
    #[serde(default)]
    pub pools: BTreeMap<String, ScalePool>,
}

///
/// ScalePool
///
/// One stateless replica group.
/// Owned by config schema and consumed by scaling placement workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ScalePool {
    pub canister_role: CanisterRole,

    #[serde(default)]
    pub policy: ScalePoolPolicy,
}

///
/// ScalePoolPolicy
///
/// Worker bounds for one stateless replica group.
/// Owned by config schema and consumed by scaling placement policy.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields, default)]
pub struct ScalePoolPolicy {
    /// Number of replica canisters to create during startup warmup
    pub initial_workers: u32,

    /// Minimum number of replica canisters to keep alive
    pub min_workers: u32,

    /// Maximum number of replica canisters to allow
    pub max_workers: u32,
}

impl Default for ScalePoolPolicy {
    fn default() -> Self {
        Self {
            initial_workers: 1,
            min_workers: 1,
            max_workers: 32,
        }
    }
}

///
/// ShardingConfig
///
/// Stateful partitioned shard-pool configuration.
/// Owned by config schema and consumed by sharding placement workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ShardingConfig {
    #[serde(default)]
    pub pools: BTreeMap<String, ShardPool>,
}

///
/// BindingConfig
///
/// Keyed instance placement binding configuration.
/// Owned by config schema and consumed by keyed placement workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct BindingConfig {
    #[serde(default)]
    pub pools: BTreeMap<String, BindingPool>,
}

///
/// BindingPool
///
/// One keyed instance placement binding pool.
/// Owned by config schema and consumed by keyed placement workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct BindingPool {
    pub canister_role: CanisterRole,
    pub key_name: String,
}

///
/// ShardPool
///
/// One stateful shard placement pool.
/// Owned by config schema and consumed by sharding placement workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ShardPool {
    pub canister_role: CanisterRole,

    #[serde(default)]
    pub policy: ShardPoolPolicy,
}

///
/// ShardPoolPolicy
///
/// Capacity and shard-count bounds for one shard pool.
/// Owned by config schema and consumed by sharding placement policy.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields, default)]
pub struct ShardPoolPolicy {
    pub capacity: u32,
    pub initial_shards: u32,
    pub max_shards: u32,
}

impl Default for ShardPoolPolicy {
    fn default() -> Self {
        Self {
            capacity: 1_000,
            initial_shards: 1,
            max_shards: 4,
        }
    }
}

// -----------------------------------------------------------------------------
// Tests
// -----------------------------------------------------------------------------

#[cfg(test)]
mod tests;