oxirs-arq 0.2.4

Jena-style SPARQL algebra with extension points and query optimization
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
//! SPARQL UPDATE Operations
//!
//! This module implements SPARQL 1.1 UPDATE operations including:
//! - INSERT DATA
//! - DELETE DATA
//! - INSERT WHERE
//! - DELETE WHERE
//! - DELETE/INSERT WHERE (combined)
//! - CLEAR, DROP, CREATE, COPY, MOVE, ADD

#[allow(unused_imports)]
use crate::algebra::{Algebra, EvaluationContext, Term, TriplePattern, Variable};
use crate::executor::ExecutionContext;
use oxirs_core::model::{BlankNode, GraphName, Literal as CoreLiteral, NamedNode, Quad};
use oxirs_core::OxirsError;
use oxirs_core::Store;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// SPARQL UPDATE operation types
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum UpdateOperation {
    /// INSERT DATA - insert concrete triples
    InsertData { data: Vec<QuadPattern> },

    /// DELETE DATA - delete concrete triples
    DeleteData { data: Vec<QuadPattern> },

    /// DELETE WHERE - delete based on pattern matching
    DeleteWhere { pattern: Box<Algebra> },

    /// INSERT WHERE - insert based on pattern matching with template
    InsertWhere {
        pattern: Box<Algebra>,
        template: Vec<QuadPattern>,
    },

    /// DELETE/INSERT WHERE - combined delete and insert
    DeleteInsertWhere {
        delete_template: Vec<QuadPattern>,
        insert_template: Vec<QuadPattern>,
        pattern: Box<Algebra>,
        using: Option<Vec<GraphReference>>,
    },

    /// CLEAR - remove all triples from graph(s)
    Clear { target: GraphTarget, silent: bool },

    /// DROP - remove graph(s) from the dataset
    Drop { target: GraphTarget, silent: bool },

    /// CREATE - create a new graph
    Create { graph: GraphReference, silent: bool },

    /// COPY - copy all data from one graph to another
    Copy {
        from: GraphTarget,
        to: GraphTarget,
        silent: bool,
    },

    /// MOVE - move all data from one graph to another
    Move {
        from: GraphTarget,
        to: GraphTarget,
        silent: bool,
    },

    /// ADD - add all data from one graph to another
    Add {
        from: GraphTarget,
        to: GraphTarget,
        silent: bool,
    },

    /// LOAD - load data from external source
    Load {
        source: String,
        graph: Option<GraphReference>,
        silent: bool,
    },
}

/// Pattern for quads in update operations
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct QuadPattern {
    pub subject: Term,
    pub predicate: Term,
    pub object: Term,
    pub graph: Option<GraphReference>,
}

/// Reference to a graph (IRI or DEFAULT)
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum GraphReference {
    Iri(String),
    Default,
}

/// Target for graph operations
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum GraphTarget {
    Graph(GraphReference),
    All,
    Named,
    Default,
}

/// Result of an update operation
#[derive(Debug, Clone, Default)]
pub struct UpdateResult {
    /// Number of triples/quads inserted
    pub inserted: usize,
    /// Number of triples/quads deleted
    pub deleted: usize,
    /// Graphs created
    pub graphs_created: Vec<String>,
    /// Graphs dropped
    pub graphs_dropped: Vec<String>,
}

/// Executor for SPARQL UPDATE operations
pub struct UpdateExecutor<'a> {
    store: &'a mut dyn Store,
    #[allow(dead_code)]
    context: ExecutionContext,
    /// Transaction mode for atomic updates
    transaction_mode: bool,
    /// Batch size for large updates
    batch_size: usize,
    /// Statistics tracking
    stats: UpdateStatistics,
}

/// Statistics for update operations
#[derive(Debug, Clone, Default)]
pub struct UpdateStatistics {
    pub total_operations: usize,
    pub total_execution_time: std::time::Duration,
    pub operations_per_second: f64,
    pub memory_usage: usize,
    pub batch_count: usize,
}

impl<'a> UpdateExecutor<'a> {
    /// Create a new update executor
    pub fn new(store: &'a mut dyn Store) -> Self {
        UpdateExecutor {
            store,
            context: ExecutionContext::default(),
            transaction_mode: false,
            batch_size: 10000, // Default batch size for large operations
            stats: UpdateStatistics::default(),
        }
    }

    /// Create a new update executor with transaction support
    pub fn with_transaction(store: &'a mut dyn Store) -> Self {
        UpdateExecutor {
            store,
            context: ExecutionContext::default(),
            transaction_mode: true,
            batch_size: 10000,
            stats: UpdateStatistics::default(),
        }
    }

    /// Configure batch size for large operations
    pub fn with_batch_size(mut self, batch_size: usize) -> Self {
        self.batch_size = batch_size.max(1);
        self
    }

    /// Get execution statistics
    pub fn statistics(&self) -> &UpdateStatistics {
        &self.stats
    }

    /// Reset statistics
    pub fn reset_statistics(&mut self) {
        self.stats = UpdateStatistics::default();
    }

    /// Execute an update operation with enhanced error handling and timing
    pub fn execute(&mut self, operation: &UpdateOperation) -> Result<UpdateResult, OxirsError> {
        let start_time = std::time::Instant::now();
        self.stats.total_operations += 1;

        // Start transaction if in transaction mode
        if self.transaction_mode {
            // Note: Transaction support would be implemented here
            // self.store.transaction_begin()?;
        }

        let result = match operation {
            UpdateOperation::InsertData { data } => self.execute_insert_data_enhanced(data),
            UpdateOperation::DeleteData { data } => self.execute_delete_data_enhanced(data),
            UpdateOperation::DeleteWhere { pattern } => self.execute_delete_where(pattern),
            UpdateOperation::InsertWhere { pattern, template } => {
                self.execute_insert_where(pattern, template)
            }
            UpdateOperation::DeleteInsertWhere {
                delete_template,
                insert_template,
                pattern,
                using,
            } => self.execute_delete_insert_where(delete_template, insert_template, pattern, using),
            UpdateOperation::Clear { target, silent } => self.execute_clear(target, *silent),
            UpdateOperation::Drop { target, silent } => self.execute_drop(target, *silent),
            UpdateOperation::Create { graph, silent } => self.execute_create(graph, *silent),
            UpdateOperation::Copy { from, to, silent } => self.execute_copy(from, to, *silent),
            UpdateOperation::Move { from, to, silent } => self.execute_move(from, to, *silent),
            UpdateOperation::Add { from, to, silent } => self.execute_add(from, to, *silent),
            UpdateOperation::Load {
                source,
                graph,
                silent,
            } => self.execute_load(source, graph.as_ref(), *silent),
        };

        // Handle transaction completion
        match &result {
            Ok(_) => {
                if self.transaction_mode {
                    // Note: Transaction commit would be implemented here
                    // self.store.transaction_commit()?;
                }
            }
            Err(_) => {
                if self.transaction_mode {
                    // Note: Transaction rollback would be implemented here
                    // self.store.transaction_rollback()?;
                }
            }
        }

        // Update statistics
        let execution_time = start_time.elapsed();
        self.stats.total_execution_time += execution_time;
        self.stats.operations_per_second =
            self.stats.total_operations as f64 / self.stats.total_execution_time.as_secs_f64();

        result
    }

    /// Execute INSERT DATA
    #[allow(dead_code)]
    fn execute_insert_data(&mut self, data: &[QuadPattern]) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        for pattern in data {
            // Convert pattern to concrete quad
            let quad = self.pattern_to_quad(pattern)?;

            // Insert into store
            self.store.insert(&quad)?;
            result.inserted += 1;
        }

        Ok(result)
    }

    /// Execute INSERT DATA with enhanced batching and validation
    fn execute_insert_data_enhanced(
        &mut self,
        data: &[QuadPattern],
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        if data.is_empty() {
            return Ok(result);
        }

        // For large datasets, use batching
        if data.len() > self.batch_size {
            for chunk in data.chunks(self.batch_size) {
                let batch_result = self.execute_insert_data_batch(chunk)?;
                result.inserted += batch_result.inserted;
                self.stats.batch_count += 1;
            }
        } else {
            // Small datasets - process directly
            for pattern in data {
                // Validate pattern before conversion
                self.validate_quad_pattern(pattern)?;

                // Convert pattern to concrete quad
                let quad = self.pattern_to_quad(pattern)?;

                // Insert into store
                self.store.insert(&quad)?;
                result.inserted += 1;
            }
        }

        Ok(result)
    }

    /// Execute a batch of INSERT DATA operations
    fn execute_insert_data_batch(
        &mut self,
        batch: &[QuadPattern],
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();
        let mut quads_to_insert = Vec::with_capacity(batch.len());

        // First pass: validate and convert all patterns
        for pattern in batch {
            self.validate_quad_pattern(pattern)?;
            let quad = self.pattern_to_quad(pattern)?;
            quads_to_insert.push(quad);
        }

        // Second pass: batch insert all quads
        for quad in quads_to_insert {
            self.store.insert(&quad)?;
            result.inserted += 1;
        }

        Ok(result)
    }

    /// Validate a quad pattern before processing
    fn validate_quad_pattern(&self, pattern: &QuadPattern) -> Result<(), OxirsError> {
        // Check that variables are not present in INSERT DATA (they should be concrete)
        if matches!(pattern.subject, Term::Variable(_)) {
            return Err(OxirsError::Query(
                "Variables not allowed in INSERT DATA subject".to_string(),
            ));
        }
        if matches!(pattern.predicate, Term::Variable(_)) {
            return Err(OxirsError::Query(
                "Variables not allowed in INSERT DATA predicate".to_string(),
            ));
        }
        if matches!(pattern.object, Term::Variable(_)) {
            return Err(OxirsError::Query(
                "Variables not allowed in INSERT DATA object".to_string(),
            ));
        }

        // Validate IRIs are well-formed
        if let Term::Iri(iri) = &pattern.subject {
            if iri.as_str().is_empty() {
                return Err(OxirsError::Query("Empty IRI in subject".to_string()));
            }
        }
        if let Term::Iri(iri) = &pattern.predicate {
            if iri.as_str().is_empty() {
                return Err(OxirsError::Query("Empty IRI in predicate".to_string()));
            }
        }
        if let Term::Iri(iri) = &pattern.object {
            if iri.as_str().is_empty() {
                return Err(OxirsError::Query("Empty IRI in object".to_string()));
            }
        }

        Ok(())
    }

    /// Execute DELETE DATA
    #[allow(dead_code)]
    fn execute_delete_data(&mut self, data: &[QuadPattern]) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        for pattern in data {
            // Convert pattern to concrete quad
            let quad = self.pattern_to_quad(pattern)?;

            // Delete from store
            if self.store.remove(&quad)? {
                result.deleted += 1;
            }
        }

        Ok(result)
    }

    /// Execute DELETE DATA with enhanced batching and validation
    fn execute_delete_data_enhanced(
        &mut self,
        data: &[QuadPattern],
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        if data.is_empty() {
            return Ok(result);
        }

        // For large datasets, use batching
        if data.len() > self.batch_size {
            for chunk in data.chunks(self.batch_size) {
                let batch_result = self.execute_delete_data_batch(chunk)?;
                result.deleted += batch_result.deleted;
                self.stats.batch_count += 1;
            }
        } else {
            // Small datasets - process directly
            for pattern in data {
                // Validate pattern before conversion
                self.validate_quad_pattern(pattern)?;

                // Convert pattern to concrete quad
                let quad = self.pattern_to_quad(pattern)?;

                // Delete from store
                if self.store.remove(&quad)? {
                    result.deleted += 1;
                }
            }
        }

        Ok(result)
    }

    /// Execute a batch of DELETE DATA operations
    fn execute_delete_data_batch(
        &mut self,
        batch: &[QuadPattern],
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();
        let mut quads_to_delete = Vec::with_capacity(batch.len());

        // First pass: validate and convert all patterns
        for pattern in batch {
            self.validate_quad_pattern(pattern)?;
            let quad = self.pattern_to_quad(pattern)?;
            quads_to_delete.push(quad);
        }

        // Second pass: batch delete all quads
        for quad in quads_to_delete {
            if self.store.remove(&quad)? {
                result.deleted += 1;
            }
        }

        Ok(result)
    }

    /// Execute DELETE WHERE
    fn execute_delete_where(&mut self, pattern: &Algebra) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        // Evaluate pattern to get bindings
        let bindings = self.evaluate_pattern(pattern)?;

        if bindings.is_empty() {
            return Ok(result); // No matches to delete
        }

        // Track quads to delete to avoid deletion during iteration
        let mut quads_to_delete = Vec::new();

        // For each binding, collect matching quads
        for binding in &bindings {
            let quads = self.apply_binding_to_pattern(pattern, binding)?;
            quads_to_delete.extend(quads);
        }

        // Remove duplicates for efficiency
        quads_to_delete.sort();
        quads_to_delete.dedup();

        // Batch delete for large operations
        if quads_to_delete.len() > self.batch_size {
            for chunk in quads_to_delete.chunks(self.batch_size) {
                for quad in chunk {
                    if self.store.remove(quad)? {
                        result.deleted += 1;
                    }
                }
                self.stats.batch_count += 1;
            }
        } else {
            // Direct deletion for smaller sets
            for quad in quads_to_delete {
                if self.store.remove(&quad)? {
                    result.deleted += 1;
                }
            }
        }

        Ok(result)
    }

    /// Execute INSERT WHERE
    fn execute_insert_where(
        &mut self,
        pattern: &Algebra,
        template: &[QuadPattern],
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        if template.is_empty() {
            return Ok(result); // Nothing to insert
        }

        // Evaluate pattern to get bindings
        let bindings = self.evaluate_pattern(pattern)?;

        if bindings.is_empty() {
            return Ok(result); // No matches, nothing to insert
        }

        // Track quads to insert
        let mut quads_to_insert = Vec::new();

        // For each binding, instantiate template
        for binding in &bindings {
            for quad_pattern in template {
                match self.instantiate_template(quad_pattern, binding) {
                    Ok(quad) => quads_to_insert.push(quad),
                    Err(e) => {
                        // Log the error but continue with other insertions
                        eprintln!("Warning: Failed to instantiate template: {e}");
                    }
                }
            }
        }

        // Remove duplicates for efficiency
        quads_to_insert.sort();
        quads_to_insert.dedup();

        // Batch insert for large operations
        if quads_to_insert.len() > self.batch_size {
            for chunk in quads_to_insert.chunks(self.batch_size) {
                for quad in chunk {
                    self.store.insert(quad)?;
                    result.inserted += 1;
                }
                self.stats.batch_count += 1;
            }
        } else {
            // Direct insertion for smaller sets
            for quad in quads_to_insert {
                self.store.insert(&quad)?;
                result.inserted += 1;
            }
        }

        Ok(result)
    }

    /// Execute DELETE/INSERT WHERE with enhanced error handling and batching
    fn execute_delete_insert_where(
        &mut self,
        delete_template: &[QuadPattern],
        insert_template: &[QuadPattern],
        pattern: &Algebra,
        _using: &Option<Vec<GraphReference>>,
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        if delete_template.is_empty() && insert_template.is_empty() {
            return Ok(result); // Nothing to do
        }

        // Evaluate pattern to get bindings
        let bindings = self.evaluate_pattern(pattern)?;

        if bindings.is_empty() {
            return Ok(result); // No matches
        }

        // Phase 1: Collect quads to delete
        let mut quads_to_delete = Vec::new();
        if !delete_template.is_empty() {
            for binding in &bindings {
                for quad_pattern in delete_template {
                    match self.instantiate_template(quad_pattern, binding) {
                        Ok(quad) => quads_to_delete.push(quad),
                        Err(e) => {
                            eprintln!("Warning: Failed to instantiate delete template: {e}");
                        }
                    }
                }
            }

            // Remove duplicates for efficiency
            quads_to_delete.sort();
            quads_to_delete.dedup();
        }

        // Phase 2: Collect quads to insert
        let mut quads_to_insert = Vec::new();
        if !insert_template.is_empty() {
            for binding in &bindings {
                for quad_pattern in insert_template {
                    match self.instantiate_template(quad_pattern, binding) {
                        Ok(quad) => quads_to_insert.push(quad),
                        Err(e) => {
                            eprintln!("Warning: Failed to instantiate insert template: {e}");
                        }
                    }
                }
            }

            // Remove duplicates for efficiency
            quads_to_insert.sort();
            quads_to_insert.dedup();
        }

        // Phase 3: Execute deletions first (important for atomicity)
        if !quads_to_delete.is_empty() {
            if quads_to_delete.len() > self.batch_size {
                for chunk in quads_to_delete.chunks(self.batch_size) {
                    for quad in chunk {
                        if self.store.remove(quad)? {
                            result.deleted += 1;
                        }
                    }
                    self.stats.batch_count += 1;
                }
            } else {
                for quad in quads_to_delete {
                    if self.store.remove(&quad)? {
                        result.deleted += 1;
                    }
                }
            }
        }

        // Phase 4: Execute insertions
        if !quads_to_insert.is_empty() {
            if quads_to_insert.len() > self.batch_size {
                for chunk in quads_to_insert.chunks(self.batch_size) {
                    for quad in chunk {
                        self.store.insert(quad)?;
                        result.inserted += 1;
                    }
                    self.stats.batch_count += 1;
                }
            } else {
                for quad in quads_to_insert {
                    self.store.insert(&quad)?;
                    result.inserted += 1;
                }
            }
        }

        Ok(result)
    }

    /// Execute CLEAR
    fn execute_clear(
        &mut self,
        target: &GraphTarget,
        silent: bool,
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        match target {
            GraphTarget::All => {
                // Clear all graphs including default
                result.deleted = self.store.clear_all()?;
            }
            GraphTarget::Named => {
                // Clear all named graphs but not default
                result.deleted = self.store.clear_named_graphs()?;
            }
            GraphTarget::Default => {
                // Clear only default graph
                result.deleted = self.store.clear_default_graph()?;
            }
            GraphTarget::Graph(graph_ref) => {
                // Clear specific graph
                let graph_name = self.graph_ref_to_named_node(graph_ref)?;
                match self
                    .store
                    .clear_graph(Some(&GraphName::NamedNode(graph_name)))
                {
                    Ok(count) => result.deleted = count,
                    Err(e) if !silent => return Err(e),
                    _ => {} // Silent mode - ignore errors
                }
            }
        }

        Ok(result)
    }

    /// Execute DROP
    fn execute_drop(
        &mut self,
        target: &GraphTarget,
        silent: bool,
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        match target {
            GraphTarget::All => {
                // Drop all graphs
                let graphs = self.store.graphs()?;
                for graph in graphs {
                    self.store
                        .drop_graph(Some(&GraphName::NamedNode(graph.clone())))?;
                    result.graphs_dropped.push(graph.as_str().to_string());
                }
            }
            GraphTarget::Named => {
                // Drop all named graphs
                let graphs = self.store.named_graphs()?;
                for graph in graphs {
                    self.store
                        .drop_graph(Some(&GraphName::NamedNode(graph.clone())))?;
                    result.graphs_dropped.push(graph.as_str().to_string());
                }
            }
            GraphTarget::Default => {
                // Cannot drop default graph - only clear it
                if !silent {
                    return Err(OxirsError::Query("Cannot DROP DEFAULT graph".to_string()));
                }
            }
            GraphTarget::Graph(graph_ref) => {
                let graph_name = self.graph_ref_to_named_node(graph_ref)?;
                match self
                    .store
                    .drop_graph(Some(&GraphName::NamedNode(graph_name.clone())))
                {
                    Ok(_) => result.graphs_dropped.push(graph_name.as_str().to_string()),
                    Err(e) if !silent => return Err(e),
                    _ => {} // Silent mode
                }
            }
        }

        Ok(result)
    }

    /// Execute CREATE
    fn execute_create(
        &mut self,
        graph: &GraphReference,
        silent: bool,
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        let graph_name = self.graph_ref_to_named_node(graph)?;

        match self.store.create_graph(Some(&graph_name)) {
            Ok(_) => {
                result.graphs_created.push(graph_name.as_str().to_string());
            }
            Err(e) => {
                if !silent {
                    return Err(e);
                }
            }
        }

        Ok(result)
    }

    /// Execute COPY
    fn execute_copy(
        &mut self,
        from: &GraphTarget,
        to: &GraphTarget,
        silent: bool,
    ) -> Result<UpdateResult, OxirsError> {
        // First clear the target
        self.execute_clear(to, silent)?;

        // Then add from source to target
        self.execute_add(from, to, silent)
    }

    /// Execute MOVE
    fn execute_move(
        &mut self,
        from: &GraphTarget,
        to: &GraphTarget,
        silent: bool,
    ) -> Result<UpdateResult, OxirsError> {
        // First copy
        let result = self.execute_copy(from, to, silent)?;

        // Then clear source
        self.execute_clear(from, silent)?;

        Ok(result)
    }

    /// Execute ADD
    fn execute_add(
        &mut self,
        from: &GraphTarget,
        to: &GraphTarget,
        _silent: bool,
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        // Get quads from source
        let source_quads = self.get_quads_from_target(from)?;

        // Determine target graph
        let target_graph = match to {
            GraphTarget::Graph(g) => Some(self.graph_ref_to_named_node(g)?),
            GraphTarget::Default => None,
            _ => {
                return Err(OxirsError::Query(
                    "Invalid target for ADD operation".to_string(),
                ))
            }
        };

        // Insert quads into target
        for quad in source_quads {
            let new_quad = if let Some(ref target) = target_graph {
                Quad::new(
                    quad.subject().clone(),
                    quad.predicate().clone(),
                    quad.object().clone(),
                    GraphName::NamedNode(target.clone()),
                )
            } else {
                Quad::new(
                    quad.subject().clone(),
                    quad.predicate().clone(),
                    quad.object().clone(),
                    GraphName::DefaultGraph,
                )
            };

            self.store.insert(&new_quad)?;
            result.inserted += 1;
        }

        Ok(result)
    }

    /// Execute LOAD
    fn execute_load(
        &mut self,
        source: &str,
        graph: Option<&GraphReference>,
        silent: bool,
    ) -> Result<UpdateResult, OxirsError> {
        let mut result = UpdateResult::default();

        // Determine target graph
        let target_graph = graph.map(|g| self.graph_ref_to_named_node(g)).transpose()?;

        // Load data from source
        match self.store.load_from_url(source, target_graph.as_ref()) {
            Ok(count) => {
                result.inserted = count;
            }
            Err(e) if !silent => return Err(e),
            _ => {} // Silent mode
        }

        Ok(result)
    }

    // Helper methods

    /// Convert a quad pattern to a concrete quad
    fn pattern_to_quad(&self, pattern: &QuadPattern) -> Result<Quad, OxirsError> {
        let subject = self.term_to_subject(&pattern.subject)?;
        let predicate = self.term_to_predicate(&pattern.predicate)?;
        let object = self.term_to_object(&pattern.object)?;
        let graph_name = pattern
            .graph
            .as_ref()
            .map(|g| self.graph_ref_to_named_node(g))
            .transpose()?
            .map(GraphName::NamedNode)
            .unwrap_or(GraphName::DefaultGraph);

        Ok(Quad::new(subject, predicate, object, graph_name))
    }

    /// Convert Term to subject
    fn term_to_subject(&self, term: &Term) -> Result<oxirs_core::model::Subject, OxirsError> {
        match term {
            Term::Iri(iri) => Ok(NamedNode::new(iri.as_str())?.into()),
            Term::BlankNode(id) => Ok(BlankNode::new(id)?.into()),
            Term::Variable(_) => Err(OxirsError::Query(
                "Variables not allowed in concrete data".to_string(),
            )),
            Term::Literal(_) => Err(OxirsError::Query(
                "Literals cannot be used as subjects".to_string(),
            )),
            Term::QuotedTriple(_) => Err(OxirsError::Query(
                "Quoted triples not yet supported as subjects in concrete data".to_string(),
            )),
            Term::PropertyPath(_) => Err(OxirsError::Query(
                "Property paths not allowed as subjects in concrete data".to_string(),
            )),
        }
    }

    /// Convert Term to predicate
    fn term_to_predicate(&self, term: &Term) -> Result<NamedNode, OxirsError> {
        match term {
            Term::Iri(iri) => NamedNode::new(iri.as_str()),
            Term::Variable(_) => Err(OxirsError::Query(
                "Variables not allowed in concrete data".to_string(),
            )),
            Term::BlankNode(_) => Err(OxirsError::Query(
                "Blank nodes cannot be used as predicates in most RDF contexts".to_string(),
            )),
            Term::Literal(_) => Err(OxirsError::Query(
                "Literals cannot be used as predicates".to_string(),
            )),
            Term::QuotedTriple(_) => Err(OxirsError::Query(
                "Quoted triples not supported as predicates in concrete data".to_string(),
            )),
            Term::PropertyPath(_) => Err(OxirsError::Query(
                "Property paths not allowed as predicates in concrete data".to_string(),
            )),
        }
    }

    /// Convert Term to object
    fn term_to_object(&self, term: &Term) -> Result<oxirs_core::model::Object, OxirsError> {
        match term {
            Term::Iri(iri) => Ok(NamedNode::new(iri.as_str())?.into()),
            Term::BlankNode(id) => Ok(BlankNode::new(id)?.into()),
            Term::Literal(lit) => {
                let literal = if let Some(lang) = &lit.language {
                    CoreLiteral::new_language_tagged_literal(&lit.value, lang)?
                } else if let Some(dt) = &lit.datatype {
                    CoreLiteral::new_typed(&lit.value, dt.clone())
                } else {
                    CoreLiteral::new(&lit.value)
                };
                Ok(literal.into())
            }
            Term::Variable(_) => Err(OxirsError::Query(
                "Variables not allowed in concrete data".to_string(),
            )),
            Term::QuotedTriple(_) => Err(OxirsError::Query(
                "Quoted triples not yet supported in concrete data".to_string(),
            )),
            Term::PropertyPath(_) => Err(OxirsError::Query(
                "Property paths not allowed in concrete data".to_string(),
            )),
        }
    }

    /// Convert graph reference to named node
    fn graph_ref_to_named_node(&self, graph_ref: &GraphReference) -> Result<NamedNode, OxirsError> {
        match graph_ref {
            GraphReference::Iri(iri) => NamedNode::new(iri),
            GraphReference::Default => Err(OxirsError::Query(
                "DEFAULT is not a valid graph IRI".to_string(),
            )),
        }
    }

    /// Evaluate a pattern to get variable bindings
    fn evaluate_pattern(
        &mut self,
        pattern: &Algebra,
    ) -> Result<Vec<HashMap<String, oxirs_core::model::Term>>, OxirsError> {
        use crate::executor::QueryExecutor;

        // Create evaluation context
        let mut context = EvaluationContext::default();

        // Create query executor
        let mut executor = QueryExecutor::new();

        // Execute the pattern and collect bindings
        let results = executor
            .execute_algebra(pattern, &mut context)
            .map_err(|e| OxirsError::Query(e.to_string()))?;

        // Convert results to the expected format
        let mut bindings = Vec::new();
        for solution in results {
            for binding in solution {
                let mut converted_binding = HashMap::new();
                for (var, term) in binding {
                    // Convert from algebra::Term to term::Term and then to oxirs_core::model::Term
                    let arq_term = crate::term::Term::from_algebra_term(&term);
                    let core_term = self.convert_term_to_core(&arq_term)?;
                    converted_binding.insert(var.as_str().to_string(), core_term);
                }
                bindings.push(converted_binding);
            }
        }

        Ok(bindings)
    }

    /// Apply bindings to pattern to get concrete quads
    fn apply_binding_to_pattern(
        &self,
        pattern: &Algebra,
        binding: &HashMap<String, oxirs_core::model::Term>,
    ) -> Result<Vec<Quad>, OxirsError> {
        let mut quads = Vec::new();

        // Extract triple patterns from the algebra
        let triple_patterns = self.extract_triple_patterns(pattern);

        for triple_pattern in triple_patterns {
            // Instantiate each term with the binding
            let subject_term = self.instantiate_algebra_term(&triple_pattern.subject, binding)?;
            let predicate_term =
                self.instantiate_algebra_term(&triple_pattern.predicate, binding)?;
            let object_term = self.instantiate_algebra_term(&triple_pattern.object, binding)?;

            // Convert terms to appropriate types for Quad
            let subject = self.core_term_to_subject(subject_term)?;
            let predicate = self.core_term_to_predicate(predicate_term)?;
            let object = self.core_term_to_object(object_term)?;

            // Default graph unless specified otherwise
            let graph_name = GraphName::DefaultGraph;

            // Create the quad
            let quad = Quad::new(subject, predicate, object, graph_name);
            quads.push(quad);
        }

        Ok(quads)
    }

    /// Instantiate a template with bindings
    fn instantiate_template(
        &self,
        template: &QuadPattern,
        binding: &HashMap<String, oxirs_core::model::Term>,
    ) -> Result<Quad, OxirsError> {
        let subject = self.instantiate_term(&template.subject, binding)?;
        let predicate = self.instantiate_term(&template.predicate, binding)?;
        let object = self.instantiate_term(&template.object, binding)?;

        let subject = self.term_to_subject(&subject)?;
        let predicate = self.term_to_predicate(&predicate)?;
        let object = self.term_to_object(&object)?;

        let graph_name = template
            .graph
            .as_ref()
            .map(|g| self.graph_ref_to_named_node(g))
            .transpose()?
            .map(GraphName::NamedNode)
            .unwrap_or(GraphName::DefaultGraph);

        Ok(Quad::new(subject, predicate, object, graph_name))
    }

    /// Instantiate a term with bindings
    fn instantiate_term(
        &self,
        term: &Term,
        binding: &HashMap<String, oxirs_core::model::Term>,
    ) -> Result<Term, OxirsError> {
        match term {
            Term::Variable(var) => binding
                .get(var.as_str())
                .map(|t| self.core_term_to_arq_term(t))
                .ok_or_else(|| OxirsError::Query(format!("Unbound variable: {var}"))),
            _ => Ok(term.clone()),
        }
    }

    /// Convert core term to ARQ term
    fn core_term_to_arq_term(&self, term: &oxirs_core::model::Term) -> Term {
        match term {
            oxirs_core::model::Term::NamedNode(n) => Term::Iri(n.clone()),
            oxirs_core::model::Term::BlankNode(b) => Term::BlankNode(b.as_str().to_string()),
            oxirs_core::model::Term::Literal(l) => {
                let lit = crate::algebra::Literal {
                    value: l.value().to_string(),
                    language: l.language().map(|s| s.to_string()),
                    datatype: Some(l.datatype().into()),
                };
                Term::Literal(lit)
            }
            oxirs_core::model::Term::Variable(_) | oxirs_core::model::Term::QuotedTriple(_) => {
                panic!("Variables and quoted triples not supported in update operations")
            }
        }
    }

    /// Get quads from a graph target
    fn get_quads_from_target(&self, target: &GraphTarget) -> Result<Vec<Quad>, OxirsError> {
        match target {
            GraphTarget::All => self.store.quads(),
            GraphTarget::Named => self.store.named_graph_quads(),
            GraphTarget::Default => self.store.default_graph_quads(),
            GraphTarget::Graph(graph_ref) => {
                let graph = self.graph_ref_to_named_node(graph_ref)?;
                self.store.graph_quads(Some(&graph))
            }
        }
    }

    /// Convert a term from arq::Term to oxirs_core::model::Term
    fn convert_term_to_core(
        &self,
        term: &crate::term::Term,
    ) -> Result<oxirs_core::model::Term, OxirsError> {
        use oxirs_core::model::Term as CoreTerm;

        match term {
            crate::term::Term::Iri(iri) => Ok(CoreTerm::NamedNode(NamedNode::new(iri)?)),
            crate::term::Term::BlankNode(id) => Ok(CoreTerm::BlankNode(BlankNode::new(id)?)),
            crate::term::Term::Literal(lit) => {
                let core_literal = if let Some(lang) = &lit.language_tag {
                    CoreLiteral::new_language_tagged_literal(&lit.lexical_form, lang)?
                } else if lit.datatype != "http://www.w3.org/2001/XMLSchema#string" {
                    CoreLiteral::new_typed(&lit.lexical_form, NamedNode::new(&lit.datatype)?)
                } else {
                    CoreLiteral::new_simple_literal(&lit.lexical_form)
                };
                Ok(CoreTerm::Literal(core_literal))
            }
            crate::term::Term::Variable(_) => Err(OxirsError::Query(
                "Cannot convert variable to concrete term".to_string(),
            )),
            crate::term::Term::QuotedTriple(_) => Err(OxirsError::Query(
                "Cannot convert quoted triple to concrete term".to_string(),
            )),
            crate::term::Term::PropertyPath(_) => Err(OxirsError::Query(
                "Cannot convert property path to concrete term".to_string(),
            )),
        }
    }

    /// Extract triple patterns from algebra expression
    #[allow(clippy::only_used_in_recursion)]
    fn extract_triple_patterns(&self, algebra: &Algebra) -> Vec<TriplePattern> {
        let mut patterns = Vec::new();

        match algebra {
            Algebra::Bgp(bgp_patterns) => {
                patterns.extend(bgp_patterns.iter().cloned());
            }
            Algebra::Join { left, right } => {
                patterns.extend(self.extract_triple_patterns(left));
                patterns.extend(self.extract_triple_patterns(right));
            }
            Algebra::LeftJoin { left, right, .. } => {
                patterns.extend(self.extract_triple_patterns(left));
                patterns.extend(self.extract_triple_patterns(right));
            }
            Algebra::Union { left, right } => {
                patterns.extend(self.extract_triple_patterns(left));
                patterns.extend(self.extract_triple_patterns(right));
            }
            Algebra::Filter { pattern, .. } => {
                patterns.extend(self.extract_triple_patterns(pattern));
            }
            Algebra::Extend { pattern, .. } => {
                patterns.extend(self.extract_triple_patterns(pattern));
            }
            Algebra::Minus { left, right } => {
                patterns.extend(self.extract_triple_patterns(left));
                patterns.extend(self.extract_triple_patterns(right));
            }
            Algebra::Service { pattern, .. } => {
                patterns.extend(self.extract_triple_patterns(pattern));
            }
            // For other algebra types, we don't extract patterns
            _ => {}
        }

        patterns
    }

    /// Instantiate an algebra term with variable bindings
    fn instantiate_algebra_term(
        &self,
        term: &Term,
        binding: &HashMap<String, oxirs_core::model::Term>,
    ) -> Result<oxirs_core::model::Term, OxirsError> {
        match term {
            Term::Variable(var) => binding
                .get(var.as_str())
                .cloned()
                .ok_or_else(|| OxirsError::Query(format!("Unbound variable: {var}"))),
            _ => {
                // Convert algebra term to arq term and then to core term
                let arq_term = crate::term::Term::from_algebra_term(term);
                self.convert_term_to_core(&arq_term)
            }
        }
    }

    /// Convert oxirs_core::model::Term to Subject
    fn core_term_to_subject(
        &self,
        term: oxirs_core::model::Term,
    ) -> Result<oxirs_core::Subject, OxirsError> {
        match term {
            oxirs_core::model::Term::NamedNode(node) => Ok(oxirs_core::Subject::NamedNode(node)),
            oxirs_core::model::Term::BlankNode(node) => Ok(oxirs_core::Subject::BlankNode(node)),
            oxirs_core::model::Term::Variable(var) => Ok(oxirs_core::Subject::Variable(var)),
            _ => Err(OxirsError::Query("Invalid subject term type".to_string())),
        }
    }

    /// Convert oxirs_core::model::Term to Predicate
    fn core_term_to_predicate(
        &self,
        term: oxirs_core::model::Term,
    ) -> Result<oxirs_core::Predicate, OxirsError> {
        match term {
            oxirs_core::model::Term::NamedNode(node) => Ok(oxirs_core::Predicate::NamedNode(node)),
            oxirs_core::model::Term::Variable(var) => Ok(oxirs_core::Predicate::Variable(var)),
            _ => Err(OxirsError::Query("Invalid predicate term type".to_string())),
        }
    }

    /// Convert oxirs_core::model::Term to Object
    fn core_term_to_object(
        &self,
        term: oxirs_core::model::Term,
    ) -> Result<oxirs_core::Object, OxirsError> {
        match term {
            oxirs_core::model::Term::NamedNode(node) => Ok(oxirs_core::Object::NamedNode(node)),
            oxirs_core::model::Term::BlankNode(node) => Ok(oxirs_core::Object::BlankNode(node)),
            oxirs_core::model::Term::Literal(lit) => Ok(oxirs_core::Object::Literal(lit)),
            oxirs_core::model::Term::Variable(var) => Ok(oxirs_core::Object::Variable(var)),
            oxirs_core::model::Term::QuotedTriple(qt) => Ok(oxirs_core::Object::QuotedTriple(qt)),
        }
    }
}

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

    #[test]
    fn test_update_result_default() {
        let result = UpdateResult::default();
        assert_eq!(result.inserted, 0);
        assert_eq!(result.deleted, 0);
        assert!(result.graphs_created.is_empty());
        assert!(result.graphs_dropped.is_empty());
    }

    #[test]
    fn test_graph_reference() {
        let iri_ref = GraphReference::Iri("http://example.org/graph".to_string());
        let default_ref = GraphReference::Default;

        assert_ne!(iri_ref, default_ref);
    }

    #[test]
    fn test_quad_pattern() {
        let pattern = QuadPattern {
            subject: Term::Variable(Variable::new("s").unwrap()),
            predicate: Term::Iri(NamedNode::new("http://example.org/pred").unwrap()),
            object: Term::Literal(crate::algebra::Literal {
                value: "test".to_string(),
                language: None,
                datatype: None,
            }),
            graph: None,
        };

        assert_eq!(pattern.subject, Term::Variable(Variable::new("s").unwrap()));
    }

    #[test]
    fn test_enhanced_update_operations() {
        // Create a test store (would need actual Store implementation)
        // For now, this is a placeholder test to verify the enhanced operations compile

        // Test UPDATE operation types
        let insert_data = UpdateOperation::InsertData {
            data: vec![QuadPattern {
                subject: Term::Iri(NamedNode::new("http://example.org/subject").unwrap()),
                predicate: Term::Iri(NamedNode::new("http://example.org/predicate").unwrap()),
                object: Term::Literal(crate::algebra::Literal {
                    value: "test_value".to_string(),
                    language: None,
                    datatype: None,
                }),
                graph: None,
            }],
        };

        let delete_data = UpdateOperation::DeleteData {
            data: vec![QuadPattern {
                subject: Term::Iri(NamedNode::new("http://example.org/subject").unwrap()),
                predicate: Term::Iri(NamedNode::new("http://example.org/predicate").unwrap()),
                object: Term::Literal(crate::algebra::Literal {
                    value: "test_value".to_string(),
                    language: None,
                    datatype: None,
                }),
                graph: None,
            }],
        };

        // Verify operations can be created
        match insert_data {
            UpdateOperation::InsertData { data } => {
                assert_eq!(data.len(), 1);
            }
            _ => panic!("Expected InsertData operation"),
        }

        match delete_data {
            UpdateOperation::DeleteData { data } => {
                assert_eq!(data.len(), 1);
            }
            _ => panic!("Expected DeleteData operation"),
        }
    }

    #[test]
    fn test_update_statistics() {
        let stats = UpdateStatistics::default();
        assert_eq!(stats.total_operations, 0);
        assert_eq!(stats.batch_count, 0);
        assert_eq!(stats.operations_per_second, 0.0);
    }

    #[test]
    fn test_validation_errors() {
        let _invalid_pattern = QuadPattern {
            subject: Term::Variable(Variable::new("s").unwrap()),
            predicate: Term::Iri(NamedNode::new("http://example.org/predicate").unwrap()),
            object: Term::Literal(crate::algebra::Literal {
                value: "test".to_string(),
                language: None,
                datatype: None,
            }),
            graph: None,
        };

        // Test validation logic (would need actual store)
        // This verifies the validation functions compile correctly
        let validation_result = std::panic::catch_unwind(|| {
            // This should fail validation due to variable in subject position for INSERT DATA
            // In actual implementation with store, this would be tested properly
        });

        // Just verify the test structure compiles
        assert!(validation_result.is_ok());
    }
}