kglite 0.11.10

Pure-Rust knowledge graph engine — Cypher pipeline, snapshot/working CoW transactions, columnar/mmap/disk storage backends, optional dataset loaders (SEC EDGAR, Sodir, Wikidata). PyO3 wrappers live in the sibling kglite-py crate (the Python wheel); embeddable directly from any Rust binary without PyO3 in the dep tree.
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
//! `load_rdf` entry point + the triple-fold driver (memory mode).
//!
//! Parses Turtle / N-Triples / N-Quads / TriG via the `oxttl` family,
//! folds every triple into a per-subject accumulator, then materialises
//! the accumulators into the in-memory property graph in dense intern
//! order. Targets the Default (in-memory) backend — the mapped and disk
//! backends require the columnar/CSR build pipeline and are not yet
//! supported (a single-stream RDF parse isn't a Wikidata-scale path; use
//! `load_ntriples` for that).

use std::borrow::Cow;
use std::collections::{HashMap, HashSet};
use std::fs::File;
use std::io::BufReader;

use oxrdf::{NamedOrBlankNode, Term};
use oxttl::{NQuadsParser, NTriplesParser, TriGParser, TurtleParser};

use crate::datatypes::values::Value;
use crate::graph::dir_graph::DirGraph;
use crate::graph::schema::{EdgeData, NodeData};
use crate::graph::storage::{GraphRead, GraphWrite};

use super::curie::Curiefier;
use super::fold::datatype_to_value;
use super::interner::IriInterner;

/// The `rdf:type` predicate IRI — the one predicate that sets a node's
/// type instead of becoming a property or edge.
const RDF_TYPE: &str = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type";

/// Default label predicate: `rdfs:label`.
const RDFS_LABEL: &str = "http://www.w3.org/2000/01/rdf-schema#label";

/// Configuration for [`load_rdf`].
pub struct RdfConfig {
    /// Keep only literals tagged with one of these language codes. `None`
    /// keeps all literals (tagged or not). A language-tagged literal whose
    /// tag isn't in the set is dropped; untagged literals are always kept.
    pub languages: Option<HashSet<String>>,
    /// IRIs whose literal object sets the node title (first wins).
    /// Defaults to `[rdfs:label]`.
    pub label_predicates: Vec<String>,
    /// Keep full IRIs for predicate / type names instead of CURIE-compacting.
    pub keep_full_iris: bool,
    /// Node type for subjects without an `rdf:type`. Defaults to `"Resource"`.
    pub default_type: String,
    /// Stop after this many triples. `None` = no limit.
    pub max_triples: Option<u64>,
}

impl Default for RdfConfig {
    fn default() -> Self {
        RdfConfig {
            languages: None,
            label_predicates: vec![RDFS_LABEL.to_string()],
            keep_full_iris: false,
            default_type: "Resource".to_string(),
            max_triples: None,
        }
    }
}

/// Counts returned after a successful load.
#[derive(Debug)]
pub struct RdfStats {
    pub nodes_created: usize,
    pub edges_created: usize,
    pub triples_processed: u64,
}

/// Per-subject accumulator built during the fold, then drained into a
/// graph node at materialisation time.
#[derive(Default)]
struct NodeAcc {
    /// First `label_predicate` literal seen (first wins).
    title: Option<String>,
    /// First `rdf:type` value seen (compacted) — becomes the node type.
    node_type: Option<String>,
    /// All `rdf:type` values (compacted, deduped) — surfaced as
    /// `rdf_types` when a subject has more than one type.
    types: Vec<String>,
    /// Literal properties, keyed by compacted predicate.
    props: HashMap<String, Value>,
}

/// Mutable fold state threaded through the per-statement processor.
struct FoldState {
    iris: IriInterner,
    curie: Curiefier,
    /// Accumulators indexed by intern id (dense, grows with `resize_with`).
    accs: Vec<NodeAcc>,
    /// Buffered edges as (source id, target id, compacted predicate).
    edges: Vec<(u32, u32, String)>,
}

impl FoldState {
    fn new(keep_full: bool) -> Self {
        FoldState {
            iris: IriInterner::new(),
            curie: Curiefier::new(keep_full),
            accs: Vec::new(),
            edges: Vec::new(),
        }
    }

    /// Intern a subject/object key and guarantee its accumulator slot
    /// exists, returning the dense id.
    fn ensure(&mut self, key: &str) -> u32 {
        let id = self.iris.get_or_intern(key);
        if self.accs.len() <= id as usize {
            self.accs.resize_with(id as usize + 1, NodeAcc::default);
        }
        id
    }
}

/// Load an RDF file into `graph` (in-memory backend). Dispatches on the
/// file extension: `.ttl` → Turtle, `.nt` → N-Triples, `.nq` → N-Quads,
/// `.trig` → TriG. Quad graph names are ignored.
pub fn load_rdf(graph: &mut DirGraph, path: &str, config: &RdfConfig) -> Result<RdfStats, String> {
    if graph.graph.is_mapped() || graph.graph.is_disk() {
        return Err(
            "load_rdf currently supports the in-memory (Default) backend only; \
             mapped/disk graphs are not yet supported"
                .to_string(),
        );
    }

    let ext = path
        .rsplit('.')
        .next()
        .map(str::to_ascii_lowercase)
        .unwrap_or_default();

    // Validate the format before touching the filesystem, so an
    // unsupported extension fails fast and deterministically (regardless
    // of whether the file exists).
    if !matches!(ext.as_str(), "ttl" | "nt" | "nq" | "trig") {
        return Err(format!(
            "Unsupported RDF extension '{}': expected ttl, nt, nq, or trig",
            ext
        ));
    }

    let file = File::open(path).map_err(|e| format!("Cannot open {}: {}", path, e))?;
    let reader = BufReader::new(file);

    let mut state = FoldState::new(config.keep_full_iris);
    let mut processed: u64 = 0;

    // Each format yields either Triples or Quads; the per-statement fold
    // is identical, so a small closure adapts both shapes onto `process`.
    match ext.as_str() {
        "ttl" => {
            let mut parser = TurtleParser::new().for_reader(reader);
            while let Some(item) = parser.next() {
                let triple = item.map_err(|e| format!("Turtle parse error: {}", e))?;
                copy_prefixes(&mut state.curie, parser.prefixes());
                process(
                    &triple.subject,
                    triple.predicate.as_str(),
                    &triple.object,
                    config,
                    &mut state,
                );
                if hit_limit(&mut processed, config) {
                    break;
                }
            }
        }
        "nt" => {
            let parser = NTriplesParser::new().for_reader(reader);
            for item in parser {
                let triple = item.map_err(|e| format!("N-Triples parse error: {}", e))?;
                process(
                    &triple.subject,
                    triple.predicate.as_str(),
                    &triple.object,
                    config,
                    &mut state,
                );
                if hit_limit(&mut processed, config) {
                    break;
                }
            }
        }
        "nq" => {
            let parser = NQuadsParser::new().for_reader(reader);
            for item in parser {
                let quad = item.map_err(|e| format!("N-Quads parse error: {}", e))?;
                process(
                    &quad.subject,
                    quad.predicate.as_str(),
                    &quad.object,
                    config,
                    &mut state,
                );
                if hit_limit(&mut processed, config) {
                    break;
                }
            }
        }
        "trig" => {
            let mut parser = TriGParser::new().for_reader(reader);
            while let Some(item) = parser.next() {
                let quad = item.map_err(|e| format!("TriG parse error: {}", e))?;
                copy_prefixes(&mut state.curie, parser.prefixes());
                process(
                    &quad.subject,
                    quad.predicate.as_str(),
                    &quad.object,
                    config,
                    &mut state,
                );
                if hit_limit(&mut processed, config) {
                    break;
                }
            }
        }
        // `ext` was validated against this set before the file was opened.
        _ => unreachable!("extension validated before dispatch"),
    }

    let (nodes_created, edges_created) = materialize(graph, &mut state, config);
    Ok(RdfStats {
        nodes_created,
        edges_created,
        triples_processed: processed,
    })
}

/// Copy any newly-declared prefixes into the curiefier. Cheap — a
/// document has a handful of prefixes and `add` dedups on the IRI.
fn copy_prefixes<'a>(curie: &mut Curiefier, prefixes: impl Iterator<Item = (&'a str, &'a str)>) {
    for (name, iri) in prefixes {
        curie.add(name, iri);
    }
}

/// Bump the processed counter and report whether `max_triples` is hit.
#[inline]
fn hit_limit(processed: &mut u64, config: &RdfConfig) -> bool {
    *processed += 1;
    matches!(config.max_triples, Some(max) if *processed >= max)
}

/// The intern key for a subject/object resource: the IRI for a named
/// node, `_:<id>` for a blank node. Borrows the IRI for named nodes
/// (the common case) so the per-statement hot path allocates nothing on
/// an intern *hit*; only blank nodes need an owned `_:`-prefixed key.
fn resource_key(n: &NamedOrBlankNode) -> Cow<'_, str> {
    match n {
        NamedOrBlankNode::NamedNode(nn) => Cow::Borrowed(nn.as_str()),
        NamedOrBlankNode::BlankNode(bn) => Cow::Owned(format!("_:{}", bn.as_str())),
    }
}

/// Fold a single statement into the accumulator / edge state. Splits
/// cleanly into the four statement kinds: type, label, literal property,
/// resource edge.
fn process(
    subject: &NamedOrBlankNode,
    predicate: &str,
    object: &Term,
    config: &RdfConfig,
    state: &mut FoldState,
) {
    let subject_key = resource_key(subject);
    let s_id = state.ensure(subject_key.as_ref());

    // rdf:type → node type (+ multi-type tracking).
    if predicate == RDF_TYPE {
        if let Some(type_iri) = resource_iri(object) {
            let t = state.curie.compact(&type_iri);
            let acc = &mut state.accs[s_id as usize];
            if acc.node_type.is_none() {
                acc.node_type = Some(t.clone());
            }
            if !acc.types.contains(&t) {
                acc.types.push(t);
            }
        }
        return;
    }

    match object {
        Term::Literal(lit) => {
            // Drop language-tagged literals filtered out by config.
            if let Some(lang) = lit.language() {
                if let Some(keep) = &config.languages {
                    if !keep.contains(lang) {
                        return;
                    }
                }
            }
            if config.label_predicates.iter().any(|p| p == predicate) {
                let acc = &mut state.accs[s_id as usize];
                if acc.title.is_none() {
                    acc.title = Some(lit.value().to_string());
                }
                return;
            }
            let key = state.curie.compact(predicate);
            let val = datatype_to_value(lit.value(), lit.datatype().as_str());
            insert_property(&mut state.accs[s_id as usize].props, key, val);
        }
        // Resource object → edge. Materialise the target's slot too so a
        // node that only ever appears as an object still exists.
        Term::NamedNode(_) | Term::BlankNode(_) => {
            let object_key = term_resource_key(object);
            let o_id = state.ensure(object_key.as_ref());
            let pred = state.curie.compact(predicate);
            state.edges.push((s_id, o_id, pred));
        }
        // `Term::Triple` (RDF-star) is gated behind oxrdf's `rdf-12`
        // feature, which we don't enable; this arm is unreachable.
        #[allow(unreachable_patterns)]
        _ => {}
    }
}

/// Extract the IRI of a resource `Term` (named or blank), if it is one.
/// Used for `rdf:type` objects, which may be a named node or blank node.
/// Borrows for named nodes (no alloc).
fn resource_iri(term: &Term) -> Option<Cow<'_, str>> {
    match term {
        Term::NamedNode(nn) => Some(Cow::Borrowed(nn.as_str())),
        Term::BlankNode(bn) => Some(Cow::Owned(format!("_:{}", bn.as_str()))),
        _ => None,
    }
}

/// Intern key for a resource `Term` (assumes named/blank — literals are
/// handled before this is reached). Borrows the IRI for named nodes.
fn term_resource_key(term: &Term) -> Cow<'_, str> {
    match term {
        Term::NamedNode(nn) => Cow::Borrowed(nn.as_str()),
        Term::BlankNode(bn) => Cow::Owned(format!("_:{}", bn.as_str())),
        _ => Cow::Borrowed(""),
    }
}

/// Insert a literal property with multi-value folding: a repeated
/// predicate promotes the existing scalar to a `Value::List` and appends.
fn insert_property(props: &mut HashMap<String, Value>, key: String, val: Value) {
    match props.get_mut(&key) {
        None => {
            props.insert(key, val);
        }
        Some(Value::List(list)) => list.push(val),
        Some(existing) => {
            let old = std::mem::replace(existing, Value::Null);
            *existing = Value::List(vec![old, val]);
        }
    }
}

/// Materialise the fold state into graph nodes + edges. Returns
/// (nodes_created, edges_created).
fn materialize(graph: &mut DirGraph, state: &mut FoldState, config: &RdfConfig) -> (usize, usize) {
    let n = state.iris.len();
    let mut idx_of: Vec<petgraph::graph::NodeIndex> = Vec::with_capacity(n);

    for id in 0..n as u32 {
        let iri = state.iris.iri(id).to_string();
        let acc = std::mem::take(&mut state.accs[id as usize]);

        let node_type = acc.node_type.unwrap_or_else(|| config.default_type.clone());
        let title = acc.title.unwrap_or_else(|| iri.clone());

        let mut properties = acc.props;
        properties.insert("uri".to_string(), Value::String(iri.clone()));
        if acc.types.len() > 1 {
            properties.insert(
                "rdf_types".to_string(),
                Value::List(acc.types.into_iter().map(Value::String).collect()),
            );
        }

        // Dense integer id — `n.id` is an integer in every mode.
        let id_value = Value::UniqueId(id);
        let node_data = NodeData::new(
            id_value.clone(),
            Value::String(title),
            node_type.clone(),
            properties,
            &mut graph.interner,
        );
        let node_idx = GraphWrite::add_node(&mut graph.graph, node_data);
        graph
            .type_indices
            .entry_or_default(node_type.clone())
            .push(node_idx);
        graph
            .id_indices
            .entry_or_default(node_type)
            .insert(id_value, node_idx);
        idx_of.push(node_idx);
    }

    let edges_created = materialize_edges(graph, &state.edges, &idx_of);
    (n, edges_created)
}

/// Create the buffered edges and record connection-type metadata,
/// mirroring `create_edges_strings`. All ids are dense + present, so no
/// edge is ever skipped.
fn materialize_edges(
    graph: &mut DirGraph,
    edges: &[(u32, u32, String)],
    idx_of: &[petgraph::graph::NodeIndex],
) -> usize {
    let mut conn_type_pairs: HashMap<String, (HashSet<String>, HashSet<String>)> = HashMap::new();
    let mut created = 0;

    for (s_id, o_id, pred) in edges {
        let src = idx_of[*s_id as usize];
        let tgt = idx_of[*o_id as usize];

        let edge_data = EdgeData::new(pred.clone(), HashMap::new(), &mut graph.interner);

        let src_type = GraphRead::node_weight(&graph.graph, src)
            .unwrap()
            .node_type_str(&graph.interner)
            .to_string();
        let tgt_type = GraphRead::node_weight(&graph.graph, tgt)
            .unwrap()
            .node_type_str(&graph.interner)
            .to_string();
        let entry = conn_type_pairs
            .entry(pred.clone())
            .or_insert_with(|| (HashSet::new(), HashSet::new()));
        entry.0.insert(src_type);
        entry.1.insert(tgt_type);

        GraphWrite::add_edge(&mut graph.graph, src, tgt, edge_data);
        created += 1;
    }

    for (conn_type, (source_types, target_types)) in conn_type_pairs {
        for src_type in &source_types {
            for tgt_type in &target_types {
                graph.upsert_connection_type_metadata(
                    &conn_type,
                    src_type,
                    tgt_type,
                    HashMap::new(),
                );
            }
        }
    }
    graph.invalidate_edge_type_counts_cache();
    created
}

#[cfg(all(test, feature = "rdf"))]
mod tests {
    use super::*;
    use crate::graph::storage::GraphRead;
    use std::io::Write;

    /// Write `content` to a temp file with the given extension and load it.
    fn load_str(content: &str, ext: &str, config: &RdfConfig) -> (DirGraph, RdfStats) {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join(format!("fixture.{}", ext));
        let mut f = File::create(&path).unwrap();
        f.write_all(content.as_bytes()).unwrap();
        drop(f);
        let mut graph = DirGraph::new();
        let stats = load_rdf(&mut graph, path.to_str().unwrap(), config).unwrap();
        (graph, stats)
    }

    /// Find a node index whose `uri` property equals `uri`.
    fn node_idx_by_uri(graph: &DirGraph, uri: &str) -> Option<petgraph::graph::NodeIndex> {
        for idx in GraphRead::node_indices(&graph.graph) {
            let node = GraphRead::node_weight(&graph.graph, idx).unwrap();
            if let Some(v) = node.get_property("uri") {
                if matches!(v.as_ref(), Value::String(s) if s == uri) {
                    return Some(idx);
                }
            }
        }
        None
    }

    /// Find a node by its `uri` property and return (node_type, props clone).
    fn find_by_uri(graph: &DirGraph, uri: &str) -> Option<(String, HashMap<String, Value>)> {
        let idx = node_idx_by_uri(graph, uri)?;
        let node = GraphRead::node_weight(&graph.graph, idx).unwrap();
        let node_type = node.node_type_str(&graph.interner).to_string();
        let props = node.properties_cloned(&graph.interner);
        Some((node_type, props))
    }

    fn title_of(graph: &DirGraph, uri: &str) -> Option<String> {
        let idx = node_idx_by_uri(graph, uri)?;
        let node = GraphRead::node_weight(&graph.graph, idx).unwrap();
        match node.title().into_owned() {
            Value::String(s) => Some(s),
            _ => None,
        }
    }

    const TTL_PEOPLE: &str = r#"
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ex: <http://example.org/> .

ex:alice a foaf:Person ;
    rdfs:label "Alice" ;
    foaf:knows ex:bob ;
    ex:age "30"^^xsd:integer ;
    ex:height "1.75"^^xsd:double ;
    ex:active "true"^^xsd:boolean ;
    ex:born "1990-05-01"^^xsd:date ;
    ex:lastSeen "2020-01-15T08:30:00Z"^^xsd:dateTime .

ex:bob a foaf:Person ;
    rdfs:label "Bob" .
"#;

    #[test]
    fn turtle_people_with_typed_literals() {
        let cfg = RdfConfig::default();
        let (graph, stats) = load_str(TTL_PEOPLE, "ttl", &cfg);

        assert_eq!(stats.edges_created, 1, "one foaf:knows edge");

        let (alice_type, props) =
            find_by_uri(&graph, "http://example.org/alice").expect("alice node");
        assert_eq!(alice_type, "foaf__Person");
        assert_eq!(
            title_of(&graph, "http://example.org/alice").as_deref(),
            Some("Alice")
        );
        // `ex:` is a document-declared prefix; predicates compact to
        // `ex__*` (double-underscore separator, Cypher-queryable).
        assert_eq!(props.get("ex__age"), Some(&Value::Int64(30)));
        assert_eq!(props.get("ex__height"), Some(&Value::Float64(1.75)));
        assert_eq!(props.get("ex__active"), Some(&Value::Boolean(true)));
        assert!(matches!(props.get("ex__born"), Some(Value::DateTime(_))));
        assert!(matches!(
            props.get("ex__lastSeen"),
            Some(Value::Timestamp(_))
        ));

        // Both people materialised.
        assert!(find_by_uri(&graph, "http://example.org/bob").is_some());
    }

    #[test]
    fn multiple_types_first_wins_and_rdf_types_list() {
        let ttl = r#"
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ex: <http://example.org/> .
ex:carol rdf:type foaf:Person, foaf:Agent .
"#;
        let cfg = RdfConfig::default();
        let (graph, _) = load_str(ttl, "ttl", &cfg);
        let (node_type, props) =
            find_by_uri(&graph, "http://example.org/carol").expect("carol node");
        // First rdf:type wins as the node type.
        assert_eq!(node_type, "foaf__Person");
        match props.get("rdf_types") {
            Some(Value::List(l)) => assert_eq!(l.len(), 2),
            other => panic!("expected rdf_types list of 2, got {:?}", other),
        }
    }

    #[test]
    fn ntriples_blank_node_subject() {
        let nt = "_:b0 <http://www.w3.org/2000/01/rdf-schema#label> \"Anon\" .\n";
        let cfg = RdfConfig::default();
        let (graph, _) = load_str(nt, "nt", &cfg);

        // The blank node materialised with a `uri` starting `_:`.
        let mut found = false;
        for idx in GraphRead::node_indices(&graph.graph) {
            let node = GraphRead::node_weight(&graph.graph, idx).unwrap();
            if let Some(v) = node.get_property("uri") {
                if let Value::String(s) = v.as_ref() {
                    if s.starts_with("_:") {
                        found = true;
                    }
                }
            }
        }
        assert!(found, "blank-node subject should have a _: uri property");
    }

    /// Throughput comparison: oxttl parse-only vs `load_rdf` vs the
    /// hand-tuned Wikidata `load_ntriples`, on identical Wikidata-shaped
    /// N-Triples. Ignored by default — run in release:
    /// `cargo test -p kglite --release --features rdf,sec,sodir,wikidata,okf \
    ///   bench_vs_wikidata -- --ignored --nocapture`
    #[test]
    #[ignore = "perf benchmark"]
    fn bench_vs_wikidata() {
        use crate::graph::io::ntriples::{load_ntriples, NTriplesConfig};
        use std::io::{BufWriter, Write as _};
        use std::time::Instant;

        let entities: u32 = 400_000;
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("bench.nt");
        {
            let mut w = BufWriter::new(File::create(&path).unwrap());
            for i in 0..entities {
                let s = format!("<http://www.wikidata.org/entity/Q{i}>");
                writeln!(w, "{s} <http://www.wikidata.org/prop/direct/P31> <http://www.wikidata.org/entity/Q5> .").unwrap();
                writeln!(
                    w,
                    "{s} <http://www.w3.org/2000/01/rdf-schema#label> \"Person {i}\"@en ."
                )
                .unwrap();
                writeln!(w, "{s} <http://www.wikidata.org/prop/direct/P1082> \"{i}\"^^<http://www.w3.org/2001/XMLSchema#integer> .").unwrap();
                writeln!(w, "{s} <http://www.wikidata.org/prop/direct/P569> \"1990-01-01T00:00:00Z\"^^<http://www.w3.org/2001/XMLSchema#dateTime> .").unwrap();
                writeln!(w, "{s} <http://www.wikidata.org/prop/direct/P26> <http://www.wikidata.org/entity/Q{}> .", (i + 1) % entities).unwrap();
            }
        }
        let triples = entities as u64 * 5;
        let mb = std::fs::metadata(&path).unwrap().len() as f64 / 1e6;
        eprintln!("\ncorpus: {entities} entities, {triples} triples, {mb:.1} MB\n");

        let rate = |t: f64| (triples as f64 / 1e6 / t, mb / t);

        // oxttl parse-only (no graph build).
        let t = Instant::now();
        let mut n = 0u64;
        for item in
            oxttl::NTriplesParser::new().for_reader(BufReader::new(File::open(&path).unwrap()))
        {
            item.unwrap();
            n += 1;
        }
        let (mt, mbs) = rate(t.elapsed().as_secs_f64());
        eprintln!(
            "oxttl parse-only:   {n} triples in {:.3}s = {mt:.2} M triples/s, {mbs:.0} MB/s",
            t.elapsed().as_secs_f64()
        );

        // load_rdf full build (memory).
        let mut g = DirGraph::new();
        let t = Instant::now();
        let stats = load_rdf(&mut g, path.to_str().unwrap(), &RdfConfig::default()).unwrap();
        let secs = t.elapsed().as_secs_f64();
        let (mt, mbs) = rate(secs);
        eprintln!("load_rdf (nt):      {} nodes, {} edges in {secs:.3}s = {mt:.2} M triples/s, {mbs:.0} MB/s", stats.nodes_created, stats.edges_created);

        // load_rdf on the SAME data as Turtle — exercises @prefix handling
        // (the prefix-copy path) and CURIE compaction from declared prefixes.
        let ttl_path = dir.path().join("bench.ttl");
        {
            let mut w = BufWriter::new(File::create(&ttl_path).unwrap());
            writeln!(w, "@prefix wd: <http://www.wikidata.org/entity/> .").unwrap();
            writeln!(w, "@prefix wdt: <http://www.wikidata.org/prop/direct/> .").unwrap();
            writeln!(w, "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .").unwrap();
            writeln!(w, "@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .").unwrap();
            for i in 0..entities {
                writeln!(w, "wd:Q{i} wdt:P31 wd:Q5 ; rdfs:label \"Person {i}\"@en ; wdt:P1082 \"{i}\"^^xsd:integer ; wdt:P569 \"1990-01-01T00:00:00Z\"^^xsd:dateTime ; wdt:P26 wd:Q{} .", (i + 1) % entities).unwrap();
            }
        }
        let ttl_mb = std::fs::metadata(&ttl_path).unwrap().len() as f64 / 1e6;
        let mut gt = DirGraph::new();
        let t = Instant::now();
        let statst = load_rdf(&mut gt, ttl_path.to_str().unwrap(), &RdfConfig::default()).unwrap();
        let secst = t.elapsed().as_secs_f64();
        eprintln!(
            "load_rdf (turtle):  {} nodes, {} edges in {secst:.3}s = {:.2} M triples/s, {:.0} MB/s",
            statst.nodes_created,
            statst.edges_created,
            triples as f64 / 1e6 / secst,
            ttl_mb / secst
        );

        // load_ntriples full build (memory, Wikidata-tuned path).
        let mut g2 = DirGraph::new();
        let cfg = NTriplesConfig {
            predicates: None,
            languages: None,
            node_types: HashMap::new(),
            predicate_labels: HashMap::new(),
            max_entities: None,
            max_triples: None,
            verbose: false,
            auto_type: false,
            progress: None,
        };
        let t = Instant::now();
        let stats2 = load_ntriples(&mut g2, path.to_str().unwrap(), &cfg).unwrap();
        let secs2 = t.elapsed().as_secs_f64();
        let (mt, mbs) = rate(secs2);
        eprintln!("load_ntriples (WD): {} entities, {} edges in {secs2:.3}s = {mt:.2} M triples/s, {mbs:.0} MB/s", stats2.entities_created, stats2.edges_created);
        eprintln!(
            "\nload_rdf / load_ntriples wall-clock ratio: {:.2}x\n",
            secs / secs2
        );
    }

    #[test]
    fn language_filter_keeps_only_en() {
        let ttl = r#"
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ex: <http://example.org/> .
ex:thing rdfs:label "Bonjour"@fr ;
    rdfs:label "Hello"@en .
"#;
        let mut langs = HashSet::new();
        langs.insert("en".to_string());
        let cfg = RdfConfig {
            languages: Some(langs),
            ..RdfConfig::default()
        };
        let (graph, _) = load_str(ttl, "ttl", &cfg);
        // The fr label is filtered out, so only the en label can set the title.
        assert_eq!(
            title_of(&graph, "http://example.org/thing").as_deref(),
            Some("Hello")
        );
    }
}