1use anyhow::{Context, Result, bail};
17use quarb::{AllowShell, NodeId, QueryResult, WithNow};
18
19#[cfg(feature = "native")]
20use std::path::Path;
21use std::rc::Rc;
22
23#[derive(Clone, Default)]
26pub struct Options {
27 pub hidden: bool,
28 pub respect_ignore: bool,
29 pub descend: bool,
30 pub refs: Rc<Vec<(String, String)>>,
33}
34
35pub enum Doc {
39 Json(quarb_json::JsonAdapter),
40 Csv(quarb_csv::CsvAdapter),
41 Xml(quarb_xml::XmlAdapter),
42 Html(quarb_html::HtmlAdapter),
43 Sqlite(quarb_sqlite::SqliteAdapter),
44 #[cfg(feature = "native")]
45 Fs(quarb_fs::FsAdapter),
46 #[cfg(feature = "native")]
47 FsDeep(quarb_compose::ComposeAdapter<quarb_fs::FsAdapter>),
48 #[cfg(feature = "native")]
49 Git(quarb_git::GitAdapter),
50 #[cfg(feature = "native")]
51 Archive(quarb_compose::ComposeAdapter<quarb_archive::ArchiveAdapter>),
52 #[cfg(feature = "native")]
53 Xlsx(quarb_xlsx::XlsxAdapter),
54 #[cfg(feature = "native")]
55 Code(quarb_code::CodeAdapter),
56 Mount(quarb_mount::MountAdapter),
57 Boxed(Dyn, Box<dyn Fn(NodeId) -> String>),
61}
62
63pub struct Dyn(pub Box<dyn quarb::AstAdapter>);
66
67impl quarb::AstAdapter for Dyn {
68 fn root(&self) -> NodeId {
69 self.0.root()
70 }
71 fn children(&self, node: NodeId) -> Vec<NodeId> {
72 self.0.children(node)
73 }
74 fn name(&self, node: NodeId) -> Option<String> {
75 self.0.name(node)
76 }
77 fn parent(&self, node: NodeId) -> Option<NodeId> {
78 self.0.parent(node)
79 }
80 fn traits(&self, node: NodeId) -> Vec<String> {
81 self.0.traits(node)
82 }
83 fn property(&self, node: NodeId, name: &str) -> Option<quarb::Value> {
84 self.0.property(node, name)
85 }
86 fn children_named(&self, node: NodeId, name: &str) -> Vec<NodeId> {
87 self.0.children_named(node, name)
88 }
89 fn default_value(&self, node: NodeId) -> Option<quarb::Value> {
90 self.0.default_value(node)
91 }
92 fn metadata(&self, node: NodeId, key: &str) -> Option<quarb::Value> {
93 self.0.metadata(node, key)
94 }
95 fn links(&self, node: NodeId) -> Vec<(String, NodeId)> {
96 self.0.links(node)
97 }
98 fn backlinks(&self, node: NodeId) -> Vec<(String, NodeId)> {
99 self.0.backlinks(node)
100 }
101 fn resolve(&self, node: NodeId, property: &str, hint: Option<&str>) -> Option<NodeId> {
102 self.0.resolve(node, property, hint)
103 }
104 fn link_property(
105 &self,
106 source: NodeId,
107 label: &str,
108 target: NodeId,
109 name: &str,
110 ) -> Option<quarb::Value> {
111 self.0.link_property(source, label, target, name)
112 }
113 fn quantifier_bound(&self) -> usize {
114 self.0.quantifier_bound()
115 }
116 fn invocation_instant(&self) -> Option<(i64, u32)> {
117 self.0.invocation_instant()
118 }
119 fn unit_scale(&self, expr: &str) -> Option<(f64, String)> {
120 self.0.unit_scale(expr)
121 }
122}
123
124impl Doc {
125 fn boxed_kaiv(a: quarb_kaiv::KaivAdapter) -> Doc {
129 let a = std::rc::Rc::new(a);
130 let r = a.clone();
131 Doc::Boxed(
132 Dyn(Box::new(quarb_mount::Shared(a))),
133 Box::new(move |n| r.locator(n)),
134 )
135 }
136
137 pub fn parse(input: &str, format: &str) -> Result<Doc> {
141 match format {
142 "kaiv" => {
147 let a = quarb_kaiv::KaivAdapter::parse_kaiv(input)
148 .map_err(|e| anyhow::anyhow!("parsing kaiv: {e}"))?;
149 return Ok(Self::boxed_kaiv(a));
150 }
151 "daiv" => {
152 let a = quarb_kaiv::KaivAdapter::parse_daiv(input)
153 .map_err(|e| anyhow::anyhow!("parsing daiv: {e}"))?;
154 return Ok(Self::boxed_kaiv(a));
155 }
156 "json" => quarb_json::JsonAdapter::parse(input)
157 .map(Doc::Json)
158 .context("parsing JSON"),
159 "jsonl" | "ndjson" => quarb_json::JsonAdapter::parse_lines(input)
160 .map(Doc::Json)
161 .context("parsing JSONL"),
162 "yaml" | "yml" => quarb_yaml::parse(input).map(Doc::Json).context("parsing YAML"),
163 "toml" => quarb_toml::parse(input).map(Doc::Json).context("parsing TOML"),
164 "csv" => quarb_csv::CsvAdapter::parse_with_delimiter(input, b',')
165 .map(Doc::Csv)
166 .context("parsing CSV"),
167 "tsv" => quarb_csv::CsvAdapter::parse_with_delimiter(input, b'\t')
168 .map(Doc::Csv)
169 .context("parsing TSV"),
170 "xml" => quarb_xml::XmlAdapter::parse(input)
171 .map(Doc::Xml)
172 .context("parsing XML"),
173 "html" => Ok(Doc::Html(quarb_html::HtmlAdapter::parse(input))),
174 "markdown" | "md" => Ok(Doc::Html(quarb_markdown::parse(input))),
175 other => bail!("unknown format: {other}"),
176 }
177 }
178
179 fn base_dyn(&self) -> &dyn quarb::AstAdapter {
188 match self {
189 Doc::Json(a) => a,
190 Doc::Csv(a) => a,
191 Doc::Xml(a) => a,
192 Doc::Html(a) => a,
193 Doc::Sqlite(a) => a,
194 #[cfg(feature = "native")]
195 Doc::Fs(a) => a,
196 #[cfg(feature = "native")]
197 Doc::FsDeep(a) => a,
198 #[cfg(feature = "native")]
199 Doc::Git(a) => a,
200 #[cfg(feature = "native")]
201 Doc::Archive(a) => a,
202 #[cfg(feature = "native")]
203 Doc::Xlsx(a) => a,
204 #[cfg(feature = "native")]
205 Doc::Code(a) => a,
206 Doc::Mount(a) => a,
207 Doc::Boxed(a, _) => &*a.0,
208 }
209 }
210
211 pub fn run_modeled(
216 &self,
217 query: &str,
218 now: (i64, u32),
219 allow_shell: bool,
220 model: &quarb_model::Model,
221 ) -> quarb::Result<QueryResult> {
222 let (secs, nanos) = now;
223 let base = quarb_model::Borrowed(self.base_dyn());
224 let nowed = WithNow {
225 inner: &base,
226 secs,
227 nanos,
228 };
229 let enriched = quarb_model::ModelAdapter::new(nowed, model.clone());
230 if allow_shell {
231 quarb::run(query, &AllowShell { inner: &enriched })
232 } else {
233 quarb::run(query, &enriched)
234 }
235 }
236
237 pub fn render_modeled(&self, node: NodeId, model: &quarb_model::Model) -> String {
240 let enriched =
241 quarb_model::ModelAdapter::new(quarb_model::Borrowed(self.base_dyn()), model.clone());
242 enriched.locator(node, |bn| self.render(bn))
243 }
244
245 pub fn run(&self, query: &str, now: (i64, u32), allow_shell: bool) -> quarb::Result<QueryResult> {
246 let (secs, nanos) = now;
247 macro_rules! go {
248 ($a:expr) => {{
249 let nowed = WithNow {
250 inner: $a,
251 secs,
252 nanos,
253 };
254 if allow_shell {
255 quarb::run(query, &AllowShell { inner: &nowed })
256 } else {
257 quarb::run(query, &nowed)
258 }
259 }};
260 }
261 match self {
262 Doc::Json(a) => go!(a),
263 Doc::Csv(a) => go!(a),
264 Doc::Xml(a) => go!(a),
265 Doc::Html(a) => go!(a),
266 Doc::Sqlite(a) => go!(a),
267 #[cfg(feature = "native")]
268 Doc::Fs(a) => go!(a),
269 #[cfg(feature = "native")]
270 Doc::FsDeep(a) => go!(a),
271 #[cfg(feature = "native")]
272 Doc::Git(a) => go!(a),
273 #[cfg(feature = "native")]
274 Doc::Archive(a) => go!(a),
275 #[cfg(feature = "native")]
276 Doc::Xlsx(a) => go!(a),
277 #[cfg(feature = "native")]
278 Doc::Code(a) => go!(a),
279 Doc::Mount(a) => go!(a),
280 Doc::Boxed(a, _) => go!(a),
281 }
282 }
283
284 pub fn render(&self, node: NodeId) -> String {
286 match self {
287 Doc::Json(a) => a.pointer(node),
288 Doc::Csv(a) => a.locator(node),
289 Doc::Xml(a) => a.locator(node),
290 Doc::Html(a) => a.locator(node),
291 Doc::Sqlite(a) => a.locator(node),
292 #[cfg(feature = "native")]
293 Doc::Fs(a) => a.path(node).display().to_string(),
294 #[cfg(feature = "native")]
295 Doc::FsDeep(a) => a.locator(node, |o| a.outer().path(o).display().to_string()),
296 #[cfg(feature = "native")]
297 Doc::Git(a) => a.locator(node),
298 #[cfg(feature = "native")]
299 Doc::Archive(a) => a.locator(node, |o| a.outer().locator(o)),
300 #[cfg(feature = "native")]
301 Doc::Xlsx(a) => a.locator(node),
302 #[cfg(feature = "native")]
303 Doc::Code(a) => a.locator(node),
304 Doc::Mount(a) => generic_locator(a, node),
305 Doc::Boxed(_, render) => render(node),
306 }
307 }
308
309 pub fn sqlite_bytes(bytes: &[u8]) -> Result<Doc> {
312 Ok(Doc::Sqlite(
313 quarb_sqlite::SqliteAdapter::from_bytes(bytes)
314 .map_err(|e| anyhow::anyhow!("{e}"))
315 .context("opening SQLite bytes")?,
316 ))
317 }
318
319 pub fn mount_docs(parts: Vec<(String, Doc)>) -> Result<Doc> {
323 let mut mounts: Vec<quarb_mount::Mount> = Vec::new();
324 for (name, doc) in parts {
325 if mounts.iter().any(|m| m.name == name) {
326 bail!("two sources mount as '{name}'; give each a distinct name");
327 }
328 mounts.push(quarb_mount::Mount {
329 name,
330 adapter: doc.into_boxed()?,
331 });
332 }
333 Ok(Doc::Mount(quarb_mount::MountAdapter::new(mounts)))
334 }
335
336 pub fn mount_texts(parts: &[(String, String, String)]) -> Result<Doc> {
341 let mut docs: Vec<(String, Doc)> = Vec::new();
342 for (name, format, text) in parts {
343 let doc = Doc::parse(text, format)
344 .with_context(|| format!("parsing '{name}' as {format}"))?;
345 docs.push((name.clone(), doc));
346 }
347 Doc::mount_docs(docs)
348 }
349
350 fn into_boxed(self) -> Result<Box<dyn quarb::AstAdapter>> {
352 use quarb_mount::Shared;
353 Ok(match self {
354 Doc::Json(a) => Box::new(Shared(Rc::new(a))),
355 Doc::Csv(a) => Box::new(Shared(Rc::new(a))),
356 Doc::Xml(a) => Box::new(Shared(Rc::new(a))),
357 Doc::Html(a) => Box::new(Shared(Rc::new(a))),
358 Doc::Sqlite(a) => Box::new(Shared(Rc::new(a))),
359 #[cfg(feature = "native")]
360 Doc::Fs(a) => Box::new(Shared(Rc::new(a))),
361 #[cfg(feature = "native")]
362 Doc::FsDeep(a) => Box::new(Shared(Rc::new(a))),
363 #[cfg(feature = "native")]
364 Doc::Git(a) => Box::new(Shared(Rc::new(a))),
365 #[cfg(feature = "native")]
366 Doc::Archive(a) => Box::new(Shared(Rc::new(a))),
367 #[cfg(feature = "native")]
368 Doc::Xlsx(a) => Box::new(Shared(Rc::new(a))),
369 #[cfg(feature = "native")]
370 Doc::Code(a) => Box::new(Shared(Rc::new(a))),
371 Doc::Mount(_) => bail!("cannot nest a mount inside a mount"),
372 Doc::Boxed(a, _) => a.0,
373 })
374 }
375}
376
377#[cfg(feature = "native")]
382impl Doc {
383 pub fn open(path: &Path, opts: &Options) -> Result<Doc> {
389 if path.is_dir() {
390 let fsopts = quarb_fs::FsOptions {
391 hidden: opts.hidden,
392 respect_ignore: opts.respect_ignore,
393 };
394 let fs = quarb_fs::FsAdapter::with_options(path, fsopts)
395 .with_context(|| format!("opening directory {}", path.display()))?;
396 return Ok(if opts.descend {
397 Doc::FsDeep(quarb_compose::ComposeAdapter::with_source_paths(
398 fs,
399 |fs, n| Some(fs.path(n)),
400 ))
401 } else {
402 Doc::Fs(fs)
403 });
404 }
405
406 let s = path.to_string_lossy();
407 if let Some(repo) = s.strip_prefix("git:") {
408 let a =
409 quarb_git::GitAdapter::open(Path::new(repo)).context("opening git repository")?;
410 return Ok(Doc::Git(a));
411 }
412
413 let ext = path
414 .extension()
415 .and_then(|e| e.to_str())
416 .map(|e| e.to_ascii_lowercase());
417
418 if let Some(e) = &ext
419 && quarb_code::supported(e)
420 {
421 let a = quarb_code::CodeAdapter::open(path).context("parsing source file")?;
422 return Ok(Doc::Code(a));
423 }
424 if matches!(ext.as_deref(), Some("xlsx" | "xls" | "ods")) {
425 let a = quarb_xlsx::XlsxAdapter::open(path).context("opening workbook")?;
426 return Ok(Doc::Xlsx(a));
427 }
428 if is_sqlite(path) {
429 let a = quarb_sqlite::SqliteAdapter::open_with_refs(path, &opts.refs)
430 .context("opening SQLite database")?;
431 return Ok(Doc::Sqlite(a));
432 }
433 if is_archive(path) {
434 let a = quarb_archive::ArchiveAdapter::open(path).context("opening archive")?;
435 return Ok(Doc::Archive(quarb_compose::ComposeAdapter::new(a)));
436 }
437
438 let text = std::fs::read_to_string(path)
440 .with_context(|| format!("reading {}", path.display()))?;
441 let text = text
442 .strip_prefix('\u{feff}')
443 .map(str::to_owned)
444 .unwrap_or(text);
445 match ext.as_deref() {
446 Some("csv") => Doc::parse(&text, "csv"),
447 Some("tsv") => Doc::parse(&text, "tsv"),
448 Some("yaml" | "yml") => Doc::parse(&text, "yaml"),
449 Some("toml") => Doc::parse(&text, "toml"),
450 Some("md" | "markdown") => Doc::parse(&text, "markdown"),
451 Some("jsonl" | "ndjson") => Doc::parse(&text, "jsonl"),
452 _ => {
453 if is_xml(path, &text) {
454 Doc::parse(&text, "xml")
455 } else if is_html(path, &text) {
456 Doc::parse(&text, "html")
457 } else {
458 Doc::parse(&text, "json")
459 }
460 }
461 }
462 }
463
464 pub fn mount(paths: &[std::path::PathBuf], opts: &Options) -> Result<Doc> {
468 let specs: Vec<crate::MountSpec> = paths
469 .iter()
470 .map(|p| crate::MountSpec {
471 name: None,
472 path: p.clone(),
473 })
474 .collect();
475 Doc::mount_specs(&specs, opts)
476 }
477
478 pub fn mount_specs(specs: &[crate::MountSpec], opts: &Options) -> Result<Doc> {
481 let mut mounts: Vec<quarb_mount::Mount> = Vec::new();
482 for (i, spec) in specs.iter().enumerate() {
483 let name = spec.name.clone().unwrap_or_else(|| {
484 spec.path
485 .file_stem()
486 .map(|s| s.to_string_lossy().into_owned())
487 .unwrap_or_else(|| format!("doc{i}"))
488 });
489 if mounts.iter().any(|m| m.name == name) {
490 bail!(
491 "input '{}' mounts as '{name}', colliding with an earlier input of the \
492 same name; give each a distinct basename (or a NAME=TARGET alias)",
493 spec.path.display()
494 );
495 }
496 let adapter = Doc::open(&spec.path, opts)?.into_boxed()?;
497 mounts.push(quarb_mount::Mount { name, adapter });
498 }
499 Ok(Doc::Mount(quarb_mount::MountAdapter::new(mounts)))
500 }
501
502}
503
504fn generic_locator<A: quarb::AstAdapter>(a: &A, node: NodeId) -> String {
508 let mut parts = Vec::new();
509 let mut cur = Some(node);
510 while let Some(n) = cur {
511 if let Some(nm) = a.name(n) {
512 parts.push(nm);
513 }
514 cur = a.parent(n);
515 }
516 parts.reverse();
517 format!("/{}", parts.join("/"))
518}
519
520#[cfg(feature = "native")]
523fn is_sqlite(path: &Path) -> bool {
524 if path
525 .extension()
526 .and_then(|e| e.to_str())
527 .is_some_and(|e| matches!(e.to_ascii_lowercase().as_str(), "db" | "sqlite" | "sqlite3"))
528 {
529 return true;
530 }
531 use std::io::Read as _;
532 let mut buf = [0u8; 16];
533 std::fs::File::open(path)
534 .and_then(|mut f| f.read_exact(&mut buf))
535 .is_ok()
536 && &buf == b"SQLite format 3\0"
537}
538
539#[cfg(feature = "native")]
541fn is_archive(path: &Path) -> bool {
542 if path.extension().and_then(|e| e.to_str()).is_some_and(|e| {
543 matches!(
544 e.to_ascii_lowercase().as_str(),
545 "zip" | "tar" | "gz" | "tgz" | "jar" | "war" | "docx" | "pptx" | "odt" | "odp"
546 )
547 }) {
548 return true;
549 }
550 use std::io::Read as _;
551 let mut buf = [0u8; 2];
552 std::fs::File::open(path)
553 .and_then(|mut f| f.read_exact(&mut buf))
554 .is_ok()
555 && (&buf == b"PK" || buf == [0x1f, 0x8b])
556}
557
558#[cfg(feature = "native")]
561fn is_xml(path: &Path, text: &str) -> bool {
562 path.extension()
563 .and_then(|e| e.to_str())
564 .is_some_and(|e| matches!(e.to_ascii_lowercase().as_str(), "xml" | "svg" | "xhtml"))
565 || text.trim_start().starts_with("<?xml")
566}
567
568#[cfg(feature = "native")]
571fn is_html(path: &Path, text: &str) -> bool {
572 path.extension()
573 .and_then(|e| e.to_str())
574 .is_some_and(|e| matches!(e.to_ascii_lowercase().as_str(), "html" | "htm"))
575 || text.trim_start().starts_with('<')
576}