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
//! In-memory executor for SPARQL 1.1 Update operations.
//!
//! [`UpdateExecutor`] is a minimal store-independent dataset executor used by
//! the standalone update protocol facade. It maintains a *default graph*
//! (a `Vec<Triple>`) and an arbitrary number of *named graphs* keyed by IRI
//! string. Pattern-based operations perform a simple structural match —
//! variables behave as wildcards that can bind to any term, and consistent
//! bindings across multiple patterns are intersected by shared variable name.
use std::collections::HashMap;
use crate::update_protocol_types::{
ArqError, ClearType, DropType, PatternTerm, SparqlUpdate, Triple, TriplePattern, UpdateResult,
};
// ---------------------------------------------------------------------------
// In-memory UpdateExecutor
// ---------------------------------------------------------------------------
/// A minimal in-memory dataset executor for SPARQL 1.1 Update.
///
/// It maintains a *default graph* (a `Vec<Triple>`) and an arbitrary number
/// of *named graphs* keyed by IRI string. Pattern-based operations perform a
/// simple structural match (no unification — variables are left as wildcards
/// that match anything).
pub struct UpdateExecutor {
/// Triples in the default graph.
pub(crate) triples: Vec<Triple>,
/// Named graphs keyed by IRI.
pub(crate) named_graphs: HashMap<String, Vec<Triple>>,
}
impl UpdateExecutor {
/// Create an empty executor.
pub fn new() -> Self {
Self {
triples: Vec::new(),
named_graphs: HashMap::new(),
}
}
/// Execute a single update and return a summary.
pub fn execute(&mut self, update: &SparqlUpdate) -> Result<UpdateResult, ArqError> {
match update {
SparqlUpdate::InsertData(triples) => {
let count = triples.len();
self.triples.extend(triples.iter().cloned());
Ok(UpdateResult {
triples_inserted: count,
triples_deleted: 0,
graphs_affected: 0,
})
}
SparqlUpdate::DeleteData(triples) => {
let before = self.triples.len();
for t in triples {
self.triples.retain(|existing| existing != t);
}
let deleted = before - self.triples.len();
Ok(UpdateResult {
triples_inserted: 0,
triples_deleted: deleted,
graphs_affected: 0,
})
}
SparqlUpdate::InsertWhere {
template,
where_clause,
} => {
let bindings = self.match_patterns(where_clause);
let mut inserted = 0usize;
for binding in &bindings {
if let Some(triple) = instantiate_template_triple(template.first(), binding) {
for t in &triple {
if !self.triples.contains(t) {
self.triples.push(t.clone());
inserted += 1;
}
}
}
}
Ok(UpdateResult {
triples_inserted: inserted,
triples_deleted: 0,
graphs_affected: 0,
})
}
SparqlUpdate::DeleteWhere { where_clause, .. } => {
let bindings = self.match_patterns(where_clause);
let to_delete: Vec<Triple> = bindings
.into_iter()
.filter_map(|b| {
let s = b.get("s").cloned()?;
let p = b.get("p").cloned()?;
let o = b.get("o").cloned()?;
Some(Triple::new(s, p, o))
})
.collect();
let before = self.triples.len();
for t in &to_delete {
self.triples.retain(|e| e != t);
}
let deleted = before - self.triples.len();
Ok(UpdateResult {
triples_inserted: 0,
triples_deleted: deleted,
graphs_affected: 0,
})
}
SparqlUpdate::Modify {
delete,
insert,
where_clause,
} => {
let bindings = self.match_patterns(where_clause);
let mut inserted = 0usize;
let mut deleted_count = 0usize;
for binding in &bindings {
// Delete first.
for tp in delete {
if let Some(t) = instantiate_one(tp, binding) {
let before = self.triples.len();
self.triples.retain(|e| e != &t);
deleted_count += before - self.triples.len();
}
}
// Then insert.
for tp in insert {
if let Some(t) = instantiate_one(tp, binding) {
if !self.triples.contains(&t) {
self.triples.push(t);
inserted += 1;
}
}
}
}
Ok(UpdateResult {
triples_inserted: inserted,
triples_deleted: deleted_count,
graphs_affected: 0,
})
}
SparqlUpdate::CreateGraph { iri, silent } => {
if self.named_graphs.contains_key(iri) && !silent {
return Err(ArqError(format!("graph <{iri}> already exists")));
}
self.named_graphs.entry(iri.clone()).or_default();
Ok(UpdateResult {
triples_inserted: 0,
triples_deleted: 0,
graphs_affected: 1,
})
}
SparqlUpdate::DropGraph {
iri,
silent,
drop_type,
} => {
let count = match drop_type {
DropType::Graph => {
let key = iri.as_deref().unwrap_or("");
if self.named_graphs.remove(key).is_none() && !silent {
return Err(ArqError(format!("graph <{key}> does not exist")));
}
1
}
DropType::Default => {
self.triples.clear();
1
}
DropType::Named => {
let count = self.named_graphs.len();
self.named_graphs.clear();
count
}
DropType::All => {
let ng = self.named_graphs.len();
self.named_graphs.clear();
self.triples.clear();
ng + 1
}
};
Ok(UpdateResult {
triples_inserted: 0,
triples_deleted: 0,
graphs_affected: count,
})
}
SparqlUpdate::ClearGraph {
iri,
silent,
clear_type,
} => {
let count = match clear_type {
ClearType::Graph => {
let key = iri.as_deref().unwrap_or("");
match self.named_graphs.get_mut(key) {
Some(g) => {
g.clear();
1
}
None if *silent => 0,
None => return Err(ArqError(format!("graph <{key}> does not exist"))),
}
}
ClearType::Default => {
self.triples.clear();
1
}
ClearType::Named => {
for g in self.named_graphs.values_mut() {
g.clear();
}
self.named_graphs.len()
}
ClearType::All => {
self.triples.clear();
for g in self.named_graphs.values_mut() {
g.clear();
}
self.named_graphs.len() + 1
}
};
Ok(UpdateResult {
triples_inserted: 0,
triples_deleted: 0,
graphs_affected: count,
})
}
SparqlUpdate::CopyGraph {
source,
target,
silent: _,
} => {
let src_triples: Vec<Triple> =
self.named_graphs.get(source).cloned().unwrap_or_default();
let count = src_triples.len();
let tgt = self.named_graphs.entry(target.clone()).or_default();
tgt.clear();
tgt.extend(src_triples);
Ok(UpdateResult {
triples_inserted: count,
triples_deleted: 0,
graphs_affected: 1,
})
}
SparqlUpdate::MoveGraph {
source,
target,
silent: _,
} => {
let src_triples = self.named_graphs.remove(source).unwrap_or_default();
let count = src_triples.len();
let tgt = self.named_graphs.entry(target.clone()).or_default();
tgt.clear();
tgt.extend(src_triples);
Ok(UpdateResult {
triples_inserted: count,
triples_deleted: 0,
graphs_affected: 2,
})
}
SparqlUpdate::AddGraph {
source,
target,
silent: _,
} => {
let src_triples: Vec<Triple> =
self.named_graphs.get(source).cloned().unwrap_or_default();
let count = src_triples.len();
let tgt = self.named_graphs.entry(target.clone()).or_default();
tgt.extend(src_triples);
Ok(UpdateResult {
triples_inserted: count,
triples_deleted: 0,
graphs_affected: 1,
})
}
SparqlUpdate::Load { iri, into, silent } => {
// Actual HTTP loading is not implemented in this in-memory executor.
// Return success (silent) or error (non-silent).
if *silent {
Ok(UpdateResult::default())
} else {
Err(ArqError(format!(
"LOAD is not supported in the in-memory executor (iri=<{iri}>, into={into:?})"
)))
}
}
}
}
/// Execute a sequence of update operations and collect their results.
pub fn execute_all(&mut self, updates: &[SparqlUpdate]) -> Result<Vec<UpdateResult>, ArqError> {
updates.iter().map(|u| self.execute(u)).collect()
}
/// Number of triples in the default graph.
pub fn triple_count(&self) -> usize {
self.triples.len()
}
/// Number of named graphs (not counting the default graph).
pub fn graph_count(&self) -> usize {
self.named_graphs.len()
}
/// Return the triples in a named graph, or `None` if it does not exist.
pub fn get_graph(&self, iri: &str) -> Option<&Vec<Triple>> {
self.named_graphs.get(iri)
}
/// Return a reference to the default graph's triple set.
pub fn default_graph(&self) -> &Vec<Triple> {
&self.triples
}
}
impl Default for UpdateExecutor {
fn default() -> Self {
Self::new()
}
}
// ---------------------------------------------------------------------------
// Pattern matching helpers
// ---------------------------------------------------------------------------
pub(crate) type Binding = HashMap<String, String>;
/// Match a slice of triple patterns against the default graph, returning all
/// consistent variable bindings. Each pattern is matched independently and
/// bindings from consecutive patterns are intersected by joining on shared
/// variable names.
fn match_patterns(triples: &[Triple], patterns: &[TriplePattern]) -> Vec<Binding> {
let mut results: Vec<Binding> = vec![HashMap::new()];
for pattern in patterns {
let mut next: Vec<Binding> = Vec::new();
for binding in &results {
for triple in triples {
if let Some(new_binding) = match_pattern(triple, pattern, binding) {
next.push(new_binding);
}
}
}
results = next;
}
results
}
/// Try to extend `existing_binding` with the variable bindings produced by
/// matching `triple` against `pattern`. Returns `None` on conflict.
fn match_pattern(triple: &Triple, pattern: &TriplePattern, existing: &Binding) -> Option<Binding> {
let mut binding = existing.clone();
bind_term(&triple.s, &pattern.s, &mut binding)?;
bind_term(&triple.p, &pattern.p, &mut binding)?;
bind_term(&triple.o, &pattern.o, &mut binding)?;
Some(binding)
}
/// Attempt to bind `value` against `term`, extending `binding` if `term` is a
/// variable. Returns `None` when an existing binding is inconsistent.
fn bind_term(value: &str, term: &PatternTerm, binding: &mut Binding) -> Option<()> {
match term {
PatternTerm::Variable(var) => {
if let Some(existing) = binding.get(var.as_str()) {
if existing != value {
return None;
}
} else {
binding.insert(var.clone(), value.to_string());
}
Some(())
}
PatternTerm::Iri(iri) => {
if iri == value {
Some(())
} else {
None
}
}
PatternTerm::Literal(lit) => {
// Compare the content without surrounding quotes.
let inner = lit.trim_matches('"').trim_matches('\'');
if inner == value || lit == value {
Some(())
} else {
None
}
}
PatternTerm::BlankNode(bn) => {
if bn == value {
Some(())
} else {
None
}
}
}
}
impl UpdateExecutor {
/// Match patterns against the default graph's triple set.
fn match_patterns(&self, patterns: &[TriplePattern]) -> Vec<Binding> {
match_patterns(&self.triples, patterns)
}
}
/// Try to instantiate a single `TriplePattern` against a `Binding`, producing
/// a `Triple` when all positions resolve to concrete terms.
fn instantiate_one(pattern: &TriplePattern, binding: &Binding) -> Option<Triple> {
let s = resolve_term(&pattern.s, binding)?;
let p = resolve_term(&pattern.p, binding)?;
let o = resolve_term(&pattern.o, binding)?;
Some(Triple::new(s, p, o))
}
/// Try to instantiate the first `TriplePattern` in `templates`, returning a
/// `Vec<Triple>` (0 or 1 elements). This helper is used for `InsertWhere`.
fn instantiate_template_triple(
template: Option<&TriplePattern>,
binding: &Binding,
) -> Option<Vec<Triple>> {
let tp = template?;
Some(instantiate_one(tp, binding).into_iter().collect())
}
/// Resolve a `PatternTerm` to a concrete string using `binding`. Returns
/// `None` when a variable is unbound.
fn resolve_term(term: &PatternTerm, binding: &Binding) -> Option<String> {
match term {
PatternTerm::Variable(var) => binding.get(var.as_str()).cloned(),
PatternTerm::Iri(iri) => Some(iri.clone()),
PatternTerm::Literal(lit) => Some(lit.trim_matches('"').trim_matches('\'').to_string()),
PatternTerm::BlankNode(bn) => Some(bn.clone()),
}
}