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
//! Configuration Management for Performance Analytics Dashboard
//!
//! This module contains all configuration structures and types for the dashboard,
//! including analytics, visualization, alerting, and export configurations.

use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::time::Duration;

/// Configuration for the Performance Analytics Dashboard
#[derive(Debug, Clone)]
pub struct PerformanceDashboardConfig {
    /// Enable real-time monitoring
    pub enable_realtime_monitoring: bool,
    /// Data collection interval in seconds
    pub collection_interval: u64,
    /// Historical data retention in days
    pub retention_days: u32,
    /// Dashboard refresh rate in seconds
    pub dashboard_refresh_rate: u64,
    /// Analytics configuration
    pub analytics_config: AnalyticsConfig,
    /// Visualization configuration
    pub visualization_config: VisualizationConfig,
    /// Alert configuration
    pub alert_config: AlertConfig,
    /// Export configuration
    pub export_config: ExportConfig,
    /// Prediction configuration
    pub prediction_config: PredictionConfig,
}

/// Advanced analytics configuration
#[derive(Debug, Clone)]
pub struct AnalyticsConfig {
    /// Enable statistical analysis
    pub enable_statistical_analysis: bool,
    /// Enable trend analysis
    pub enable_trend_analysis: bool,
    /// Enable correlation analysis
    pub enable_correlation_analysis: bool,
    /// Enable anomaly detection
    pub enable_anomaly_detection: bool,
    /// Enable performance modeling
    pub enable_performance_modeling: bool,
    /// Statistical confidence level
    pub confidence_level: f64,
    /// Anomaly detection sensitivity
    pub anomaly_sensitivity: f64,
    /// Trend analysis window size
    pub trend_window_size: usize,
}

/// Visualization configuration
#[derive(Debug, Clone)]
pub struct VisualizationConfig {
    /// Enable interactive charts
    pub enable_interactive_charts: bool,
    /// Chart types to display
    pub chart_types: Vec<ChartType>,
    /// Dashboard layout
    pub dashboard_layout: DashboardLayout,
    /// Color scheme
    pub color_scheme: ColorScheme,
    /// Aggregation levels
    pub aggregation_levels: Vec<AggregationLevel>,
    /// Custom visualizations
    pub custom_visualizations: Vec<CustomVisualization>,
}

/// Alert configuration
#[derive(Debug, Clone)]
pub struct AlertConfig {
    /// Enable alerting
    pub enable_alerts: bool,
    /// Alert thresholds
    pub alert_thresholds: HashMap<String, AlertThreshold>,
    /// Notification channels
    pub notification_channels: Vec<NotificationChannel>,
    /// Alert suppression rules
    pub suppression_rules: Vec<SuppressionRule>,
    /// Escalation policies
    pub escalation_policies: Vec<EscalationPolicy>,
}

/// Export configuration
#[derive(Debug, Clone)]
pub struct ExportConfig {
    /// Enable data export
    pub enable_export: bool,
    /// Export formats
    pub export_formats: Vec<ExportFormat>,
    /// Automatic export schedule
    pub auto_export_schedule: Option<ExportSchedule>,
    /// Report templates
    pub report_templates: Vec<ReportTemplate>,
}

/// Prediction configuration
#[derive(Debug, Clone)]
pub struct PredictionConfig {
    /// Enable performance predictions
    pub enable_predictions: bool,
    /// Prediction horizon in hours
    pub prediction_horizon_hours: u32,
    /// Prediction models
    pub prediction_models: Vec<PredictionModel>,
    /// Prediction confidence threshold
    pub confidence_threshold: f64,
    /// Enable adaptive learning
    pub enable_adaptive_learning: bool,
}

/// Chart types for visualization
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ChartType {
    LineChart,
    BarChart,
    ScatterPlot,
    HeatMap,
    Histogram,
    BoxPlot,
    ViolinPlot,
    Waterfall,
    Gauge,
    TreeMap,
    Sankey,
    Radar,
    Candlestick,
    Custom(String),
}

/// Dashboard layout options
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum DashboardLayout {
    Grid,
    Fluid,
    Tabbed,
    Stacked,
    Custom(String),
}

/// Color schemes
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ColorScheme {
    Default,
    Dark,
    Light,
    HighContrast,
    Scientific,
    Custom(Vec<String>),
}

/// Aggregation levels
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum AggregationLevel {
    RealTime,
    Minute,
    Hour,
    Day,
    Week,
    Month,
    Quarter,
    Year,
}

/// Custom visualization definition
#[derive(Debug, Clone)]
pub struct CustomVisualization {
    pub name: String,
    pub visualization_type: String,
    pub data_sources: Vec<String>,
    pub configuration: HashMap<String, String>,
    pub filters: Vec<VisualizationFilter>,
}

/// Visualization filter
#[derive(Debug, Clone)]
pub struct VisualizationFilter {
    pub field: String,
    pub operator: String,
    pub value: String,
}

/// Alert threshold definition
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AlertThreshold {
    pub metric_name: String,
    pub threshold_type: ThresholdType,
    pub value: f64,
    pub severity: AlertSeverity,
    pub duration: Duration,
    pub enabled: bool,
}

/// Threshold types
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum ThresholdType {
    GreaterThan,
    LessThan,
    Equal,
    NotEqual,
    PercentageChange,
    StandardDeviation,
    Custom(String),
}

/// Alert severity levels
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum AlertSeverity {
    Info,
    Warning,
    Error,
    Critical,
}

/// Notification channels
#[derive(Debug, Clone)]
pub struct NotificationChannel {
    pub channel_type: ChannelType,
    pub configuration: HashMap<String, String>,
    pub enabled: bool,
    pub filters: Vec<NotificationFilter>,
}

/// Channel types for notifications
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ChannelType {
    Email,
    Slack,
    SMS,
    Webhook,
    PagerDuty,
    Discord,
    Teams,
    Custom(String),
}

/// Notification filter
#[derive(Debug, Clone)]
pub struct NotificationFilter {
    pub filter_type: String,
    pub condition: String,
    pub value: String,
}

/// Alert suppression rules
#[derive(Debug, Clone)]
pub struct SuppressionRule {
    pub rule_name: String,
    pub conditions: Vec<SuppressionCondition>,
    pub duration: Duration,
    pub enabled: bool,
}

/// Suppression condition
#[derive(Debug, Clone)]
pub struct SuppressionCondition {
    pub field: String,
    pub operator: String,
    pub value: String,
}

/// Escalation policies
#[derive(Debug, Clone)]
pub struct EscalationPolicy {
    pub policy_name: String,
    pub steps: Vec<EscalationStep>,
    pub enabled: bool,
}

/// Escalation step
#[derive(Debug, Clone)]
pub struct EscalationStep {
    pub step_number: usize,
    pub delay: Duration,
    pub notification_channels: Vec<String>,
    pub action_type: EscalationActionType,
}

/// Escalation action types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum EscalationActionType {
    Notify,
    AutoRemediate,
    CreateTicket,
    CallOnDuty,
    Custom(String),
}

/// Export formats
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ExportFormat {
    JSON,
    CSV,
    Excel,
    PDF,
    PNG,
    SVG,
    HTML,
    Custom(String),
}

/// Export schedule
#[derive(Debug, Clone)]
pub struct ExportSchedule {
    pub frequency: ExportFrequency,
    pub time_of_day: Option<chrono::NaiveTime>,
    pub recipients: Vec<String>,
    pub formats: Vec<ExportFormat>,
}

/// Export frequency
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ExportFrequency {
    Hourly,
    Daily,
    Weekly,
    Monthly,
    Quarterly,
    Custom(String),
}

/// Report templates
#[derive(Debug, Clone)]
pub struct ReportTemplate {
    pub template_name: String,
    pub template_type: ReportType,
    pub sections: Vec<ReportSection>,
    pub layout: ReportLayout,
    pub enabled: bool,
}

/// Report types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ReportType {
    Executive,
    Technical,
    Operational,
    Compliance,
    Custom(String),
}

/// Report section
#[derive(Debug, Clone)]
pub struct ReportSection {
    pub section_name: String,
    pub section_type: ReportSectionType,
    pub data_sources: Vec<String>,
    pub charts: Vec<ChartType>,
    pub order: usize,
}

/// Report section types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ReportSectionType {
    Summary,
    Charts,
    Tables,
    Analysis,
    Recommendations,
    Custom(String),
}

/// Report layout
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ReportLayout {
    Standard,
    Compact,
    Detailed,
    Custom(String),
}

/// Prediction models
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PredictionModel {
    LinearRegression,
    ARIMA,
    LSTM,
    Prophet,
    ExponentialSmoothing,
    RandomForest,
    GradientBoosting,
    Custom(String),
}

impl Default for PerformanceDashboardConfig {
    fn default() -> Self {
        Self {
            enable_realtime_monitoring: true,
            collection_interval: 30,
            retention_days: 90,
            dashboard_refresh_rate: 5,
            analytics_config: AnalyticsConfig {
                enable_statistical_analysis: true,
                enable_trend_analysis: true,
                enable_correlation_analysis: true,
                enable_anomaly_detection: true,
                enable_performance_modeling: true,
                confidence_level: 0.95,
                anomaly_sensitivity: 0.05,
                trend_window_size: 100,
            },
            visualization_config: VisualizationConfig {
                enable_interactive_charts: true,
                chart_types: vec![
                    ChartType::LineChart,
                    ChartType::BarChart,
                    ChartType::HeatMap,
                    ChartType::Gauge,
                    ChartType::BoxPlot,
                ],
                dashboard_layout: DashboardLayout::Grid,
                color_scheme: ColorScheme::Scientific,
                aggregation_levels: vec![
                    AggregationLevel::RealTime,
                    AggregationLevel::Minute,
                    AggregationLevel::Hour,
                    AggregationLevel::Day,
                ],
                custom_visualizations: Vec::new(),
            },
            alert_config: AlertConfig {
                enable_alerts: true,
                alert_thresholds: [
                    (
                        "fidelity".to_string(),
                        AlertThreshold {
                            metric_name: "fidelity".to_string(),
                            threshold_type: ThresholdType::LessThan,
                            value: 0.9,
                            severity: AlertSeverity::Warning,
                            duration: Duration::from_secs(300),
                            enabled: true,
                        },
                    ),
                    (
                        "error_rate".to_string(),
                        AlertThreshold {
                            metric_name: "error_rate".to_string(),
                            threshold_type: ThresholdType::GreaterThan,
                            value: 0.05,
                            severity: AlertSeverity::Error,
                            duration: Duration::from_secs(60),
                            enabled: true,
                        },
                    ),
                ]
                .iter()
                .cloned()
                .collect(),
                notification_channels: vec![NotificationChannel {
                    channel_type: ChannelType::Email,
                    configuration: [("recipients".to_string(), "admin@example.com".to_string())]
                        .iter()
                        .cloned()
                        .collect(),
                    enabled: true,
                    filters: Vec::new(),
                }],
                suppression_rules: Vec::new(),
                escalation_policies: Vec::new(),
            },
            export_config: ExportConfig {
                enable_export: true,
                export_formats: vec![ExportFormat::JSON, ExportFormat::CSV, ExportFormat::PDF],
                auto_export_schedule: Some(ExportSchedule {
                    frequency: ExportFrequency::Daily,
                    // 9:00:00 is a valid time, use expect for infallible case
                    time_of_day: chrono::NaiveTime::from_hms_opt(9, 0, 0),
                    recipients: vec!["reports@example.com".to_string()],
                    formats: vec![ExportFormat::PDF],
                }),
                report_templates: vec![ReportTemplate {
                    template_name: "Daily Performance Summary".to_string(),
                    template_type: ReportType::Executive,
                    sections: Vec::new(),
                    layout: ReportLayout::Standard,
                    enabled: true,
                }],
            },
            prediction_config: PredictionConfig {
                enable_predictions: true,
                prediction_horizon_hours: 24,
                prediction_models: vec![
                    PredictionModel::ARIMA,
                    PredictionModel::Prophet,
                    PredictionModel::ExponentialSmoothing,
                ],
                confidence_threshold: 0.8,
                enable_adaptive_learning: true,
            },
        }
    }
}

impl AnalyticsConfig {
    /// Create a basic analytics configuration
    pub const fn basic() -> Self {
        Self {
            enable_statistical_analysis: true,
            enable_trend_analysis: false,
            enable_correlation_analysis: false,
            enable_anomaly_detection: true,
            enable_performance_modeling: false,
            confidence_level: 0.95,
            anomaly_sensitivity: 0.1,
            trend_window_size: 50,
        }
    }

    /// Create a comprehensive analytics configuration
    pub const fn comprehensive() -> Self {
        Self {
            enable_statistical_analysis: true,
            enable_trend_analysis: true,
            enable_correlation_analysis: true,
            enable_anomaly_detection: true,
            enable_performance_modeling: true,
            confidence_level: 0.99,
            anomaly_sensitivity: 0.01,
            trend_window_size: 200,
        }
    }
}

impl VisualizationConfig {
    /// Create a minimal visualization configuration
    pub fn minimal() -> Self {
        Self {
            enable_interactive_charts: false,
            chart_types: vec![ChartType::LineChart, ChartType::BarChart],
            dashboard_layout: DashboardLayout::Stacked,
            color_scheme: ColorScheme::Default,
            aggregation_levels: vec![AggregationLevel::Hour, AggregationLevel::Day],
            custom_visualizations: Vec::new(),
        }
    }

    /// Create a comprehensive visualization configuration
    pub fn comprehensive() -> Self {
        Self {
            enable_interactive_charts: true,
            chart_types: vec![
                ChartType::LineChart,
                ChartType::BarChart,
                ChartType::ScatterPlot,
                ChartType::HeatMap,
                ChartType::Histogram,
                ChartType::BoxPlot,
                ChartType::ViolinPlot,
                ChartType::Gauge,
                ChartType::Radar,
            ],
            dashboard_layout: DashboardLayout::Grid,
            color_scheme: ColorScheme::Scientific,
            aggregation_levels: vec![
                AggregationLevel::RealTime,
                AggregationLevel::Minute,
                AggregationLevel::Hour,
                AggregationLevel::Day,
                AggregationLevel::Week,
                AggregationLevel::Month,
            ],
            custom_visualizations: Vec::new(),
        }
    }
}

impl AlertConfig {
    /// Create a basic alert configuration with essential thresholds
    pub fn basic() -> Self {
        Self {
            enable_alerts: true,
            alert_thresholds: [(
                "fidelity".to_string(),
                AlertThreshold {
                    metric_name: "fidelity".to_string(),
                    threshold_type: ThresholdType::LessThan,
                    value: 0.95,
                    severity: AlertSeverity::Warning,
                    duration: Duration::from_secs(300),
                    enabled: true,
                },
            )]
            .iter()
            .cloned()
            .collect(),
            notification_channels: vec![NotificationChannel {
                channel_type: ChannelType::Email,
                configuration: HashMap::new(),
                enabled: true,
                filters: Vec::new(),
            }],
            suppression_rules: Vec::new(),
            escalation_policies: Vec::new(),
        }
    }
}