oxirs-stream 0.2.4

Real-time streaming support with Kafka/NATS/MQTT/OPC-UA I/O, RDF Patch, and SPARQL Update delta
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
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
//! # Visual Stream Designer and Debugger
//!
//! Comprehensive visual tool for designing, debugging, and optimizing stream processing pipelines.
//! Provides a graph-based interface for building complex stream processing flows with real-time
//! debugging, performance profiling, and automatic optimization suggestions.
//!
//! ## Features
//! - Visual pipeline designer with drag-and-drop interface
//! - Real-time debugging with event visualization
//! - Performance profiling and bottleneck detection
//! - Automatic pipeline validation and optimization
//! - Export/import pipeline definitions (JSON, YAML, DOT)
//! - Integration with existing stream processing operators
//! - Live monitoring and metrics dashboard
//! - Breakpoint support for debugging
//! - Time-travel debugging for historical analysis

use anyhow::{anyhow, Result};
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use std::collections::{HashMap, HashSet, VecDeque};
use std::sync::Arc;
use tokio::sync::RwLock;
use tracing::{debug, info};
use uuid::Uuid;

use crate::event::StreamEvent;

/// Visual pipeline designer configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VisualDesignerConfig {
    pub enable_auto_layout: bool,
    pub enable_validation: bool,
    pub enable_optimization: bool,
    pub max_nodes: usize,
    pub max_edges: usize,
    pub enable_real_time_debug: bool,
    pub debug_buffer_size: usize,
    pub enable_profiling: bool,
    pub export_formats: Vec<ExportFormat>,
}

/// Supported export formats
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum ExportFormat {
    Json,
    Yaml,
    Dot,     // GraphViz DOT format
    Mermaid, // Mermaid diagram format
    Svg,     // SVG image
    Png,     // PNG image
}

/// Pipeline node representing a stream operation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PipelineNode {
    pub id: String,
    pub name: String,
    pub node_type: NodeType,
    pub position: Position,
    pub config: NodeConfig,
    pub metadata: NodeMetadata,
    pub status: NodeStatus,
}

/// Node types for different stream operations
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum NodeType {
    // Source nodes
    Source(SourceType),
    // Processing nodes
    Map,
    Filter,
    FlatMap,
    Reduce,
    Aggregate,
    Join,
    Window,
    // Transformation nodes
    Transform(TransformType),
    // ML nodes
    MLModel(MLModelType),
    // Output nodes
    Sink(SinkType),
    // Control nodes
    Router,
    Splitter,
    Merger,
    // Debug nodes
    Breakpoint,
    Logger,
    Profiler,
}

/// Source types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum SourceType {
    Kafka,
    Nats,
    Redis,
    Memory,
    File,
    WebSocket,
    Http,
    Custom(String),
}

/// Transform types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum TransformType {
    RdfTransform,
    SparqlQuery,
    GraphPattern,
    Custom(String),
}

/// ML model types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum MLModelType {
    OnlineLearning,
    AnomalyDetection,
    Prediction,
    Classification,
    Clustering,
    Custom(String),
}

/// Sink types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum SinkType {
    Kafka,
    Nats,
    Redis,
    Database,
    File,
    WebSocket,
    Http,
    Custom(String),
}

/// Node position in visual canvas
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Position {
    pub x: f64,
    pub y: f64,
    pub z: Option<f64>, // For 3D visualization
}

/// Node configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NodeConfig {
    pub parameters: HashMap<String, ConfigValue>,
    pub input_ports: Vec<Port>,
    pub output_ports: Vec<Port>,
    pub resource_limits: ResourceLimits,
}

/// Configuration value types
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum ConfigValue {
    String(String),
    Number(f64),
    Boolean(bool),
    Array(Vec<ConfigValue>),
    Object(HashMap<String, ConfigValue>),
}

/// Port for node connections
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Port {
    pub id: String,
    pub name: String,
    pub port_type: PortType,
    pub data_type: DataType,
    pub required: bool,
}

/// Port types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum PortType {
    Input,
    Output,
}

/// Data types flowing through ports
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum DataType {
    StreamEvent,
    RdfTriple,
    SparqlResult,
    Json,
    Binary,
    Custom(String),
}

/// Resource limits for nodes
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ResourceLimits {
    pub max_memory_mb: Option<u64>,
    pub max_cpu_percent: Option<f64>,
    pub max_execution_time_ms: Option<u64>,
    pub max_events_per_second: Option<u64>,
}

/// Node metadata
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NodeMetadata {
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub version: String,
    pub author: Option<String>,
    pub description: Option<String>,
    pub tags: Vec<String>,
}

/// Node status for monitoring
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum NodeStatus {
    Idle,
    Running,
    Paused,
    Error(String),
    Completed,
}

/// Pipeline edge connecting nodes
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PipelineEdge {
    pub id: String,
    pub source_node_id: String,
    pub source_port_id: String,
    pub target_node_id: String,
    pub target_port_id: String,
    pub edge_type: EdgeType,
    pub config: EdgeConfig,
    pub metadata: EdgeMetadata,
}

/// Edge types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum EdgeType {
    DataFlow,
    ControlFlow,
    Conditional(Condition),
}

/// Condition for conditional edges
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct Condition {
    pub expression: String,
    pub predicate_type: PredicateType,
}

/// Predicate types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum PredicateType {
    Equals,
    NotEquals,
    GreaterThan,
    LessThan,
    Contains,
    Matches,
    Custom(String),
}

/// Edge configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EdgeConfig {
    pub buffer_size: usize,
    pub backpressure_strategy: BackpressureStrategy,
    pub error_handling: ErrorHandling,
}

/// Backpressure strategies
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum BackpressureStrategy {
    Drop,
    Buffer,
    Block,
    Exponential,
    Adaptive,
}

/// Error handling strategies
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ErrorHandling {
    Propagate,
    Ignore,
    Retry { max_attempts: u32 },
    DeadLetter,
    Custom(String),
}

/// Edge metadata
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EdgeMetadata {
    pub created_at: DateTime<Utc>,
    pub label: Option<String>,
    pub style: EdgeStyle,
}

/// Edge visual style
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EdgeStyle {
    pub color: String,
    pub thickness: f64,
    pub line_type: LineType,
}

/// Line types for edges
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum LineType {
    Solid,
    Dashed,
    Dotted,
    Curved,
}

/// Visual pipeline definition
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VisualPipeline {
    pub id: String,
    pub name: String,
    pub description: Option<String>,
    pub version: String,
    pub nodes: HashMap<String, PipelineNode>,
    pub edges: HashMap<String, PipelineEdge>,
    pub metadata: PipelineMetadata,
    pub validation_result: Option<ValidationResult>,
}

/// Pipeline metadata
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PipelineMetadata {
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
    pub author: Option<String>,
    pub tags: Vec<String>,
    pub properties: HashMap<String, String>,
}

/// Validation result
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ValidationResult {
    pub is_valid: bool,
    pub errors: Vec<ValidationError>,
    pub warnings: Vec<ValidationWarning>,
    pub validated_at: DateTime<Utc>,
}

/// Validation error
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ValidationError {
    pub error_type: ValidationErrorType,
    pub message: String,
    pub node_id: Option<String>,
    pub edge_id: Option<String>,
}

/// Validation error types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum ValidationErrorType {
    MissingRequiredPort,
    IncompatibleDataTypes,
    CyclicDependency,
    DisconnectedNode,
    InvalidConfiguration,
    ResourceLimitExceeded,
    DuplicateNodeId,
}

/// Validation warning
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ValidationWarning {
    pub warning_type: ValidationWarningType,
    pub message: String,
    pub node_id: Option<String>,
    pub suggestion: Option<String>,
}

/// Validation warning types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum ValidationWarningType {
    UnusedPort,
    SuboptimalConfiguration,
    PerformanceBottleneck,
    MemoryPressure,
    DeprecatedNode,
}

/// Pipeline debugger for real-time debugging
#[derive(Debug)]
pub struct PipelineDebugger {
    pub pipeline: VisualPipeline,
    pub config: DebuggerConfig,
    pub state: Arc<RwLock<DebuggerState>>,
    pub breakpoints: Arc<RwLock<HashMap<String, Breakpoint>>>,
    pub event_history: Arc<RwLock<VecDeque<DebugEvent>>>,
}

/// Debugger configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DebuggerConfig {
    pub enable_breakpoints: bool,
    pub enable_event_capture: bool,
    pub max_event_history: usize,
    pub enable_time_travel: bool,
    pub enable_profiling: bool,
    pub capture_intermediate_results: bool,
}

/// Debugger state
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DebuggerState {
    pub is_running: bool,
    pub is_paused: bool,
    pub current_node_id: Option<String>,
    pub execution_stack: Vec<String>,
    pub variables: HashMap<String, DebugVariable>,
    pub metrics: DebugMetrics,
}

/// Debug variable
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DebugVariable {
    pub name: String,
    pub value: String,
    pub var_type: String,
    pub scope: String,
}

/// Debug metrics
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DebugMetrics {
    pub events_processed: u64,
    pub events_dropped: u64,
    pub average_latency_ms: f64,
    pub throughput_per_second: f64,
    pub memory_usage_mb: f64,
    pub cpu_usage_percent: f64,
}

/// Breakpoint for debugging
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Breakpoint {
    pub id: String,
    pub node_id: String,
    pub condition: Option<String>,
    pub enabled: bool,
    pub hit_count: u64,
    pub max_hits: Option<u64>,
}

/// Debug event captured during execution
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DebugEvent {
    pub timestamp: DateTime<Utc>,
    pub node_id: String,
    pub event_type: DebugEventType,
    pub data: StreamEvent,
    pub metadata: HashMap<String, String>,
}

/// Debug event types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum DebugEventType {
    NodeEnter,
    NodeExit,
    BreakpointHit,
    Error,
    Warning,
}

/// Visual designer main struct
pub struct VisualStreamDesigner {
    config: VisualDesignerConfig,
    pipelines: Arc<RwLock<HashMap<String, VisualPipeline>>>,
    debuggers: Arc<RwLock<HashMap<String, PipelineDebugger>>>,
    validator: Arc<PipelineValidator>,
    optimizer: Arc<PipelineOptimizer>,
}

impl VisualStreamDesigner {
    /// Create a new visual stream designer
    pub fn new(config: VisualDesignerConfig) -> Self {
        Self {
            config: config.clone(),
            pipelines: Arc::new(RwLock::new(HashMap::new())),
            debuggers: Arc::new(RwLock::new(HashMap::new())),
            validator: Arc::new(PipelineValidator::new(config.clone())),
            optimizer: Arc::new(PipelineOptimizer::new(config)),
        }
    }

    /// Create a new empty pipeline
    pub async fn create_pipeline(
        &self,
        name: String,
        description: Option<String>,
    ) -> Result<String> {
        let pipeline = VisualPipeline {
            id: Uuid::new_v4().to_string(),
            name,
            description,
            version: "1.0.0".to_string(),
            nodes: HashMap::new(),
            edges: HashMap::new(),
            metadata: PipelineMetadata {
                created_at: Utc::now(),
                updated_at: Utc::now(),
                author: None,
                tags: Vec::new(),
                properties: HashMap::new(),
            },
            validation_result: None,
        };

        let id = pipeline.id.clone();
        self.pipelines.write().await.insert(id.clone(), pipeline);

        info!("Created new pipeline: {}", id);
        Ok(id)
    }

    /// Add a node to the pipeline
    pub async fn add_node(
        &self,
        pipeline_id: &str,
        name: String,
        node_type: NodeType,
        position: Position,
    ) -> Result<String> {
        let mut pipelines = self.pipelines.write().await;
        let pipeline = pipelines
            .get_mut(pipeline_id)
            .ok_or_else(|| anyhow!("Pipeline not found"))?;

        let node = PipelineNode {
            id: Uuid::new_v4().to_string(),
            name,
            node_type: node_type.clone(),
            position,
            config: Self::default_node_config(&node_type),
            metadata: NodeMetadata {
                created_at: Utc::now(),
                updated_at: Utc::now(),
                version: "1.0.0".to_string(),
                author: None,
                description: None,
                tags: Vec::new(),
            },
            status: NodeStatus::Idle,
        };

        let node_id = node.id.clone();
        pipeline.nodes.insert(node_id.clone(), node);
        pipeline.metadata.updated_at = Utc::now();

        debug!("Added node {} to pipeline {}", node_id, pipeline_id);
        Ok(node_id)
    }

    /// Add an edge connecting two nodes
    pub async fn add_edge(
        &self,
        pipeline_id: &str,
        source_node_id: String,
        source_port_id: String,
        target_node_id: String,
        target_port_id: String,
    ) -> Result<String> {
        let mut pipelines = self.pipelines.write().await;
        let pipeline = pipelines
            .get_mut(pipeline_id)
            .ok_or_else(|| anyhow!("Pipeline not found"))?;

        // Validate nodes exist
        if !pipeline.nodes.contains_key(&source_node_id) {
            return Err(anyhow!("Source node not found"));
        }
        if !pipeline.nodes.contains_key(&target_node_id) {
            return Err(anyhow!("Target node not found"));
        }

        let edge = PipelineEdge {
            id: Uuid::new_v4().to_string(),
            source_node_id,
            source_port_id,
            target_node_id,
            target_port_id,
            edge_type: EdgeType::DataFlow,
            config: EdgeConfig {
                buffer_size: 1000,
                backpressure_strategy: BackpressureStrategy::Block,
                error_handling: ErrorHandling::Propagate,
            },
            metadata: EdgeMetadata {
                created_at: Utc::now(),
                label: None,
                style: EdgeStyle {
                    color: "#000000".to_string(),
                    thickness: 2.0,
                    line_type: LineType::Solid,
                },
            },
        };

        let edge_id = edge.id.clone();
        pipeline.edges.insert(edge_id.clone(), edge);
        pipeline.metadata.updated_at = Utc::now();

        debug!("Added edge {} to pipeline {}", edge_id, pipeline_id);
        Ok(edge_id)
    }

    /// Validate a pipeline
    pub async fn validate_pipeline(&self, pipeline_id: &str) -> Result<ValidationResult> {
        let pipelines = self.pipelines.read().await;
        let pipeline = pipelines
            .get(pipeline_id)
            .ok_or_else(|| anyhow!("Pipeline not found"))?;

        self.validator.validate(pipeline).await
    }

    /// Optimize a pipeline
    pub async fn optimize_pipeline(&self, pipeline_id: &str) -> Result<OptimizationResult> {
        let pipelines = self.pipelines.read().await;
        let pipeline = pipelines
            .get(pipeline_id)
            .ok_or_else(|| anyhow!("Pipeline not found"))?;

        self.optimizer.optimize(pipeline).await
    }

    /// Export pipeline to specified format
    pub async fn export_pipeline(&self, pipeline_id: &str, format: ExportFormat) -> Result<String> {
        let pipelines = self.pipelines.read().await;
        let pipeline = pipelines
            .get(pipeline_id)
            .ok_or_else(|| anyhow!("Pipeline not found"))?;

        match format {
            ExportFormat::Json => serde_json::to_string_pretty(pipeline)
                .map_err(|e| anyhow!("JSON export failed: {}", e)),
            ExportFormat::Yaml => {
                serde_yaml::to_string(pipeline).map_err(|e| anyhow!("YAML export failed: {}", e))
            }
            ExportFormat::Dot => self.export_dot(pipeline),
            ExportFormat::Mermaid => self.export_mermaid(pipeline),
            ExportFormat::Svg => Err(anyhow!("SVG export not yet implemented")),
            ExportFormat::Png => Err(anyhow!("PNG export not yet implemented")),
        }
    }

    /// Import pipeline from string
    pub async fn import_pipeline(&self, data: &str, format: ExportFormat) -> Result<String> {
        let pipeline: VisualPipeline = match format {
            ExportFormat::Json => {
                serde_json::from_str(data).map_err(|e| anyhow!("JSON import failed: {}", e))?
            }
            ExportFormat::Yaml => {
                serde_yaml::from_str(data).map_err(|e| anyhow!("YAML import failed: {}", e))?
            }
            _ => return Err(anyhow!("Import format not supported")),
        };

        let id = pipeline.id.clone();
        self.pipelines.write().await.insert(id.clone(), pipeline);

        info!("Imported pipeline: {}", id);
        Ok(id)
    }

    /// Create a debugger for a pipeline
    pub async fn create_debugger(
        &self,
        pipeline_id: &str,
        config: DebuggerConfig,
    ) -> Result<String> {
        let pipelines = self.pipelines.read().await;
        let pipeline = pipelines
            .get(pipeline_id)
            .ok_or_else(|| anyhow!("Pipeline not found"))?;

        let max_event_history = config.max_event_history;
        let debugger = PipelineDebugger {
            pipeline: pipeline.clone(),
            config,
            state: Arc::new(RwLock::new(DebuggerState {
                is_running: false,
                is_paused: false,
                current_node_id: None,
                execution_stack: Vec::new(),
                variables: HashMap::new(),
                metrics: DebugMetrics::default(),
            })),
            breakpoints: Arc::new(RwLock::new(HashMap::new())),
            event_history: Arc::new(RwLock::new(VecDeque::with_capacity(max_event_history))),
        };

        let debugger_id = Uuid::new_v4().to_string();
        self.debuggers
            .write()
            .await
            .insert(debugger_id.clone(), debugger);

        info!(
            "Created debugger {} for pipeline {}",
            debugger_id, pipeline_id
        );
        Ok(debugger_id)
    }

    /// Add a breakpoint to a debugger
    pub async fn add_breakpoint(
        &self,
        debugger_id: &str,
        node_id: String,
        condition: Option<String>,
    ) -> Result<String> {
        let debuggers = self.debuggers.read().await;
        let debugger = debuggers
            .get(debugger_id)
            .ok_or_else(|| anyhow!("Debugger not found"))?;

        let breakpoint = Breakpoint {
            id: Uuid::new_v4().to_string(),
            node_id,
            condition,
            enabled: true,
            hit_count: 0,
            max_hits: None,
        };

        let breakpoint_id = breakpoint.id.clone();
        debugger
            .breakpoints
            .write()
            .await
            .insert(breakpoint_id.clone(), breakpoint);

        debug!(
            "Added breakpoint {} to debugger {}",
            breakpoint_id, debugger_id
        );
        Ok(breakpoint_id)
    }

    /// Get debugger state
    pub async fn get_debugger_state(&self, debugger_id: &str) -> Result<DebuggerState> {
        let debuggers = self.debuggers.read().await;
        let debugger = debuggers
            .get(debugger_id)
            .ok_or_else(|| anyhow!("Debugger not found"))?;

        let state = debugger.state.read().await.clone();
        drop(debuggers); // Explicitly drop to avoid borrow issues
        Ok(state)
    }

    /// Get event history from debugger
    pub async fn get_event_history(
        &self,
        debugger_id: &str,
        limit: Option<usize>,
    ) -> Result<Vec<DebugEvent>> {
        let debuggers = self.debuggers.read().await;
        let debugger = debuggers
            .get(debugger_id)
            .ok_or_else(|| anyhow!("Debugger not found"))?;

        let history = debugger.event_history.read().await;
        let limit = limit.unwrap_or(history.len());

        Ok(history.iter().rev().take(limit).cloned().collect())
    }

    /// Export pipeline to DOT format (GraphViz)
    fn export_dot(&self, pipeline: &VisualPipeline) -> Result<String> {
        let mut dot = String::new();
        dot.push_str(&format!("digraph \"{}\" {{\n", pipeline.name));
        dot.push_str("  rankdir=LR;\n");
        dot.push_str("  node [shape=box];\n\n");

        // Add nodes
        for (id, node) in &pipeline.nodes {
            let label = format!("{}\\n{:?}", node.name, node.node_type);
            dot.push_str(&format!("  \"{}\" [label=\"{}\"];\n", id, label));
        }

        dot.push('\n');

        // Add edges
        for edge in pipeline.edges.values() {
            dot.push_str(&format!(
                "  \"{}\" -> \"{}\";\n",
                edge.source_node_id, edge.target_node_id
            ));
        }

        dot.push_str("}\n");
        Ok(dot)
    }

    /// Export pipeline to Mermaid format
    fn export_mermaid(&self, pipeline: &VisualPipeline) -> Result<String> {
        let mut mermaid = String::new();
        mermaid.push_str("graph LR\n");

        // Add nodes
        for (id, node) in &pipeline.nodes {
            let label = format!("{}[{}]", id, node.name);
            mermaid.push_str(&format!("  {}\n", label));
        }

        // Add edges
        for edge in pipeline.edges.values() {
            mermaid.push_str(&format!(
                "  {} --> {}\n",
                edge.source_node_id, edge.target_node_id
            ));
        }

        Ok(mermaid)
    }

    /// Get default node configuration based on type
    fn default_node_config(_node_type: &NodeType) -> NodeConfig {
        NodeConfig {
            parameters: HashMap::new(),
            input_ports: vec![Port {
                id: "input".to_string(),
                name: "Input".to_string(),
                port_type: PortType::Input,
                data_type: DataType::StreamEvent,
                required: true,
            }],
            output_ports: vec![Port {
                id: "output".to_string(),
                name: "Output".to_string(),
                port_type: PortType::Output,
                data_type: DataType::StreamEvent,
                required: false,
            }],
            resource_limits: ResourceLimits {
                max_memory_mb: Some(1024),
                max_cpu_percent: Some(50.0),
                max_execution_time_ms: Some(5000),
                max_events_per_second: Some(10000),
            },
        }
    }

    /// List all pipelines
    pub async fn list_pipelines(&self) -> Vec<PipelineInfo> {
        let pipelines = self.pipelines.read().await;
        pipelines
            .values()
            .map(|p| PipelineInfo {
                id: p.id.clone(),
                name: p.name.clone(),
                version: p.version.clone(),
                node_count: p.nodes.len(),
                edge_count: p.edges.len(),
                created_at: p.metadata.created_at,
                updated_at: p.metadata.updated_at,
            })
            .collect()
    }

    /// Get pipeline details
    pub async fn get_pipeline(&self, pipeline_id: &str) -> Result<VisualPipeline> {
        let pipelines = self.pipelines.read().await;
        pipelines
            .get(pipeline_id)
            .cloned()
            .ok_or_else(|| anyhow!("Pipeline not found"))
    }

    /// Delete a pipeline
    pub async fn delete_pipeline(&self, pipeline_id: &str) -> Result<()> {
        let mut pipelines = self.pipelines.write().await;
        pipelines
            .remove(pipeline_id)
            .ok_or_else(|| anyhow!("Pipeline not found"))?;

        info!("Deleted pipeline: {}", pipeline_id);
        Ok(())
    }
}

/// Pipeline information summary
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PipelineInfo {
    pub id: String,
    pub name: String,
    pub version: String,
    pub node_count: usize,
    pub edge_count: usize,
    pub created_at: DateTime<Utc>,
    pub updated_at: DateTime<Utc>,
}

/// Pipeline validator
pub struct PipelineValidator {
    config: VisualDesignerConfig,
}

impl PipelineValidator {
    pub fn new(config: VisualDesignerConfig) -> Self {
        Self { config }
    }

    pub async fn validate(&self, pipeline: &VisualPipeline) -> Result<ValidationResult> {
        let mut errors = Vec::new();
        let mut warnings = Vec::new();

        // Check for cyclic dependencies
        if self.has_cycle(pipeline) {
            errors.push(ValidationError {
                error_type: ValidationErrorType::CyclicDependency,
                message: "Pipeline contains cyclic dependencies".to_string(),
                node_id: None,
                edge_id: None,
            });
        }

        // Check for disconnected nodes
        let disconnected = self.find_disconnected_nodes(pipeline);
        for node_id in disconnected {
            warnings.push(ValidationWarning {
                warning_type: ValidationWarningType::UnusedPort,
                message: format!("Node {} is disconnected", node_id),
                node_id: Some(node_id),
                suggestion: Some("Connect this node to the pipeline".to_string()),
            });
        }

        // Check data type compatibility
        for edge in pipeline.edges.values() {
            if let Err(e) = self.check_data_type_compatibility(pipeline, edge) {
                errors.push(ValidationError {
                    error_type: ValidationErrorType::IncompatibleDataTypes,
                    message: e.to_string(),
                    node_id: None,
                    edge_id: Some(edge.id.clone()),
                });
            }
        }

        // Check resource limits
        if pipeline.nodes.len() > self.config.max_nodes {
            errors.push(ValidationError {
                error_type: ValidationErrorType::ResourceLimitExceeded,
                message: format!(
                    "Pipeline exceeds maximum node count: {} > {}",
                    pipeline.nodes.len(),
                    self.config.max_nodes
                ),
                node_id: None,
                edge_id: None,
            });
        }

        Ok(ValidationResult {
            is_valid: errors.is_empty(),
            errors,
            warnings,
            validated_at: Utc::now(),
        })
    }

    fn has_cycle(&self, pipeline: &VisualPipeline) -> bool {
        let mut visited = HashSet::new();
        let mut rec_stack = HashSet::new();

        for node_id in pipeline.nodes.keys() {
            if Self::detect_cycle_util(pipeline, node_id, &mut visited, &mut rec_stack) {
                return true;
            }
        }

        false
    }

    fn detect_cycle_util(
        pipeline: &VisualPipeline,
        node_id: &str,
        visited: &mut HashSet<String>,
        rec_stack: &mut HashSet<String>,
    ) -> bool {
        if !visited.contains(node_id) {
            visited.insert(node_id.to_string());
            rec_stack.insert(node_id.to_string());

            // Get all neighbors
            let neighbors: Vec<String> = pipeline
                .edges
                .values()
                .filter(|e| e.source_node_id == node_id)
                .map(|e| e.target_node_id.clone())
                .collect();

            for neighbor in neighbors {
                if !visited.contains(&neighbor)
                    && Self::detect_cycle_util(pipeline, &neighbor, visited, rec_stack)
                {
                    return true;
                }
                if rec_stack.contains(&neighbor) {
                    return true;
                }
            }
        }

        rec_stack.remove(node_id);
        false
    }

    fn find_disconnected_nodes(&self, pipeline: &VisualPipeline) -> Vec<String> {
        let mut connected = HashSet::new();

        for edge in pipeline.edges.values() {
            connected.insert(edge.source_node_id.clone());
            connected.insert(edge.target_node_id.clone());
        }

        pipeline
            .nodes
            .keys()
            .filter(|id| !connected.contains(*id))
            .cloned()
            .collect()
    }

    fn check_data_type_compatibility(
        &self,
        _pipeline: &VisualPipeline,
        _edge: &PipelineEdge,
    ) -> Result<()> {
        // Simplified check - in real implementation, would verify port data types match
        Ok(())
    }
}

/// Pipeline optimizer
pub struct PipelineOptimizer {
    config: VisualDesignerConfig,
}

impl PipelineOptimizer {
    pub fn new(config: VisualDesignerConfig) -> Self {
        Self { config }
    }

    pub async fn optimize(&self, pipeline: &VisualPipeline) -> Result<OptimizationResult> {
        let mut suggestions = Vec::new();

        // Analyze pipeline structure
        let metrics = self.analyze_structure(pipeline);

        // Generate optimization suggestions
        if metrics.avg_chain_length > 10.0 {
            suggestions.push(OptimizationSuggestion {
                suggestion_type: OptimizationType::ReduceChainLength,
                impact: ImpactLevel::High,
                description: "Consider breaking long chains into parallel branches".to_string(),
                estimated_improvement: 30.0,
            });
        }

        if metrics.parallel_opportunities > 0 {
            suggestions.push(OptimizationSuggestion {
                suggestion_type: OptimizationType::IncreaseParallelism,
                impact: ImpactLevel::Medium,
                description: format!(
                    "Found {} opportunities for parallel processing",
                    metrics.parallel_opportunities
                ),
                estimated_improvement: 15.0 * metrics.parallel_opportunities as f64,
            });
        }

        Ok(OptimizationResult {
            original_metrics: metrics,
            suggestions,
            optimized_at: Utc::now(),
        })
    }

    fn analyze_structure(&self, pipeline: &VisualPipeline) -> PipelineMetrics {
        let mut total_chain_length = 0;
        let mut chain_count = 0;

        // Simple chain length calculation
        for node_id in pipeline.nodes.keys() {
            let depth = self.calculate_depth(pipeline, node_id);
            total_chain_length += depth;
            chain_count += 1;
        }

        PipelineMetrics {
            node_count: pipeline.nodes.len(),
            edge_count: pipeline.edges.len(),
            avg_chain_length: if chain_count > 0 {
                total_chain_length as f64 / chain_count as f64
            } else {
                0.0
            },
            max_chain_length: total_chain_length,
            parallel_opportunities: self.count_parallel_opportunities(pipeline),
            bottleneck_nodes: Vec::new(),
        }
    }

    fn calculate_depth(&self, pipeline: &VisualPipeline, node_id: &str) -> usize {
        let mut depth = 0;
        let mut current = node_id.to_string();

        while let Some(edge) = pipeline
            .edges
            .values()
            .find(|e| e.target_node_id == current)
        {
            depth += 1;
            current = edge.source_node_id.clone();
        }

        depth
    }

    fn count_parallel_opportunities(&self, pipeline: &VisualPipeline) -> usize {
        let mut count = 0;

        for node_id in pipeline.nodes.keys() {
            let outgoing: Vec<_> = pipeline
                .edges
                .values()
                .filter(|e| e.source_node_id == *node_id)
                .collect();

            if outgoing.len() > 1 {
                count += 1;
            }
        }

        count
    }
}

/// Optimization result
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OptimizationResult {
    pub original_metrics: PipelineMetrics,
    pub suggestions: Vec<OptimizationSuggestion>,
    pub optimized_at: DateTime<Utc>,
}

/// Pipeline metrics
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PipelineMetrics {
    pub node_count: usize,
    pub edge_count: usize,
    pub avg_chain_length: f64,
    pub max_chain_length: usize,
    pub parallel_opportunities: usize,
    pub bottleneck_nodes: Vec<String>,
}

/// Optimization suggestion
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OptimizationSuggestion {
    pub suggestion_type: OptimizationType,
    pub impact: ImpactLevel,
    pub description: String,
    pub estimated_improvement: f64,
}

/// Optimization types
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum OptimizationType {
    ReduceChainLength,
    IncreaseParallelism,
    OptimizeBufferSize,
    ReduceMemoryUsage,
    ImproveLocality,
}

/// Impact levels
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum ImpactLevel {
    Low,
    Medium,
    High,
    Critical,
}

impl Default for VisualDesignerConfig {
    fn default() -> Self {
        Self {
            enable_auto_layout: true,
            enable_validation: true,
            enable_optimization: true,
            max_nodes: 1000,
            max_edges: 5000,
            enable_real_time_debug: true,
            debug_buffer_size: 10000,
            enable_profiling: true,
            export_formats: vec![
                ExportFormat::Json,
                ExportFormat::Yaml,
                ExportFormat::Dot,
                ExportFormat::Mermaid,
            ],
        }
    }
}

impl Default for DebuggerConfig {
    fn default() -> Self {
        Self {
            enable_breakpoints: true,
            enable_event_capture: true,
            max_event_history: 10000,
            enable_time_travel: true,
            enable_profiling: true,
            capture_intermediate_results: true,
        }
    }
}

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

    #[tokio::test]
    async fn test_create_pipeline() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline(
                "Test Pipeline".to_string(),
                Some("Test description".to_string()),
            )
            .await
            .unwrap();

        assert!(!pipeline_id.is_empty());

        let pipelines = designer.list_pipelines().await;
        assert_eq!(pipelines.len(), 1);
        assert_eq!(pipelines[0].name, "Test Pipeline");
    }

    #[tokio::test]
    async fn test_add_nodes() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        let source_id = designer
            .add_node(
                &pipeline_id,
                "Source".to_string(),
                NodeType::Source(SourceType::Memory),
                Position {
                    x: 0.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        let sink_id = designer
            .add_node(
                &pipeline_id,
                "Sink".to_string(),
                NodeType::Sink(SinkType::Memory),
                Position {
                    x: 100.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        assert!(!source_id.is_empty());
        assert!(!sink_id.is_empty());

        let pipeline = designer.get_pipeline(&pipeline_id).await.unwrap();
        assert_eq!(pipeline.nodes.len(), 2);
    }

    #[tokio::test]
    async fn test_add_edge() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        let source_id = designer
            .add_node(
                &pipeline_id,
                "Source".to_string(),
                NodeType::Source(SourceType::Memory),
                Position {
                    x: 0.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        let sink_id = designer
            .add_node(
                &pipeline_id,
                "Sink".to_string(),
                NodeType::Sink(SinkType::Memory),
                Position {
                    x: 100.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        let edge_id = designer
            .add_edge(
                &pipeline_id,
                source_id,
                "output".to_string(),
                sink_id,
                "input".to_string(),
            )
            .await
            .unwrap();

        assert!(!edge_id.is_empty());

        let pipeline = designer.get_pipeline(&pipeline_id).await.unwrap();
        assert_eq!(pipeline.edges.len(), 1);
    }

    #[tokio::test]
    async fn test_validate_pipeline() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        let source_id = designer
            .add_node(
                &pipeline_id,
                "Source".to_string(),
                NodeType::Source(SourceType::Memory),
                Position {
                    x: 0.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        let sink_id = designer
            .add_node(
                &pipeline_id,
                "Sink".to_string(),
                NodeType::Sink(SinkType::Memory),
                Position {
                    x: 100.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        designer
            .add_edge(
                &pipeline_id,
                source_id,
                "output".to_string(),
                sink_id,
                "input".to_string(),
            )
            .await
            .unwrap();

        let validation = designer.validate_pipeline(&pipeline_id).await.unwrap();
        assert!(validation.is_valid);
        assert!(validation.errors.is_empty());
    }

    #[tokio::test]
    async fn test_export_import_json() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        designer
            .add_node(
                &pipeline_id,
                "Source".to_string(),
                NodeType::Source(SourceType::Memory),
                Position {
                    x: 0.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        let json = designer
            .export_pipeline(&pipeline_id, ExportFormat::Json)
            .await
            .unwrap();

        assert!(!json.is_empty());

        let new_id = designer
            .import_pipeline(&json, ExportFormat::Json)
            .await
            .unwrap();

        assert!(!new_id.is_empty());

        let imported = designer.get_pipeline(&new_id).await.unwrap();
        assert_eq!(imported.nodes.len(), 1);
    }

    #[tokio::test]
    async fn test_export_dot() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        let source_id = designer
            .add_node(
                &pipeline_id,
                "Source".to_string(),
                NodeType::Source(SourceType::Memory),
                Position {
                    x: 0.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        let sink_id = designer
            .add_node(
                &pipeline_id,
                "Sink".to_string(),
                NodeType::Sink(SinkType::Memory),
                Position {
                    x: 100.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        designer
            .add_edge(
                &pipeline_id,
                source_id,
                "output".to_string(),
                sink_id,
                "input".to_string(),
            )
            .await
            .unwrap();

        let dot = designer
            .export_pipeline(&pipeline_id, ExportFormat::Dot)
            .await
            .unwrap();

        assert!(dot.contains("digraph"));
        assert!(dot.contains("Source"));
        assert!(dot.contains("Sink"));
        assert!(dot.contains("->"));
    }

    #[tokio::test]
    async fn test_create_debugger() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        let debugger_id = designer
            .create_debugger(&pipeline_id, DebuggerConfig::default())
            .await
            .unwrap();

        assert!(!debugger_id.is_empty());

        let state = designer.get_debugger_state(&debugger_id).await.unwrap();
        assert!(!state.is_running);
        assert!(!state.is_paused);
    }

    #[tokio::test]
    async fn test_add_breakpoint() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        let node_id = designer
            .add_node(
                &pipeline_id,
                "Filter".to_string(),
                NodeType::Filter,
                Position {
                    x: 0.0,
                    y: 0.0,
                    z: None,
                },
            )
            .await
            .unwrap();

        let debugger_id = designer
            .create_debugger(&pipeline_id, DebuggerConfig::default())
            .await
            .unwrap();

        let breakpoint_id = designer
            .add_breakpoint(&debugger_id, node_id, None)
            .await
            .unwrap();

        assert!(!breakpoint_id.is_empty());
    }

    #[tokio::test]
    async fn test_optimize_pipeline() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        // Create a chain of nodes
        let mut prev_id = None;
        for i in 0..12 {
            let node_id = designer
                .add_node(
                    &pipeline_id,
                    format!("Node{}", i),
                    NodeType::Map,
                    Position {
                        x: i as f64 * 100.0,
                        y: 0.0,
                        z: None,
                    },
                )
                .await
                .unwrap();

            if let Some(prev) = prev_id {
                designer
                    .add_edge(
                        &pipeline_id,
                        prev,
                        "output".to_string(),
                        node_id.clone(),
                        "input".to_string(),
                    )
                    .await
                    .unwrap();
            }

            prev_id = Some(node_id);
        }

        let optimization = designer.optimize_pipeline(&pipeline_id).await.unwrap();
        assert!(!optimization.suggestions.is_empty());
    }

    #[tokio::test]
    async fn test_delete_pipeline() {
        let designer = VisualStreamDesigner::new(VisualDesignerConfig::default());
        let pipeline_id = designer
            .create_pipeline("Test".to_string(), None)
            .await
            .unwrap();

        assert_eq!(designer.list_pipelines().await.len(), 1);

        designer.delete_pipeline(&pipeline_id).await.unwrap();
        assert_eq!(designer.list_pipelines().await.len(), 0);
    }
}