quantrs2-device 0.1.3

Quantum device connectors for the QuantRS2 framework
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
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
//! Cost Estimation APIs for Quantum Cloud Services — type definitions.
//!
//! Split from cost_estimation.rs for size compliance.

#![allow(dead_code)]

use std::collections::{BTreeMap, HashMap, VecDeque};
use std::sync::{Arc, RwLock};
use std::time::{Duration, SystemTime, UNIX_EPOCH};

use serde::{Deserialize, Serialize};
use tokio::sync::RwLock as TokioRwLock;
use uuid::Uuid;

use super::super::{CloudProvider, ExecutionConfig, QuantumCloudConfig, WorkloadSpec};
use crate::{DeviceError, DeviceResult};

/// Cost estimation engine for quantum cloud services
pub struct CostEstimationEngine {
    pub config: CostEstimationConfig,
    pub pricing_models: HashMap<CloudProvider, ProviderPricingModel>,
    pub cost_predictors: HashMap<String, Box<dyn CostPredictor + Send + Sync>>,
    pub budget_analyzer: Arc<TokioRwLock<BudgetAnalyzer>>,
    pub cost_optimizer: Arc<TokioRwLock<CostOptimizer>>,
    pub pricing_cache: Arc<TokioRwLock<PricingCache>>,
    pub cost_history: Arc<TokioRwLock<CostHistory>>,
}

/// Cost estimation configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CostEstimationConfig {
    pub enabled: bool,
    pub estimation_accuracy_level: EstimationAccuracyLevel,
    pub pricing_update_frequency: Duration,
    pub include_hidden_costs: bool,
    pub currency: String,
    pub tax_rate: f64,
    pub discount_thresholds: Vec<DiscountThreshold>,
    pub cost_categories: Vec<CostCategory>,
    pub predictive_modeling: PredictiveModelingConfig,
    pub budget_tracking: BudgetTrackingConfig,
}

/// Estimation accuracy levels
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum EstimationAccuracyLevel {
    Quick,
    Standard,
    Detailed,
    Comprehensive,
    RealTime,
}

/// Discount thresholds
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DiscountThreshold {
    pub threshold_type: ThresholdType,
    pub minimum_amount: f64,
    pub discount_percentage: f64,
    pub applicable_services: Vec<String>,
    pub time_period: Duration,
}

/// Threshold types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum ThresholdType {
    Volume,
    Frequency,
    Duration,
    Commitment,
    Loyalty,
}

/// Cost categories
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum CostCategory {
    Compute,
    Storage,
    Network,
    Management,
    Support,
    Licensing,
    Compliance,
    DataTransfer,
    Backup,
    Security,
}

/// Predictive modeling configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PredictiveModelingConfig {
    pub enabled: bool,
    pub model_types: Vec<PredictiveModelType>,
    pub forecast_horizon: Duration,
    pub confidence_intervals: bool,
    pub seasonal_adjustments: bool,
    pub trend_analysis: bool,
    pub anomaly_detection: bool,
}

/// Predictive model types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum PredictiveModelType {
    Linear,
    TimeSeries,
    MachineLearning,
    StatisticalRegression,
    NeuralNetwork,
    EnsembleMethods,
}

/// Budget tracking configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BudgetTrackingConfig {
    pub enabled: bool,
    pub budget_periods: Vec<BudgetPeriod>,
    pub alert_thresholds: Vec<f64>,
    pub auto_scaling_on_budget: bool,
    pub cost_allocation_tracking: bool,
    pub variance_analysis: bool,
}

/// Budget periods
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum BudgetPeriod {
    Daily,
    Weekly,
    Monthly,
    Quarterly,
    Yearly,
    Custom(Duration),
}

/// Provider pricing model
#[derive(Debug, Clone)]
pub struct ProviderPricingModel {
    pub provider: CloudProvider,
    pub pricing_structure: PricingStructure,
    pub service_pricing: HashMap<String, ServicePricing>,
    pub volume_discounts: Vec<VolumeDiscount>,
    pub promotional_offers: Vec<PromotionalOffer>,
    pub regional_pricing: HashMap<String, RegionalPricingAdjustment>,
    pub last_updated: SystemTime,
}

/// Pricing structure
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PricingStructure {
    pub base_pricing_model: BasePricingModel,
    pub billing_granularity: BillingGranularity,
    pub minimum_charges: HashMap<String, f64>,
    pub setup_fees: HashMap<String, f64>,
    pub termination_fees: HashMap<String, f64>,
}

/// Base pricing models
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum BasePricingModel {
    PayPerUse,
    Subscription,
    Reserved,
    Spot,
    Hybrid,
    Freemium,
}

/// Billing granularity
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum BillingGranularity {
    Second,
    Minute,
    Hour,
    Day,
    Month,
    Transaction,
    Resource,
}

/// Service pricing
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ServicePricing {
    pub service_name: String,
    pub pricing_tiers: Vec<PricingTier>,
    pub usage_metrics: Vec<UsageMetric>,
    pub cost_components: Vec<CostComponent>,
    pub billing_model: ServiceBillingModel,
}

/// Pricing tier
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PricingTier {
    pub tier_name: String,
    pub tier_level: usize,
    pub usage_range: UsageRange,
    pub unit_price: f64,
    pub included_quota: Option<f64>,
    pub overage_price: Option<f64>,
}

/// Usage range
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UsageRange {
    pub min_usage: f64,
    pub max_usage: Option<f64>,
    pub unit: String,
}

/// Usage metric
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UsageMetric {
    pub metric_name: String,
    pub metric_type: UsageMetricType,
    pub unit: String,
    pub measurement_interval: Duration,
    pub aggregation_method: AggregationMethod,
}

/// Usage metric types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum UsageMetricType {
    Cumulative,
    Peak,
    Average,
    Minimum,
    Maximum,
    Count,
    Duration,
}

/// Aggregation methods
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum AggregationMethod {
    Sum,
    Average,
    Maximum,
    Minimum,
    Count,
    Percentile(f64),
}

/// Cost component
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CostComponent {
    pub component_name: String,
    pub component_type: CostComponentType,
    pub pricing_formula: PricingFormula,
    pub dependencies: Vec<String>,
    pub optional: bool,
}

/// Cost component types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum CostComponentType {
    Fixed,
    Variable,
    Tiered,
    StepFunction,
    Custom,
}

/// Pricing formula
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PricingFormula {
    pub formula_type: FormulaType,
    pub parameters: HashMap<String, f64>,
    pub variables: Vec<String>,
    pub expression: String,
}

/// Formula types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum FormulaType {
    Linear,
    Polynomial,
    Exponential,
    Logarithmic,
    Piecewise,
    Custom,
}

/// Service billing model
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ServiceBillingModel {
    pub billing_cycle: BillingCycle,
    pub payment_terms: PaymentTerms,
    pub late_fees: Option<LateFees>,
    pub refund_policy: RefundPolicy,
}

/// Billing cycle
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum BillingCycle {
    RealTime,
    Daily,
    Weekly,
    Monthly,
    Quarterly,
    Annually,
}

/// Payment terms
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PaymentTerms {
    pub payment_due_days: u32,
    pub early_payment_discount: Option<f64>,
    pub accepted_payment_methods: Vec<PaymentMethod>,
    pub automatic_payment: bool,
}

/// Payment methods
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum PaymentMethod {
    CreditCard,
    BankTransfer,
    DigitalWallet,
    Cryptocurrency,
    InvoiceBilling,
    PurchaseOrder,
}

/// Late fees
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LateFees {
    pub late_fee_percentage: f64,
    pub grace_period_days: u32,
    pub maximum_late_fee: Option<f64>,
    pub compound_interest: bool,
}

/// Refund policy
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RefundPolicy {
    pub refund_eligibility_days: u32,
    pub partial_refunds_allowed: bool,
    pub refund_processing_time: Duration,
    pub refund_conditions: Vec<String>,
}

/// Volume discount
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VolumeDiscount {
    pub discount_name: String,
    pub volume_threshold: f64,
    pub discount_percentage: f64,
    pub applicable_services: Vec<String>,
    pub discount_cap: Option<f64>,
    pub validity_period: Option<Duration>,
}

/// Promotional offer
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PromotionalOffer {
    pub offer_name: String,
    pub offer_type: OfferType,
    pub discount_value: f64,
    pub applicable_services: Vec<String>,
    pub eligibility_criteria: Vec<String>,
    pub start_date: SystemTime,
    pub end_date: SystemTime,
    pub usage_limit: Option<f64>,
}

/// Offer types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum OfferType {
    PercentageDiscount,
    FixedAmountDiscount,
    FreeUsage,
    UpgradePromotion,
    BundleDiscount,
}

/// Regional pricing adjustment
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RegionalPricingAdjustment {
    pub region: String,
    pub currency: String,
    pub exchange_rate: f64,
    pub tax_rate: f64,
    pub regulatory_fees: f64,
    pub local_adjustments: HashMap<String, f64>,
}

/// Cost predictor trait
pub trait CostPredictor {
    fn predict_cost(
        &self,
        workload: &WorkloadSpec,
        config: &ExecutionConfig,
        time_horizon: Duration,
    ) -> DeviceResult<CostPrediction>;
    fn get_predictor_name(&self) -> String;
    fn get_confidence_level(&self) -> f64;
}

/// Cost prediction
#[derive(Debug, Clone)]
pub struct CostPrediction {
    pub prediction_id: String,
    pub workload_id: String,
    pub predicted_cost: f64,
    pub cost_breakdown: DetailedCostBreakdown,
    pub confidence_interval: (f64, f64),
    pub prediction_horizon: Duration,
    pub assumptions: Vec<CostAssumption>,
    pub risk_factors: Vec<RiskFactor>,
    pub optimization_opportunities: Vec<CostOptimizationOpportunity>,
}

/// Detailed cost breakdown
#[derive(Debug, Clone)]
pub struct DetailedCostBreakdown {
    pub base_costs: HashMap<CostCategory, f64>,
    pub variable_costs: HashMap<String, f64>,
    pub fixed_costs: HashMap<String, f64>,
    pub taxes_and_fees: f64,
    pub discounts_applied: f64,
    pub total_cost: f64,
    pub cost_per_unit: HashMap<String, f64>,
}

/// Cost assumption
#[derive(Debug, Clone)]
pub struct CostAssumption {
    pub assumption_type: AssumptionType,
    pub description: String,
    pub impact_on_cost: f64,
    pub confidence: f64,
    pub sensitivity: f64,
}

/// Assumption types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AssumptionType {
    PricingStability,
    UsagePattern,
    ResourceAvailability,
    PerformanceCharacteristics,
    ExternalFactors,
}

/// Risk factor
#[derive(Debug, Clone)]
pub struct RiskFactor {
    pub risk_type: RiskType,
    pub description: String,
    pub probability: f64,
    pub potential_cost_impact: f64,
    pub mitigation_strategies: Vec<String>,
}

/// Risk types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RiskType {
    PriceVolatility,
    DemandSpike,
    ResourceScarcity,
    TechnicalFailure,
    PolicyChange,
    MarketConditions,
}

/// Cost optimization opportunity
#[derive(Debug, Clone)]
pub struct CostOptimizationOpportunity {
    pub opportunity_id: String,
    pub opportunity_type: OptimizationType,
    pub description: String,
    pub potential_savings: f64,
    pub implementation_effort: ImplementationEffort,
    pub implementation_time: Duration,
    pub confidence: f64,
}

/// Optimization types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum OptimizationType {
    ProviderSwitch,
    ServiceTierChange,
    UsageOptimization,
    SchedulingOptimization,
    VolumeDiscount,
    ReservedCapacity,
    SpotInstances,
}

/// Implementation effort
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ImplementationEffort {
    Low,
    Medium,
    High,
    VeryHigh,
}

/// Budget analyzer
pub struct BudgetAnalyzer {
    pub current_budgets: HashMap<String, Budget>,
    pub budget_performance: HashMap<String, BudgetPerformance>,
    pub variance_analyzer: VarianceAnalyzer,
    pub forecast_engine: BudgetForecastEngine,
}

/// Budget
#[derive(Debug, Clone)]
pub struct Budget {
    pub budget_id: String,
    pub budget_name: String,
    pub budget_period: BudgetPeriod,
    pub allocated_amount: f64,
    pub spent_amount: f64,
    pub remaining_amount: f64,
    pub cost_centers: HashMap<String, f64>,
    pub alert_thresholds: Vec<AlertThreshold>,
    pub auto_adjustments: Vec<AutoAdjustment>,
}

/// Budget performance
#[derive(Debug, Clone)]
pub struct BudgetPerformance {
    pub budget_id: String,
    pub utilization_rate: f64,
    pub spending_velocity: f64,
    pub variance_from_plan: f64,
    pub efficiency_score: f64,
    pub trend_direction: TrendDirection,
    pub performance_metrics: HashMap<String, f64>,
}

/// Trend direction
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum TrendDirection {
    Increasing,
    Decreasing,
    Stable,
    Volatile,
}

/// Alert threshold
#[derive(Debug, Clone)]
pub struct AlertThreshold {
    pub threshold_type: ThresholdType,
    pub threshold_value: f64,
    pub alert_severity: AlertSeverity,
    pub notification_channels: Vec<NotificationChannel>,
    pub auto_actions: Vec<AutoAction>,
}

/// Alert severity
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AlertSeverity {
    Info,
    Warning,
    Critical,
    Emergency,
}

/// Notification channels
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum NotificationChannel {
    Email,
    SMS,
    Slack,
    Webhook,
    Dashboard,
    PagerDuty,
}

/// Auto action
#[derive(Debug, Clone)]
pub struct AutoAction {
    pub action_type: AutoActionType,
    pub action_parameters: HashMap<String, String>,
    pub conditions: Vec<String>,
    pub approval_required: bool,
}

/// Auto action types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AutoActionType {
    ScaleDown,
    SuspendJobs,
    SwitchProvider,
    NotifyAdministrator,
    ActivateBackupPlan,
    ApplyEmergencyBudget,
}

/// Auto adjustment
#[derive(Debug, Clone)]
pub struct AutoAdjustment {
    pub adjustment_type: AdjustmentType,
    pub trigger_conditions: Vec<String>,
    pub adjustment_amount: f64,
    pub maximum_adjustments: usize,
    pub cool_down_period: Duration,
}

/// Adjustment types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AdjustmentType {
    BudgetIncrease,
    BudgetDecrease,
    Reallocation,
    TemporaryExtension,
    EmergencyFund,
}

/// Variance analyzer
pub struct VarianceAnalyzer {
    pub variance_models: Vec<Box<dyn VarianceModel + Send + Sync>>,
    pub statistical_analyzers: Vec<Box<dyn StatisticalAnalyzer + Send + Sync>>,
    pub trend_detectors: Vec<Box<dyn TrendDetector + Send + Sync>>,
}

/// Variance model trait
pub trait VarianceModel {
    fn analyze_variance(
        &self,
        budget: &Budget,
        actual_spending: &[SpendingRecord],
    ) -> DeviceResult<VarianceAnalysis>;
    fn get_model_name(&self) -> String;
}

/// Variance analysis
#[derive(Debug, Clone)]
pub struct VarianceAnalysis {
    pub total_variance: f64,
    pub variance_percentage: f64,
    pub variance_components: HashMap<String, f64>,
    pub variance_causes: Vec<VarianceCause>,
    pub statistical_significance: f64,
    pub recommendations: Vec<VarianceRecommendation>,
}

/// Variance cause
#[derive(Debug, Clone)]
pub struct VarianceCause {
    pub cause_type: VarianceCauseType,
    pub description: String,
    pub contribution_percentage: f64,
    pub controllability: ControllabilityLevel,
}

/// Variance cause types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum VarianceCauseType {
    VolumeVariance,
    RateVariance,
    MixVariance,
    EfficiencyVariance,
    TimingVariance,
    ExternalFactors,
}

/// Controllability level
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ControllabilityLevel {
    FullyControllable,
    PartiallyControllable,
    Influenceable,
    Uncontrollable,
}

/// Variance recommendation
#[derive(Debug, Clone)]
pub struct VarianceRecommendation {
    pub recommendation_type: VarianceRecommendationType,
    pub description: String,
    pub priority: RecommendationPriority,
    pub expected_impact: f64,
    pub implementation_timeline: Duration,
}

/// Variance recommendation types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum VarianceRecommendationType {
    BudgetAdjustment,
    ProcessImprovement,
    CostControl,
    ResourceOptimization,
    ForecastRefinement,
}

/// Recommendation priority
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RecommendationPriority {
    Low,
    Medium,
    High,
    Critical,
}

/// Statistical analyzer trait
pub trait StatisticalAnalyzer {
    fn analyze_spending_patterns(
        &self,
        spending_data: &[SpendingRecord],
    ) -> DeviceResult<StatisticalAnalysis>;
    fn get_analyzer_name(&self) -> String;
}

/// Statistical analysis
#[derive(Debug, Clone)]
pub struct StatisticalAnalysis {
    pub descriptive_statistics: DescriptiveStatistics,
    pub correlation_analysis: CorrelationAnalysis,
    pub regression_analysis: Option<RegressionAnalysis>,
    pub anomaly_detection: AnomalyDetectionResult,
    pub seasonal_decomposition: Option<SeasonalDecomposition>,
}

/// Descriptive statistics
#[derive(Debug, Clone)]
pub struct DescriptiveStatistics {
    pub mean: f64,
    pub median: f64,
    pub standard_deviation: f64,
    pub variance: f64,
    pub skewness: f64,
    pub kurtosis: f64,
    pub percentiles: HashMap<f64, f64>,
}

/// Correlation analysis
#[derive(Debug, Clone)]
pub struct CorrelationAnalysis {
    pub correlationmatrix: Vec<Vec<f64>>,
    pub variable_names: Vec<String>,
    pub significant_correlations: Vec<(String, String, f64, f64)>, // (var1, var2, correlation, p_value)
}

/// Regression analysis
#[derive(Debug, Clone)]
pub struct RegressionAnalysis {
    pub model_type: RegressionModelType,
    pub coefficients: Vec<f64>,
    pub r_squared: f64,
    pub adjusted_r_squared: f64,
    pub f_statistic: f64,
    pub p_values: Vec<f64>,
    pub residual_analysis: ResidualAnalysis,
}

/// Regression model types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RegressionModelType {
    Linear,
    Polynomial,
    Logistic,
    MultipleRegression,
    StepwiseRegression,
}

/// Residual analysis
#[derive(Debug, Clone)]
pub struct ResidualAnalysis {
    pub residuals: Vec<f64>,
    pub standardized_residuals: Vec<f64>,
    pub residual_patterns: Vec<ResidualPattern>,
    pub outliers: Vec<usize>,
    pub normality_test: NormalityTest,
}

/// Residual patterns
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ResidualPattern {
    Random,
    Heteroscedastic,
    AutoCorrelated,
    NonLinear,
    Seasonal,
}

/// Normality test
#[derive(Debug, Clone)]
pub struct NormalityTest {
    pub test_name: String,
    pub test_statistic: f64,
    pub p_value: f64,
    pub is_normal: bool,
}

/// Anomaly detection result
#[derive(Debug, Clone)]
pub struct AnomalyDetectionResult {
    pub anomalies_detected: Vec<Anomaly>,
    pub anomaly_score: f64,
    pub detection_method: String,
    pub confidence_level: f64,
}

/// Anomaly
#[derive(Debug, Clone)]
pub struct Anomaly {
    pub anomaly_id: String,
    pub timestamp: SystemTime,
    pub anomaly_type: AnomalyType,
    pub severity: f64,
    pub description: String,
    pub affected_metrics: Vec<String>,
}

/// Anomaly types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum AnomalyType {
    PointAnomaly,
    ContextualAnomaly,
    CollectiveAnomaly,
    TrendAnomaly,
    SeasonalAnomaly,
}

/// Seasonal decomposition
#[derive(Debug, Clone)]
pub struct SeasonalDecomposition {
    pub trend_component: Vec<f64>,
    pub seasonal_component: Vec<f64>,
    pub residual_component: Vec<f64>,
    pub seasonal_periods: Vec<Duration>,
    pub trend_direction: TrendDirection,
}

/// Trend detector trait
pub trait TrendDetector {
    fn detect_trends(&self, spending_data: &[SpendingRecord])
        -> DeviceResult<TrendDetectionResult>;
    fn get_detector_name(&self) -> String;
}

/// Trend detection result
#[derive(Debug, Clone)]
pub struct TrendDetectionResult {
    pub trends_detected: Vec<Trend>,
    pub overall_trend_direction: TrendDirection,
    pub trend_strength: f64,
    pub trend_significance: f64,
}

/// Trend
#[derive(Debug, Clone)]
pub struct Trend {
    pub trend_id: String,
    pub trend_type: TrendType,
    pub start_time: SystemTime,
    pub end_time: Option<SystemTime>,
    pub trend_direction: TrendDirection,
    pub trend_magnitude: f64,
    pub affected_categories: Vec<CostCategory>,
}

/// Trend types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum TrendType {
    Linear,
    Exponential,
    Cyclical,
    Seasonal,
    Irregular,
}

/// Budget forecast engine
pub struct BudgetForecastEngine {
    pub forecast_models: Vec<Box<dyn ForecastModel + Send + Sync>>,
    pub scenario_generators: Vec<Box<dyn ScenarioGenerator + Send + Sync>>,
    pub uncertainty_quantifiers: Vec<Box<dyn UncertaintyQuantifier + Send + Sync>>,
}

/// Forecast model trait
pub trait ForecastModel {
    fn generate_forecast(
        &self,
        historical_data: &[SpendingRecord],
        forecast_horizon: Duration,
    ) -> DeviceResult<BudgetForecast>;
    fn get_model_name(&self) -> String;
    fn get_model_accuracy(&self) -> f64;
}

/// Budget forecast
#[derive(Debug, Clone)]
pub struct BudgetForecast {
    pub forecast_id: String,
    pub forecast_horizon: Duration,
    pub forecasted_values: Vec<ForecastPoint>,
    pub confidence_intervals: Vec<ConfidenceInterval>,
    pub forecast_accuracy_metrics: ForecastAccuracyMetrics,
    pub scenarios: Vec<ForecastScenario>,
}

/// Forecast point
#[derive(Debug, Clone)]
pub struct ForecastPoint {
    pub timestamp: SystemTime,
    pub predicted_value: f64,
    pub prediction_interval: (f64, f64),
    pub contributing_factors: HashMap<String, f64>,
}

/// Confidence interval
#[derive(Debug, Clone)]
pub struct ConfidenceInterval {
    pub confidence_level: f64,
    pub lower_bound: f64,
    pub upper_bound: f64,
    pub interval_width: f64,
}

/// Forecast accuracy metrics
#[derive(Debug, Clone)]
pub struct ForecastAccuracyMetrics {
    pub mean_absolute_error: f64,
    pub mean_squared_error: f64,
    pub mean_absolute_percentage_error: f64,
    pub symmetric_mean_absolute_percentage_error: f64,
    pub theil_u_statistic: f64,
}

/// Forecast scenario
#[derive(Debug, Clone)]
pub struct ForecastScenario {
    pub scenario_name: String,
    pub scenario_type: ScenarioType,
    pub probability: f64,
    pub forecasted_values: Vec<f64>,
    pub scenario_assumptions: Vec<String>,
}

/// Scenario types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ScenarioType {
    Optimistic,
    Pessimistic,
    MostLikely,
    WorstCase,
    BestCase,
    Stress,
}

/// Scenario generator trait
pub trait ScenarioGenerator {
    fn generate_scenarios(
        &self,
        base_forecast: &BudgetForecast,
        num_scenarios: usize,
    ) -> DeviceResult<Vec<ForecastScenario>>;
    fn get_generator_name(&self) -> String;
}

/// Uncertainty quantifier trait
pub trait UncertaintyQuantifier {
    fn quantify_uncertainty(&self, forecast: &BudgetForecast) -> DeviceResult<UncertaintyAnalysis>;
    fn get_quantifier_name(&self) -> String;
}

/// Uncertainty analysis
#[derive(Debug, Clone)]
pub struct UncertaintyAnalysis {
    pub total_uncertainty: f64,
    pub uncertainty_sources: Vec<UncertaintySource>,
    pub uncertainty_propagation: UncertaintyPropagation,
    pub sensitivity_analysis: SensitivityAnalysis,
}

/// Uncertainty source
#[derive(Debug, Clone)]
pub struct UncertaintySource {
    pub source_name: String,
    pub source_type: UncertaintySourceType,
    pub contribution_percentage: f64,
    pub uncertainty_distribution: UncertaintyDistribution,
}

/// Uncertainty source types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum UncertaintySourceType {
    ModelUncertainty,
    ParameterUncertainty,
    InputDataUncertainty,
    StructuralUncertainty,
    ExternalFactors,
}

/// Uncertainty distribution
#[derive(Debug, Clone)]
pub struct UncertaintyDistribution {
    pub distribution_type: DistributionType,
    pub parameters: HashMap<String, f64>,
    pub confidence_level: f64,
}

/// Distribution types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum DistributionType {
    Normal,
    LogNormal,
    Uniform,
    Triangular,
    Beta,
    Gamma,
    Exponential,
}

/// Uncertainty propagation
#[derive(Debug, Clone)]
pub struct UncertaintyPropagation {
    pub propagation_method: PropagationMethod,
    pub correlation_effects: Vec<CorrelationEffect>,
    pub amplification_factors: HashMap<String, f64>,
}

/// Propagation methods
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PropagationMethod {
    MonteCarlo,
    LinearPropagation,
    TaylorSeries,
    Polynomial,
    Sampling,
}

/// Correlation effect
#[derive(Debug, Clone)]
pub struct CorrelationEffect {
    pub source1: String,
    pub source2: String,
    pub correlation_coefficient: f64,
    pub effect_magnitude: f64,
}

/// Sensitivity analysis
#[derive(Debug, Clone)]
pub struct SensitivityAnalysis {
    pub sensitivity_indices: HashMap<String, f64>,
    pub interaction_effects: Vec<InteractionEffect>,
    pub robust_parameters: Vec<String>,
    pub critical_parameters: Vec<String>,
}

/// Interaction effect
#[derive(Debug, Clone)]
pub struct InteractionEffect {
    pub parameters: Vec<String>,
    pub interaction_strength: f64,
    pub effect_type: InteractionType,
}

/// Interaction types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum InteractionType {
    Synergistic,
    Antagonistic,
    Additive,
    Multiplicative,
}

/// Cost optimizer
pub struct CostOptimizer {
    pub optimization_strategies: Vec<Box<dyn CostOptimizationStrategy + Send + Sync>>,
    pub recommendation_engine: RecommendationEngine,
    pub savings_calculator: SavingsCalculator,
}

/// Cost optimization strategy trait
pub trait CostOptimizationStrategy {
    fn optimize_costs(
        &self,
        cost_analysis: &CostAnalysis,
    ) -> DeviceResult<OptimizationRecommendation>;
    fn get_strategy_name(&self) -> String;
    fn get_potential_savings(&self, cost_analysis: &CostAnalysis) -> DeviceResult<f64>;
}

/// Cost analysis
#[derive(Debug, Clone)]
pub struct CostAnalysis {
    pub total_costs: f64,
    pub cost_breakdown: DetailedCostBreakdown,
    pub cost_trends: Vec<CostTrend>,
    pub cost_drivers: Vec<CostDriver>,
    pub benchmark_comparison: BenchmarkComparison,
    pub inefficiencies: Vec<CostInefficiency>,
}

/// Cost trend
#[derive(Debug, Clone)]
pub struct CostTrend {
    pub trend_id: String,
    pub cost_category: CostCategory,
    pub trend_direction: TrendDirection,
    pub trend_rate: f64,
    pub trend_duration: Duration,
    pub projected_impact: f64,
}

/// Cost driver
#[derive(Debug, Clone)]
pub struct CostDriver {
    pub driver_name: String,
    pub driver_type: CostDriverType,
    pub impact_magnitude: f64,
    pub controllability: ControllabilityLevel,
    pub optimization_potential: f64,
}

/// Cost driver types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum CostDriverType {
    Volume,
    Complexity,
    Quality,
    Speed,
    Flexibility,
    Risk,
}

/// Benchmark comparison
#[derive(Debug, Clone)]
pub struct BenchmarkComparison {
    pub benchmark_type: BenchmarkType,
    pub comparison_metrics: HashMap<String, BenchmarkMetric>,
    pub relative_performance: f64,
    pub improvement_opportunities: Vec<ImprovementOpportunity>,
}

/// Benchmark types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum BenchmarkType {
    IndustryAverage,
    BestInClass,
    Historical,
    Internal,
    Competitor,
}

/// Benchmark metric
#[derive(Debug, Clone)]
pub struct BenchmarkMetric {
    pub metric_name: String,
    pub current_value: f64,
    pub benchmark_value: f64,
    pub variance_percentage: f64,
    pub performance_gap: f64,
}

/// Improvement opportunity
#[derive(Debug, Clone)]
pub struct ImprovementOpportunity {
    pub opportunity_id: String,
    pub opportunity_area: String,
    pub current_performance: f64,
    pub target_performance: f64,
    pub potential_savings: f64,
    pub implementation_complexity: f64,
}

/// Cost inefficiency
#[derive(Debug, Clone)]
pub struct CostInefficiency {
    pub inefficiency_type: InefficiencyType,
    pub description: String,
    pub cost_impact: f64,
    pub frequency: f64,
    pub root_causes: Vec<String>,
    pub remediation_options: Vec<RemediationOption>,
}

/// Inefficiency types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum InefficiencyType {
    Overprovisioning,
    Underutilization,
    Redundancy,
    ProcessInefficiency,
    TechnologyMismatch,
    VendorInefficiency,
}

/// Remediation option
#[derive(Debug, Clone)]
pub struct RemediationOption {
    pub option_name: String,
    pub implementation_effort: ImplementationEffort,
    pub expected_savings: f64,
    pub implementation_timeline: Duration,
    pub success_probability: f64,
}

/// Optimization recommendation
#[derive(Debug, Clone)]
pub struct OptimizationRecommendation {
    pub recommendation_id: String,
    pub recommendation_type: OptimizationType,
    pub priority: RecommendationPriority,
    pub description: String,
    pub potential_savings: f64,
    pub implementation_plan: ImplementationPlan,
    pub risk_assessment: RiskAssessment,
    pub roi_analysis: ROIAnalysis,
}

/// Implementation plan
#[derive(Debug, Clone)]
pub struct ImplementationPlan {
    pub phases: Vec<ImplementationPhase>,
    pub total_duration: Duration,
    pub resource_requirements: Vec<ResourceRequirement>,
    pub dependencies: Vec<String>,
    pub milestones: Vec<Milestone>,
}

/// Implementation phase
#[derive(Debug, Clone)]
pub struct ImplementationPhase {
    pub phase_name: String,
    pub phase_duration: Duration,
    pub phase_activities: Vec<String>,
    pub deliverables: Vec<String>,
    pub success_criteria: Vec<String>,
}

/// Resource requirement
#[derive(Debug, Clone)]
pub struct ResourceRequirement {
    pub resource_type: String,
    pub quantity: f64,
    pub duration: Duration,
    pub cost: f64,
    pub availability: f64,
}

/// Milestone
#[derive(Debug, Clone)]
pub struct Milestone {
    pub milestone_name: String,
    pub target_date: SystemTime,
    pub completion_criteria: Vec<String>,
    pub deliverables: Vec<String>,
}

/// Risk assessment
#[derive(Debug, Clone)]
pub struct RiskAssessment {
    pub overall_risk_score: f64,
    pub risk_factors: Vec<RiskFactor>,
    pub mitigation_strategies: Vec<MitigationStrategy>,
    pub contingency_plans: Vec<ContingencyPlan>,
}

/// Mitigation strategy
#[derive(Debug, Clone)]
pub struct MitigationStrategy {
    pub strategy_name: String,
    pub risk_reduction: f64,
    pub implementation_cost: f64,
    pub effectiveness: f64,
}

/// Contingency plan
#[derive(Debug, Clone)]
pub struct ContingencyPlan {
    pub plan_name: String,
    pub trigger_conditions: Vec<String>,
    pub response_actions: Vec<String>,
    pub resource_requirements: Vec<ResourceRequirement>,
}

/// ROI analysis
#[derive(Debug, Clone)]
pub struct ROIAnalysis {
    pub initial_investment: f64,
    pub annual_savings: f64,
    pub payback_period: Duration,
    pub net_present_value: f64,
    pub internal_rate_of_return: f64,
    pub roi_percentage: f64,
}

/// Recommendation engine
pub struct RecommendationEngine {
    pub recommendation_algorithms: Vec<Box<dyn RecommendationAlgorithm + Send + Sync>>,
    pub scoring_models: Vec<Box<dyn ScoringModel + Send + Sync>>,
    pub prioritization_engine: PrioritizationEngine,
}

/// Recommendation algorithm trait
pub trait RecommendationAlgorithm {
    fn generate_recommendations(
        &self,
        analysis: &CostAnalysis,
    ) -> DeviceResult<Vec<OptimizationRecommendation>>;
    fn get_algorithm_name(&self) -> String;
}

/// Scoring model trait
pub trait ScoringModel {
    fn score_recommendation(
        &self,
        recommendation: &OptimizationRecommendation,
    ) -> DeviceResult<f64>;
    fn get_model_name(&self) -> String;
}

/// Prioritization engine
pub struct PrioritizationEngine {
    pub prioritization_criteria: Vec<PrioritizationCriterion>,
    pub weighting_scheme: WeightingScheme,
    pub decision_matrix: DecisionMatrix,
}

/// Prioritization criterion
#[derive(Debug, Clone)]
pub struct PrioritizationCriterion {
    pub criterion_name: String,
    pub criterion_type: CriterionType,
    pub weight: f64,
    pub scoring_function: ScoringFunction,
}

/// Criterion types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum CriterionType {
    Financial,
    Strategic,
    Operational,
    Risk,
    Feasibility,
}

/// Scoring function
#[derive(Debug, Clone)]
pub struct ScoringFunction {
    pub function_type: FunctionType,
    pub parameters: HashMap<String, f64>,
    pub range: (f64, f64),
}

/// Function types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum FunctionType {
    Linear,
    Exponential,
    Logarithmic,
    Sigmoid,
    Step,
}

/// Weighting scheme
#[derive(Debug, Clone)]
pub struct WeightingScheme {
    pub scheme_type: WeightingSchemeType,
    pub weights: HashMap<String, f64>,
    pub normalization_method: NormalizationMethod,
}

/// Weighting scheme types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum WeightingSchemeType {
    Equal,
    Hierarchical,
    Expert,
    DataDriven,
    Hybrid,
}

/// Normalization methods
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum NormalizationMethod {
    MinMax,
    ZScore,
    UnitVector,
    Sum,
    Max,
}

/// Decision matrix
#[derive(Debug, Clone)]
pub struct DecisionMatrix {
    pub alternatives: Vec<String>,
    pub criteria: Vec<String>,
    pub scores: Vec<Vec<f64>>,
    pub weights: Vec<f64>,
    pub aggregation_method: AggregationMethod,
}

/// Savings calculator
pub struct SavingsCalculator {
    pub calculation_methods: Vec<Box<dyn SavingsCalculationMethod + Send + Sync>>,
    pub validation_rules: Vec<ValidationRule>,
    pub adjustment_factors: AdjustmentFactors,
}

/// Savings calculation method trait
pub trait SavingsCalculationMethod {
    fn calculate_savings(
        &self,
        baseline_cost: f64,
        optimized_cost: f64,
        implementation_cost: f64,
    ) -> DeviceResult<SavingsCalculation>;
    fn get_method_name(&self) -> String;
}

/// Savings calculation
#[derive(Debug, Clone)]
pub struct SavingsCalculation {
    pub gross_savings: f64,
    pub net_savings: f64,
    pub savings_percentage: f64,
    pub implementation_cost: f64,
    pub ongoing_costs: f64,
    pub payback_period: Duration,
    pub cumulative_savings: Vec<(SystemTime, f64)>,
}

/// Validation rule
#[derive(Debug, Clone)]
pub struct ValidationRule {
    pub rule_name: String,
    pub rule_type: ValidationRuleType,
    pub condition: String,
    pub action: String,
    pub severity: ValidationSeverity,
}

/// Validation rule types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ValidationRuleType {
    BusinessRule,
    TechnicalConstraint,
    RegulatoryRequirement,
    PolicyCompliance,
    DataQuality,
}

/// Validation severity
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ValidationSeverity {
    Warning,
    Error,
    Critical,
    Info,
}

/// Adjustment factors
#[derive(Debug, Clone)]
pub struct AdjustmentFactors {
    pub risk_adjustment: f64,
    pub confidence_adjustment: f64,
    pub market_adjustment: f64,
    pub seasonal_adjustment: f64,
    pub inflation_adjustment: f64,
}

/// Pricing cache
pub struct PricingCache {
    pub cache_entries: HashMap<String, PricingCacheEntry>,
    pub cache_statistics: CacheStatistics,
    pub eviction_policy: EvictionPolicy,
}

/// Pricing cache entry
#[derive(Debug, Clone)]
pub struct PricingCacheEntry {
    pub entry_id: String,
    pub provider: CloudProvider,
    pub service: String,
    pub pricing_data: ServicePricing,
    pub timestamp: SystemTime,
    pub validity_period: Duration,
    pub access_count: usize,
}

/// Cache statistics
#[derive(Debug, Clone)]
pub struct CacheStatistics {
    pub hit_rate: f64,
    pub miss_rate: f64,
    pub eviction_rate: f64,
    pub average_lookup_time: Duration,
    pub total_entries: usize,
}

/// Eviction policy
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum EvictionPolicy {
    LRU,
    LFU,
    FIFO,
    TTL,
    Random,
}

/// Cost history
pub struct CostHistory {
    pub spending_records: Vec<SpendingRecord>,
    pub aggregated_costs: HashMap<String, Vec<AggregatedCost>>,
    pub cost_trends: HashMap<String, CostTrend>,
    pub historical_analysis: HistoricalAnalysis,
}

/// Spending record
#[derive(Debug, Clone)]
pub struct SpendingRecord {
    pub record_id: String,
    pub timestamp: SystemTime,
    pub provider: CloudProvider,
    pub service: String,
    pub cost_amount: f64,
    pub currency: String,
    pub cost_category: CostCategory,
    pub usage_metrics: HashMap<String, f64>,
    pub billing_period: (SystemTime, SystemTime),
}

/// Aggregated cost
#[derive(Debug, Clone)]
pub struct AggregatedCost {
    pub aggregation_period: (SystemTime, SystemTime),
    pub total_cost: f64,
    pub cost_breakdown: HashMap<CostCategory, f64>,
    pub usage_summary: HashMap<String, f64>,
    pub cost_per_unit: HashMap<String, f64>,
}

/// Historical analysis
#[derive(Debug, Clone)]
pub struct HistoricalAnalysis {
    pub cost_growth_rate: f64,
    pub seasonal_patterns: Vec<SeasonalPattern>,
    pub cost_volatility: f64,
    pub efficiency_trends: Vec<EfficiencyTrend>,
    pub comparative_analysis: ComparativeAnalysis,
}

/// Seasonal pattern
#[derive(Debug, Clone)]
pub struct SeasonalPattern {
    pub pattern_name: String,
    pub period: Duration,
    pub amplitude: f64,
    pub phase_shift: Duration,
    pub significance: f64,
}

/// Efficiency trend
#[derive(Debug, Clone)]
pub struct EfficiencyTrend {
    pub metric_name: String,
    pub trend_direction: TrendDirection,
    pub improvement_rate: f64,
    pub efficiency_score: f64,
}

/// Comparative analysis
#[derive(Debug, Clone)]
pub struct ComparativeAnalysis {
    pub period_comparisons: Vec<PeriodComparison>,
    pub provider_comparisons: Vec<ProviderComparison>,
    pub service_comparisons: Vec<ServiceComparison>,
}

/// Period comparison
#[derive(Debug, Clone)]
pub struct PeriodComparison {
    pub period1: (SystemTime, SystemTime),
    pub period2: (SystemTime, SystemTime),
    pub cost_difference: f64,
    pub percentage_change: f64,
    pub significant_changes: Vec<String>,
}

/// Provider comparison
#[derive(Debug, Clone)]
pub struct ProviderComparison {
    pub provider1: CloudProvider,
    pub provider2: CloudProvider,
    pub cost_comparison: HashMap<String, f64>,
    pub service_comparison: HashMap<String, f64>,
    pub efficiency_comparison: HashMap<String, f64>,
}

/// Service comparison
#[derive(Debug, Clone)]
pub struct ServiceComparison {
    pub service_name: String,
    pub cost_trend: TrendDirection,
    pub usage_trend: TrendDirection,
    pub efficiency_trend: TrendDirection,
    pub optimization_opportunities: Vec<String>,
}