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
//! Runtime backend selector — wraps either a CSM or an OpenCHAMI
//! backend behind a single enum so the rest of the codebase is
//! backend-agnostic.
//!
//! [`StaticBackendDispatcher`] is constructed once per configured site
//! at startup (see [`crate::config::Site`]) and stored in the request
//! `ServerState`. Each HTTP request resolves a borrowed `InfraContext`
//! that holds a reference to the dispatcher for the requested site;
//! service code calls trait methods on that reference, and the trait
//! impls in [`crate::backend_dispatcher`] route the call to the active
//! variant.
use Csm;
use Error;
use Ochami;
/// Routes API calls to either a CSM or OCHAMI backend.
///
/// Every backend trait (e.g. `CfsTrait`, `GroupTrait`,
/// `BootParametersTrait`) is implemented for this enum under
/// [`crate::backend_dispatcher`]. The impls use the `dispatch!` macro
/// to forward the call to the wrapped client; both variants implement
/// the same trait surface so service code never branches on backend
/// kind.
///
/// Cloning is cheap — both inner clients are `Arc`-shaped internally.
/// Service helpers that need to move the dispatcher into a `'static`
/// spawned task call `InfraContext::backend_clone()` (see
/// [`crate::service::infra_backend`]).