oxirs 0.2.4

Command-line interface for OxiRS - import, export, migration, and benchmarking tools
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
//! Data migration commands - Convert RDF formats and migrate databases

use super::CommandResult;
use crate::cli::logging::{DataLogger, PerfLogger};
use crate::cli::validation::MultiValidator;
use crate::cli::validation::{dataset_validation, fs_validation, validate_rdf_format};
use crate::cli::{progress::helpers, ArgumentValidator, CliContext};
use oxirs_core::format::{RdfFormat, RdfParser, RdfSerializer};
use oxirs_core::model::Quad;
use oxirs_core::rdf_store::RdfStore;
use std::fs;
use std::io::{BufReader, Cursor};
use std::path::PathBuf;
use std::time::Instant;

/// Convert RDF data from one format to another
pub async fn format(source: PathBuf, target: PathBuf, from: String, to: String) -> CommandResult {
    // Create CLI context for proper output formatting
    let ctx = CliContext::new();

    // Validate arguments using the advanced validation framework
    let mut validator = MultiValidator::new();

    // Validate source file
    validator.add(
        ArgumentValidator::new("source", Some(source.to_str().unwrap_or("")))
            .required()
            .is_file(),
    );

    // Validate formats
    validator.add(
        ArgumentValidator::new("from", Some(&from))
            .required()
            .custom(|f| !f.trim().is_empty(), "Source format cannot be empty"),
    );

    validator.add(
        ArgumentValidator::new("to", Some(&to))
            .required()
            .custom(|t| !t.trim().is_empty(), "Target format cannot be empty"),
    );

    // Complete validation
    validator.finish()?;

    // Validate file size (limit to 1GB for now)
    fs_validation::validate_file_size(&source, Some(1_073_741_824))?;

    // Validate formats
    validate_rdf_format(&from)?;
    validate_rdf_format(&to)?;

    ctx.info(&format!(
        "Migrating RDF data: {} → {}",
        source.display(),
        target.display()
    ));
    ctx.info(&format!("Source format: {from}"));
    ctx.info(&format!("Target format: {to}"));

    // Check if output file already exists
    if target.exists() {
        return Err(format!("Target file '{}' already exists", target.display()).into());
    }

    // Ensure output directory exists
    if let Some(parent) = target.parent() {
        fs::create_dir_all(parent)?;
    }

    // Start migration with progress tracking and logging
    let start_time = Instant::now();
    ctx.info("Migration Progress");

    // Initialize loggers
    let mut data_logger = DataLogger::new("migrate", source.to_str().unwrap_or("unknown"));
    let mut perf_logger = PerfLogger::new(format!("migrate_{from}_to_{to}"));
    perf_logger.add_metadata("source", source.display().to_string());
    perf_logger.add_metadata("target", target.display().to_string());
    perf_logger.add_metadata("from_format", &from);
    perf_logger.add_metadata("to_format", &to);

    // Get file size for progress bar
    let file_metadata = fs::metadata(&source)?;
    let file_size = file_metadata.len();

    // Create progress bar for file reading
    let read_progress = helpers::download_progress(file_size, &source.display().to_string());
    read_progress.set_message("Reading source file");

    // Open source file for reading
    let source_file = fs::File::open(&source)?;
    read_progress.finish_with_message("Source file opened");
    data_logger.update_progress(file_size, 0);

    // Create progress spinner for migration
    let migrate_progress = helpers::query_progress();
    migrate_progress.set_message("Converting formats");

    // Perform migration
    let (quad_count, error_count) = migrate_data(source_file, &target, &from, &to)?;

    migrate_progress.finish_with_message("Migration complete");

    let duration = start_time.elapsed();

    // Update data logger with final stats
    data_logger.update_progress(file_size, quad_count as u64);
    data_logger.complete();

    // Complete performance logging
    perf_logger.add_metadata("quad_count", quad_count);
    perf_logger.add_metadata("error_count", error_count);
    perf_logger.complete(Some(5000)); // Log if migration takes more than 5 seconds

    // Report statistics with formatted output
    ctx.info("Migration Statistics");
    ctx.success(&format!(
        "Migration completed in {:.2} seconds",
        duration.as_secs_f64()
    ));
    ctx.info(&format!("Quads migrated: {quad_count}"));

    if error_count > 0 {
        ctx.warn(&format!("Errors encountered: {error_count}"));
    }

    ctx.info(&format!(
        "Average rate: {:.0} quads/second",
        quad_count as f64 / duration.as_secs_f64()
    ));
    ctx.success(&format!("Output written to: {}", target.display()));

    Ok(())
}

/// Migrate RDF data from source file to target file
fn migrate_data(
    source_file: fs::File,
    target: &PathBuf,
    from_format: &str,
    to_format: &str,
) -> Result<(usize, usize), Box<dyn std::error::Error>> {
    // Step 1: Determine source RDF format
    let source_rdf_format = parse_rdf_format(from_format)?;

    // Step 2: Determine target RDF format
    let target_rdf_format = parse_rdf_format(to_format)?;

    // Step 3: Create parser for source format
    let reader = BufReader::new(source_file);
    let parser = RdfParser::new(source_rdf_format);

    // Step 4: Create serializer for target format
    let output_file = fs::File::create(target)?;
    let mut serializer = RdfSerializer::new(target_rdf_format)
        .with_prefix("rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#")
        .with_prefix("rdfs", "http://www.w3.org/2000/01/rdf-schema#")
        .with_prefix("xsd", "http://www.w3.org/2001/XMLSchema#")
        .with_prefix("owl", "http://www.w3.org/2002/07/owl#")
        .pretty()
        .for_writer(output_file);

    // Step 5: Stream parse and serialize
    let mut quad_count = 0;
    let mut error_count = 0;

    for quad_result in parser.for_reader(reader) {
        match quad_result {
            Ok(quad) => {
                // Serialize quad to target format
                match serializer.serialize_quad(quad.as_ref()) {
                    Ok(_) => {
                        quad_count += 1;
                    }
                    Err(e) => {
                        eprintln!("Warning: Failed to serialize quad: {e}");
                        error_count += 1;
                    }
                }
            }
            Err(e) => {
                eprintln!("Warning: Parse error: {e}");
                error_count += 1;
            }
        }
    }

    // Step 6: Finalize serialization
    serializer
        .finish()
        .map_err(|e| format!("Failed to finalize serialization: {e}"))?;

    Ok((quad_count, error_count))
}

/// Parse RDF format string into RdfFormat enum
fn parse_rdf_format(format: &str) -> Result<RdfFormat, Box<dyn std::error::Error>> {
    match format.to_lowercase().as_str() {
        "turtle" | "ttl" => Ok(RdfFormat::Turtle),
        "ntriples" | "nt" => Ok(RdfFormat::NTriples),
        "nquads" | "nq" => Ok(RdfFormat::NQuads),
        "trig" => Ok(RdfFormat::TriG),
        "rdfxml" | "rdf" | "xml" => Ok(RdfFormat::RdfXml),
        "jsonld" | "json-ld" | "json" => Ok(RdfFormat::JsonLd {
            profile: oxirs_core::format::JsonLdProfileSet::empty(),
        }),
        "n3" => Ok(RdfFormat::N3),
        _ => Err(format!("Unsupported RDF format: {format}").into()),
    }
}
/// Migrate from Apache Jena TDB1 database to OxiRS
pub async fn from_tdb1(tdb_dir: PathBuf, dataset: String, skip_validation: bool) -> CommandResult {
    let ctx = CliContext::new();

    ctx.info("Migrating from Jena TDB1 to OxiRS");
    ctx.info(&format!("TDB1 directory: {}", tdb_dir.display()));
    ctx.info(&format!("Target dataset: {dataset}"));

    // Validate dataset name
    dataset_validation::validate_dataset_name(&dataset)?;

    // Check if TDB directory exists
    if !tdb_dir.exists() || !tdb_dir.is_dir() {
        return Err(format!("TDB1 directory not found: {}", tdb_dir.display()).into());
    }

    // Detect TDB version
    let tdb_version = detect_tdb_version(&tdb_dir)?;
    if tdb_version != "TDB1" {
        return Err(format!(
            "Directory appears to be {}, not TDB1. Use the appropriate migration command.",
            tdb_version
        )
        .into());
    }

    ctx.info("TDB1 database detected");

    // Start migration
    let start_time = Instant::now();
    let migration_progress = helpers::query_progress();
    migration_progress.set_message("Reading TDB1 database");

    // Read TDB1 data files
    let quads = read_tdb1_data(&tdb_dir, &ctx)?;

    let quads_count = quads.len();
    ctx.info(&format!("Found {} quads", quads_count));
    migration_progress.set_message("Processing quads");

    // Create target OxiRS dataset
    let dataset_path = PathBuf::from(&dataset);
    if dataset_path.exists() {
        return Err(format!("Dataset '{}' already exists", dataset).into());
    }

    fs::create_dir_all(&dataset_path)?;

    // Open OxiRS store
    let mut store = RdfStore::open(&dataset_path)
        .map_err(|e| format!("Failed to create OxiRS dataset: {}", e))?;

    migration_progress.set_message("Importing quads into OxiRS");

    // Import quads
    let mut imported = 0;
    let mut errors = 0;

    for quad in quads {
        match store.insert_quad(quad) {
            Ok(_) => imported += 1,
            Err(e) => {
                errors += 1;
                eprintln!("Warning: Failed to import quad: {}", e);
            }
        }
    }

    migration_progress.finish_with_message("Migration complete");

    let duration = start_time.elapsed();

    // Validation step
    if !skip_validation {
        ctx.info("Validating migrated data...");
        let validation_progress = helpers::query_progress();
        validation_progress.set_message("Counting triples");

        let oxirs_count = store
            .quads()
            .map_err(|e| format!("Validation failed: {}", e))?
            .len();

        validation_progress.finish_with_message("Validation complete");

        if oxirs_count != imported {
            ctx.warn(&format!(
                "Validation warning: Imported {} quads but found {} in OxiRS",
                imported, oxirs_count
            ));
        } else {
            ctx.success(&format!(
                "Validation passed: {} quads verified",
                oxirs_count
            ));
        }
    }

    // Report statistics
    ctx.info("Migration Statistics");
    ctx.success(&format!(
        "Migration completed in {:.2} seconds",
        duration.as_secs_f64()
    ));
    ctx.info(&format!("Quads imported: {}", imported));

    if errors > 0 {
        ctx.warn(&format!("Errors encountered: {}", errors));
    }

    ctx.info(&format!(
        "Average rate: {:.0} quads/second",
        imported as f64 / duration.as_secs_f64()
    ));
    ctx.success(&format!("Dataset created at: {}", dataset_path.display()));

    Ok(())
}

/// Migrate from Apache Jena TDB2 database to OxiRS
pub async fn from_tdb2(tdb_dir: PathBuf, dataset: String, skip_validation: bool) -> CommandResult {
    let ctx = CliContext::new();

    ctx.info("Migrating from Jena TDB2 to OxiRS");
    ctx.info(&format!("TDB2 directory: {}", tdb_dir.display()));
    ctx.info(&format!("Target dataset: {dataset}"));

    // Validate dataset name
    dataset_validation::validate_dataset_name(&dataset)?;

    // Check if TDB directory exists
    if !tdb_dir.exists() || !tdb_dir.is_dir() {
        return Err(format!("TDB2 directory not found: {}", tdb_dir.display()).into());
    }

    // Detect TDB version
    let tdb_version = detect_tdb_version(&tdb_dir)?;
    if tdb_version != "TDB2" {
        return Err(format!(
            "Directory appears to be {}, not TDB2. Use the appropriate migration command.",
            tdb_version
        )
        .into());
    }

    ctx.info("TDB2 database detected");

    // Start migration
    let start_time = Instant::now();
    let migration_progress = helpers::query_progress();
    migration_progress.set_message("Reading TDB2 database");

    // Read TDB2 data files
    let quads = read_tdb2_data(&tdb_dir, &ctx)?;

    let quads_count = quads.len();
    ctx.info(&format!("Found {} quads", quads_count));
    migration_progress.set_message("Processing quads");

    // Create target OxiRS dataset
    let dataset_path = PathBuf::from(&dataset);
    if dataset_path.exists() {
        return Err(format!("Dataset '{}' already exists", dataset).into());
    }

    fs::create_dir_all(&dataset_path)?;

    // Open OxiRS store
    let mut store = RdfStore::open(&dataset_path)
        .map_err(|e| format!("Failed to create OxiRS dataset: {}", e))?;

    migration_progress.set_message("Importing quads into OxiRS");

    // Import quads
    let mut imported = 0;
    let mut errors = 0;

    for quad in quads {
        match store.insert_quad(quad) {
            Ok(_) => imported += 1,
            Err(e) => {
                errors += 1;
                eprintln!("Warning: Failed to import quad: {}", e);
            }
        }
    }

    migration_progress.finish_with_message("Migration complete");

    let duration = start_time.elapsed();

    // Validation step
    if !skip_validation {
        ctx.info("Validating migrated data...");
        let validation_progress = helpers::query_progress();
        validation_progress.set_message("Counting triples");

        let oxirs_count = store
            .quads()
            .map_err(|e| format!("Validation failed: {}", e))?
            .len();

        validation_progress.finish_with_message("Validation complete");

        if oxirs_count != imported {
            ctx.warn(&format!(
                "Validation warning: Imported {} quads but found {} in OxiRS",
                imported, oxirs_count
            ));
        } else {
            ctx.success(&format!(
                "Validation passed: {} quads verified",
                oxirs_count
            ));
        }
    }

    // Report statistics
    ctx.info("Migration Statistics");
    ctx.success(&format!(
        "Migration completed in {:.2} seconds",
        duration.as_secs_f64()
    ));
    ctx.info(&format!("Quads imported: {}", imported));

    if errors > 0 {
        ctx.warn(&format!("Errors encountered: {}", errors));
    }

    ctx.info(&format!(
        "Average rate: {:.0} quads/second",
        imported as f64 / duration.as_secs_f64()
    ));
    ctx.success(&format!("Dataset created at: {}", dataset_path.display()));

    Ok(())
}

/// Migrate from Virtuoso database to OxiRS
pub async fn from_virtuoso(connection: String, dataset: String, graphs: String) -> CommandResult {
    let ctx = CliContext::new();

    ctx.info("Migrating from Virtuoso to OxiRS");
    ctx.info(&format!("Virtuoso endpoint: {}", connection));
    ctx.info(&format!("Target dataset: {}", dataset));

    // Validate dataset name
    dataset_validation::validate_dataset_name(&dataset)?;

    // Validate connection string (must be HTTP/HTTPS URL)
    if !connection.starts_with("http://") && !connection.starts_with("https://") {
        return Err(
            "Connection string must be an HTTP or HTTPS URL (e.g., http://localhost:8890/sparql)"
                .into(),
        );
    }

    // Parse graphs parameter
    let graph_list: Vec<String> = if graphs.is_empty() || graphs == "all" {
        vec![]
    } else {
        graphs.split(',').map(|s| s.trim().to_string()).collect()
    };

    let start_time = Instant::now();

    // Create target OxiRS dataset
    let dataset_path = PathBuf::from(&dataset);
    if dataset_path.exists() {
        return Err(format!("Dataset '{}' already exists", dataset).into());
    }

    fs::create_dir_all(&dataset_path)?;

    // Open OxiRS store
    let mut store = RdfStore::open(&dataset_path)
        .map_err(|e| format!("Failed to create OxiRS dataset: {}", e))?;

    // If no specific graphs requested, discover all named graphs
    let graphs_to_migrate = if graph_list.is_empty() {
        ctx.info("Discovering named graphs from Virtuoso...");
        discover_virtuoso_graphs(&connection).await?
    } else {
        graph_list
    };

    ctx.info(&format!(
        "Found {} graphs to migrate",
        graphs_to_migrate.len()
    ));

    // Migrate each graph
    let mut total_quads = 0;
    let mut total_errors = 0;

    let migrate_progress = helpers::query_progress();

    for (idx, graph_uri) in graphs_to_migrate.iter().enumerate() {
        migrate_progress.set_message("Migrating graphs");
        ctx.info(&format!(
            "Processing graph {}/{}: {}",
            idx + 1,
            graphs_to_migrate.len(),
            graph_uri
        ));

        match extract_virtuoso_graph(&connection, graph_uri, &mut store).await {
            Ok((quads, errors)) => {
                total_quads += quads;
                total_errors += errors;
                ctx.info(&format!("Graph '{}': {} quads imported", graph_uri, quads));
            }
            Err(e) => {
                ctx.warn(&format!("Failed to migrate graph '{}': {}", graph_uri, e));
                total_errors += 1;
            }
        }
    }

    migrate_progress.finish_with_message("Migration complete");

    let duration = start_time.elapsed();

    // Report statistics
    ctx.info("Migration Statistics");
    ctx.success(&format!(
        "Migration completed in {:.2} seconds",
        duration.as_secs_f64()
    ));
    ctx.info(&format!(
        "Total graphs migrated: {}",
        graphs_to_migrate.len()
    ));
    ctx.info(&format!("Total quads imported: {}", total_quads));

    if total_errors > 0 {
        ctx.warn(&format!("Errors encountered: {}", total_errors));
    }

    ctx.info(&format!(
        "Average rate: {:.0} quads/second",
        total_quads as f64 / duration.as_secs_f64()
    ));
    ctx.success(&format!("Dataset created at: {}", dataset_path.display()));

    Ok(())
}

/// Migrate from RDF4J repository to OxiRS
pub async fn from_rdf4j(repo_url: PathBuf, dataset: String) -> CommandResult {
    let ctx = CliContext::new();

    // Treat repo_url as a string (it's actually a URL, not a path)
    let repo_url_str = repo_url.to_str().ok_or("Invalid repository URL")?;

    ctx.info("Migrating from RDF4J to OxiRS");
    ctx.info(&format!("RDF4J repository: {}", repo_url_str));
    ctx.info(&format!("Target dataset: {}", dataset));

    // Validate dataset name
    dataset_validation::validate_dataset_name(&dataset)?;

    // Validate repository URL (must be HTTP/HTTPS URL)
    if !repo_url_str.starts_with("http://") && !repo_url_str.starts_with("https://") {
        return Err("Repository URL must be an HTTP or HTTPS URL (e.g., http://localhost:8080/rdf4j-server/repositories/myrepo)".into());
    }

    let start_time = Instant::now();

    // Create target OxiRS dataset
    let dataset_path = PathBuf::from(&dataset);
    if dataset_path.exists() {
        return Err(format!("Dataset '{}' already exists", dataset).into());
    }

    fs::create_dir_all(&dataset_path)?;

    // Open OxiRS store
    let mut store = RdfStore::open(&dataset_path)
        .map_err(|e| format!("Failed to create OxiRS dataset: {}", e))?;

    // Discover all contexts (named graphs) in RDF4J repository
    ctx.info("Discovering contexts from RDF4J...");
    let contexts = discover_rdf4j_contexts(repo_url_str).await?;

    ctx.info(&format!("Found {} contexts to migrate", contexts.len()));

    // Migrate each context
    let mut total_quads = 0;
    let mut total_errors = 0;

    let migrate_progress = helpers::query_progress();
    migrate_progress.set_message("Migrating contexts");

    for (idx, context) in contexts.iter().enumerate() {
        ctx.info(&format!(
            "Processing context {}/{}: {}",
            idx + 1,
            contexts.len(),
            context
        ));

        match extract_rdf4j_context(repo_url_str, context, &mut store).await {
            Ok((quads, errors)) => {
                total_quads += quads;
                total_errors += errors;
                ctx.info(&format!("Context '{}': {} quads imported", context, quads));
            }
            Err(e) => {
                ctx.warn(&format!("Failed to migrate context '{}': {}", context, e));
                total_errors += 1;
            }
        }
    }

    migrate_progress.finish_with_message("Migration complete");

    let duration = start_time.elapsed();

    // Report statistics
    ctx.info("Migration Statistics");
    ctx.success(&format!(
        "Migration completed in {:.2} seconds",
        duration.as_secs_f64()
    ));
    ctx.info(&format!("Total contexts migrated: {}", contexts.len()));
    ctx.info(&format!("Total quads imported: {}", total_quads));

    if total_errors > 0 {
        ctx.warn(&format!("Errors encountered: {}", total_errors));
    }

    ctx.info(&format!(
        "Average rate: {:.0} quads/second",
        total_quads as f64 / duration.as_secs_f64()
    ));
    ctx.success(&format!("Dataset created at: {}", dataset_path.display()));

    Ok(())
}

/// Migrate from Blazegraph database to OxiRS
pub async fn from_blazegraph(
    endpoint: String,
    dataset: String,
    namespace: String,
) -> CommandResult {
    let ctx = CliContext::new();

    ctx.info("Migrating from Blazegraph to OxiRS");
    ctx.info(&format!("Blazegraph endpoint: {}", endpoint));
    ctx.info(&format!("Namespace: {}", namespace));
    ctx.info(&format!("Target dataset: {}", dataset));

    // Validate dataset name
    dataset_validation::validate_dataset_name(&dataset)?;

    // Validate endpoint URL
    if !endpoint.starts_with("http://") && !endpoint.starts_with("https://") {
        return Err("Endpoint must be an HTTP or HTTPS URL (e.g., http://localhost:9999/blazegraph/namespace/kb/sparql)".into());
    }

    let start_time = Instant::now();

    // Create target OxiRS dataset
    let dataset_path = PathBuf::from(&dataset);
    if dataset_path.exists() {
        return Err(format!("Dataset '{}' already exists", dataset).into());
    }

    fs::create_dir_all(&dataset_path)?;

    // Open OxiRS store
    let mut store = RdfStore::open(&dataset_path)
        .map_err(|e| format!("Failed to create OxiRS dataset: {}", e))?;

    // Discover all named graphs in Blazegraph namespace
    ctx.info("Discovering named graphs from Blazegraph...");
    let graphs = discover_blazegraph_graphs(&endpoint).await?;

    ctx.info(&format!("Found {} graphs to migrate", graphs.len()));

    // Migrate each graph
    let mut total_quads = 0;
    let mut total_errors = 0;

    let migrate_progress = helpers::query_progress();
    migrate_progress.set_message("Migrating graphs");

    for (idx, graph_uri) in graphs.iter().enumerate() {
        ctx.info(&format!(
            "Processing graph {}/{}: {}",
            idx + 1,
            graphs.len(),
            graph_uri
        ));

        match extract_blazegraph_graph(&endpoint, graph_uri, &mut store).await {
            Ok((quads, errors)) => {
                total_quads += quads;
                total_errors += errors;
                ctx.info(&format!("Graph '{}': {} quads imported", graph_uri, quads));
            }
            Err(e) => {
                ctx.warn(&format!("Failed to migrate graph '{}': {}", graph_uri, e));
                total_errors += 1;
            }
        }
    }

    migrate_progress.finish_with_message("Migration complete");

    let duration = start_time.elapsed();

    // Report statistics
    ctx.info("Migration Statistics");
    ctx.success(&format!(
        "Migration completed in {:.2} seconds",
        duration.as_secs_f64()
    ));
    ctx.info(&format!("Total graphs migrated: {}", graphs.len()));
    ctx.info(&format!("Total quads imported: {}", total_quads));

    if total_errors > 0 {
        ctx.warn(&format!("Errors encountered: {}", total_errors));
    }

    ctx.info(&format!(
        "Average rate: {:.0} quads/second",
        total_quads as f64 / duration.as_secs_f64()
    ));
    ctx.success(&format!("Dataset created at: {}", dataset_path.display()));

    Ok(())
}

/// Migrate from Ontotext GraphDB to OxiRS
pub async fn from_graphdb(endpoint: String, dataset: String, repository: String) -> CommandResult {
    let ctx = CliContext::new();

    ctx.info("Migrating from GraphDB to OxiRS");
    ctx.info(&format!("GraphDB endpoint: {}", endpoint));
    ctx.info(&format!("Repository: {}", repository));
    ctx.info(&format!("Target dataset: {}", dataset));

    // Validate dataset name
    dataset_validation::validate_dataset_name(&dataset)?;

    // Validate endpoint URL
    if !endpoint.starts_with("http://") && !endpoint.starts_with("https://") {
        return Err("Endpoint must be an HTTP or HTTPS URL (e.g., http://localhost:7200/repositories/myrepo)".into());
    }

    let start_time = Instant::now();

    // Create target OxiRS dataset
    let dataset_path = PathBuf::from(&dataset);
    if dataset_path.exists() {
        return Err(format!("Dataset '{}' already exists", dataset).into());
    }

    fs::create_dir_all(&dataset_path)?;

    // Open OxiRS store
    let mut store = RdfStore::open(&dataset_path)
        .map_err(|e| format!("Failed to create OxiRS dataset: {}", e))?;

    // Discover all named graphs in GraphDB repository
    ctx.info("Discovering named graphs from GraphDB...");
    let graphs = discover_graphdb_graphs(&endpoint).await?;

    ctx.info(&format!("Found {} graphs to migrate", graphs.len()));

    // Migrate each graph
    let mut total_quads = 0;
    let mut total_errors = 0;

    let migrate_progress = helpers::query_progress();
    migrate_progress.set_message("Migrating graphs");

    for (idx, graph_uri) in graphs.iter().enumerate() {
        ctx.info(&format!(
            "Processing graph {}/{}: {}",
            idx + 1,
            graphs.len(),
            graph_uri
        ));

        match extract_graphdb_graph(&endpoint, graph_uri, &mut store).await {
            Ok((quads, errors)) => {
                total_quads += quads;
                total_errors += errors;
                ctx.info(&format!("Graph '{}': {} quads imported", graph_uri, quads));
            }
            Err(e) => {
                ctx.warn(&format!("Failed to migrate graph '{}': {}", graph_uri, e));
                total_errors += 1;
            }
        }
    }

    migrate_progress.finish_with_message("Migration complete");

    let duration = start_time.elapsed();

    // Report statistics
    ctx.info("Migration Statistics");
    ctx.success(&format!(
        "Migration completed in {:.2} seconds",
        duration.as_secs_f64()
    ));
    ctx.info(&format!("Total graphs migrated: {}", graphs.len()));
    ctx.info(&format!("Total quads imported: {}", total_quads));

    if total_errors > 0 {
        ctx.warn(&format!("Errors encountered: {}", total_errors));
    }

    ctx.info(&format!(
        "Average rate: {:.0} quads/second",
        total_quads as f64 / duration.as_secs_f64()
    ));
    ctx.success(&format!("Dataset created at: {}", dataset_path.display()));

    Ok(())
}

/// Detect TDB version from directory contents
fn detect_tdb_version(tdb_dir: &std::path::Path) -> Result<String, Box<dyn std::error::Error>> {
    // TDB1 has files like: nodes.dat, GSPO.idn, GOSP.idn, etc.
    // TDB2 has files like: nodes-data.bdf, GSPO.bpt, GOSP.bpt, etc.

    let tdb1_indicators = ["nodes.dat", "GSPO.idn", "GOSP.idn"];
    let tdb2_indicators = ["nodes-data.bdf", "GSPO.bpt", "GOSP.bpt"];

    let mut tdb1_score = 0;
    let mut tdb2_score = 0;

    for file in &tdb1_indicators {
        if tdb_dir.join(file).exists() {
            tdb1_score += 1;
        }
    }

    for file in &tdb2_indicators {
        if tdb_dir.join(file).exists() {
            tdb2_score += 1;
        }
    }

    if tdb1_score > tdb2_score && tdb1_score >= 2 {
        Ok("TDB1".to_string())
    } else if tdb2_score > tdb1_score && tdb2_score >= 2 {
        Ok("TDB2".to_string())
    } else if tdb1_score == 0 && tdb2_score == 0 {
        Err("Directory does not appear to be a TDB database".into())
    } else {
        Err("Unable to determine TDB version - directory may be corrupted".into())
    }
}

/// Read TDB1 data files and return quads
fn read_tdb1_data(
    tdb_dir: &std::path::Path,
    ctx: &CliContext,
) -> Result<Vec<Quad>, Box<dyn std::error::Error>> {
    ctx.info("Reading TDB1 data files...");

    // TDB1 uses a binary format that we need to parse
    // For now, we'll look for N-Triples/N-Quads dump files that users should create
    // using tdbdump before migration

    let dump_file = tdb_dir.join("dump.nq");
    if !dump_file.exists() {
        return Err(format!(
            "TDB1 migration requires a N-Quads dump file. Please run:\n\
             tdbdump --loc {} --out dump.nq\n\
             Then re-run this migration command.",
            tdb_dir.display()
        )
        .into());
    }

    ctx.info("Found N-Quads dump file");

    // Parse the N-Quads file
    let file = fs::File::open(&dump_file)?;
    let reader = BufReader::new(file);
    let parser = RdfParser::new(RdfFormat::NQuads);

    let mut quads = Vec::new();
    for quad_result in parser.for_reader(reader) {
        match quad_result {
            Ok(quad) => quads.push(quad),
            Err(e) => {
                eprintln!("Warning: Failed to parse quad: {}", e);
            }
        }
    }

    Ok(quads)
}

/// Read TDB2 data files and return quads
fn read_tdb2_data(
    tdb_dir: &std::path::Path,
    ctx: &CliContext,
) -> Result<Vec<Quad>, Box<dyn std::error::Error>> {
    ctx.info("Reading TDB2 data files...");

    // TDB2 also uses a binary format
    // For now, we'll look for N-Quads dump files that users should create
    // using tdb2.tdbdump before migration

    let dump_file = tdb_dir.join("dump.nq");
    if !dump_file.exists() {
        return Err(format!(
            "TDB2 migration requires a N-Quads dump file. Please run:\n\
             tdb2.tdbdump --loc {} --out dump.nq\n\
             Then re-run this migration command.",
            tdb_dir.display()
        )
        .into());
    }

    ctx.info("Found N-Quads dump file");

    // Parse the N-Quads file
    let file = fs::File::open(&dump_file)?;
    let reader = BufReader::new(file);
    let parser = RdfParser::new(RdfFormat::NQuads);

    let mut quads = Vec::new();
    for quad_result in parser.for_reader(reader) {
        match quad_result {
            Ok(quad) => quads.push(quad),
            Err(e) => {
                eprintln!("Warning: Failed to parse quad: {}", e);
            }
        }
    }

    Ok(quads)
}

/// Discover all named graphs in Virtuoso database
async fn discover_virtuoso_graphs(
    endpoint: &str,
) -> Result<Vec<String>, Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // SPARQL query to get all distinct named graphs
    let query = "SELECT DISTINCT ?g WHERE { GRAPH ?g { ?s ?p ?o } }";

    let response = client
        .post(endpoint)
        .header("Accept", "application/sparql-results+json")
        .form(&[("query", query)])
        .send()
        .await
        .map_err(|e| format!("Failed to connect to Virtuoso endpoint: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("Virtuoso query failed with status: {}", response.status()).into());
    }

    let result: serde_json::Value = response
        .json()
        .await
        .map_err(|e| format!("Failed to parse SPARQL results: {}", e))?;

    // Parse SPARQL JSON results
    let bindings = result["results"]["bindings"]
        .as_array()
        .ok_or("Invalid SPARQL results format")?;

    let graphs: Vec<String> = bindings
        .iter()
        .filter_map(|binding| binding["g"]["value"].as_str().map(|s| s.to_string()))
        .collect();

    Ok(graphs)
}

/// Extract all quads from a specific Virtuoso graph
async fn extract_virtuoso_graph(
    endpoint: &str,
    graph_uri: &str,
    store: &mut RdfStore,
) -> Result<(usize, usize), Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // SPARQL CONSTRUCT query to get all quads from the graph
    let query = format!(
        "CONSTRUCT {{ ?s ?p ?o }} WHERE {{ GRAPH <{}> {{ ?s ?p ?o }} }}",
        graph_uri
    );

    let response = client
        .post(endpoint)
        .header("Accept", "application/n-quads")
        .form(&[("query", &query)])
        .send()
        .await
        .map_err(|e| format!("Failed to query Virtuoso: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("Virtuoso query failed with status: {}", response.status()).into());
    }

    // Get response body as N-Quads
    let nquads_data = response
        .text()
        .await
        .map_err(|e| format!("Failed to read response: {}", e))?;

    // Convert to bytes for parsing
    let nquads_bytes = nquads_data.into_bytes();
    let cursor = Cursor::new(nquads_bytes);

    // Parse N-Quads data
    let parser = RdfParser::new(RdfFormat::NQuads);
    let mut quad_count = 0;
    let mut error_count = 0;

    for quad_result in parser.for_reader(cursor) {
        match quad_result {
            Ok(quad) => match store.insert_quad(quad) {
                Ok(_) => quad_count += 1,
                Err(e) => {
                    eprintln!("Warning: Failed to insert quad: {}", e);
                    error_count += 1;
                }
            },
            Err(e) => {
                eprintln!("Warning: Failed to parse quad: {}", e);
                error_count += 1;
            }
        }
    }

    Ok((quad_count, error_count))
}

/// Discover all contexts (named graphs) in RDF4J repository
async fn discover_rdf4j_contexts(
    repo_url: &str,
) -> Result<Vec<String>, Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // RDF4J SPARQL query to get all distinct contexts
    let query = "SELECT DISTINCT ?c WHERE { GRAPH ?c { ?s ?p ?o } }";

    // RDF4J uses /repositories/<repo-id>/query endpoint
    let response = client
        .get(repo_url)
        .query(&[("query", query)])
        .header("Accept", "application/sparql-results+json")
        .send()
        .await
        .map_err(|e| format!("Failed to connect to RDF4J repository: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("RDF4J query failed with status: {}", response.status()).into());
    }

    let result: serde_json::Value = response
        .json()
        .await
        .map_err(|e| format!("Failed to parse SPARQL results: {}", e))?;

    // Parse SPARQL JSON results
    let bindings = result["results"]["bindings"]
        .as_array()
        .ok_or("Invalid SPARQL results format")?;

    let contexts: Vec<String> = bindings
        .iter()
        .filter_map(|binding| binding["c"]["value"].as_str().map(|s| s.to_string()))
        .collect();

    Ok(contexts)
}

/// Extract all quads from a specific RDF4J context
async fn extract_rdf4j_context(
    repo_url: &str,
    context_uri: &str,
    store: &mut RdfStore,
) -> Result<(usize, usize), Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // RDF4J SPARQL CONSTRUCT query to get all quads from the context
    let query = format!(
        "CONSTRUCT {{ ?s ?p ?o }} WHERE {{ GRAPH <{}> {{ ?s ?p ?o }} }}",
        context_uri
    );

    // RDF4J returns statements endpoint for export
    // We'll use the query endpoint with CONSTRUCT
    let response = client
        .get(repo_url)
        .query(&[("query", &query)])
        .header("Accept", "application/n-quads")
        .send()
        .await
        .map_err(|e| format!("Failed to query RDF4J: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("RDF4J query failed with status: {}", response.status()).into());
    }

    // Get response body as N-Quads
    let nquads_data = response
        .text()
        .await
        .map_err(|e| format!("Failed to read response: {}", e))?;

    // Convert to bytes for parsing
    let nquads_bytes = nquads_data.into_bytes();
    let cursor = Cursor::new(nquads_bytes);

    // Parse N-Quads data
    let parser = RdfParser::new(RdfFormat::NQuads);
    let mut quad_count = 0;
    let mut error_count = 0;

    for quad_result in parser.for_reader(cursor) {
        match quad_result {
            Ok(quad) => match store.insert_quad(quad) {
                Ok(_) => quad_count += 1,
                Err(e) => {
                    eprintln!("Warning: Failed to insert quad: {}", e);
                    error_count += 1;
                }
            },
            Err(e) => {
                eprintln!("Warning: Failed to parse quad: {}", e);
                error_count += 1;
            }
        }
    }

    Ok((quad_count, error_count))
}

/// Discover all named graphs in Blazegraph database
async fn discover_blazegraph_graphs(
    endpoint: &str,
) -> Result<Vec<String>, Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // SPARQL query to get all distinct named graphs
    let query = "SELECT DISTINCT ?g WHERE { GRAPH ?g { ?s ?p ?o } }";

    let response = client
        .post(endpoint)
        .header("Accept", "application/sparql-results+json")
        .form(&[("query", query)])
        .send()
        .await
        .map_err(|e| format!("Failed to connect to Blazegraph endpoint: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("Blazegraph query failed with status: {}", response.status()).into());
    }

    let result: serde_json::Value = response
        .json()
        .await
        .map_err(|e| format!("Failed to parse SPARQL results: {}", e))?;

    // Parse SPARQL JSON results
    let bindings = result["results"]["bindings"]
        .as_array()
        .ok_or("Invalid SPARQL results format")?;

    let graphs: Vec<String> = bindings
        .iter()
        .filter_map(|binding| binding["g"]["value"].as_str().map(|s| s.to_string()))
        .collect();

    Ok(graphs)
}

/// Extract all quads from a specific Blazegraph graph
async fn extract_blazegraph_graph(
    endpoint: &str,
    graph_uri: &str,
    store: &mut RdfStore,
) -> Result<(usize, usize), Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // SPARQL CONSTRUCT query to get all quads from the graph
    let query = format!(
        "CONSTRUCT {{ ?s ?p ?o }} WHERE {{ GRAPH <{}> {{ ?s ?p ?o }} }}",
        graph_uri
    );

    let response = client
        .post(endpoint)
        .header("Accept", "application/n-quads")
        .form(&[("query", &query)])
        .send()
        .await
        .map_err(|e| format!("Failed to query Blazegraph: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("Blazegraph query failed with status: {}", response.status()).into());
    }

    // Get response body as N-Quads
    let nquads_data = response
        .text()
        .await
        .map_err(|e| format!("Failed to read response: {}", e))?;

    // Convert to bytes for parsing
    let nquads_bytes = nquads_data.into_bytes();
    let cursor = Cursor::new(nquads_bytes);

    // Parse N-Quads data
    let parser = RdfParser::new(RdfFormat::NQuads);
    let mut quad_count = 0;
    let mut error_count = 0;

    for quad_result in parser.for_reader(cursor) {
        match quad_result {
            Ok(quad) => match store.insert_quad(quad) {
                Ok(_) => quad_count += 1,
                Err(e) => {
                    eprintln!("Warning: Failed to insert quad: {}", e);
                    error_count += 1;
                }
            },
            Err(e) => {
                eprintln!("Warning: Failed to parse quad: {}", e);
                error_count += 1;
            }
        }
    }

    Ok((quad_count, error_count))
}

/// Discover all named graphs in GraphDB repository
async fn discover_graphdb_graphs(
    endpoint: &str,
) -> Result<Vec<String>, Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // SPARQL query to get all distinct named graphs
    let query = "SELECT DISTINCT ?g WHERE { GRAPH ?g { ?s ?p ?o } }";

    let response = client
        .get(endpoint)
        .query(&[("query", query)])
        .header("Accept", "application/sparql-results+json")
        .send()
        .await
        .map_err(|e| format!("Failed to connect to GraphDB endpoint: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("GraphDB query failed with status: {}", response.status()).into());
    }

    let result: serde_json::Value = response
        .json()
        .await
        .map_err(|e| format!("Failed to parse SPARQL results: {}", e))?;

    // Parse SPARQL JSON results
    let bindings = result["results"]["bindings"]
        .as_array()
        .ok_or("Invalid SPARQL results format")?;

    let graphs: Vec<String> = bindings
        .iter()
        .filter_map(|binding| binding["g"]["value"].as_str().map(|s| s.to_string()))
        .collect();

    Ok(graphs)
}

/// Extract all quads from a specific GraphDB graph
async fn extract_graphdb_graph(
    endpoint: &str,
    graph_uri: &str,
    store: &mut RdfStore,
) -> Result<(usize, usize), Box<dyn std::error::Error>> {
    let client = reqwest::Client::new();

    // SPARQL CONSTRUCT query to get all quads from the graph
    let query = format!(
        "CONSTRUCT {{ ?s ?p ?o }} WHERE {{ GRAPH <{}> {{ ?s ?p ?o }} }}",
        graph_uri
    );

    let response = client
        .get(endpoint)
        .query(&[("query", &query)])
        .header("Accept", "application/n-quads")
        .send()
        .await
        .map_err(|e| format!("Failed to query GraphDB: {}", e))?;

    if !response.status().is_success() {
        return Err(format!("GraphDB query failed with status: {}", response.status()).into());
    }

    // Get response body as N-Quads
    let nquads_data = response
        .text()
        .await
        .map_err(|e| format!("Failed to read response: {}", e))?;

    // Convert to bytes for parsing
    let nquads_bytes = nquads_data.into_bytes();
    let cursor = Cursor::new(nquads_bytes);

    // Parse N-Quads data
    let parser = RdfParser::new(RdfFormat::NQuads);
    let mut quad_count = 0;
    let mut error_count = 0;

    for quad_result in parser.for_reader(cursor) {
        match quad_result {
            Ok(quad) => match store.insert_quad(quad) {
                Ok(_) => quad_count += 1,
                Err(e) => {
                    eprintln!("Warning: Failed to insert quad: {}", e);
                    error_count += 1;
                }
            },
            Err(e) => {
                eprintln!("Warning: Failed to parse quad: {}", e);
                error_count += 1;
            }
        }
    }

    Ok((quad_count, error_count))
}