system-analysis 0.2.1

A comprehensive Rust library for analyzing system capabilities, workload requirements, and optimal resource allocation
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
//! Core types for system analysis.

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// Represents a complete system profile with all capability scores
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SystemProfile {
    /// CPU performance score (0-10)
    pub cpu_score: f64,
    /// GPU performance score (0-10)
    pub gpu_score: f64,
    /// NPU (Neural Processing Unit) performance score (0-10)
    pub npu_score: f64,
    /// TPU (Tensor Processing Unit) performance score (0-10)
    pub tpu_score: f64,
    /// FPGA acceleration performance score (0-10)
    pub fpga_score: f64,
    /// Combined AI accelerator score (0-10)
    pub ai_accelerator_score: f64,
    /// ARM system optimization score (0-10) - for edge computing
    pub arm_optimization_score: f64,
    /// Memory performance score (0-10)
    pub memory_score: f64,
    /// Storage performance score (0-10)
    pub storage_score: f64,
    /// Network performance score (0-10)
    pub network_score: f64,
    /// Overall system score (0-10)
    pub overall_score: f64,
    /// AI workload suitability score (0-10)
    pub ai_workload_score: f64,
    /// Edge computing suitability score (0-10)
    pub edge_computing_score: f64,
    /// Detailed system information
    pub system_info: SystemInfo,
    /// Timestamp when profile was created
    pub created_at: DateTime<Utc>,
}

impl SystemProfile {
    /// Create a new system profile with comprehensive AI accelerator scoring
    #[allow(clippy::too_many_arguments)]
    pub fn new(
        cpu_score: f64,
        gpu_score: f64,
        npu_score: f64,
        tpu_score: f64,
        fpga_score: f64,
        arm_optimization_score: f64,
        memory_score: f64,
        storage_score: f64,
        network_score: f64,
        system_info: SystemInfo,
    ) -> Self {
        SystemProfileBuilder::new()
            .cpu_score(cpu_score)
            .gpu_score(gpu_score)
            .npu_score(npu_score)
            .tpu_score(tpu_score)
            .fpga_score(fpga_score)
            .arm_optimization_score(arm_optimization_score)
            .memory_score(memory_score)
            .storage_score(storage_score)
            .network_score(network_score)
            .system_info(system_info)
            .build()
    }

    /// Create a builder for SystemProfile
    pub fn builder() -> SystemProfileBuilder {
        SystemProfileBuilder::new()
    }

    /// Get the CPU score
    pub fn cpu_score(&self) -> f64 {
        self.cpu_score
    }

    /// Get the GPU score
    pub fn gpu_score(&self) -> f64 {
        self.gpu_score
    }

    /// Get the memory score
    pub fn memory_score(&self) -> f64 {
        self.memory_score
    }

    /// Get the storage score
    pub fn storage_score(&self) -> f64 {
        self.storage_score
    }

    /// Get the network score
    pub fn network_score(&self) -> f64 {
        self.network_score
    }

    /// Get the overall score
    pub fn overall_score(&self) -> f64 {
        self.overall_score
    }
    
    /// Get AI workload suitability score (0-10)
    pub fn ai_workload_score(&self) -> f64 {
        self.ai_workload_score
    }
    
    /// Get edge computing suitability score (0-10)
    pub fn edge_computing_score(&self) -> f64 {
        self.edge_computing_score
    }
    
    /// Get combined AI accelerator score (0-10)
    pub fn ai_accelerator_score(&self) -> f64 {
        self.ai_accelerator_score
    }
    
    /// Check if system has AI accelerators
    pub fn has_ai_accelerators(&self) -> bool {
        !self.system_info.npu_info.is_empty() || 
        !self.system_info.tpu_info.is_empty() || 
        !self.system_info.fpga_info.is_empty()
    }
    
    /// Get total TOPS (Tera Operations Per Second) performance
    pub fn total_tops_performance(&self) -> f64 {
        let npu_tops: f64 = self.system_info.npu_info.iter()
            .filter_map(|npu| npu.tops_performance)
            .sum();
        let tpu_tops: f64 = self.system_info.tpu_info.iter()
            .filter_map(|tpu| tpu.tops_performance)
            .sum();
        npu_tops + tpu_tops
    }
    
    /// Check if system is ARM-based
    pub fn is_arm_system(&self) -> bool {
        self.system_info.arm_info.is_some()
    }
    
    /// Get ARM system type if available
    pub fn arm_system_type(&self) -> Option<&str> {
        self.system_info.arm_info.as_ref().map(|arm| arm.system_type.as_str())
    }
    
    /// Check if system is suitable for specific AI workload type
    pub fn is_suitable_for_ai_workload(&self, workload_type: &str) -> bool {
        match workload_type.to_lowercase().as_str() {
            "inference" => self.ai_workload_score >= 6.0,
            "training" => self.ai_workload_score >= 8.0 && self.gpu_score >= 7.0,
            "edge" => self.edge_computing_score >= 7.0,
            "lightweight" => self.ai_workload_score >= 4.0,
            _ => self.ai_workload_score >= 6.0,
        }
    }
    
    /// Generate a hash for this system profile for grouping similar systems
    pub fn system_hash(&self) -> String {
        use std::collections::hash_map::DefaultHasher;
        use std::hash::{Hash, Hasher};
        
        let mut hasher = DefaultHasher::new();
        
        // Hash key system characteristics
        self.cpu_score.to_bits().hash(&mut hasher);
        self.gpu_score.to_bits().hash(&mut hasher);
        self.memory_score.to_bits().hash(&mut hasher);
        self.system_info.cpu_info.physical_cores.hash(&mut hasher);
        self.system_info.cpu_info.logical_cores.hash(&mut hasher);
        self.system_info.memory_info.total_ram.hash(&mut hasher);
        self.system_info.gpu_info.len().hash(&mut hasher);
        
        format!("{:x}", hasher.finish())
    }

    /// Get AI capabilities assessment
    pub fn ai_capabilities(&self) -> AICapabilities {
        AICapabilities {
            inference_capability: self.neural_inference_capability(),
            training_capability: self.neural_training_capability(),
            edge_capability: self.edge_computing_capability(),
            max_model_size: self.max_supported_model_size(),
            llm_capability: self.llm_capability(),
            computer_vision_capability: self.computer_vision_capability(),
            supported_frameworks: self.supported_frameworks(),
        }
    }

    /// Evaluate system suitability for neural network inference
    pub fn neural_inference_capability(&self) -> CapabilityLevel {
        // Calculate based on NPU/TPU scores and features
        if self.ai_accelerator_score >= 8.0 {
            CapabilityLevel::Exceptional
        } else if self.ai_accelerator_score >= 5.0 {
            CapabilityLevel::VeryHigh
        } else if self.gpu_score >= 7.0 {
            CapabilityLevel::High
        } else if self.gpu_score >= 5.0 {
            CapabilityLevel::Medium
        } else {
            CapabilityLevel::Basic
        }
    }
    
    /// Evaluate system suitability for neural network training
    pub fn neural_training_capability(&self) -> CapabilityLevel {
        // Training needs more power than inference
        if self.ai_accelerator_score >= 9.0 && self.memory_score >= 8.0 {
            CapabilityLevel::Exceptional
        } else if self.gpu_score >= 8.0 && self.memory_score >= 7.0 {
            CapabilityLevel::VeryHigh
        } else if self.gpu_score >= 6.0 {
            CapabilityLevel::High
        } else if self.gpu_score >= 4.0 {
            CapabilityLevel::Medium
        } else {
            CapabilityLevel::Basic
        }
    }
    
    /// Evaluate system suitability for edge computing
    pub fn edge_computing_capability(&self) -> CapabilityLevel {
        // Edge computing focuses on efficiency
        if self.edge_computing_score >= 8.0 {
            CapabilityLevel::Exceptional
        } else if self.edge_computing_score >= 6.0 {
            CapabilityLevel::VeryHigh
        } else if self.edge_computing_score >= 4.0 {
            CapabilityLevel::Medium
        } else {
            CapabilityLevel::Basic
        }
    }
    
    /// Get maximum supported model size in gigabytes
    pub fn max_supported_model_size(&self) -> f64 {
        // Calculate based on available memory and accelerators
        let mut base_memory_gb = self.system_info.memory_info.total_ram as f64 / 1024.0 / 2.0; // Half of system RAM
        
        // Check GPU VRAM if available
        let gpu_memory_gb = self.system_info.gpu_info.iter()
            .filter_map(|gpu| gpu.vram_size)
            .map(|vram| vram as f64 / 1024.0) // Convert MB to GB
            .max_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal))
            .unwrap_or(0.0);
        
        if gpu_memory_gb > 0.0 {
            // For GPU inference, use VRAM size with a safety margin
            base_memory_gb = base_memory_gb.max(gpu_memory_gb * 0.8);
        }
        
        // Adjust for quantization capabilities
        if !self.system_info.npu_info.is_empty() || !self.system_info.tpu_info.is_empty() {
            // NPUs/TPUs often support efficient quantization
            base_memory_gb *= 2.0; // Double effective capacity with quantization
        } else if self.gpu_score >= 7.0 {
            // Modern GPUs can handle quantized models
            base_memory_gb *= 1.5; // 50% more with quantization
        }
        
        base_memory_gb
    }
    
    /// Evaluate system suitability for large language models
    pub fn llm_capability(&self) -> LLMCapability {
        let max_model_size = self.max_supported_model_size();
        
        if max_model_size >= 100.0 && self.ai_accelerator_score >= 8.0 {
            LLMCapability::Enterprise // 100+ GB models
        } else if max_model_size >= 40.0 && self.ai_workload_score >= 7.0 {
            LLMCapability::Advanced // 40+ GB models (e.g., 65B parameters)
        } else if max_model_size >= 16.0 && self.ai_workload_score >= 6.0 {
            LLMCapability::Standard // 16+ GB models (e.g., 13B parameters)
        } else if max_model_size >= 8.0 && self.ai_workload_score >= 5.0 {
            LLMCapability::Basic // 8+ GB models (e.g., 7B parameters)
        } else if max_model_size >= 4.0 {
            LLMCapability::Minimal // Small models only (e.g., 3B parameters)
        } else {
            LLMCapability::Unsuitable
        }
    }
    
    /// Evaluate system suitability for computer vision tasks
    pub fn computer_vision_capability(&self) -> CapabilityLevel {
        if self.ai_accelerator_score >= 7.0 || self.gpu_score >= 8.0 {
            CapabilityLevel::Exceptional // Real-time high-res processing
        } else if self.gpu_score >= 6.0 {
            CapabilityLevel::VeryHigh // Fast high-res processing
        } else if self.gpu_score >= 4.0 {
            CapabilityLevel::High // Decent performance
        } else if self.gpu_score >= 2.0 {
            CapabilityLevel::Medium // Basic performance
        } else {
            CapabilityLevel::Basic // Minimal capability
        }
    }
    
    /// Get list of supported AI frameworks based on available hardware
    pub fn supported_frameworks(&self) -> Vec<String> {
        let mut frameworks = Vec::new();
        
        // Add CPU frameworks
        frameworks.push("ONNX Runtime".to_string());
        frameworks.push("TensorFlow Lite".to_string());
        
        // Add GPU frameworks
        if !self.system_info.gpu_info.is_empty() {
            let has_cuda = self.system_info.gpu_info.iter().any(|gpu| gpu.cuda_support);
            if has_cuda {
                frameworks.push("TensorFlow".to_string());
                frameworks.push("PyTorch".to_string());
                frameworks.push("JAX".to_string());
            }
            
            frameworks.push("OpenVINO".to_string());
            frameworks.push("DirectML".to_string());
        }
        
        // Add NPU frameworks
        for npu in &self.system_info.npu_info {
            frameworks.extend(npu.supported_frameworks.clone());
        }
        
        // Add TPU frameworks
        for tpu in &self.system_info.tpu_info {
            frameworks.extend(tpu.supported_frameworks.clone());
        }
        
        // De-duplicate
        frameworks.sort();
        frameworks.dedup();
        
        frameworks
    }

    // ...existing code...
}

/// Detailed system information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SystemInfo {
    /// Operating system name
    pub os_name: String,
    /// OS version
    pub os_version: String,
    /// CPU information
    pub cpu_info: CpuInfo,
    /// GPU information
    pub gpu_info: Vec<GpuInfo>,
    /// NPU information (Neural Processing Units)
    pub npu_info: Vec<NpuInfo>,
    /// TPU information (Tensor Processing Units)  
    pub tpu_info: Vec<TpuInfo>,
    /// FPGA information
    pub fpga_info: Vec<FpgaInfo>,
    /// ARM-specific hardware information
    pub arm_info: Option<ArmInfo>,
    /// Memory information
    pub memory_info: MemoryInfo,
    /// Storage information
    pub storage_info: Vec<StorageInfo>,
    /// Network information
    pub network_info: NetworkInfo,
}

/// CPU information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CpuInfo {
    /// CPU brand/model
    pub brand: String,
    /// Number of physical cores
    pub physical_cores: usize,
    /// Number of logical cores
    pub logical_cores: usize,
    /// Base frequency in MHz
    pub base_frequency: u64,
    /// Maximum frequency in MHz
    pub max_frequency: Option<u64>,
    /// Cache size in MB
    pub cache_size: Option<u64>,
    /// Architecture (x86_64, arm64, etc.)
    pub architecture: String,
}

/// GPU information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GpuInfo {
    /// GPU name/model
    pub name: String,
    /// GPU vendor (NVIDIA, AMD, Intel, etc.)
    pub vendor: String,
    /// VRAM size in MB
    pub vram_size: Option<u64>,
    /// Compute capability (for CUDA)
    pub compute_capability: Option<String>,
    /// OpenCL support
    pub opencl_support: bool,
    /// CUDA support
    pub cuda_support: bool,
}

/// NPU (Neural Processing Unit) information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NpuInfo {
    /// NPU vendor
    pub vendor: String,
    /// NPU model name
    pub model_name: String,
    /// Performance in TOPS (Tera Operations Per Second)
    pub tops_performance: Option<f64>,
    /// Supported frameworks
    pub supported_frameworks: Vec<String>,
    /// Supported data types
    pub supported_dtypes: Vec<String>,
}

/// TPU (Tensor Processing Unit) information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TpuInfo {
    /// TPU vendor
    pub vendor: String,
    /// TPU model name
    pub model_name: String,
    /// TPU architecture
    pub architecture: String,
    /// Performance in TOPS
    pub tops_performance: Option<f64>,
    /// Supported frameworks
    pub supported_frameworks: Vec<String>,
    /// Supported data types
    pub supported_dtypes: Vec<String>,
}

/// FPGA information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FpgaInfo {
    /// FPGA vendor
    pub vendor: String,
    /// FPGA family/series
    pub family: String,
    /// Model name
    pub model_name: String,
    /// Logic elements count
    pub logic_elements: Option<u64>,
    /// Memory blocks
    pub memory_blocks: Option<u64>,
    /// DSP blocks for AI acceleration
    pub dsp_blocks: Option<u64>,
}

/// ARM-specific hardware information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ArmInfo {
    /// ARM system type (Raspberry Pi, Jetson, Apple Silicon, etc.)
    pub system_type: String,
    /// Board model
    pub board_model: String,
    /// CPU architecture details
    pub cpu_architecture: String,
    /// Available acceleration features
    pub acceleration_features: Vec<String>,
    /// ML/AI capabilities
    pub ml_capabilities: HashMap<String, String>,
    /// GPIO/interface availability
    pub interfaces: Vec<String>,
}

/// Memory information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryInfo {
    /// Total RAM in MB
    pub total_ram: u64,
    /// Available RAM in MB
    pub available_ram: u64,
    /// Memory type (DDR4, DDR5, etc.)
    pub memory_type: Option<String>,
    /// Memory speed in MHz
    pub memory_speed: Option<u64>,
}

/// Storage information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StorageInfo {
    /// Storage device name
    pub name: String,
    /// Storage type (SSD, HDD, NVMe, etc.)
    pub storage_type: String,
    /// Total capacity in GB
    pub total_capacity: u64,
    /// Available capacity in GB
    pub available_capacity: u64,
    /// Read speed in MB/s
    pub read_speed: Option<u64>,
    /// Write speed in MB/s
    pub write_speed: Option<u64>,
}

/// Network information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NetworkInfo {
    /// Network interfaces
    pub interfaces: Vec<NetworkInterface>,
    /// Internet connectivity
    pub internet_connected: bool,
    /// Estimated bandwidth in Mbps
    pub estimated_bandwidth: Option<u64>,
}

/// Network interface information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NetworkInterface {
    /// Interface name
    pub name: String,
    /// Interface type (Ethernet, WiFi, etc.)
    pub interface_type: String,
    /// MAC address
    pub mac_address: String,
    /// IP addresses
    pub ip_addresses: Vec<String>,
    /// Connection speed in Mbps
    pub speed: Option<u64>,
}

/// AI capabilities assessment
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AICapabilities {
    /// Neural network inference capability
    pub inference_capability: CapabilityLevel,
    
    /// Neural network training capability
    pub training_capability: CapabilityLevel,
    
    /// Edge computing capability
    pub edge_capability: CapabilityLevel,
    
    /// Maximum supported model size in GB
    pub max_model_size: f64,
    
    /// Large language model capability
    pub llm_capability: LLMCapability,
    
    /// Computer vision capability
    pub computer_vision_capability: CapabilityLevel,
    
    /// Supported frameworks
    pub supported_frameworks: Vec<String>,
}

/// Capability levels for AI features
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum CapabilityLevel {
    /// Basic capability
    Basic,
    
    /// Medium capability
    Medium,
    
    /// High capability
    High,
    
    /// Very high capability
    VeryHigh,
    
    /// Exceptional capability
    Exceptional,
}

/// Large Language Model capabilities
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum LLMCapability {
    /// Unsuitable for LLMs
    Unsuitable,
    
    /// Minimal capability (smallest models only)
    Minimal,
    
    /// Basic capability (small models)
    Basic,
    
    /// Standard capability (medium models)
    Standard,
    
    /// Advanced capability (large models)
    Advanced,
    
    /// Enterprise capability (largest models)
    Enterprise,
}

/// AI accelerator types
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum AIAcceleratorType {
    /// GPU (Graphics Processing Unit)
    GPU,
    /// NPU (Neural Processing Unit)
    NPU,
    /// TPU (Tensor Processing Unit)
    TPU,
    /// FPGA (Field-Programmable Gate Array)
    FPGA,
    /// CPU (Central Processing Unit)
    CPU,
}

/// Specialized requirements for AI workloads
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AIWorkloadRequirements {
    /// Base workload requirements
    pub base_requirements: String, // Reference to WorkloadRequirements by name
    
    /// Required AI accelerator types
    pub required_accelerator_types: Vec<AIAcceleratorType>,
    
    /// Minimum TOPS (Tera Operations Per Second) required
    pub required_tops: Option<f64>,
    
    /// Preferred accelerator type
    pub preferred_accelerator: Option<AIAcceleratorType>,
    
    /// Model memory requirements in GB
    pub required_model_memory: f64,
    
    /// Quantization formats supported by this workload
    pub supported_quantization: Vec<crate::workloads::QuantizationLevel>,
    
    /// Minimum inference speed in samples/second
    pub min_inference_speed: Option<f64>,
    
    /// Required framework support (TensorFlow, PyTorch, etc.)
    pub required_frameworks: Vec<String>,
}

/// Result of model compatibility analysis
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ModelCompatibilityResult {
    /// Can the model run on this system
    pub can_run: bool,
    
    /// Is there sufficient memory
    pub memory_sufficient: bool,
    
    /// Accelerator compatibility details
    pub accelerator_compatibility: AcceleratorCompatibility,
    
    /// Optimal quantization suggestion
    pub optimal_quantization: QuantizationSuggestion,
    
    /// Expected inference speed (samples/second)
    pub expected_inference_speed: f64,
    
    /// Bottlenecks for this model
    pub bottlenecks: Vec<ModelBottleneck>,
    
    /// Recommended batch size
    pub recommended_batch_size: u32,
}

/// Accelerator compatibility details
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AcceleratorCompatibility {
    /// Is compatible with at least one accelerator
    pub is_compatible: bool,
    
    /// List of compatible devices
    pub compatible_devices: Vec<AcceleratorDevice>,
    
    /// Recommended device for best performance
    pub recommended_device: Option<AcceleratorDevice>,
    
    /// Expected performance level
    pub expected_performance: PerformanceLevel,
}

/// Types of accelerator devices
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum AcceleratorDevice {
    /// CPU
    CPU,
    /// GPU
    GPU,
    /// NPU (Neural Processing Unit)
    NPU,
    /// TPU (Tensor Processing Unit)
    TPU,
    /// FPGA (Field-Programmable Gate Array)
    FPGA,
}

/// Quantization suggestion
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QuantizationSuggestion {
    /// Recommended quantization level
    pub recommended_level: crate::workloads::QuantizationLevel,
    
    /// Reasoning for this recommendation
    pub reasoning: String,
    
    /// Expected impact on performance
    pub performance_impact: PerformanceImpact,
}

/// Impact of quantization on performance
#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
pub enum PerformanceImpact {
    /// Positive impact (faster)
    Positive,
    
    /// Negative impact (slower)
    Negative,
    
    /// Mixed impact (faster but less accurate)
    Mixed,
    
    /// No significant impact
    None,
}

/// Performance levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum PerformanceLevel {
    /// Very low performance
    VeryLow,
    
    /// Low performance
    Low,
    
    /// Medium performance
    Medium,
    
    /// High performance
    High,
    
    /// Very high performance
    VeryHigh,
}

/// Model-specific bottleneck
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ModelBottleneck {
    /// Bottleneck type
    pub bottleneck_type: ModelBottleneckType,
    
    /// Detailed description
    pub description: String,
    
    /// Severity of the bottleneck
    pub severity: BottleneckSeverity,
    
    /// Recommendation to address the bottleneck
    pub recommendation: String,
}

/// Types of model bottlenecks
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum ModelBottleneckType {
    /// Memory bottleneck
    Memory,
    
    /// Compute bottleneck
    Compute,
    
    /// Data transfer bottleneck
    DataTransfer,
    
    /// Precision bottleneck
    Precision,
    
    /// Framework support bottleneck
    FrameworkSupport,
}

/// Severity of bottlenecks
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum BottleneckSeverity {
    /// Low severity
    Low,
    
    /// Medium severity
    Medium,
    
    /// High severity
    High,
    
    /// Critical severity
    Critical,
}

/// Cost estimate for upgrades
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CostEstimate {
    /// Minimum cost in USD
    pub min_cost_usd: f64,
    
    /// Maximum cost in USD
    pub max_cost_usd: f64,
    
    /// Currency
    pub currency: String,
    
    /// Cost breakdown
    pub breakdown: Vec<CostBreakdownItem>,
}

/// Cost breakdown item
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CostBreakdownItem {
    /// Component name
    pub component: String,
    
    /// Cost in USD
    pub cost_usd: f64,
    
    /// Description
    pub description: String,
}

/// Upgrade priority levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum UpgradePriority {
    /// Low priority
    Low,
    
    /// Medium priority
    Medium,
    
    /// High priority
    High,
    
    /// Critical priority
    Critical,
}

/// Workload priority levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum WorkloadPriority {
    /// Low priority
    Low,
    
    /// Medium priority
    Medium,
    
    /// High priority
    High,
    
    /// Critical priority
    Critical,
}

/// Requirement severity levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum RequirementSeverity {
    /// Low severity
    Low,
    
    /// Medium severity
    Medium,
    
    /// High severity
    High,
    
    /// Critical severity
    Critical,
}

/// System compatibility result
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CompatibilityResult {
    /// Whether the system is compatible
    pub is_compatible: bool,
    
    /// Compatibility score (0.0 to 1.0)
    pub score: f64,
    
    /// Performance estimate
    pub performance_estimate: PerformanceEstimate,
    
    /// Missing requirements
    pub missing_requirements: Vec<MissingRequirement>,
    
    /// Identified bottlenecks
    pub bottlenecks: Vec<Bottleneck>,
    
    /// Recommendations
    pub recommendations: Vec<String>,
}

/// Performance estimate
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PerformanceEstimate {
    /// Expected performance tier
    pub tier: PerformanceTier,
    
    /// Expected utilization percentage
    pub utilization_percent: f64,
    
    /// Estimated latency in milliseconds
    pub latency_ms: f64,
    
    /// Estimated throughput
    pub throughput: f64,
    
    /// Estimated latency in milliseconds (alternative name)
    pub estimated_latency_ms: f64,
    
    /// Estimated throughput (alternative name)
    pub estimated_throughput: f64,
    
    /// Confidence level
    pub confidence: f64,
    
    /// Performance tier (alternative name)
    pub performance_tier: PerformanceTier,
}

/// Performance tier levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum PerformanceTier {
    /// Low performance
    Low,
    
    /// Medium performance
    Medium,
    
    /// High performance
    High,
    
    /// Very high performance
    VeryHigh,
    
    /// Excellent performance
    Excellent,
    
    /// Good performance
    Good,
    
    /// Fair performance
    Fair,
    
    /// Poor performance
    Poor,
}

/// Missing requirement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MissingRequirement {
    /// Resource type
    pub resource_type: String,
    
    /// Required amount
    pub required: String,
    
    /// Current amount
    pub current: String,
    
    /// Available amount
    pub available: String,
    
    /// Severity
    pub severity: RequirementSeverity,
}

/// System bottleneck
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Bottleneck {
    /// Resource type causing bottleneck
    pub resource_type: String,
    
    /// Description
    pub description: String,
    
    /// Impact level
    pub impact: BottleneckImpact,
    
    /// Recommended solution
    pub solution: String,
    
    /// Additional suggestions
    pub suggestions: String,
}

/// Bottleneck impact levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum BottleneckImpact {
    /// Low impact
    Low,
    
    /// Medium impact
    Medium,
    
    /// High impact
    High,
    
    /// Critical impact
    Critical,
    
    /// Severe impact
    Severe,
    
    /// Moderate impact
    Moderate,
    
    /// Minor impact
    Minor,
}

/// Upgrade recommendation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UpgradeRecommendation {
    /// Component to upgrade
    pub component: String,
    
    /// Description
    pub description: String,
    
    /// Priority
    pub priority: UpgradePriority,
    
    /// Estimated cost
    pub estimated_cost: Option<CostEstimate>,
    
    /// Resource type
    pub resource_type: crate::resources::ResourceType,
    
    /// Recommendation text
    pub recommendation: String,
    
    /// Estimated improvement
    pub estimated_improvement: String,
    
    /// Cost estimate (alternative name)
    pub cost_estimate: Option<CostEstimate>,
}

/// Optimal system configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OptimalConfiguration {
    /// Configuration name
    pub name: String,
    
    /// CPU recommendation
    pub cpu_recommendation: String,
    
    /// GPU recommendation
    pub gpu_recommendation: Option<String>,
    
    /// Memory recommendation in GB
    pub memory_gb: f64,
    
    /// Storage recommendation in GB
    pub storage_gb: f64,
    
    /// Estimated cost
    pub estimated_cost: Option<CostEstimate>,
    
    /// Memory recommendation text
    pub memory_recommendation: String,
    
    /// Storage recommendation text
    pub storage_recommendation: String,
    
    /// Network recommendation text
    pub network_recommendation: String,
    
    /// Total cost
    pub total_cost: Option<CostEstimate>,
    
    /// Performance projection
    pub performance_projection: String,
}

/// Resource utilization information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ResourceUtilization {
    /// CPU utilization percentage
    pub cpu_percent: f64,
    
    /// Memory utilization percentage
    pub memory_percent: f64,
    
    /// Storage utilization percentage
    pub storage_percent: f64,
    
    /// Network utilization percentage
    pub network_percent: f64,
    
    /// GPU utilization percentage
    pub gpu_percent: f64,
    
    /// Peak utilization percentage
    pub peak_utilization: f64,
}

/// Performance targets
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PerformanceTargets {
    /// Target latency in milliseconds
    pub target_latency_ms: f64,
    
    /// Target throughput
    pub target_throughput: f64,
    
    /// Target utilization percentage
    pub target_utilization_percent: f64,
}

/// Acceleration benefit estimate
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AccelerationBenefit {
    /// Speed improvement factor
    pub speed_improvement_factor: f64,
    
    /// Power efficiency improvement
    pub power_efficiency_improvement: f64,
    
    /// Cost per performance improvement
    pub cost_per_performance: f64,
    
    /// Description of benefits
    pub description: String,
    
    /// Confidence level (0.0 to 1.0)
    pub confidence_level: f64,
}

/// AI hardware upgrade recommendations
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AIUpgradeRecommendations {
    /// Memory upgrade recommendation
    pub memory_upgrade: Option<MemoryUpgrade>,
    
    /// GPU upgrade recommendation
    pub gpu_upgrade: Option<GPUUpgrade>,
    
    /// Specialized accelerator recommendation
    pub accelerator_recommendation: Option<AcceleratorRecommendation>,
    
    /// Storage recommendation (for model storage)
    pub storage_recommendation: Option<StorageRecommendation>,
    
    /// Total estimated cost
    pub estimated_cost: Option<CostEstimate>,
    
    /// Estimated performance gain
    pub performance_gain: Option<PerformanceGainEstimate>,
    
    /// Upgrade priority
    pub priority: UpgradePriority,
}

/// Memory upgrade recommendation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemoryUpgrade {
    /// Current RAM in GB
    pub current_ram_gb: f64,
    
    /// Recommended RAM in GB
    pub recommended_ram_gb: f64,
    
    /// Upgrade description
    pub description: String,
    
    /// Estimated cost in USD
    pub estimated_cost_usd: f64,
}

/// GPU upgrade recommendation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GPUUpgrade {
    /// Current GPU
    pub current_gpu: String,
    
    /// Recommended GPU
    pub recommended_gpu: String,
    
    /// Required VRAM in GB
    pub vram_required_gb: f64,
    
    /// Recommended VRAM in GB
    pub vram_recommended_gb: f64,
    
    /// Upgrade description
    pub description: String,
    
    /// Estimated cost in USD
    pub estimated_cost_usd: f64,
}

/// Specialized accelerator recommendation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AcceleratorRecommendation {
    /// Accelerator name
    pub accelerator_name: String,
    
    /// Accelerator type
    pub accelerator_type: String,
    
    /// TOPS performance
    pub tops_performance: f64,
    
    /// Recommendation description
    pub description: String,
    
    /// Estimated cost in USD
    pub estimated_cost_usd: f64,
}

/// Storage recommendation for models
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StorageRecommendation {
    /// Current storage
    pub current_storage: String,
    
    /// Recommended storage
    pub recommended_storage: String,
    
    /// Recommendation description
    pub description: String,
    
    /// Estimated cost in USD
    pub estimated_cost_usd: f64,
}

/// Performance gain estimate
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PerformanceGainEstimate {
    /// Latency improvement percentage
    pub latency_improvement_percent: f64,
    
    /// Throughput improvement percentage
    pub throughput_improvement_percent: f64,
    
    /// Energy efficiency improvement percentage
    pub energy_efficiency_improvement_percent: f64,
    
    /// Description of performance improvements
    pub description: String,
}

/// Basic workload requirements
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkloadRequirements {
    /// Name of the workload
    pub name: String,
    
    /// Required CPU cores
    pub cpu_cores: usize,
    
    /// Required memory in GB
    pub memory_gb: f64,
    
    /// Required storage in GB
    pub storage_gb: f64,
    
    /// Required network bandwidth in Mbps
    pub network_bandwidth_mbps: Option<f64>,
    
    /// CPU architecture requirements
    pub cpu_architecture: Option<String>,
    
    /// Operating system requirements
    pub operating_system: Option<String>,
    
    /// Description of the workload
    pub description: String,
    
    /// Associated workload type
    pub workload: Option<crate::workloads::WorkloadType>,
    
    /// Resource requirements list
    pub resource_requirements: Vec<crate::resources::ResourceRequirement>,
    
    /// Workload priority
    pub priority: WorkloadPriority,
}

impl WorkloadRequirements {
    /// Create a new workload requirements with basic defaults
    pub fn new(name: &str) -> Self {
        Self {
            name: name.to_string(),
            cpu_cores: 1,
            memory_gb: 1.0,
            storage_gb: 10.0,
            network_bandwidth_mbps: None,
            cpu_architecture: None,
            operating_system: None,
            description: String::new(),
            workload: None,
            resource_requirements: Vec::new(),
            priority: WorkloadPriority::Medium,
        }
    }
    
    /// Add a resource requirement
    pub fn add_resource_requirement(&mut self, requirement: crate::resources::ResourceRequirement) {
        self.resource_requirements.push(requirement);
    }
    
    /// Get a resource requirement by type
    pub fn get_resource_requirement(&self, resource_type: &crate::resources::ResourceType) -> Option<&crate::resources::ResourceRequirement> {
        self.resource_requirements.iter().find(|req| req.resource_type == *resource_type)
    }
}

/// Builder for SystemProfile to handle many arguments
#[derive(Debug, Clone)]
pub struct SystemProfileBuilder {
    cpu_score: f64,
    gpu_score: f64,
    npu_score: f64,
    tpu_score: f64,
    fpga_score: f64,
    arm_optimization_score: f64,
    memory_score: f64,
    storage_score: f64,
    network_score: f64,
    system_info: Option<SystemInfo>,
}

impl SystemProfileBuilder {
    pub fn new() -> Self {
        Self {
            cpu_score: 0.0,
            gpu_score: 0.0,
            npu_score: 0.0,
            tpu_score: 0.0,
            fpga_score: 0.0,
            arm_optimization_score: 0.0,
            memory_score: 0.0,
            storage_score: 0.0,
            network_score: 0.0,
            system_info: None,
        }
    }

    pub fn cpu_score(mut self, score: f64) -> Self {
        self.cpu_score = score;
        self
    }

    pub fn gpu_score(mut self, score: f64) -> Self {
        self.gpu_score = score;
        self
    }

    pub fn npu_score(mut self, score: f64) -> Self {
        self.npu_score = score;
        self
    }

    pub fn tpu_score(mut self, score: f64) -> Self {
        self.tpu_score = score;
        self
    }

    pub fn fpga_score(mut self, score: f64) -> Self {
        self.fpga_score = score;
        self
    }

    pub fn arm_optimization_score(mut self, score: f64) -> Self {
        self.arm_optimization_score = score;
        self
    }

    pub fn memory_score(mut self, score: f64) -> Self {
        self.memory_score = score;
        self
    }

    pub fn storage_score(mut self, score: f64) -> Self {
        self.storage_score = score;
        self
    }

    pub fn network_score(mut self, score: f64) -> Self {
        self.network_score = score;
        self
    }

    pub fn system_info(mut self, info: SystemInfo) -> Self {
        self.system_info = Some(info);
        self
    }

    pub fn build(self) -> SystemProfile {
        let system_info = self.system_info.expect("SystemInfo is required");
        
        // Calculate AI accelerator score as the max of available accelerators
        let ai_accelerator_score = self.npu_score.max(self.tpu_score).max(self.fpga_score);
        
        // Calculate AI workload score emphasizing accelerators
        let ai_workload_score = ai_accelerator_score * 0.4 + self.gpu_score * 0.3 + self.cpu_score * 0.2 + self.memory_score * 0.1;
        
        // Calculate edge computing score emphasizing ARM optimization and efficiency
        let edge_computing_score = self.arm_optimization_score * 0.3 + ai_accelerator_score * 0.3 + self.cpu_score * 0.2 + self.memory_score * 0.2;
        
        // Enhanced overall score including AI capabilities
        let overall_score = (self.cpu_score + self.gpu_score + ai_accelerator_score + self.memory_score + self.storage_score + self.network_score) / 6.0;
        
        SystemProfile {
            cpu_score: self.cpu_score,
            gpu_score: self.gpu_score,
            npu_score: self.npu_score,
            tpu_score: self.tpu_score,
            fpga_score: self.fpga_score,
            ai_accelerator_score,
            arm_optimization_score: self.arm_optimization_score,
            memory_score: self.memory_score,
            storage_score: self.storage_score,
            network_score: self.network_score,
            overall_score,
            ai_workload_score,
            edge_computing_score,
            system_info,
            created_at: Utc::now(),
        }
    }
}

impl Default for SystemProfileBuilder {
    fn default() -> Self {
        Self::new()
    }
}