skardi 0.4.0

High performance query engine for both offline compute and online serving
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
//! Natural-language semantics overlays for the catalog.
//!
//! Semantics files are a Kubernetes-style YAML kind (`kind: semantics`) that
//! attach human-readable descriptions to tables and columns already
//! registered through a `kind: context` file. They are loaded at startup
//! alongside pipelines, jobs, and the context, and consumed by:
//!
//! * `skardi-server`'s `GET /data_source` response, so agents can read the
//!   descriptions when picking a tool.
//! * `skardi query --schema`, which renders the descriptions inline next to
//!   each table and column.
//!
//! ```yaml
//! kind: semantics
//! metadata:
//!   name: basic-semantics
//!   version: 1.0.0
//! spec:
//!   sources:
//!     # Bare name: matches a `data_sources[].name` from the ctx. For
//!     # table-mode sources, this *is* the table description. For
//!     # catalog-mode sources, this is the broad fallback applied to
//!     # every inner table that isn't covered by a qualified entry.
//!     - name: products
//!       description: "Product catalog with pricing/inventory"
//!       columns:
//!         - name: price_usd
//!           description: "Retail price in USD; nullable for unlisted SKUs"
//!
//!     # Qualified `catalog.schema.table`: targets one specific physical
//!     # table inside a catalog-mode source.
//!     - name: mydb.public.users
//!       description: "Auth + profile data, one row per registered account"
//!       columns:
//!         - name: id
//!           description: "Auth UUID"
//! ```
//!
//! Composition rules:
//! - Multiple files may be loaded by pointing at a directory. Files in that
//!   directory whose root `kind:` is not `semantics` are silently skipped,
//!   mirroring how `--jobs` tolerates plain pipelines.
//! - The `name:` field is parsed into one of two key shapes: a bare
//!   segment is treated as a source name; three dot-separated segments
//!   are treated as a fully-qualified `catalog.schema.table` triple.
//!   Anything else (0, 2, 4+ segments, empty segments) is a hard error.
//! - Bare and qualified entries live in separate addressing spaces — one
//!   bare and one qualified entry can coexist for the same physical
//!   table, and the qualified entry wins through
//!   [`SemanticsRegistry::resolve_table_description`].
//! - Two entries with the same key (same bare name, or same qualified
//!   triple) at table or column level are a hard error. Auto-generated
//!   overlays must produce non-overlapping files.
//! - References to sources or columns that do not exist on the loaded ctx
//!   are warned about (not failed) so a stale overlay does not brick a
//!   server boot.
//!
//! Auto-discovery (see [`resolve_semantics_source`]):
//! - Both `skardi-server` and `skardi query --schema` look for an overlay
//!   next to the ctx file when no explicit path is supplied:
//!   `<ctx_dir>/semantics/` (directory) or `<ctx_dir>/semantics.yaml`
//!   (single file). Defining both is a hard error to prevent silent
//!   shadowing.

use anyhow::{Context, Result, bail};
use serde::Deserialize;
use std::collections::{HashMap, HashSet};
use std::path::{Path, PathBuf};
use std::sync::Arc;
use thiserror::Error;

/// Required value of the root `kind:` discriminator.
pub const SEMANTICS_KIND: &str = "semantics";

/// Top-level envelope for a semantics YAML file. Mirrors the
/// `kind / metadata / spec` shape used by context, pipelines, jobs, and
/// aliases.
///
/// `kind` is `Option<String>` so the loader can distinguish "no kind"
/// (legitimate, treat as not-a-semantics file when scanning a mixed dir)
/// from "wrong kind" (only relevant when the file was named explicitly).
/// `metadata` is opaque — nothing at runtime reads inside it, but the
/// field is kept so a typo (`metdata:`) surfaces at parse time.
#[derive(Debug, Clone, Deserialize)]
pub struct SemanticsFile {
    #[serde(default)]
    pub kind: Option<String>,
    #[serde(default)]
    #[allow(dead_code)]
    pub metadata: serde_yaml::Value,
    #[serde(default)]
    pub spec: SemanticsSpec,
}

/// `spec:` block — a flat list of per-source overlays.
#[derive(Debug, Clone, Default, Deserialize)]
pub struct SemanticsSpec {
    #[serde(default)]
    pub sources: Vec<SourceSemantics>,
}

/// Per-source overlay. `name` is either a bare source name (matching a
/// `data_sources[].name` from the loaded context) or a fully-qualified
/// DataFusion path `catalog.schema.table` that targets one specific
/// physical table — useful for catalog-mode sources that expose many
/// inner tables under a single registration.
///
/// `description` overrides the ctx-inline description on the catalog
/// response. `columns` is optional — supply only the columns that need
/// a description.
#[derive(Debug, Clone, Deserialize)]
pub struct SourceSemantics {
    pub name: String,
    #[serde(default)]
    pub description: Option<String>,
    #[serde(default)]
    pub columns: Vec<ColumnSemantics>,
}

/// Parsed form of `SourceSemantics::name`. Either a bare source name
/// (matches table-mode sources directly and serves as the broad fallback
/// for catalog-mode sources) or a fully-qualified `catalog.schema.table`
/// triple that targets one specific inner table.
///
/// Used as the `HashMap` key inside [`SemanticsRegistry`] so lookups can
/// pick the most specific entry without needing to walk the whole
/// registry.
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
enum SemanticsKey {
    /// Bare source name. Matches `data_sources[].name` from the ctx.
    Source(String),
    /// Fully-qualified DataFusion path. Matches a specific physical
    /// table.
    Qualified {
        catalog: String,
        schema: String,
        table: String,
    },
}

impl SemanticsKey {
    /// Parse a user-supplied `name:` string. Accepts either a single
    /// segment (bare source name) or three dot-separated segments
    /// (qualified path). Anything else is a hard error.
    fn parse(name: &str) -> Result<Self> {
        let parts: Vec<&str> = name.split('.').collect();
        match parts.as_slice() {
            [single] if !single.is_empty() => Ok(Self::Source((*single).to_string())),
            [catalog, schema, table]
                if !catalog.is_empty() && !schema.is_empty() && !table.is_empty() =>
            {
                Ok(Self::Qualified {
                    catalog: (*catalog).to_string(),
                    schema: (*schema).to_string(),
                    table: (*table).to_string(),
                })
            }
            _ => bail!(
                "semantics source name `{name}` must be either a bare \
                 source name (e.g. `products`) or a fully-qualified \
                 `catalog.schema.table` path (e.g. `mydb.public.users`)"
            ),
        }
    }

    /// Source name this key references — for bare keys, the name itself;
    /// for qualified keys, the catalog segment (which equals the
    /// catalog-mode source name). Used for dangling-reference checks
    /// against the loaded ctx.
    fn referenced_source(&self) -> &str {
        match self {
            Self::Source(name) => name,
            Self::Qualified { catalog, .. } => catalog,
        }
    }

    /// Human-readable form for error messages, matching the user's input.
    fn display(&self) -> String {
        match self {
            Self::Source(name) => name.clone(),
            Self::Qualified {
                catalog,
                schema,
                table,
            } => format!("{catalog}.{schema}.{table}"),
        }
    }
}

/// Per-column overlay. `name` must match the column name as it appears in
/// the registered Arrow schema (case-sensitive).
#[derive(Debug, Clone, Deserialize)]
pub struct ColumnSemantics {
    pub name: String,
    #[serde(default)]
    pub description: Option<String>,
}

#[derive(Error, Debug)]
pub enum SemanticsError {
    #[error("Semantics path not found: {path:?}")]
    PathNotFound { path: PathBuf },

    #[error("Failed to parse semantics file {path:?}: {error}")]
    ParseError { path: PathBuf, error: String },

    #[error(
        "Duplicate semantics entry for source `{source_name}` (already defined in {first:?}, redefined in {second:?})"
    )]
    DuplicateSource {
        source_name: String,
        first: PathBuf,
        second: PathBuf,
    },

    #[error(
        "Duplicate semantics entry for column `{source_name}.{column}` (already defined in {first:?}, redefined in {second:?})"
    )]
    DuplicateColumn {
        source_name: String,
        column: String,
        first: PathBuf,
        second: PathBuf,
    },

    #[error(
        "Ambiguous semantics auto-discovery: both {dir:?} and {file:?} exist next to the ctx file. \
         Remove one (or pass --semantics explicitly) so the loader knows which to use."
    )]
    AmbiguousAutoDiscovery { dir: PathBuf, file: PathBuf },
}

/// In-memory lookup attached to `ServerConfig` (server side) or built
/// on-demand by `skardi query --schema` (CLI side). Holds both bare
/// source-name entries and fully-qualified `catalog.schema.table`
/// entries in a single keyed map; per-column descriptions live in a
/// nested map.
///
/// The registry merges *all* semantics files passed in, plus the
/// ctx-inline `description` field, into a single view. Lookups should
/// read from this struct only, not from the raw data source list, so
/// that auto-generated overlays and hand-written ones flow through the
/// same path.
///
/// The inner map is `Arc`-wrapped so cloning the registry (e.g. once per
/// `GET /data_source` request to release the config lock before async
/// work) is O(1).
#[derive(Debug, Clone, Default)]
pub struct SemanticsRegistry {
    entries: Arc<HashMap<SemanticsKey, SourceEntry>>,
}

#[derive(Debug, Clone, Default)]
struct SourceEntry {
    description: Option<String>,
    /// `column name → description`. Only columns with a non-empty description live here.
    columns: HashMap<String, String>,
    /// Origin file for the source-level description, used to render a
    /// helpful "redefined here" error if a second file collides. `None`
    /// when the description came from the ctx-inline seed (which is
    /// always allowed to be overwritten by a semantics file).
    description_origin: Option<PathBuf>,
    /// Origin file per column, same purpose.
    column_origins: HashMap<String, PathBuf>,
}

impl SemanticsRegistry {
    /// Build the registry.
    ///
    /// `semantics_path` may be a single file, a directory, or `None`.
    /// `ctx_descriptions` is the ctx-loaded list of `(source_name,
    /// inline_description)` pairs — used both for the inline-description
    /// fallback and for the dangling-reference validation pass at the end.
    pub fn build(
        semantics_path: Option<&Path>,
        ctx_descriptions: &[(String, Option<String>)],
    ) -> Result<Self> {
        let mut entries: HashMap<SemanticsKey, SourceEntry> = HashMap::new();

        // Seed with ctx-inline descriptions. Semantics-file entries can
        // overwrite these (with their own collision-tracking origin), so
        // load order is: ctx first, files second.
        // Ctx-inline descriptions are always source-level (bare name),
        // since `data_sources[]` only addresses sources, not inner tables.
        for (name, desc) in ctx_descriptions {
            if let Some(d) = desc.as_deref()
                && !d.is_empty()
            {
                entries
                    .entry(SemanticsKey::Source(name.clone()))
                    .or_default()
                    .description = Some(d.to_string());
            }
        }

        // Now walk semantics files (if any) and merge.
        if let Some(path) = semantics_path {
            let files = resolve_semantics_files(path)?;
            for file_path in &files {
                let Some(loaded) = load_semantics_file(file_path)? else {
                    tracing::debug!("Skipping {:?}: no `kind: semantics` at root", file_path);
                    continue;
                };
                merge_into(&mut entries, loaded.spec, file_path)?;
            }
        }

        // Warn (not fail) on dangling references — auto-generated overlays
        // shouldn't brick a partially-rebooted ctx.
        warn_on_dangling_refs(&entries, ctx_descriptions);

        Ok(Self {
            entries: Arc::new(entries),
        })
    }

    /// Bare source-name lookup. Matches the `name: foo` form in a
    /// semantics file (or the ctx-inline `data_sources[].description`
    /// fallback). For table-mode sources where the source name *is* the
    /// physical table name, this is the only form that resolves.
    pub fn table_description(&self, source: &str) -> Option<&str> {
        self.entries
            .get(&SemanticsKey::Source(source.to_string()))
            .and_then(|e| e.description.as_deref())
    }

    /// Bare-source column lookup. See [`Self::table_description`] for the
    /// addressing model.
    pub fn column_description(&self, source: &str, column: &str) -> Option<&str> {
        self.entries
            .get(&SemanticsKey::Source(source.to_string()))
            .and_then(|e| e.columns.get(column).map(String::as_str))
    }

    /// Fully-qualified table lookup — matches the `name:
    /// catalog.schema.table` form. Used to address a specific inner
    /// table of a catalog-mode source.
    pub fn qualified_table_description(
        &self,
        catalog: &str,
        schema: &str,
        table: &str,
    ) -> Option<&str> {
        self.entries
            .get(&SemanticsKey::Qualified {
                catalog: catalog.to_string(),
                schema: schema.to_string(),
                table: table.to_string(),
            })
            .and_then(|e| e.description.as_deref())
    }

    /// Fully-qualified column lookup. See
    /// [`Self::qualified_table_description`] for the addressing model.
    pub fn qualified_column_description(
        &self,
        catalog: &str,
        schema: &str,
        table: &str,
        column: &str,
    ) -> Option<&str> {
        self.entries
            .get(&SemanticsKey::Qualified {
                catalog: catalog.to_string(),
                schema: schema.to_string(),
                table: table.to_string(),
            })
            .and_then(|e| e.columns.get(column).map(String::as_str))
    }

    /// Resolve a description for a physical `(catalog, schema, table)`
    /// triple, with fallback through the bare source name. Most-specific
    /// match wins:
    ///
    /// 1. Qualified `name: catalog.schema.table` entry, or
    /// 2. Bare `name: <source>` entry (for table-mode sources, or the
    ///    catalog-mode broad fallback), or
    /// 3. `None`.
    ///
    /// Pass `source = None` if the caller can't resolve a bare source
    /// name (e.g. ad-hoc URL-registered tables); that path will skip
    /// step 2.
    pub fn resolve_table_description(
        &self,
        catalog: &str,
        schema: &str,
        table: &str,
        source: Option<&str>,
    ) -> Option<&str> {
        self.qualified_table_description(catalog, schema, table)
            .or_else(|| source.and_then(|s| self.table_description(s)))
    }

    /// Same fall-through as [`Self::resolve_table_description`], but
    /// for one column inside the physical table.
    pub fn resolve_column_description(
        &self,
        catalog: &str,
        schema: &str,
        table: &str,
        source: Option<&str>,
        column: &str,
    ) -> Option<&str> {
        self.qualified_column_description(catalog, schema, table, column)
            .or_else(|| source.and_then(|s| self.column_description(s, column)))
    }

    /// True when no overlay (file or ctx-inline) registered any
    /// description. Used by `skardi query --schema` to skip the rendering
    /// path entirely when there is nothing to show.
    pub fn is_empty(&self) -> bool {
        self.entries.is_empty()
    }
}

/// Merge a parsed semantics spec into the in-progress entry map,
/// hard-erroring on duplicate entries (same key, same column).
///
/// Each `name:` is parsed into a [`SemanticsKey`]: a bare segment becomes
/// `Source(name)`, three dot-separated segments become a `Qualified`
/// triple. A 1-part entry and a 3-part entry are different keys — both
/// can coexist; lookup precedence is handled at the registry level.
///
/// Empty-string descriptions (`description: ""`) are treated as absent —
/// same policy as the ctx-inline seed pass — so they never overwrite a
/// non-empty fallback nor count toward the duplicate-detection.
fn merge_into(
    entries: &mut HashMap<SemanticsKey, SourceEntry>,
    spec: SemanticsSpec,
    origin: &Path,
) -> Result<()> {
    for source in spec.sources {
        let key = SemanticsKey::parse(&source.name)
            .with_context(|| format!("In semantics file {origin:?}"))?;
        let key_display = key.display();
        let entry = entries.entry(key.clone()).or_default();

        if let Some(desc) = source.description.filter(|d| !d.is_empty()) {
            if let Some(prior) = &entry.description_origin {
                return Err(SemanticsError::DuplicateSource {
                    source_name: key_display.clone(),
                    first: prior.clone(),
                    second: origin.to_path_buf(),
                }
                .into());
            }
            entry.description = Some(desc);
            entry.description_origin = Some(origin.to_path_buf());
        }

        for col in source.columns {
            if let Some(desc) = col.description.filter(|d| !d.is_empty()) {
                if let Some(prior) = entry.column_origins.get(&col.name) {
                    return Err(SemanticsError::DuplicateColumn {
                        source_name: key_display.clone(),
                        column: col.name.clone(),
                        first: prior.clone(),
                        second: origin.to_path_buf(),
                    }
                    .into());
                }
                entry.columns.insert(col.name.clone(), desc);
                entry.column_origins.insert(col.name, origin.to_path_buf());
            }
        }
    }
    Ok(())
}

/// Warn for entries that don't reference a known ctx source.
///
/// For a bare `Source(name)` key, "known" means `name` appears in
/// `data_sources[].name`. For a `Qualified { catalog, .. }` key, we check
/// the catalog segment, since for catalog-mode sources the catalog name
/// equals the ctx source name. (Unknown inner schemas/tables aren't
/// validated here — they're resolved against the live Arrow schema at
/// render time.)
fn warn_on_dangling_refs(
    entries: &HashMap<SemanticsKey, SourceEntry>,
    ctx_descriptions: &[(String, Option<String>)],
) {
    let known: HashSet<&str> = ctx_descriptions.iter().map(|(n, _)| n.as_str()).collect();
    for key in entries.keys() {
        let referenced = key.referenced_source();
        if !known.contains(referenced) {
            let key_str = key.display();
            tracing::warn!(
                "Semantics references unknown data source `{key_str}`; entry will be ignored \
                 until a matching source is added to the context"
            );
        }
    }
}

/// Resolve which semantics path the loader should use, given an explicit
/// override and/or a ctx directory to auto-discover from.
///
/// Resolution order:
/// 1. `override_path` (e.g. `--semantics <path>`) — used directly if
///    `Some`. No existence check here; the downstream loader will report
///    a missing path with a clearer message.
/// 2. `<ctx_dir>/semantics/` if it exists as a directory.
/// 3. `<ctx_dir>/semantics.yaml` (or `.yml`) if it exists as a file.
/// 4. `None` — no overlay configured.
///
/// Defining both `<ctx_dir>/semantics/` and `<ctx_dir>/semantics.yaml`
/// is a hard error: silent shadowing of overlays that drive an agent's
/// catalog view is exactly the sort of bug we want loud.
pub fn resolve_semantics_source(
    ctx_dir: Option<&Path>,
    override_path: Option<&Path>,
) -> Result<Option<PathBuf>> {
    if let Some(p) = override_path {
        return Ok(Some(p.to_path_buf()));
    }
    let Some(dir) = ctx_dir else {
        return Ok(None);
    };

    let dir_path = dir.join("semantics");
    let yaml_path = dir.join("semantics.yaml");
    let yml_path = dir.join("semantics.yml");

    let dir_exists = dir_path.is_dir();
    let single_file = if yaml_path.is_file() {
        Some(yaml_path)
    } else if yml_path.is_file() {
        Some(yml_path)
    } else {
        None
    };

    match (dir_exists, single_file) {
        (true, Some(file)) => Err(SemanticsError::AmbiguousAutoDiscovery {
            dir: dir_path,
            file,
        }
        .into()),
        (true, None) => Ok(Some(dir_path)),
        (false, Some(file)) => Ok(Some(file)),
        (false, None) => Ok(None),
    }
}

/// Walk a path that may be either a single yaml file or a directory of yaml
/// files. Mirrors `resolve_pipeline_files` semantics: a directory yields
/// every `*.yaml` / `*.yml` at one level, sorted alphabetically; a missing
/// path is a hard error.
fn resolve_semantics_files(path: &Path) -> Result<Vec<PathBuf>> {
    if !path.exists() {
        return Err(SemanticsError::PathNotFound {
            path: path.to_path_buf(),
        }
        .into());
    }

    if path.is_file() {
        return Ok(vec![path.to_path_buf()]);
    }

    if path.is_dir() {
        let mut out = Vec::new();
        for entry in std::fs::read_dir(path)
            .with_context(|| format!("Failed to read semantics directory: {:?}", path))?
        {
            let entry = entry.with_context(|| "Failed to read directory entry")?;
            let p = entry.path();
            if p.is_file()
                && let Some(ext) = p.extension()
            {
                let ext = ext.to_string_lossy().to_lowercase();
                if ext == "yaml" || ext == "yml" {
                    out.push(p);
                }
            }
        }
        out.sort();
        return Ok(out);
    }

    Err(SemanticsError::PathNotFound {
        path: path.to_path_buf(),
    }
    .into())
}

/// Load a single yaml file. Returns `Ok(None)` when the file's root `kind`
/// is missing or set to something other than `semantics` — that is a soft
/// skip during directory scans, mirroring the jobs loader. A malformed
/// yaml or a `kind: semantics` file with broken structure is a hard error.
fn load_semantics_file(path: &Path) -> Result<Option<SemanticsFile>> {
    let raw = std::fs::read_to_string(path)
        .with_context(|| format!("Failed to read semantics file: {:?}", path))?;

    // Peek at the kind first so non-semantics files in a mixed dir parse
    // cheaply and don't trip the strict struct deserialization below.
    #[derive(Deserialize)]
    struct KindOnly {
        #[serde(default)]
        kind: Option<String>,
    }
    let peek: KindOnly = serde_yaml::from_str(&raw).map_err(|e| SemanticsError::ParseError {
        path: path.to_path_buf(),
        error: e.to_string(),
    })?;

    match peek.kind.as_deref() {
        Some(SEMANTICS_KIND) => {}
        Some(_) | None => return Ok(None),
    }

    let parsed: SemanticsFile =
        serde_yaml::from_str(&raw).map_err(|e| SemanticsError::ParseError {
            path: path.to_path_buf(),
            error: e.to_string(),
        })?;

    Ok(Some(parsed))
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::io::Write;
    use tempfile::TempDir;

    fn ctx(name: &str, description: Option<&str>) -> (String, Option<String>) {
        (name.to_string(), description.map(str::to_string))
    }

    fn write_yaml(dir: &Path, name: &str, content: &str) -> PathBuf {
        let p = dir.join(name);
        let mut f = std::fs::File::create(&p).unwrap();
        f.write_all(content.as_bytes()).unwrap();
        p
    }

    #[test]
    fn loads_single_semantics_file() {
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata:
  name: t
  version: 1.0.0
spec:
  sources:
    - name: products
      description: "Product catalog"
      columns:
        - name: price_usd
          description: "Retail price in USD"
"#,
        );

        let sources = vec![ctx("products", None)];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        assert_eq!(reg.table_description("products"), Some("Product catalog"));
        assert_eq!(
            reg.column_description("products", "price_usd"),
            Some("Retail price in USD")
        );
        assert_eq!(reg.column_description("products", "missing"), None);
    }

    #[test]
    fn ctx_inline_description_used_as_fallback() {
        let sources = vec![ctx("products", Some("From ctx"))];
        let reg = SemanticsRegistry::build(None, &sources).unwrap();
        assert_eq!(reg.table_description("products"), Some("From ctx"));
    }

    #[test]
    fn semantics_file_overrides_ctx_inline() {
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata:
  name: t
spec:
  sources:
    - name: products
      description: "Override"
"#,
        );

        let sources = vec![ctx("products", Some("From ctx"))];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        assert_eq!(reg.table_description("products"), Some("Override"));
    }

    #[test]
    fn empty_string_description_in_file_does_not_override_ctx_fallback() {
        // `description: ""` in a semantics file is treated as "no
        // description" — same policy as the ctx-inline seed pass — so it
        // must not overwrite a non-empty ctx fallback. Empty column
        // descriptions are likewise absent.
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: products
      description: ""
      columns:
        - name: id
          description: ""
"#,
        );

        let sources = vec![ctx("products", Some("From ctx"))];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        assert_eq!(
            reg.table_description("products"),
            Some("From ctx"),
            "empty file description must not stomp the ctx fallback"
        );
        assert_eq!(reg.column_description("products", "id"), None);
    }

    #[test]
    fn empty_string_description_does_not_trigger_duplicate_error() {
        // First file sets a real description; second file has `description: ""`
        // for the same source. Since empty is treated as absent, this is
        // *not* a collision and the original description survives.
        let tmp = TempDir::new().unwrap();
        write_yaml(
            tmp.path(),
            "a.yaml",
            r#"
kind: semantics
metadata: { name: a }
spec:
  sources:
    - name: products
      description: "first"
      columns:
        - name: price
          description: "real price"
"#,
        );
        write_yaml(
            tmp.path(),
            "b.yaml",
            r#"
kind: semantics
metadata: { name: b }
spec:
  sources:
    - name: products
      description: ""
      columns:
        - name: price
          description: ""
"#,
        );

        let sources = vec![ctx("products", None)];
        let reg = SemanticsRegistry::build(Some(tmp.path()), &sources).unwrap();
        assert_eq!(reg.table_description("products"), Some("first"));
        assert_eq!(
            reg.column_description("products", "price"),
            Some("real price")
        );
    }

    // ---------- qualified-path keys (catalog.schema.table) ----------

    #[test]
    fn semantics_key_parse_accepts_bare_and_qualified() {
        assert!(matches!(
            SemanticsKey::parse("products").unwrap(),
            SemanticsKey::Source(s) if s == "products"
        ));
        let qualified = SemanticsKey::parse("mydb.public.users").unwrap();
        match qualified {
            SemanticsKey::Qualified {
                catalog,
                schema,
                table,
            } => {
                assert_eq!(catalog, "mydb");
                assert_eq!(schema, "public");
                assert_eq!(table, "users");
            }
            _ => panic!("expected Qualified, got {qualified:?}"),
        }
    }

    #[test]
    fn semantics_key_parse_rejects_two_part_path() {
        // Two parts is ambiguous (schema.table? source.table?). We
        // require either 1 segment or all 3, never something in
        // between.
        let err = SemanticsKey::parse("schema.table").unwrap_err();
        assert!(
            format!("{err}").contains("must be either a bare"),
            "unexpected error: {err}"
        );
    }

    #[test]
    fn semantics_key_parse_rejects_too_many_parts() {
        let err = SemanticsKey::parse("a.b.c.d").unwrap_err();
        assert!(format!("{err}").contains("must be either a bare"));
    }

    #[test]
    fn semantics_key_parse_rejects_empty_segments() {
        // Leading / trailing / interior empty segment ("a..b") is invalid.
        assert!(SemanticsKey::parse("").is_err());
        assert!(SemanticsKey::parse("..").is_err());
        assert!(SemanticsKey::parse("mydb..users").is_err());
        assert!(SemanticsKey::parse(".mydb.public.users").is_err());
    }

    #[test]
    fn malformed_name_in_semantics_file_is_hard_error() {
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: schema.table        # 2-part is invalid
      description: "x"
"#,
        );
        let sources = vec![ctx("anything", None)];
        let err = SemanticsRegistry::build(Some(&path), &sources).unwrap_err();
        let msg = format!("{err:#}");
        assert!(
            msg.contains("must be either a bare"),
            "unexpected error: {msg}"
        );
    }

    #[test]
    fn qualified_path_resolves_specific_inner_table() {
        // A `name: catalog.schema.table` entry is reachable via the
        // qualified-lookup helpers and is *separate* from any bare
        // `name: catalog` entry.
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: wiki.main.pages
      description: "Wiki page contents"
      columns:
        - name: title
          description: "Page title"
"#,
        );

        let sources = vec![ctx("wiki", None)];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        assert_eq!(
            reg.qualified_table_description("wiki", "main", "pages"),
            Some("Wiki page contents")
        );
        assert_eq!(
            reg.qualified_column_description("wiki", "main", "pages", "title"),
            Some("Page title")
        );
        // The bare lookup must NOT pick up the qualified entry — it's a
        // different addressing space.
        assert_eq!(reg.table_description("wiki"), None);
        assert_eq!(reg.column_description("wiki", "title"), None);
    }

    #[test]
    fn resolve_table_description_prefers_qualified_over_bare() {
        // Both `wiki` and `wiki.main.pages` describe the same physical
        // table. The qualified form is more specific, so it wins through
        // resolve_table_description.
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: wiki
      description: "broad fallback"
      columns:
        - name: title
          description: "broad title"
    - name: wiki.main.pages
      description: "specific to pages"
      columns:
        - name: title
          description: "specific title"
"#,
        );

        let sources = vec![ctx("wiki", None)];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        assert_eq!(
            reg.resolve_table_description("wiki", "main", "pages", Some("wiki")),
            Some("specific to pages")
        );
        assert_eq!(
            reg.resolve_column_description("wiki", "main", "pages", Some("wiki"), "title"),
            Some("specific title")
        );
        // For an inner table that has no qualified overlay, the bare
        // `wiki` fallback still applies.
        assert_eq!(
            reg.resolve_table_description("wiki", "main", "revisions", Some("wiki")),
            Some("broad fallback")
        );
        assert_eq!(
            reg.resolve_column_description("wiki", "main", "revisions", Some("wiki"), "title"),
            Some("broad title")
        );
    }

    #[test]
    fn resolve_falls_back_to_none_when_neither_form_present() {
        let sources = vec![ctx("wiki", None)];
        let reg = SemanticsRegistry::build(None, &sources).unwrap();
        assert_eq!(
            reg.resolve_table_description("wiki", "main", "pages", Some("wiki")),
            None
        );
        // No source name passed at all — still fine, just returns None.
        assert_eq!(
            reg.resolve_table_description("wiki", "main", "pages", None),
            None
        );
    }

    #[test]
    fn duplicate_qualified_entry_is_hard_error() {
        // Same `(catalog, schema, table)` defined in two files: still
        // a collision because the keys are equal.
        let tmp = TempDir::new().unwrap();
        write_yaml(
            tmp.path(),
            "a.yaml",
            r#"
kind: semantics
metadata: { name: a }
spec:
  sources:
    - name: wiki.main.pages
      description: "first"
"#,
        );
        write_yaml(
            tmp.path(),
            "b.yaml",
            r#"
kind: semantics
metadata: { name: b }
spec:
  sources:
    - name: wiki.main.pages
      description: "second"
"#,
        );
        let sources = vec![ctx("wiki", None)];
        let err = SemanticsRegistry::build(Some(tmp.path()), &sources).unwrap_err();
        let msg = format!("{err}");
        assert!(
            msg.contains("Duplicate semantics entry for source `wiki.main.pages`"),
            "unexpected error: {msg}"
        );
    }

    #[test]
    fn bare_and_qualified_for_same_source_coexist() {
        // A source-level entry and a qualified entry are *not*
        // duplicates of each other — they're addressed at different
        // levels and resolve_table_description handles precedence.
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: wiki
      description: "broad"
    - name: wiki.main.pages
      description: "specific"
"#,
        );
        let sources = vec![ctx("wiki", None)];
        // Should NOT error.
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        assert_eq!(reg.table_description("wiki"), Some("broad"));
        assert_eq!(
            reg.qualified_table_description("wiki", "main", "pages"),
            Some("specific")
        );
    }

    #[test]
    fn qualified_dangling_reference_warns_via_catalog_segment() {
        // When the catalog segment of a qualified entry doesn't match
        // any ctx source, we warn (just like with bare-name dangling
        // refs). The entry is still loaded and reachable — we just
        // surface the mismatch in logs.
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: nope.public.users
      description: "stale"
"#,
        );
        let sources = vec![ctx("wiki", None)];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        // Entry is still queryable — only logged as a warning.
        assert_eq!(
            reg.qualified_table_description("nope", "public", "users"),
            Some("stale")
        );
    }

    #[test]
    fn directory_skips_non_semantics_yamls() {
        let tmp = TempDir::new().unwrap();
        write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: products
      description: "Product catalog"
"#,
        );
        write_yaml(
            tmp.path(),
            "pipeline.yaml",
            r#"
kind: pipeline
metadata: { name: p, version: 1.0.0 }
spec:
  query: SELECT 1
"#,
        );

        let sources = vec![ctx("products", None)];
        let reg = SemanticsRegistry::build(Some(tmp.path()), &sources).unwrap();
        assert_eq!(reg.table_description("products"), Some("Product catalog"));
    }

    #[test]
    fn duplicate_source_description_is_hard_error() {
        let tmp = TempDir::new().unwrap();
        write_yaml(
            tmp.path(),
            "a.yaml",
            r#"
kind: semantics
metadata: { name: a }
spec:
  sources:
    - name: products
      description: "first"
"#,
        );
        write_yaml(
            tmp.path(),
            "b.yaml",
            r#"
kind: semantics
metadata: { name: b }
spec:
  sources:
    - name: products
      description: "second"
"#,
        );

        let sources = vec![ctx("products", None)];
        let err = SemanticsRegistry::build(Some(tmp.path()), &sources).unwrap_err();
        let msg = format!("{err}");
        assert!(
            msg.contains("Duplicate semantics entry for source `products`"),
            "unexpected error: {msg}"
        );
    }

    #[test]
    fn duplicate_column_description_is_hard_error() {
        let tmp = TempDir::new().unwrap();
        write_yaml(
            tmp.path(),
            "a.yaml",
            r#"
kind: semantics
metadata: { name: a }
spec:
  sources:
    - name: products
      columns:
        - name: price_usd
          description: "first"
"#,
        );
        write_yaml(
            tmp.path(),
            "b.yaml",
            r#"
kind: semantics
metadata: { name: b }
spec:
  sources:
    - name: products
      columns:
        - name: price_usd
          description: "second"
"#,
        );

        let sources = vec![ctx("products", None)];
        let err = SemanticsRegistry::build(Some(tmp.path()), &sources).unwrap_err();
        let msg = format!("{err}");
        assert!(
            msg.contains("Duplicate semantics entry for column `products.price_usd`"),
            "unexpected error: {msg}"
        );
    }

    #[test]
    fn dangling_reference_warns_but_does_not_fail() {
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "sem.yaml",
            r#"
kind: semantics
metadata: { name: t }
spec:
  sources:
    - name: orphan
      description: "no matching source"
"#,
        );

        let sources = vec![ctx("products", None)];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        // The orphan entry is still in the registry — it just gets a warning at load time.
        assert_eq!(reg.table_description("orphan"), Some("no matching source"));
        assert_eq!(reg.table_description("products"), None);
    }

    #[test]
    fn missing_kind_in_explicit_file_is_treated_as_skip_for_directory_scan() {
        // Single-file mode through `build()` goes through `load_semantics_file`
        // (the soft-skip variant) — a yaml without `kind: semantics` is
        // silently ignored even when passed explicitly. This matches the
        // behavior of `--jobs path/to/single.yaml` for non-job files.
        let tmp = TempDir::new().unwrap();
        let path = write_yaml(
            tmp.path(),
            "stray.yaml",
            r#"
metadata: { name: not-a-semantics }
spec:
  sources:
    - name: products
      description: "ignored"
"#,
        );

        let sources = vec![ctx("products", None)];
        let reg = SemanticsRegistry::build(Some(&path), &sources).unwrap();
        assert_eq!(reg.table_description("products"), None);
    }

    #[test]
    fn empty_path_input_returns_empty_registry() {
        let sources: Vec<(String, Option<String>)> = Vec::new();
        let reg = SemanticsRegistry::build(None, &sources).unwrap();
        assert_eq!(reg.table_description("anything"), None);
        assert!(reg.is_empty());
    }

    // ---------- resolve_semantics_source ----------

    #[test]
    fn resolver_returns_override_when_provided() {
        let tmp = TempDir::new().unwrap();
        let explicit = tmp.path().join("custom.yaml");
        let resolved = resolve_semantics_source(Some(tmp.path()), Some(&explicit)).unwrap();
        assert_eq!(resolved.as_deref(), Some(explicit.as_path()));
    }

    #[test]
    fn resolver_returns_none_when_no_ctx_dir_and_no_override() {
        let resolved = resolve_semantics_source(None, None).unwrap();
        assert!(resolved.is_none());
    }

    #[test]
    fn resolver_picks_directory_when_present() {
        let tmp = TempDir::new().unwrap();
        std::fs::create_dir(tmp.path().join("semantics")).unwrap();
        let resolved = resolve_semantics_source(Some(tmp.path()), None)
            .unwrap()
            .unwrap();
        assert_eq!(resolved, tmp.path().join("semantics"));
    }

    #[test]
    fn resolver_picks_yaml_file_when_present() {
        let tmp = TempDir::new().unwrap();
        let file = tmp.path().join("semantics.yaml");
        std::fs::File::create(&file).unwrap();
        let resolved = resolve_semantics_source(Some(tmp.path()), None)
            .unwrap()
            .unwrap();
        assert_eq!(resolved, file);
    }

    #[test]
    fn resolver_picks_yml_file_when_yaml_missing() {
        let tmp = TempDir::new().unwrap();
        let file = tmp.path().join("semantics.yml");
        std::fs::File::create(&file).unwrap();
        let resolved = resolve_semantics_source(Some(tmp.path()), None)
            .unwrap()
            .unwrap();
        assert_eq!(resolved, file);
    }

    #[test]
    fn resolver_returns_none_when_neither_present() {
        let tmp = TempDir::new().unwrap();
        let resolved = resolve_semantics_source(Some(tmp.path()), None).unwrap();
        assert!(resolved.is_none());
    }

    #[test]
    fn resolver_hard_errors_when_dir_and_file_both_present() {
        let tmp = TempDir::new().unwrap();
        std::fs::create_dir(tmp.path().join("semantics")).unwrap();
        std::fs::File::create(tmp.path().join("semantics.yaml")).unwrap();
        let err = resolve_semantics_source(Some(tmp.path()), None).unwrap_err();
        let msg = format!("{err}");
        assert!(
            msg.contains("Ambiguous semantics auto-discovery"),
            "unexpected error: {msg}"
        );
    }

    #[test]
    fn resolver_override_skips_collision_check() {
        // If the user passes an explicit path, we don't even look at the
        // ctx dir — collisions there don't matter.
        let tmp = TempDir::new().unwrap();
        std::fs::create_dir(tmp.path().join("semantics")).unwrap();
        std::fs::File::create(tmp.path().join("semantics.yaml")).unwrap();
        let explicit = tmp.path().join("custom.yaml");
        let resolved = resolve_semantics_source(Some(tmp.path()), Some(&explicit))
            .unwrap()
            .unwrap();
        assert_eq!(resolved, explicit);
    }
}