regent-sdk 0.9.1

Multi-paradigm configuration management system as a library
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
//! Managed host and builder
//!
//! This module provides the [`ManagedHost`] and [`ManagedHostBuilder`] types for
//! managing connections to target hosts and executing compliance operations.

use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::time::Duration;
use tracing::Level;
use tracing::span;
#[allow(unused)]
use tracing::{debug, error, info, trace, warn};

use crate::LocalHostHandler;
use crate::Ssh2AuthMethod;
use crate::Ssh2HostHandler;
use crate::WhichUser;
use crate::error::RegentError;
use crate::hosts::handlers::ConnectionMethod;
use crate::hosts::handlers::Handler;
use crate::hosts::handlers::HostHandler;
use crate::hosts::handlers::TargetUserKind;
use crate::hosts::handlers::ssh2::Ssh2AuthReference;
use crate::hosts::privilege::Credentials;
use crate::hosts::privilege::LoginKey;
use crate::hosts::privilege::Privilege;
use crate::hosts::properties::HostProperties;
use crate::secrets::SecretProvidersPool;
use crate::state::ExpectedState;
use crate::state::attribute::Remediation;
use crate::state::compliance::Action;
use crate::state::compliance::AttributeComplianceAssessment;
use crate::state::compliance::HostStatus;
use crate::state::compliance::ManagedHostStatus;

/// Represents the connection state of a managed host.
///
/// This enum tracks whether a host is currently connected, disconnected, or in an error state,
/// enabling proper state management and preventing issues like double-connection or
/// reconnection failures due to stale state.
#[derive(Clone, Serialize, Deserialize, Debug, PartialEq)]
pub enum ConnectionState {
    /// The host is currently disconnected.
    Disconnected,
    /// The host is currently connected and ready for operations.
    Connected,
    /// The host connection state is unknown (e.g., after a failed connection attempt).
    Unknown,
}

impl Default for ConnectionState {
    fn default() -> Self {
        ConnectionState::Disconnected
    }
}

/// Builder for creating [`ManagedHost`] instances.
///
/// This struct is used to configure a managed host before it's built and connected.
/// It holds all the configuration needed to establish a connection and manage the host.
///
/// # Serialization
///
/// `ManagedHostBuilder` can be serialized and deserialized as JSON or YAML:
///
/// ```no_run
/// use regent_sdk::hosts::managed_host::ManagedHostBuilder;
/// use regent_sdk::hosts::handlers::{ConnectionMethod, TargetUser};
///
/// let builder = ManagedHostBuilder::new(
///     "web-server-01",
///     "192.168.1.100:22",
///     Some(ConnectionMethod::Localhost(TargetUser::current_user())),
/// );
///
/// let yaml = serde_yaml::to_string(&builder).unwrap();
/// let json = serde_json::to_string(&builder).unwrap();
/// ```
///
/// # Example
///
/// ```no_run
/// use regent_sdk::hosts::managed_host::ManagedHostBuilder;
/// use regent_sdk::hosts::handlers::{ConnectionMethod, TargetUser};
/// use regent_sdk::secrets::{SecretProvider, SecretProvidersPoolBuilder};
///
/// let builder = ManagedHostBuilder::new(
///     "web-server-01",
///     "192.168.1.100:22",
///     Some(ConnectionMethod::Localhost(TargetUser::current_user())),
/// );
///
/// let secrets_pool = SecretProvidersPoolBuilder::new()
///     .add_default_provider("files", SecretProvider::files())
///     .build()
///     .unwrap();
///
/// let managed_host = builder.build(Some(secrets_pool)).await.unwrap();
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "PascalCase")]
#[serde(deny_unknown_fields)]
pub struct ManagedHostBuilder {
    /// Unique identifier for this managed host.
    ///
    /// Used for tracking and logging purposes.
    pub id: String,
    /// The network endpoint for the host (e.g., "192.168.1.100:22" or "localhost").
    endpoint: String,
    /// The connection method to use for connecting to the host.
    pub host_connection_method: Option<ConnectionMethod>,
    /// Optional host properties that have been collected.
    host_properties: Option<HostProperties>,
    /// Optional host-specific variables for templating.
    ///
    /// These variables are available during template rendering and can be used
    /// to customize attribute behavior per host.
    pub host_vars: Option<HashMap<String, String>>,
}

impl ManagedHostBuilder {
    /// Create a new managed host builder.
    ///
    /// # Arguments
    ///
    /// * `id` - Unique identifier for the host
    /// * `endpoint` - Network endpoint for the host
    /// * `connection_method` - How to connect to the host
    ///
    /// # Returns
    ///
    /// A new [`ManagedHostBuilder`] instance.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHostBuilder;
    /// use regent_sdk::hosts::handlers::{ConnectionMethod, TargetUser};
    ///
    /// let builder = ManagedHostBuilder::new(
    ///     "web-server-01",
    ///     "192.168.1.100:22",
    ///     Some(ConnectionMethod::Localhost(TargetUser::current_user())),
    /// );
    /// ```
    pub fn new(id: &str, endpoint: &str, connection_method: Option<ConnectionMethod>) -> Self {
        Self {
            id: id.to_string(),
            endpoint: endpoint.to_string(),
            host_connection_method: connection_method,
            host_properties: None,
            host_vars: None,
        }
    }

    pub fn id(&self) -> &str {
        &self.id
    }

    /// Set the connection method for this host.
    ///
    /// # Arguments
    ///
    /// * `connection_method` - The connection method to use
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHostBuilder;
    /// use regent_sdk::hosts::handlers::{ConnectionMethod, TargetUser};
    ///
    /// let mut builder = ManagedHostBuilder::new("host-01", "localhost", None);
    /// builder.set_connection_method(ConnectionMethod::Localhost(TargetUser::current_user()));
    /// ```
    pub fn set_connection_method(&mut self, connection_method: ConnectionMethod) {
        self.host_connection_method = Some(connection_method);
    }

    /// Set the host variables for templating.
    ///
    /// # Arguments
    ///
    /// * `host_vars` - HashMap of variable names to values
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHostBuilder;
    /// use std::collections::HashMap;
    ///
    /// let mut builder = ManagedHostBuilder::new("host-01", "localhost", None);
    ///
    /// let mut vars = HashMap::new();
    /// vars.insert("env".to_string(), "production".to_string());
    /// vars.insert("region".to_string(), "us-east-1".to_string());
    ///
    /// builder.set_host_vars(Some(vars));
    /// ```
    pub fn set_host_vars(&mut self, host_vars: Option<HashMap<String, String>>) {
        self.host_vars = host_vars;
    }

    /// Parse a managed host builder from raw YAML content.
    ///
    /// # Arguments
    ///
    /// * `raw_yaml` - The YAML string to parse
    ///
    /// # Returns
    ///
    /// - `Ok(ManagedHostBuilder)` if parsing succeeded
    /// - `Err(RegentError)` if parsing failed
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHostBuilder;
    ///
    /// let yaml = r#"
    /// Id: web-server-01
    /// Endpoint: 192.168.1.100:22
    /// HostConnectionMethod:
    ///   Localhost:
    ///     UserKind: CurrentUser
    /// "#;
    ///
    /// let builder = ManagedHostBuilder::from_raw_yaml(yaml).unwrap();
    /// ```
    pub fn from_raw_yaml(raw_yaml: &str) -> Result<Self, RegentError> {
        match yaml_serde::from_str::<Self>(raw_yaml) {
            Ok(managed_host_builder) => Ok(managed_host_builder),
            Err(details) => Err(RegentError::FailureToParseContent(format!("{:?}", details))),
        }
    }

    /// Parse a managed host builder from raw JSON content.
    ///
    /// # Arguments
    ///
    /// * `raw_json` - The JSON string to parse
    ///
    /// # Returns
    ///
    /// - `Ok(ManagedHostBuilder)` if parsing succeeded
    /// - `Err(RegentError)` if parsing failed
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHostBuilder;
    ///
    /// let json = r#"{"Id":"web-server-01","Endpoint":"192.168.1.100:22"}"#;
    /// let builder = ManagedHostBuilder::from_raw_json(json).unwrap();
    /// ```
    pub fn from_raw_json(raw_json: &str) -> Result<Self, RegentError> {
        match serde_json::from_str::<Self>(raw_json) {
            Ok(managed_host_builder) => Ok(managed_host_builder),
            Err(details) => Err(RegentError::FailureToParseContent(format!("{:?}", details))),
        }
    }

    pub async fn build(
        self,
        optional_secret_provider: Option<SecretProvidersPool>,
    ) -> Result<ManagedHost, RegentError> {
        // Check that each required field is set
        if let None = self.host_connection_method {
            return Err(RegentError::WrongInitialization(format!(
                "connection method unset"
            )));
        }

        // Retrieve connection secrets when needed
        match self.host_connection_method {
            Some(connection) => {
                match connection {
                    ConnectionMethod::Localhost(target_user) => {
                        match target_user.user_kind {
                            TargetUserKind::CurrentUser => {
                                // No secret required
                                Ok(ManagedHost::new(
                                    self.id,
                                    &self.endpoint,
                                    Handler::localhost(LocalHostHandler::from(
                                        WhichUser::CurrentUser,
                                    )),
                                    self.host_vars,
                                    self.host_properties,
                                    optional_secret_provider,
                                ))
                            }
                            TargetUserKind::User(secret_reference) => {
                                match &optional_secret_provider {
                                    Some(secret_provider) => {
                                        match secret_provider
                                            .get_secret_typed::<Credentials>(&secret_reference)
                                            .await
                                        {
                                            Ok(secret) => Ok(ManagedHost::new(
                                                self.id,
                                                &self.endpoint,
                                                Handler::localhost(LocalHostHandler::from(
                                                    WhichUser::UsernamePassword(secret.inner()),
                                                )),
                                                self.host_vars,
                                                self.host_properties,
                                                optional_secret_provider,
                                            )),
                                            Err(details) => Err(details),
                                        }
                                    }
                                    None => Err(RegentError::WrongInitialization(format!(
                                        "secret required to connect to host but secret_provider unset"
                                    ))),
                                }
                            }
                        }
                    }
                    ConnectionMethod::Ssh2(ssh2_auth_reference) => {
                        match ssh2_auth_reference.auth_method {
                            Ssh2AuthReference::UsernamePassword(secret_reference) => {
                                match &optional_secret_provider {
                                    Some(secret_provider) => {
                                        match secret_provider
                                            .get_secret_typed::<Credentials>(&secret_reference)
                                            .await
                                        {
                                            Ok(secret) => Ok(ManagedHost::new(
                                                self.id,
                                                &self.endpoint,
                                                Handler::ss2(Ssh2HostHandler::NotConnected(
                                                    Ssh2AuthMethod::UsernamePassword(
                                                        secret.inner(),
                                                    ),
                                                )),
                                                self.host_vars,
                                                self.host_properties,
                                                optional_secret_provider,
                                            )),
                                            Err(details) => Err(details),
                                        }
                                    }
                                    None => Err(RegentError::WrongInitialization(format!(
                                        "secret required to connect to host but secret_provider unset"
                                    ))),
                                }
                            }
                            Ssh2AuthReference::Key(login_key_ref) => {
                                match &optional_secret_provider {
                                    Some(secret_provider) => {
                                        match secret_provider
                                            .get_secret_raw(login_key_ref.key_ref())
                                            .await
                                        {
                                            Ok(secret) => Ok(ManagedHost::new(
                                                self.id,
                                                &self.endpoint,
                                                Handler::ss2(Ssh2HostHandler::NotConnected(
                                                    Ssh2AuthMethod::Key(LoginKey::from(
                                                        login_key_ref.username().to_string(),
                                                        secret.inner(),
                                                    )),
                                                )),
                                                self.host_vars,
                                                self.host_properties,
                                                optional_secret_provider,
                                            )),
                                            Err(details) => Err(details),
                                        }
                                    }
                                    None => Err(RegentError::WrongInitialization(format!(
                                        "secret required to connect to host but secret_provider unset"
                                    ))),
                                }
                            }
                        }
                    }
                }
            }
            None => Err(RegentError::WrongInitialization(format!(
                "connection_method unset"
            ))),
        }
    }
}

/// A managed host that can execute compliance operations.
///
/// `ManagedHost` represents a target system that can be connected to and managed.
/// It provides methods for assessing and reaching compliance with expected states.
///
/// # Lifecycle
///
/// 1. Create using [`ManagedHostBuilder::build()`]
/// 2. Connect using [`ManagedHost::connect()`]
/// 3. Execute operations (assess/reach compliance)
/// 4. Disconnect using [`ManagedHost::disconnect()`]
///
/// # Example
///
/// ```no_run
/// use regent_sdk::hosts::managed_host::{ManagedHost, ManagedHostBuilder};
/// use regent_sdk::hosts::handlers::{ConnectionMethod, TargetUser};
/// use regent_sdk::state::ExpectedState;
///
/// let builder = ManagedHostBuilder::new(
///     "web-server-01",
///     "192.168.1.100:22",
///     Some(ConnectionMethod::Localhost(TargetUser::current_user())),
/// );
///
/// let mut host = builder.build(None).await.unwrap();
/// host.connect().unwrap();
///
/// let expected_state = ExpectedState::new();
/// let status = host.assess_compliance(&expected_state).await.unwrap();
///
/// host.disconnect().unwrap();
/// ```
// #[derive(Clone)]
pub struct ManagedHost {
    /// Unique identifier for this managed host.
    id: String,
    /// The network endpoint for the host.
    endpoint: String,
    /// The handler used for connecting and executing commands on the host.
    pub handler: Handler,
    /// Tera context for template rendering with host variables.
    context: tera::Context,
    /// Cached host properties (OS, architecture, etc.).
    host_properties: Option<HostProperties>,
    /// Secret providers pool for retrieving secrets.
    // TODO : how to avoid cloning the whole Pool for each Host ? Is it worth introducting Arc<Mutex<T>> ?
    secret_providers: Option<SecretProvidersPool>,
    /// The current connection state of this host.
    ///
    /// This tracks whether the host is connected, disconnected, or in an unknown state,
    /// enabling proper idempotency for connection/disconnection operations.
    connection_state: ConnectionState,
}

impl Clone for ManagedHost {
    fn clone(&self) -> Self {
        Self {
            id: self.id.clone(),
            endpoint: self.endpoint.clone(),
            handler: self.handler.clone(),
            context: self.context.clone(),
            host_properties: self.host_properties.clone(),
            secret_providers: self.secret_providers.clone(),
            connection_state: self.connection_state.clone(),
        }
    }
}

impl ManagedHost {
    /// Create a new managed host.
    ///
    /// # Arguments
    ///
    /// * `id` - Unique identifier for the host
    /// * `endpoint` - Network endpoint for the host
    /// * `handler` - Connection handler for the host
    /// * `host_vars` - Host-specific variables for templating
    /// * `host_properties` - Optional cached host properties
    /// * `secret_providers` - Optional secret providers pool
    ///
    /// # Returns
    ///
    /// A new [`ManagedHost`] instance.
    pub fn new(
        id: String,
        endpoint: &str,
        handler: Handler,
        host_vars: Option<HashMap<String, String>>,
        host_properties: Option<HostProperties>,
        secret_providers: Option<SecretProvidersPool>,
    ) -> ManagedHost {
        let context = match host_vars {
            Some(content) => match tera::Context::from_serialize(&content) {
                Ok(context) => context,
                Err(details) => {
                    error!("Failed to create Tera context : {:?}", details);
                    // TODO : turn this into an Err -> return type of this function -> Result
                    tera::Context::new()
                }
            },
            None => tera::Context::new(),
        };
        ManagedHost {
            id,
            endpoint: endpoint.to_string(),
            handler,
            context,
            host_properties,
            secret_providers: secret_providers.clone(),
            connection_state: ConnectionState::Disconnected,
        }
    }

    /// Create a new managed host from an iterator of variables.
    ///
    /// This is a convenience constructor that accepts variables as an iterator.
    ///
    /// # Arguments
    ///
    /// * `id` - Unique identifier for the host
    /// * `endpoint` - Network endpoint for the host
    /// * `handler` - Connection handler for the host
    /// * `vars` - Iterator of (key, value) pairs for host variables
    /// * `host_properties` - Optional cached host properties
    /// * `secret_providers` - Optional secret providers pool
    ///
    /// # Returns
    ///
    /// A new [`ManagedHost`] instance.
    pub fn from(
        id: String,
        endpoint: &str,
        handler: Handler,
        vars: Option<impl IntoIterator<Item = (String, String)>>,
        host_properties: Option<HostProperties>,
        secret_providers: Option<SecretProvidersPool>,
    ) -> ManagedHost {
        let final_vars = match vars {
            Some(vars_list) => {
                let mut final_vars: HashMap<String, String> = HashMap::new();

                for (key, value) in vars_list.into_iter() {
                    final_vars.insert(key, value);
                }

                Some(final_vars)
            }
            None => None,
        };

        ManagedHost {
            id,
            endpoint: endpoint.to_string(),
            handler,
            context: tera::Context::from_serialize(&final_vars).unwrap(),
            host_properties,
            secret_providers: secret_providers.clone(),
            connection_state: ConnectionState::Disconnected,
        }
    }

    /// Get the unique identifier for this managed host.
    ///
    /// # Returns
    ///
    /// A reference to the host's ID string.
    pub fn id(&self) -> &str {
        &self.id
    }

    /// Add a variable to the host's template context.
    ///
    /// This variable will be available during template rendering for attributes.
    ///
    /// # Arguments
    ///
    /// * `key` - The variable name
    /// * `value` - The variable value
    pub fn add_var(&mut self, key: String, value: String) {
        if self.context.contains_key(&key) {
            warn!(
                key,
                "Writing an already-existing variable to context. Is this expected ?"
            );
        }
        self.context.insert(key, &value);
    }

    /// Set the host properties.
    ///
    /// This replaces any existing host properties with the provided value.
    ///
    /// # Arguments
    ///
    /// * `host_properties` - The host properties to set
    pub fn set_host_properties(&mut self, host_properties: Option<HostProperties>) {
        self.host_properties = host_properties;
    }

    /// Enable secret caching for this managed host.
    ///
    /// This ensures that secrets retrieved during assessment and enforcement
    /// phases are the same, even if the underlying secrets are rotated.
    /// This is crucial for idempotency in compliance operations.
    pub fn enable_secret_caching(&mut self) {
        if let Some(secret_providers) = &mut self.secret_providers {
            secret_providers.enable_caching();
        }
    }

    /// Disable secret caching for this managed host.
    pub fn disable_secret_caching(&mut self) {
        if let Some(secret_providers) = &mut self.secret_providers {
            secret_providers.disable_caching();
        }
    }

    /// Collect host properties dynamically from the host.
    ///
    /// This method connects to the host and collects information about its
    /// operating system, architecture, and other properties.
    ///
    /// # Returns
    ///
    /// `Ok(())` if property collection succeeded, or a [`RegentError`] if it failed.
    pub async fn collect_properties(&mut self) -> Result<(), RegentError> {
        if matches!(self.host_properties, None) {
            match HostProperties::collect_dynamically(&mut self.handler).await {
                Ok(host_properties) => {
                    self.host_properties = Some(host_properties);
                }
                Err(details) => {
                    return Err(details);
                }
            }
        } else {
            warn!("HostProperties already collected. Logic error ?");
        }
        Ok(())
    }

    /// Get the host properties.
    ///
    /// # Returns
    ///
    /// A reference to the optional host properties.
    pub fn get_host_properties(&self) -> &Option<HostProperties> {
        &self.host_properties
    }

    /// Connect to the host.
    ///
    /// This method establishes a connection to the host using the configured handler.
    ///
    /// # Returns
    ///
    /// `Ok(())` if connection succeeded, or a [`RegentError`] if it failed.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHost;
    ///
    /// let mut host = /* create host */;
    /// host.connect().unwrap();
    /// assert!(host.is_connected());
    /// ```
    pub async fn connect(&mut self) -> Result<(), RegentError> {
        let result = self.handler.connect(&self.endpoint).await;
        if result.is_ok() {
            self.connection_state = ConnectionState::Connected;
        } else {
            self.connection_state = ConnectionState::Unknown;
        }
        result
    }

    /// Check if the host is currently connected.
    ///
    /// # Returns
    ///
    /// `true` if connected, `false` otherwise.
    pub async fn is_connected(&mut self) -> bool {
        self.handler.is_connected().await
    }

    /// Check the tracked connection state of this host.
    ///
    /// Unlike `is_connected()`, which queries the underlying handler,
    /// this returns the tracked state that was last set by `connect()` or `disconnect()`.
    ///
    /// # Returns
    ///
    /// The current `ConnectionState` of this host.
    pub fn connection_state(&self) -> &ConnectionState {
        &self.connection_state
    }

    /// Check if the host is in a tracked connected state.
    ///
    /// This returns `true` if the tracked state is `Connected`, regardless of
    /// the actual underlying handler state. Use `is_connected()` to check
    /// the actual connection status.
    ///
    /// # Returns
    ///
    /// `true` if the tracked state is `Connected`.
    pub fn is_tracked_connected(&self) -> bool {
        matches!(self.connection_state, ConnectionState::Connected)
    }

    /// Check if the host is in a tracked disconnected state.
    ///
    /// This returns `true` if the tracked state is `Disconnected`.
    ///
    /// # Returns
    ///
    /// `true` if the tracked state is `Disconnected`.
    pub fn is_tracked_disconnected(&self) -> bool {
        matches!(self.connection_state, ConnectionState::Disconnected)
    }

    /// Disconnect from the host.
    ///
    /// # Returns
    ///
    /// `Ok(())` if disconnection succeeded, or a [`RegentError`] if it failed.
    pub async fn disconnect(&mut self) -> Result<(), RegentError> {
        let result = self.handler.disconnect().await;
        if result.is_ok() {
            self.connection_state = ConnectionState::Disconnected;
        } else {
            self.connection_state = ConnectionState::Unknown;
        }
        result
    }

    /// Assess compliance of the host with the expected state.
    ///
    /// This method checks each attribute in the expected state and determines
    /// whether the host is compliant. It does not make any changes to the host.
    ///
    /// # Arguments
    ///
    /// * `expected_state` - The expected state to check against
    ///
    /// # Returns
    ///
    /// A [`ManagedHostStatus`] indicating whether the host is compliant and
    /// what remediations would be needed to reach compliance.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHost;
    /// use regent_sdk::state::{ExpectedState, Attribute};
    ///
    /// let mut host = /* create and connect host */;
    /// let expected_state = ExpectedState::new()
    ///     .with_attribute(Attribute::service(/* ... */))
    ///     .build();
    ///
    /// let status = host.assess_compliance(&expected_state).await.unwrap();
    ///
    /// if status.is_already_compliant() {
    ///     println!("Host is compliant!");
    /// } else {
    ///     println!("Host needs remediation");
    /// }
    /// ```
    // Defaults to sequential assessment
    pub async fn assess_compliance(
        &mut self,
        expected_state: &ExpectedState,
    ) -> Result<ManagedHostStatus, RegentError> {
        if !self.is_connected().await {
            return Err(RegentError::NotConnectedToHost);
        }

        // Enable secret caching to ensure idempotency
        self.enable_secret_caching();

        let mut already_compliant = true;
        let mut final_remediations_list: Vec<Remediation> = Vec::new();

        for attribute in expected_state.attributes.clone().iter_mut() {
            let span = span!(Level::INFO, "attribute", name = attribute.name());
            let _enter = span.enter();

            // Taking context into account before working on the Attribute
            match attribute.consider_context(&self.context) {
                Ok(context_aware_attribute) => {
                    match context_aware_attribute
                        .assess(
                            &mut self.handler,
                            &self.host_properties,
                            &self.secret_providers,
                        )
                        .await
                    {
                        Ok(attribute_compliance) => {
                            if let AttributeComplianceAssessment::NonCompliant(remediations) =
                                attribute_compliance
                            {
                                already_compliant = false;
                                final_remediations_list.extend(remediations.into_inner());
                            }
                        }
                        Err(details) => {
                            return Err(details);
                        }
                    }
                }
                Err(details) => {
                    let content = match &details {
                        RegentError::FailureToConsiderContext(content) => content,
                        _ => &format!("{:?}", details),
                    };
                    error!("{}", content);
                    return Err(details);
                }
            }
        }

        if already_compliant {
            Ok(ManagedHostStatus::already_compliant())
        } else {
            Ok(ManagedHostStatus::not_compliant(final_remediations_list))
        }
    }

    /// Automatically reach compliance with the expected state.
    ///
    /// This method assesses compliance and then automatically performs the necessary
    /// remediations to bring the host into the expected state. It will stop at the
    /// first failure unless all remediations are marked as allowed to fail.
    ///
    /// # Arguments
    ///
    /// * `expected_state` - The expected state to reach
    ///
    /// # Returns
    ///
    /// A [`ManagedHostStatus`] indicating the final compliance status and
    /// what actions were taken.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use regent_sdk::hosts::managed_host::ManagedHost;
    /// use regent_sdk::state::{ExpectedState, Attribute};
    ///
    /// let mut host = /* create and connect host */;
    /// let expected_state = ExpectedState::new()
    ///     .with_attribute(Attribute::service(/* ... */))
    ///     .build();
    ///
    /// let result = host.reach_compliance(&expected_state).await.unwrap();
    ///
    /// if result.is_reach_compliance_success() {
    ///     println!("Compliance reached successfully!");
    /// } else if result.is_reach_compliance_failed() {
    ///     println!("Failed to reach compliance");
    /// }
    /// ```
    pub async fn reach_compliance(
        &mut self,
        expected_state: &ExpectedState,
    ) -> Result<ManagedHostStatus, RegentError> {
        if !self.is_connected().await {
            return Err(RegentError::NotConnectedToHost);
        }

        // Enable secret caching to ensure idempotency
        self.enable_secret_caching();

        let mut final_host_status = HostStatus::AlreadyCompliant;
        let mut reaching_compliance_failed = false;
        let mut actions_taken: Vec<Action> = Vec::new();

        for attribute in &expected_state.attributes {
            let span = span!(Level::INFO, "attribute", name = attribute.name());
            let _enter = span.enter();
            match attribute.consider_context(&self.context) {
                Ok(context_aware_attribute) => {
                    let timeout_duration = context_aware_attribute.timeout()?;

                    match context_aware_attribute
                        .assess(
                            &mut self.handler,
                            &self.host_properties,
                            &self.secret_providers,
                        )
                        .await
                    {
                        Ok(attribute_compliance) => {
                            let outcome = attribute_compliance.clone();
                            match attribute_compliance {
                                AttributeComplianceAssessment::Compliant => {
                                    info!(target: "run",assesment_outcome = ?outcome, "Attribute already met");
                                    // Nothing to do
                                }
                                AttributeComplianceAssessment::NonCompliant(remediations) => {
                                    warn!(target: "run",assesment_outcome = ?outcome, "Not compliant. Trying to remedy.");

                                    // Host is not compliant as there are remediations to perform
                                    // Host status switches from AlreadyCompliant to ReachComplianceSuccess by default
                                    final_host_status = HostStatus::ReachComplianceSuccess;

                                    // Try to remedy

                                    for remediation in remediations.iter() {
                                        match remediation
                                            .reach_compliance(
                                                &mut self.handler,
                                                &self.host_properties,
                                                &self.secret_providers,
                                                timeout_duration,
                                            )
                                            .await
                                        {
                                            Ok(internal_api_call_outcome) => {
                                                actions_taken.push(Action::from(
                                                    remediation.clone(),
                                                    Some(internal_api_call_outcome.clone()),
                                                ));

                                                match &internal_api_call_outcome {
                                                    InternalApiCallOutcome::Success(details) => {
                                                        info!(target: "run",remediation_outcome = "Success", "{:?} : {}", remediation, details.clone().unwrap_or("no details".to_string()));
                                                    }
                                                    InternalApiCallOutcome::AllowedFailure(
                                                        details,
                                                    ) => {
                                                        info!(target: "run",remediation_outcome = "AllowedFailure", "Allowed failure occured : {}", details);
                                                    }
                                                    InternalApiCallOutcome::Failure(details) => {
                                                        reaching_compliance_failed = true;
                                                        final_host_status =
                                                            HostStatus::ReachComplianceFailed;

                                                        warn!(
                                                            remediation_outcome = "Failure",
                                                            "Attribute not met : {}", details
                                                        );

                                                        // Stop processing more remediations for this attribute
                                                        break;
                                                    }
                                                }
                                            }
                                            Err(details) => {
                                                warn!("Failed to apply remediation");
                                                return Err(details);
                                            }
                                        }
                                    }

                                    if reaching_compliance_failed {
                                        // Stop processing more attributes
                                        break;
                                    }
                                }
                            }
                        }
                        Err(details) => {
                            warn!(reason = ?details, "Failed assessment");
                            return Err(details);
                        }
                    }
                }
                Err(details) => {
                    let content = match &details {
                        RegentError::FailureToConsiderContext(content) => content,
                        _ => &format!("{:?}", details),
                    };
                    error!("{}", content);
                    return Err(details);
                }
            }
        }

        match final_host_status {
            HostStatus::AlreadyCompliant => Ok(ManagedHostStatus::already_compliant()),
            HostStatus::ReachComplianceFailed => {
                Ok(ManagedHostStatus::reach_compliance_failed(actions_taken))
            }
            _ => Ok(ManagedHostStatus::reach_compliance_success(actions_taken)),
        }
    }
}

/// Trait for types that can assess compliance of a host.
///
/// Implement this trait for custom attribute types that need to check
/// whether a host is compliant with a specific configuration.
///
/// # Type Parameters
///
/// * `Handler` - The type of host handler
pub trait AssessCompliance<Handler: HostHandler> {
    /// Assess whether the host is compliant.
    ///
    /// # Arguments
    ///
    /// * `host_handler` - The handler for executing commands on the host
    /// * `host_properties` - Optional host properties
    /// * `privilege` - The privilege level to use for command execution
    /// * `optional_secret_provider` - Optional secret providers pool
    ///
    /// # Returns
    ///
    /// An [`AttributeComplianceAssessment`] indicating whether the host is compliant.
    async fn assess_compliance(
        &self,
        host_handler: &mut Handler,
        host_properties: &Option<HostProperties>,
        privilege: &Privilege,
        optional_secret_provider: &Option<SecretProvidersPool>,
    ) -> Result<AttributeComplianceAssessment, RegentError>;
}

/// Trait for types that can perform remediation to reach compliance.
///
/// Implement this trait for custom remediation types that need to make
/// changes to a host to bring it into compliance.
///
/// # Type Parameters
///
/// * `Handler` - The type of host handler
pub trait ReachCompliance<Handler: HostHandler> {
    /// Perform remediation on the host.
    ///
    /// # Arguments
    ///
    /// * `host_handler` - The handler for executing commands on the host
    /// * `host_properties` - Optional host properties
    /// * `optional_secret_provider` - Optional secret providers pool
    ///
    /// # Returns
    ///
    /// An [`InternalApiCallOutcome`] indicating the result of the remediation.
    async fn call(
        &self,
        host_handler: &mut Handler,
        host_properties: &Option<HostProperties>,
        optional_secret_provider: &Option<SecretProvidersPool>,
    ) -> Result<InternalApiCallOutcome, RegentError>;
}

/// Trait for types that have a default timeout.
///
/// Implement this trait for operations that should have a configurable timeout.
pub trait Timeout {
    /// Get the default timeout for this operation.
    ///
    /// # Returns
    ///
    /// A [`Duration`] representing the default timeout.
    fn default_timeout(&self) -> Duration;
}

/// Outcome of an attribute-level operation.
///
/// This enum represents the possible results of assessing and/or remediating
/// a single attribute on a host.
///
/// # Variants
///
/// - `AlreadyCompliant`: The attribute was already compliant
/// - `NotCompliant`: The attribute was not compliant, with list of required remediations
/// - `ReachComplianceFailed`: Attempt to reach compliance failed
/// - `ComplianceReachedWithAllowedFailure`: Compliance reached but with allowed failures
/// - `ComplianceReached`: Compliance successfully reached with list of actions taken
#[derive(Serialize, Deserialize)]
pub enum AttributeLevelOperationOutcome {
    /// The attribute was already compliant.
    AlreadyCompliant,
    /// The attribute was not compliant.
    ///
    /// Contains the list of remediations that would be needed to reach compliance.
    NotCompliant(Vec<Remediation>),
    /// Attempt to reach compliance failed.
    ///
    /// Contains the failure outcome.
    ReachComplianceFailed(InternalApiCallOutcome),
    /// Compliance reached but with allowed failures.
    ///
    /// Some remediations failed but were marked as allowed to fail.
    ComplianceReachedWithAllowedFailure(InternalApiCallOutcome),
    /// Compliance successfully reached.
    ///
    /// Contains the list of remediations performed and their outcomes.
    ComplianceReached(Vec<(Remediation, InternalApiCallOutcome)>),
}

/// Outcome of an internal API call (remediation execution).
///
/// This enum represents the result of executing a single remediation action.
///
/// # Variants
///
/// - `Success`: The remediation succeeded, with optional details
/// - `Failure`: The remediation failed, with error details
/// - `AllowedFailure`: The remediation failed but was allowed to fail
#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum InternalApiCallOutcome {
    /// The remediation succeeded.
    ///
    /// Contains optional details about the success.
    Success(Option<String>),
    /// The remediation failed.
    ///
    /// Contains error details.
    Failure(String),
    /// The remediation failed but was marked as allowed to fail.
    ///
    /// This allows for "best effort" compliance where some failures are acceptable.
    AllowedFailure(String),
}