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
// -------------------------------------------------------------------------------------------------
// Hyperion Framework
// https://github.com/robert-hannah/hyperion-framework
//
// A lightweight component-based TCP framework for building service-oriented Rust applications with
// CLI control, async messaging, and lifecycle management.
//
// Copyright 2025 Robert Hannah
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -------------------------------------------------------------------------------------------------
// Standard
use HashMap;
use Arc as StdArc;
use AtomicUsize;
// Package
use async_trait;
use Notify;
use ;
// Local
use crateHeartbeatConfig;
use crateClientBrokerMessage;
use crateContainerDirective;
use crate;
// Traits
// For example, Hyperion Network Containerisation - Initialise Component
// impl Initialisable for Component {
// type ConfigType = Config;
// fn initialise(container_state: StdArc<AtomicUsize>, container_state_notify: StdArc<Notify>, config: StdArc<Self::ConfigType>) -> Self {
// // Will panic if there's a problem, which we want seeing we do this on startup
// Component::new(container_state, container_state_notify, config)
// }
// }
// For example, Hyperion Network Containerisation - Run Component
// #[async_trait]
// impl Run for Component {
// type Message = ContainerMessage;
// async fn run(mut self, mut comp_in_rx: Receiver<Self::Message>, comp_out_tx: Sender<ClientBrokerMessage<Self::Message>>) {
// log::debug!("{} has started successfully", self.config.container_id.name);
// loop {
// if self.component_state == ComponentState::Dead { break; }
// tokio::select! {
// Some(message) = comp_in_rx.recv() => {
// log::trace!("{} received message: {:?}", self.config.container_id.name, message);
// if let Some(result) = self.process_incoming_message(message).await {
// let from_location = format!("{} main loop", self.config.container_id.name);
// let to_location = format!("{} Container", self.config.container_id.name);
// add_to_tx_with_retry(&comp_out_tx, &result, &from_location, &to_location).await;
// }
// }
// _ = self.container_state_notify.notified() => {
// // Check if container is shutting down
// if self.container_state.load(Ordering::SeqCst) == ContainerState::ShuttingDown as usize {
// self.component_state = ComponentState::Dormant;
// break;
// }
// }
// }
// }
// log::info!("{} task has closed", self.config.container_id.name);
// }
// }
// For example,
// impl HyperionContainerDirectiveMessage for ContainerMessage {
// // Gets ContainerDirective if is instance
// fn get_container_directive_message(&self) -> Option<&ContainerDirective> {
// if let ContainerMessage::ContainerDirectiveMsg(directive) = self {
// Some(directive)
// } else {
// None
// }
// }
// }
// For example,
// impl ContainerIdentidy for Config {
// fn container_identity(&self) -> HashMap<String, String> {
// let mut identity = HashMap::new();
// identity.insert("name".to_string(), self.container.name.clone());
// identity.insert("version".to_string(), self.container.version.clone());
// identity.insert("version_title".to_string(), self.container.version_title.clone());
// identity.insert("software_collection".to_string(), self.container.software_collection.clone());
// identity
// }
// }
/// Provides heartbeat configuration from a component's parsed XML config.
/// Implement this on your top-level `Config` struct. Return `None` to disable heartbeats.
// For example,
// impl LogLevel for Config {
// fn log_level(&self) -> &str {
// &self.logging.level
// }
// }
/// Allows the container infrastructure to construct and parse heartbeat messages from the
/// application's message type `T` without knowing what `T` is.
/// Implement this on your top-level message enum (e.g. `ContainerMessage`).