nodo 0.18.5

A realtime framework for robotics
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
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
// Copyright 2025 David Weikersdorfer

use crate::{
    app::NodeInfo,
    channels::{RxBundle, TxBundle},
    codelet::{CodeletInstance, CodeletStatus, LifecycleStatus, NodeId, Statistics},
    opt_vec::OptVec,
    prelude::{Acqtime, Codelet, DefaultStatus, Pubtime, SignalTimeValue, SignalValue, Signals},
    signals::SignalKind,
};
use serde::{Deserialize, Serialize};
use std::{
    collections::HashMap,
    fmt::{Debug, Display},
    hash::Hash,
    sync::{Arc, PoisonError, RwLock},
};

/// Trait for monitoring various system values like signals, lifetime, or message statistics
pub trait Monitor: Send + Sync + Debug + Display {
    /// The data type with which this monitor can work. If None is returned it can
    /// work with all data types.
    fn dtype(&self) -> Option<GaugeDataType>;

    /// Checks if a value is nominal
    fn check(
        &self,
        pubtime: Pubtime,
        value: &GaugeValue,
    ) -> Result<MonitorStatus, MonitorCheckError>;
}

#[derive(thiserror::Error, Debug, Clone, PartialEq, Eq)]
pub enum MonitorCheckError {
    /// The observed value does not have the expected data type
    #[error("invalid data type: {0:?}")]
    InvalidDataType(GaugeDataType),

    /// A user-defined error
    #[error("monitor check failed: {0}")]
    Other(String),
}

/// Data types supported by monitors
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum GaugeDataType {
    Bool,
    Int64,
    Usize,
    Float64,
    String,
    Pubtime,
    Acqtime,
}

/// Values supported by monitors
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum GaugeValue {
    Bool(bool),
    Int64(i64),
    Usize(usize),
    Float64(f64),
    String(String),
    Pubtime(Pubtime),
    Acqtime(Acqtime),
}

impl GaugeValue {
    /// Data type of value
    pub fn dtype(&self) -> GaugeDataType {
        match self {
            GaugeValue::Bool(_) => GaugeDataType::Bool,
            GaugeValue::Int64(_) => GaugeDataType::Int64,
            GaugeValue::Usize(_) => GaugeDataType::Usize,
            GaugeValue::Float64(_) => GaugeDataType::Float64,
            GaugeValue::String(_) => GaugeDataType::String,
            GaugeValue::Pubtime(_) => GaugeDataType::Pubtime,
            GaugeValue::Acqtime(_) => GaugeDataType::Acqtime,
        }
    }
}

impl From<SignalValue> for GaugeValue {
    fn from(other: SignalValue) -> Self {
        match other {
            SignalValue::Bool(v) => GaugeValue::Bool(v),
            SignalValue::Int64(v) => GaugeValue::Int64(v),
            SignalValue::Usize(v) => GaugeValue::Usize(v),
            SignalValue::Float64(v) => GaugeValue::Float64(v),
            SignalValue::String(v) => GaugeValue::String(v),
        }
    }
}

impl std::fmt::Display for GaugeValue {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            GaugeValue::Bool(v) => write!(f, "{}", v),
            GaugeValue::Int64(v) => write!(f, "{}", v),
            GaugeValue::Usize(v) => write!(f, "{}", v),
            GaugeValue::Float64(v) => write!(f, "{}", v),
            GaugeValue::String(v) => write!(f, "{}", v),
            GaugeValue::Pubtime(v) => write!(f, "{}", v),
            GaugeValue::Acqtime(v) => write!(f, "{}", v),
        }
    }
}

impl From<bool> for GaugeValue {
    fn from(other: bool) -> Self {
        GaugeValue::Bool(other)
    }
}

impl From<i64> for GaugeValue {
    fn from(other: i64) -> Self {
        GaugeValue::Int64(other)
    }
}

impl From<usize> for GaugeValue {
    fn from(other: usize) -> Self {
        GaugeValue::Usize(other)
    }
}

impl From<f64> for GaugeValue {
    fn from(other: f64) -> Self {
        GaugeValue::Float64(other)
    }
}

impl From<&str> for GaugeValue {
    fn from(other: &str) -> Self {
        GaugeValue::String(other.into())
    }
}

impl From<String> for GaugeValue {
    fn from(other: String) -> Self {
        GaugeValue::String(other)
    }
}

impl From<Pubtime> for GaugeValue {
    fn from(other: Pubtime) -> Self {
        GaugeValue::Pubtime(other)
    }
}

impl From<Acqtime> for GaugeValue {
    fn from(other: Acqtime) -> Self {
        GaugeValue::Acqtime(other)
    }
}

/// Status of a monitor
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum MonitorStatus {
    /// The observed value is nominal
    Nominal,
    /// The monitor detected abnormal conditions
    Warning,
    /// The monitor detected critical conditions
    Critical,
}

impl MonitorStatus {
    pub fn combine(self, other: MonitorStatus) -> MonitorStatus {
        match (self, other) {
            (MonitorStatus::Critical, _) | (_, MonitorStatus::Critical) => MonitorStatus::Critical,
            (MonitorStatus::Warning, _) | (_, MonitorStatus::Warning) => MonitorStatus::Warning,
            (MonitorStatus::Nominal, MonitorStatus::Nominal) => MonitorStatus::Nominal,
        }
    }
}

/// Unique identifier for an input value of a monitor
#[derive(Debug, Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub enum GaugeKey {
    /// Value of a user defined codelet signal
    SignalValue(String),

    /// Last time a user defined codelet signal was changed (by the user)
    SignalPubtime(String),

    /// Number of messages on an RX channel available to a codelet before it executed
    RxAvailable(String),

    /// Total number of messages published on a TX channel of a codelet
    TxTotal(String),

    /// Last time a message was published by a codelet.
    /// NOTE This is *not* necessarily the pubtime of the last published message.
    TxPubtime(String),
}

#[derive(Default)]
pub(crate) struct AppMonitor {
    /// Definition of monitor
    monitor_def: Option<AppMonitorDef>,

    /// Mapping from node name to slab index
    node_to_id: HashMap<String, usize>,

    /// Name of each node
    node_names: OptVec<String>,

    /// Observables for each node
    observables: OptVec<RwLock<NodeObservables>>,

    /// Monitors for each node (monitors which observe a signal of that node)
    monitors: OptVec<RwLock<NodeMonitors>>,
}

impl AppMonitor {
    pub fn to_data(&self) -> AppMonitorData {
        AppMonitorData {
            observables: self.observables.map(|g| g.read().unwrap().clone()),
            monitors: self
                .monitors
                .iter()
                .flat_map(|(nid, g)| {
                    g.read()
                        .unwrap()
                        .monitors
                        .iter()
                        .flat_map(move |(key, mg)| {
                            mg.checks.iter().map(move |(info, _)| MonitorData {
                                info: info.clone(),
                                node_id: NodeId(nid),
                                key: key.clone(),
                                pubtime: mg.last_time,
                                value: mg.last_value.clone(),
                                status: mg.last_status.clone(),
                            })
                        })
                        .collect::<Vec<_>>()
                })
                .collect(),
        }
    }
}

pub struct AppMonitorData {
    pub observables: OptVec<NodeObservables>,
    pub monitors: Vec<MonitorData>,
}

pub struct MonitorData {
    pub info: String,
    pub node_id: NodeId,
    pub key: GaugeKey,
    pub pubtime: Option<Pubtime>,
    pub value: Result<Option<GaugeValue>, GetValueError>,
    pub status: Result<MonitorStatus, MonitorError>,
}

/// A collection of all signals of one node
#[derive(Default, Clone)]
pub struct NodeObservables {
    pub info: Arc<NodeInfo>,
    pub lifecycle_status: LifecycleStatus,
    pub status: Option<(String, DefaultStatus)>,
    pub signals: Vec<SignalEntry>,
    pub statistics: Statistics,
}

impl NodeObservables {
    pub fn get_signal(&self, key: &str) -> Result<Option<SignalTimeValue>, GetValueError> {
        Ok(self
            .signals
            .iter()
            .find(|e| e.key == *key)
            .ok_or(GetValueError::InvalidSignal(key.into()))?
            .cell
            .clone())
    }

    pub fn get(&self, key: &GaugeKey) -> Result<Option<GaugeValue>, GetValueError> {
        Ok(match key {
            GaugeKey::SignalValue(skey) => self.get_signal(skey)?.map(|stv| stv.value.into()),
            GaugeKey::SignalPubtime(skey) => self
                .get_signal(skey)?
                .map(|stv| GaugeValue::Pubtime(stv.time)),
            GaugeKey::RxAvailable(ch_name) => Some(GaugeValue::Usize(
                self.statistics.rx_available_messages_count[self.rx_index_by_name(ch_name)?],
            )),
            GaugeKey::TxTotal(ch_name) => Some(GaugeValue::Usize(
                self.statistics.tx_published_message_count[self.tx_index_by_name(ch_name)?],
            )),
            GaugeKey::TxPubtime(ch_name) => self.statistics.tx_last_pubtime
                [self.tx_index_by_name(ch_name)?]
            .map(|v| GaugeValue::Pubtime(v)),
        })
    }

    fn rx_index_by_name(&self, name: &str) -> Result<usize, GetValueError> {
        self.info
            .rx_index_by_name(name)
            .ok_or_else(|| GetValueError::InvalidRx(name.to_string()))
    }

    fn tx_index_by_name(&self, name: &str) -> Result<usize, GetValueError> {
        self.info
            .tx_index_by_name(name)
            .ok_or_else(|| GetValueError::InvalidTx(name.to_string()))
    }
}

/// A combination of a signal key and an optional signal time/value
#[derive(Clone, Serialize, Deserialize)]
pub struct SignalEntry {
    pub key: String,
    pub cell: Option<SignalTimeValue>,
}

struct NodeMonitors {
    monitors: HashMap<GaugeKey, MonitorGroup>,
    last: Result<MonitorStatus, MonitorError>,
}

impl Default for NodeMonitors {
    fn default() -> Self {
        Self {
            monitors: Default::default(),
            last: Err(MonitorError::NeverEvaluated),
        }
    }
}

struct MonitorGroup {
    checks: Vec<(String, Box<dyn Monitor>)>,
    last_time: Option<Pubtime>,
    last_value: Result<Option<GaugeValue>, GetValueError>,
    last_status: Result<MonitorStatus, MonitorError>,
}

impl Default for MonitorGroup {
    fn default() -> Self {
        Self {
            checks: Default::default(),
            last_time: None,
            last_value: Ok(None),
            last_status: Err(MonitorError::NeverEvaluated),
        }
    }
}

impl MonitorGroup {
    pub fn add(&mut self, info: String, monitor: Box<dyn Monitor>) {
        self.checks.push((info, monitor));
    }

    pub fn update(
        &mut self,
        gauge_key: GaugeKey,
        pubtime: Pubtime,
        value: Result<Option<GaugeValue>, GetValueError>,
    ) {
        match &value {
            Err(_) => {
                self.last_status = Err(MonitorError::UnknownKey(gauge_key.clone()));
            }
            Ok(None) => {
                self.last_status = Err(MonitorError::ValueNotSet(gauge_key.clone()));
            }
            Ok(Some(v)) => {
                let ret =
                    self.checks
                        .iter_mut()
                        .try_fold(MonitorStatus::Nominal, |acc, (_, monitor)| {
                            match monitor.check(pubtime, v) {
                                Ok(status) => Ok(acc.combine(status)),
                                Err(err) => Err(MonitorError::CheckError(err)),
                            }
                        });
                self.last_time = Some(pubtime);
                self.last_value = value;
                self.last_status = ret;
            }
        }
    }
}

impl AppMonitor {
    pub(crate) fn add_node<C: Codelet>(
        &mut self,
        info: Arc<NodeInfo>,
        instance: &mut CodeletInstance<C>,
    ) {
        let rx_count = instance.rx.channel_count();
        let tx_count = instance.tx.channel_count();

        let node_signals = NodeObservables {
            info,
            lifecycle_status: instance.lifecycle_status,
            status: None,
            signals: <C::Signals as Signals>::Kind::list()
                .iter()
                .map(|e| SignalEntry {
                    key: e.to_string(),
                    cell: None,
                })
                .collect(),
            statistics: Statistics {
                rx_available_messages_count: vec![0; rx_count],
                tx_published_message_count: vec![0; tx_count],
                tx_last_pubtime: vec![None; tx_count],
                ..Default::default()
            },
        };

        let mut monitors = NodeMonitors::default();
        if let Some(def) = self.monitor_def.as_mut() {
            let mut i = 0;
            while i < def.entries.len() {
                let entry = &def.entries[i];
                if entry.0 == instance.name {
                    let (_node, signal, info, monitor) = def.entries.swap_remove(i);
                    monitors
                        .monitors
                        .entry(signal)
                        .or_default()
                        .add(info, monitor);
                } else {
                    i += 1;
                }
            }
        }

        let id = instance.id.expect("internal error: setup not called").0;

        self.observables.insert(id, RwLock::new(node_signals));
        self.monitors.insert(id, RwLock::new(monitors));
        self.node_names.insert(id, instance.name.clone());

        self.node_to_id.insert(instance.name.clone(), id);
    }

    pub(crate) fn update_node<C>(
        &self,
        pubtime: Pubtime,
        instance: &CodeletInstance<C>,
    ) -> Result<(), UpdateNodeError>
    where
        C: Codelet,
    {
        let id = instance.id.expect("internal error: setup not called").0;
        let observables = &mut self.observables[id].write()?;
        let collection = &mut self.monitors[id].write()?;

        observables.lifecycle_status = instance.lifecycle_status;
        observables.status = instance
            .status
            .as_ref()
            .map(|s| (s.label().to_string(), s.as_default_status()));

        observables.statistics.copy_from(&instance.statistics);

        update_signals_impl(&instance.signals, &mut observables.signals);

        // update monitor status
        for (gauge_key, monitors) in collection.monitors.iter_mut() {
            monitors.update(gauge_key.clone(), pubtime, observables.get(gauge_key));
        }

        collection.last = collection
            .monitors
            .iter()
            .try_fold(MonitorStatus::Nominal, |acc, (_, e)| {
                Ok(acc.combine(e.last_status.clone()?))
            });

        Ok(())
    }

    /// Returns the signal level based on the latest check of all monitors. Signal monitors for
    /// signals of a node are evaluated right after that node was executed.
    pub fn status(&self) -> Result<MonitorStatus, MonitorError> {
        self.monitors
            .iter()
            .try_fold(MonitorStatus::Nominal, |acc, (_, e)| {
                Ok(acc.combine(e.read()?.last.clone()?))
            })
    }

    /// Gets a list of all observables with failed monitors
    pub fn get_failed_observables(&self) -> Result<Vec<(String, GaugeKey)>, GetFailedError> {
        let mut out = Vec::new();
        for (node_id, group) in self.monitors.iter() {
            let node_name = &self.node_names[node_id];

            for (key, value) in group.read()?.monitors.iter() {
                if value.last_status != Ok(MonitorStatus::Nominal) {
                    out.push((node_name.clone(), key.clone()));
                }
            }
        }
        Ok(out)
    }

    /// Internal function to extract observables of one node
    pub fn copy_node_observables(&self, node: &str) -> Result<NodeObservables, GetValueError> {
        let id = *self
            .node_to_id
            .get(node)
            .ok_or(GetValueError::InvalidNode(node.into()))?;

        Ok(self.observables[id].read()?.clone())
    }

    /// Get value of a user-defined signal of a node
    pub fn get_signal(
        &self,
        node: &str,
        key: &str,
    ) -> Result<Option<SignalTimeValue>, GetValueError> {
        let id = *self
            .node_to_id
            .get(node)
            .ok_or(GetValueError::InvalidNode(node.into()))?;

        self.observables[id].read()?.get_signal(key)
    }

    /// Get value of an observable
    pub fn get(&self, node: &str, key: &GaugeKey) -> Result<Option<GaugeValue>, GetValueError> {
        let id = *self
            .node_to_id
            .get(node)
            .ok_or(GetValueError::InvalidNode(node.into()))?;

        self.observables[id].read()?.get(key)
    }

    /// Creates a report containing information about all monitors
    pub fn as_report_string(&self, opts: MonitorReportOptions) -> Result<String, LockError> {
        let mut out = String::new();

        for (node_id, entry) in self.monitors.iter() {
            let node_name = &self.node_names[node_id];

            Self::as_report_string_impl(
                &mut out,
                node_name,
                entry.read()?.monitors.iter(),
                opts.include_nominal,
                opts.always_show_monitors,
            );
        }

        Ok(out)
    }

    fn as_report_string_impl<'a, I>(
        out: &mut String,
        node_name: &str,
        iter: I,
        include_nominal: bool,
        always_show_monitors: bool,
    ) where
        I: Iterator<Item = (&'a GaugeKey, &'a MonitorGroup)>,
    {
        fn colorize(text: &str, color: &str) -> String {
            format!("\x1b[{}m{}\x1b[0m", color, text)
        }

        for (key, group) in iter {
            if !include_nominal && group.last_status == Ok(MonitorStatus::Nominal) {
                continue;
            }

            let status_str = match group.last_status {
                Err(_) => colorize("ERR", "91"),
                Ok(status) => match status {
                    MonitorStatus::Nominal => colorize(" OK", "92"),
                    MonitorStatus::Warning => colorize("WRN", "93"),
                    MonitorStatus::Critical => colorize("CRT", "91"),
                },
            };

            let value_str = match &group.last_value {
                Err(_) => colorize("(error)", "91"),
                Ok(None) => colorize("N/A", "90"),
                Ok(Some(v)) => colorize(&format!("{v}"), "96"),
            };

            *out += &format!("{} {node_name}/{key:?}): {value_str}\n", status_str);

            if group.last_status != Ok(MonitorStatus::Nominal) || always_show_monitors {
                for (info, monitor) in group.checks.iter() {
                    if info != "" {
                        *out += &format!("    {} {info}\n", colorize("M", "96"));
                        *out += &format!("      {}\n", colorize(&format!("{monitor}"), "37"));
                    } else {
                        *out += &format!("    {} {monitor}\n", colorize("M", "96"));
                    }
                }
            }

            if let Err(err) = &group.last_status {
                *out += &format!("    {}\n", colorize(&format!("{err:?}"), "91"));
            }
        }
    }
}

fn update_signals_impl<G>(src: &G, dst: &mut Vec<SignalEntry>)
where
    G: Signals,
{
    let iter = src.as_time_value_iter();
    assert_eq!(dst.len(), iter.len());
    for (e, v) in std::iter::zip(dst.iter_mut(), iter) {
        e.cell = v;
    }
}

#[derive(thiserror::Error, Debug, Clone)]
pub enum GetValueError {
    #[error("lock poisoned")]
    LockPoisoned,

    #[error("invalid node: {0}")]
    InvalidNode(String),

    #[error("invalid signal: {0}")]
    InvalidSignal(String),

    #[error("invalid Rx channel name: {0}")]
    InvalidRx(String),

    #[error("invalid TX channel name: {0}")]
    InvalidTx(String),
}

impl<T> From<PoisonError<T>> for GetValueError {
    fn from(_: PoisonError<T>) -> Self {
        GetValueError::LockPoisoned
    }
}

#[derive(thiserror::Error, Debug)]
pub enum GetFailedError {
    #[error("lock poisoned")]
    LockPoisoned,
}

impl<T> From<PoisonError<T>> for GetFailedError {
    fn from(_: PoisonError<T>) -> Self {
        GetFailedError::LockPoisoned
    }
}

#[derive(Default, Debug, Clone)]
pub struct MonitorReportOptions {
    pub include_nominal: bool,
    pub always_show_monitors: bool,
}

#[derive(thiserror::Error, Debug)]
pub enum UpdateNodeError {
    #[error("lock poisoned")]
    LockPoisoned,

    #[error("invalid node name: {0}")]
    InvalidNode(String),

    #[error("invalid signal name: {0}/{1}")]
    InvalidSignal(String, String),

    #[error("invalid data type: actual={0:?}, expected={1:?}")]
    InvalidDataType(GaugeDataType, GaugeDataType),
}

impl<T> From<PoisonError<T>> for UpdateNodeError {
    fn from(_: PoisonError<T>) -> Self {
        UpdateNodeError::LockPoisoned
    }
}

#[derive(Clone)]
pub struct SharedAppMonitor(Arc<RwLock<AppMonitor>>);

impl SharedAppMonitor {
    pub fn copy_node_observables(&self, node: &str) -> Result<NodeObservables, GetValueError> {
        self.0.read()?.copy_node_observables(node)
    }

    pub fn get_signal(
        &self,
        node: &str,
        key: &str,
    ) -> Result<Option<SignalTimeValue>, GetValueError> {
        self.0.read()?.get_signal(node, key)
    }

    pub fn get(&self, node: &str, key: &GaugeKey) -> Result<Option<GaugeValue>, GetValueError> {
        self.0.read()?.get(node, key)
    }

    pub fn get_failed_observables(&self) -> Result<Vec<(String, GaugeKey)>, GetFailedError> {
        self.0.read()?.get_failed_observables()
    }

    pub fn setup_node<C: Codelet>(
        &self,
        info: Arc<NodeInfo>,
        instance: &mut CodeletInstance<C>,
    ) -> Result<(), LockError> {
        self.0.write()?.add_node(info, instance);
        instance.monitor = Some(self.clone());
        Ok(())
    }

    pub fn update_node<C>(
        &self,
        pubtime: Pubtime,
        instance: &CodeletInstance<C>,
    ) -> Result<(), UpdateNodeError>
    where
        C: Codelet,
    {
        self.0.read()?.update_node::<C>(pubtime, instance)
    }

    pub fn status(&self) -> Result<MonitorStatus, MonitorError> {
        self.0.read()?.status()
    }

    pub fn as_report_string(&self, opts: MonitorReportOptions) -> Result<String, LockError> {
        self.0.read()?.as_report_string(opts)
    }

    pub fn to_data(&self) -> Result<AppMonitorData, LockError> {
        Ok(self.0.read()?.to_data())
    }
}

#[derive(thiserror::Error, Debug, Clone, PartialEq)]
pub enum LockError {
    #[error("lock poisoned")]
    LockPoisoned,
}

impl<T> From<PoisonError<T>> for LockError {
    fn from(_: PoisonError<T>) -> Self {
        LockError::LockPoisoned
    }
}

#[derive(thiserror::Error, Debug, Clone, PartialEq)]
pub enum MonitorError {
    #[error("lock poisoned")]
    LockPoisoned,

    #[error("never evaluated")]
    NeverEvaluated,

    #[error("unknown key: {0:?}")]
    UnknownKey(GaugeKey),

    #[error("value not set: {0:?}")]
    ValueNotSet(GaugeKey),

    #[error("{0}")]
    CheckError(MonitorCheckError),
}

impl<T> From<PoisonError<T>> for MonitorError {
    fn from(_: PoisonError<T>) -> Self {
        MonitorError::LockPoisoned
    }
}

/// Specification of `Monitors` used to monitor an app
#[derive(Default)]
pub struct AppMonitorDef {
    entries: Vec<(String, GaugeKey, String, Box<dyn Monitor>)>,
}

impl AppMonitorDef {
    /// Create a new instance without any monitors
    pub fn new() -> Self {
        Self::default()
    }

    /// Adds a new monitor observing a certain value of a node
    pub fn push<M, S1, S3>(
        &mut self,
        node: S1,
        key: GaugeKey,
        info: S3,
        monitor: M,
    ) -> Result<(), AppMonitorDefPushError>
    where
        S1: Into<String>,
        S3: Into<String>,
        M: 'static + Monitor,
    {
        self.entries
            .push((node.into(), key, info.into(), Box::new(monitor)));
        Ok(())
    }
}

#[derive(thiserror::Error, Debug)]
pub enum AppMonitorDefPushError {}

impl From<AppMonitorDef> for AppMonitor {
    fn from(other: AppMonitorDef) -> Self {
        let mut out = AppMonitor::default();
        out.monitor_def = Some(other);
        out
    }
}

impl From<AppMonitorDef> for SharedAppMonitor {
    fn from(other: AppMonitorDef) -> Self {
        Self(Arc::new(RwLock::new(other.into())))
    }
}

// Define a macro to implement Monitor for specific monitor types
macro_rules! impl_binary_signal_monitor {
    ($type:ty, $dtype:ident) => {
        impl Monitor for $type {
            fn dtype(&self) -> Option<GaugeDataType> {
                Some(GaugeDataType::$dtype)
            }

            fn check(
                &self,
                _: Pubtime,
                value: &GaugeValue,
            ) -> Result<MonitorStatus, MonitorCheckError> {
                match value {
                    GaugeValue::$dtype(value) => Ok(if self.check_impl((*value).into()) {
                        MonitorStatus::Nominal
                    } else {
                        MonitorStatus::Critical
                    }),
                    other => Err(MonitorCheckError::InvalidDataType(other.dtype())),
                }
            }
        }
    };
}

pub mod monitors {
    use crate::{
        monitors::{GaugeDataType, GaugeValue, Monitor, MonitorCheckError, MonitorStatus},
        prelude::Pubtime,
    };
    use std::{collections::HashSet, fmt::Debug, ops::RangeBounds, time::Duration};

    /// A monitor which checks that a pubtime is not older than a certain tolerance
    #[derive(Debug)]
    pub struct MaxAge {
        warn_max_age: Option<Duration>,
        crit_max_age: Duration,
    }

    impl MaxAge {
        /// Two separate thresholds to check for abnormal and critical conditions.
        pub fn new_warn_crit(
            warn_max_age: Duration,
            crit_max_age: Duration,
        ) -> Result<Self, MaxAgeError> {
            if warn_max_age >= crit_max_age {
                Err(MaxAgeError::WarnMaxAgeTooLarge)
            } else {
                Ok(Self {
                    warn_max_age: Some(warn_max_age),
                    crit_max_age,
                })
            }
        }

        /// Nominal if duration is smaller than threshold and critical otherwise. No warning level.
        pub fn new_crit(crit_max_age: Duration) -> Self {
            Self {
                warn_max_age: None,
                crit_max_age,
            }
        }
    }

    #[derive(thiserror::Error, Debug)]
    pub enum MaxAgeError {
        #[error("warn max age must be smaller than crit max age")]
        WarnMaxAgeTooLarge,
    }

    impl Monitor for MaxAge {
        fn dtype(&self) -> Option<GaugeDataType> {
            Some(GaugeDataType::Pubtime)
        }

        fn check(
            &self,
            pubtime: Pubtime,
            value: &GaugeValue,
        ) -> Result<MonitorStatus, MonitorCheckError> {
            match value {
                GaugeValue::Pubtime(pt) => Ok(if *pubtime > **pt + self.crit_max_age {
                    MonitorStatus::Critical
                } else {
                    if let Some(warn_max_age) = self.warn_max_age {
                        if *pubtime > **pt + warn_max_age {
                            MonitorStatus::Warning
                        } else {
                            MonitorStatus::Nominal
                        }
                    } else {
                        MonitorStatus::Nominal
                    }
                }),
                other => Err(MonitorCheckError::InvalidDataType(other.dtype())),
            }
        }
    }

    impl std::fmt::Display for MaxAge {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            if let Some(warn_max_age) = self.warn_max_age {
                write!(
                    f,
                    "Max age: warning {:?}, critical{:?}",
                    warn_max_age, self.crit_max_age
                )
            } else {
                write!(f, "Max age {:?}", self.crit_max_age)
            }
        }
    }

    /// A monitor which checks that a pubtime is not younger than a certain tolerance.
    /// This is for example useful to check that signals indicating errors are not active.
    #[derive(Debug)]
    pub struct MinAge {
        warn_min_age: Option<Duration>,
        crit_min_age: Duration,
    }

    impl MinAge {
        /// Two separate thresholds to check for abnormal and critical conditions.
        pub fn new_warn_crit(
            warn_min_age: Duration,
            crit_min_age: Duration,
        ) -> Result<Self, MinAgeError> {
            if warn_min_age <= crit_min_age {
                Err(MinAgeError::WarnMinAgeTooSmall)
            } else {
                Ok(Self {
                    warn_min_age: Some(warn_min_age),
                    crit_min_age,
                })
            }
        }

        /// Nominal if duration is smaller than threshold and critical otherwise. No warning level.
        pub fn new_crit(crit_min_age: Duration) -> Self {
            Self {
                warn_min_age: None,
                crit_min_age,
            }
        }
    }

    #[derive(thiserror::Error, Debug)]
    pub enum MinAgeError {
        #[error("warn min age must be greater than crit min age")]
        WarnMinAgeTooSmall,
    }

    impl Monitor for MinAge {
        fn dtype(&self) -> Option<GaugeDataType> {
            Some(GaugeDataType::Pubtime)
        }

        fn check(
            &self,
            pubtime: Pubtime,
            value: &GaugeValue,
        ) -> Result<MonitorStatus, MonitorCheckError> {
            match value {
                GaugeValue::Pubtime(pt) => Ok(if *pubtime < **pt + self.crit_min_age {
                    MonitorStatus::Critical
                } else {
                    if let Some(warn_min_age) = self.warn_min_age {
                        if *pubtime < **pt + warn_min_age {
                            MonitorStatus::Warning
                        } else {
                            MonitorStatus::Nominal
                        }
                    } else {
                        MonitorStatus::Nominal
                    }
                }),
                other => Err(MonitorCheckError::InvalidDataType(other.dtype())),
            }
        }
    }

    impl std::fmt::Display for MinAge {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            if let Some(warn_min_age) = self.warn_min_age {
                write!(
                    f,
                    "Max age: warning {:?}, critical{:?}",
                    warn_min_age, self.crit_min_age
                )
            } else {
                write!(f, "Max age {:?}", self.crit_min_age)
            }
        }
    }

    /// Checks that a value is exactly the specified value
    #[derive(Debug)]
    pub struct Equals(GaugeValue);

    impl Equals {
        pub fn new<T>(value: T) -> Self
        where
            T: Into<GaugeValue>,
        {
            Self(value.into())
        }
    }

    impl Monitor for Equals {
        fn dtype(&self) -> Option<GaugeDataType> {
            Some(self.0.dtype())
        }

        fn check(
            &self,
            _: Pubtime,
            value: &GaugeValue,
        ) -> Result<MonitorStatus, MonitorCheckError> {
            if value.dtype() == self.0.dtype() {
                Ok(if *value == self.0 {
                    MonitorStatus::Nominal
                } else {
                    MonitorStatus::Critical
                })
            } else {
                Err(MonitorCheckError::InvalidDataType(value.dtype()))
            }
        }
    }

    impl std::fmt::Display for Equals {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            write!(f, "Equals ")?;
            write!(f, "{}", self.0)
        }
    }

    /// Checks that a boolean observable is true
    #[derive(Debug)]
    pub struct CheckTrue;

    impl CheckTrue {
        fn check_impl(&self, value: bool) -> bool {
            value
        }
    }

    impl_binary_signal_monitor!(CheckTrue, Bool);

    impl std::fmt::Display for CheckTrue {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            write!(f, "Check true")
        }
    }

    /// Checks that an integer observable is within the specified list
    #[derive(Debug)]
    pub struct IntAllowList(HashSet<i64>);

    impl IntAllowList {
        pub fn from_iter<I>(items: I) -> Self
        where
            I: IntoIterator<Item = i64>,
        {
            Self(items.into_iter().collect())
        }

        fn check_impl(&self, value: i64) -> bool {
            self.0.contains(&value)
        }
    }

    impl_binary_signal_monitor!(IntAllowList, Int64);

    impl std::fmt::Display for IntAllowList {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            let mut values: Vec<i64> = self.0.iter().copied().collect();
            values.sort();
            write!(f, "Check in allowed list: {:?}", values)
        }
    }

    /// Checks that a float observable is within the specified range
    #[derive(Debug)]
    pub struct FloatAllowRange<R>(R);

    impl<R> FloatAllowRange<R> {
        pub fn new(range: R) -> Self
        where
            R: RangeBounds<f64>,
        {
            Self(range)
        }

        fn check_impl(&self, value: f64) -> bool
        where
            R: RangeBounds<f64>,
        {
            self.0.contains(&value)
        }
    }

    impl<R> Monitor for FloatAllowRange<R>
    where
        R: RangeBounds<f64> + Send + Sync + Debug,
    {
        fn dtype(&self) -> Option<GaugeDataType> {
            Some(GaugeDataType::Float64)
        }

        fn check(
            &self,
            _: Pubtime,
            value: &GaugeValue,
        ) -> Result<MonitorStatus, MonitorCheckError> {
            match value {
                GaugeValue::Float64(value) => Ok(if self.check_impl(*value) {
                    MonitorStatus::Nominal
                } else {
                    MonitorStatus::Critical
                }),
                other => Err(MonitorCheckError::InvalidDataType(other.dtype())),
            }
        }
    }

    impl<R> std::fmt::Display for FloatAllowRange<R>
    where
        R: RangeBounds<f64> + std::fmt::Debug,
    {
        fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
            write!(f, "Check in range: {:?}", self.0)
        }
    }

    #[cfg(test)]
    mod test {
        use super::*;

        #[test]
        fn test_max_age() {
            let m = MaxAge::new_warn_crit(Duration::from_millis(500), Duration::from_millis(1000))
                .unwrap();
            assert_eq!(m.dtype(), Some(GaugeDataType::Pubtime));
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(2300).into())
                ),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1800).into())
                ),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1500).into())
                ),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1499).into())
                ),
                Ok(MonitorStatus::Warning)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1000).into())
                ),
                Ok(MonitorStatus::Warning)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(999).into())
                ),
                Ok(MonitorStatus::Critical)
            );
        }

        #[test]
        fn test_min_age() {
            let m = MinAge::new_warn_crit(Duration::from_millis(1000), Duration::from_millis(500))
                .unwrap();
            assert_eq!(m.dtype(), Some(GaugeDataType::Pubtime));
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(800).into())
                ),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1000).into())
                ),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1001).into())
                ),
                Ok(MonitorStatus::Warning)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1500).into())
                ),
                Ok(MonitorStatus::Warning)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(1501).into())
                ),
                Ok(MonitorStatus::Critical)
            );
            assert_eq!(
                m.check(
                    Duration::from_millis(2000).into(),
                    &GaugeValue::Pubtime(Duration::from_millis(2100).into())
                ),
                Ok(MonitorStatus::Critical)
            );
        }

        #[test]
        fn test_check_true() {
            let m = CheckTrue;
            assert_eq!(m.dtype(), Some(GaugeDataType::Bool));
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Bool(true)),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Bool(false)),
                Ok(MonitorStatus::Critical)
            );
        }

        #[test]
        fn test_int_allow_list() {
            let m = IntAllowList::from_iter([3, 10, 9]);
            assert_eq!(m.dtype(), Some(GaugeDataType::Int64));
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Int64(9)),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Int64(4)),
                Ok(MonitorStatus::Critical)
            );
        }

        #[test]
        fn test_float_allow_range_1() {
            let m = FloatAllowRange::new(3.1..2.7);
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Float64(2.9)),
                Ok(MonitorStatus::Critical)
            );
        }

        #[test]
        fn test_float_allow_range_2() {
            let m = FloatAllowRange::new(2.7..3.1);
            assert_eq!(m.dtype(), Some(GaugeDataType::Float64));
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Float64(2.6999)),
                Ok(MonitorStatus::Critical)
            );
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Float64(2.7)),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Float64(3.0)),
                Ok(MonitorStatus::Nominal)
            );
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Float64(3.1)),
                Ok(MonitorStatus::Critical)
            );
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Float64(3.9)),
                Ok(MonitorStatus::Critical)
            );
        }

        #[test]
        fn test_float_allow_range_3() {
            let m = FloatAllowRange::new(2.7..=3.1);
            assert_eq!(m.dtype(), Some(GaugeDataType::Float64));
            assert_eq!(
                m.check(Duration::default().into(), &GaugeValue::Float64(3.1)),
                Ok(MonitorStatus::Nominal)
            );
        }
    }
}