sqlite_graphrag/output.rs
1//! Single point of terminal I/O for the CLI (stdout JSON, stderr human).
2//!
3//! All user-visible output must go through this module; direct `println!` in
4//! other modules is forbidden.
5
6use crate::errors::AppError;
7use serde::Serialize;
8
9/// Output format variants accepted by `--format` CLI flags.
10#[derive(Debug, Clone, Copy, clap::ValueEnum, Default)]
11pub enum OutputFormat {
12 #[default]
13 Json,
14 Text,
15 Markdown,
16}
17
18/// Restricted JSON-only format for commands that always emit JSON.
19#[derive(Debug, Clone, Copy, clap::ValueEnum, Default)]
20pub enum JsonOutputFormat {
21 #[default]
22 Json,
23}
24
25/// Serializes `value` as pretty-printed JSON and writes it to stdout with a trailing newline.
26///
27/// Flushes stdout after writing. A `BrokenPipe` error is silenced so that
28/// piping to consumers that close early (e.g. `head`) does not surface an error.
29///
30/// # Errors
31/// Returns `Err` when serialization fails or when a non-`BrokenPipe` I/O error occurs.
32pub fn emit_json<T: Serialize>(value: &T) -> Result<(), AppError> {
33 let json = serde_json::to_string_pretty(value)?;
34 let mut out = std::io::stdout().lock();
35 if let Err(e) = std::io::Write::write_all(&mut out, json.as_bytes())
36 .and_then(|()| std::io::Write::write_all(&mut out, b"\n"))
37 .and_then(|()| std::io::Write::flush(&mut out))
38 {
39 if e.kind() == std::io::ErrorKind::BrokenPipe {
40 return Ok(());
41 }
42 return Err(AppError::Io(e));
43 }
44 Ok(())
45}
46
47/// Serializes `value` as compact (single-line) JSON and writes it to stdout with a trailing newline.
48///
49/// Flushes stdout after writing. A `BrokenPipe` error is silenced.
50///
51/// # Errors
52/// Returns `Err` when serialization fails or when a non-`BrokenPipe` I/O error occurs.
53pub fn emit_json_compact<T: Serialize>(value: &T) -> Result<(), AppError> {
54 let json = serde_json::to_string(value)?;
55 let mut out = std::io::stdout().lock();
56 if let Err(e) = std::io::Write::write_all(&mut out, json.as_bytes())
57 .and_then(|()| std::io::Write::write_all(&mut out, b"\n"))
58 .and_then(|()| std::io::Write::flush(&mut out))
59 {
60 if e.kind() == std::io::ErrorKind::BrokenPipe {
61 return Ok(());
62 }
63 return Err(AppError::Io(e));
64 }
65 Ok(())
66}
67
68/// Writes `msg` followed by a newline to stdout and flushes.
69///
70/// A `BrokenPipe` error is silenced gracefully.
71pub fn emit_text(msg: &str) {
72 let mut out = std::io::stdout().lock();
73 let _ = std::io::Write::write_all(&mut out, msg.as_bytes())
74 .and_then(|()| std::io::Write::write_all(&mut out, b"\n"))
75 .and_then(|()| std::io::Write::flush(&mut out));
76}
77
78/// Logs `msg` as a structured `tracing::info!` event (does not write to stdout).
79pub fn emit_progress(msg: &str) {
80 tracing::info!(message = msg);
81}
82
83/// Emits a bilingual progress message honouring `--lang` or `SQLITE_GRAPHRAG_LANG`.
84/// Usage: `output::emit_progress_i18n("Computing embedding...", "Calculando embedding...")`.
85pub fn emit_progress_i18n(en: &str, pt: &str) {
86 use crate::i18n::{current, Language};
87 match current() {
88 Language::English => tracing::info!(message = en),
89 Language::Portuguese => tracing::info!(message = pt),
90 }
91}
92
93/// Emits a localised error message to stderr with the `Error:`/`Erro:` prefix.
94///
95/// Centralises human-readable error output following Pattern 5 (`output.rs` is the
96/// SOLE I/O point of the CLI). Does not log via `tracing` — call `tracing::error!`
97/// explicitly before this function when structured observability is desired.
98pub fn emit_error(localized_msg: &str) {
99 eprintln!("{}: {}", crate::i18n::error_prefix(), localized_msg);
100}
101
102/// Emits a bilingual error to stderr honouring `--lang` or `SQLITE_GRAPHRAG_LANG`.
103/// Usage: `output::emit_error_i18n("invariant violated", "invariante violado")`.
104pub fn emit_error_i18n(en: &str, pt: &str) {
105 use crate::i18n::{current, Language};
106 let msg = match current() {
107 Language::English => en,
108 Language::Portuguese => pt,
109 };
110 emit_error(msg);
111}
112
113/// JSON payload emitted by the `remember` subcommand.
114///
115/// All fields are required by the JSON contract (see `docs/schemas/remember.schema.json`).
116/// `operation` is an alias of `action` for compatibility with clients using the old field name.
117///
118/// # Examples
119///
120/// ```
121/// use sqlite_graphrag::output::RememberResponse;
122///
123/// let resp = RememberResponse {
124/// memory_id: 1,
125/// name: "nota-inicial".into(),
126/// namespace: "global".into(),
127/// action: "created".into(),
128/// operation: "created".into(),
129/// version: 1,
130/// entities_persisted: 0,
131/// relationships_persisted: 0,
132/// relationships_truncated: false,
133/// chunks_created: 1,
134/// chunks_persisted: 0,
135/// urls_persisted: 0,
136/// extraction_method: None,
137/// merged_into_memory_id: None,
138/// warnings: vec![],
139/// created_at: 1_700_000_000,
140/// created_at_iso: "2023-11-14T22:13:20Z".into(),
141/// elapsed_ms: 42,
142/// name_was_normalized: false,
143/// original_name: None,
144/// };
145///
146/// let json = serde_json::to_string(&resp).unwrap();
147/// assert!(json.contains("\"memory_id\":1"));
148/// assert!(json.contains("\"elapsed_ms\":42"));
149/// assert!(json.contains("\"merged_into_memory_id\":null"));
150/// assert!(json.contains("\"urls_persisted\":0"));
151/// assert!(json.contains("\"relationships_truncated\":false"));
152/// ```
153#[derive(Serialize)]
154pub struct RememberResponse {
155 pub memory_id: i64,
156 pub name: String,
157 pub namespace: String,
158 pub action: String,
159 /// Semantic alias of `action` for compatibility with the contract documented in SKILL.md and AGENT_PROTOCOL.md.
160 pub operation: String,
161 pub version: i64,
162 pub entities_persisted: usize,
163 pub relationships_persisted: usize,
164 /// True when the relationship builder hit the cap before covering all entity pairs.
165 /// Callers can use this to decide whether to increase GRAPHRAG_MAX_RELATIONSHIPS_PER_MEMORY.
166 pub relationships_truncated: bool,
167 /// Total number of chunks the body was split into BEFORE dedup.
168 ///
169 /// For single-chunk bodies this equals 1 even though no row is added to
170 /// the `memory_chunks` table — the memory row itself acts as the chunk.
171 /// Use `chunks_persisted` to know how many rows were actually written.
172 pub chunks_created: usize,
173 /// Number of chunks actually written to chunks/embeddings tables. Always <= chunks_created.
174 ///
175 /// Equal when no chunk had identical normalized text already in DB; less when dedup skipped
176 /// some. Equals zero for single-chunk bodies (the memory row is the chunk) and equals
177 /// `chunks_created` for multi-chunk bodies. Added in v1.0.23 to disambiguate from
178 /// `chunks_created` and reflect database state precisely.
179 pub chunks_persisted: usize,
180 /// Number of unique URLs inserted into `memory_urls` for this memory.
181 /// Added in v1.0.24 — split URLs out of the entity graph (P0-2 fix).
182 #[serde(default)]
183 pub urls_persisted: usize,
184 /// Extraction method used: "bert+regex" or "regex-only". None when skip-extraction.
185 #[serde(skip_serializing_if = "Option::is_none")]
186 pub extraction_method: Option<String>,
187 pub merged_into_memory_id: Option<i64>,
188 pub warnings: Vec<String>,
189 /// Timestamp Unix epoch seconds.
190 pub created_at: i64,
191 /// RFC 3339 UTC timestamp string parallel to `created_at` for ISO 8601 parsers.
192 pub created_at_iso: String,
193 /// Total execution time in milliseconds from handler start to serialisation.
194 pub elapsed_ms: u64,
195 /// True when the user-supplied `--name` differed from the persisted slug
196 /// (i.e. kebab-case normalization changed the value). Added in v1.0.32 so
197 /// callers can detect normalization without parsing stderr WARN logs.
198 #[serde(default)]
199 pub name_was_normalized: bool,
200 /// Original user-supplied `--name` value before normalization.
201 /// Present only when `name_was_normalized == true`; omitted otherwise to
202 /// keep the common (already-kebab) payload small.
203 #[serde(skip_serializing_if = "Option::is_none")]
204 pub original_name: Option<String>,
205}
206
207/// Individual item returned by the `recall` query.
208///
209/// The `memory_type` field is serialised as `"type"` in JSON to maintain
210/// compatibility with external clients — the Rust name uses `memory_type`
211/// to avoid conflict with the reserved keyword.
212///
213/// # Examples
214///
215/// ```
216/// use sqlite_graphrag::output::RecallItem;
217///
218/// let item = RecallItem {
219/// memory_id: 7,
220/// name: "nota-rust".into(),
221/// namespace: "global".into(),
222/// memory_type: "user".into(),
223/// description: "aprendizado de Rust".into(),
224/// snippet: "ownership e borrowing".into(),
225/// distance: 0.12,
226/// score: 0.88,
227/// source: "direct".into(),
228/// graph_depth: None,
229/// };
230///
231/// let json = serde_json::to_string(&item).unwrap();
232/// // Rust field `memory_type` appears as `"type"` in JSON.
233/// assert!(json.contains("\"type\":\"user\""));
234/// assert!(!json.contains("memory_type"));
235/// assert!(json.contains("\"distance\":0.12"));
236/// ```
237#[derive(Serialize, Clone)]
238pub struct RecallItem {
239 pub memory_id: i64,
240 pub name: String,
241 pub namespace: String,
242 #[serde(rename = "type")]
243 pub memory_type: String,
244 pub description: String,
245 pub snippet: String,
246 pub distance: f32,
247 /// Cosine similarity in `[0.0, 1.0]` derived as `1.0 - distance` and clamped
248 /// to that interval. Always populated to satisfy the documented contract
249 /// (M-A5 in v1.0.40); higher means more similar. For graph hits the value
250 /// reflects the hop-derived distance proxy and should be interpreted
251 /// alongside `graph_depth` rather than as a true cosine score.
252 pub score: f32,
253 pub source: String,
254 /// Number of graph hops between this match and the seed memories.
255 ///
256 /// Set to `None` for direct vector matches (where `distance` is meaningful)
257 /// and to `Some(N)` for traversal results, with `N=0` when the depth could
258 /// not be tracked precisely. Added in v1.0.23 to disambiguate graph results
259 /// from the `distance: 0.0` placeholder previously used for graph entries.
260 /// Field is omitted from JSON output when `None`.
261 #[serde(skip_serializing_if = "Option::is_none")]
262 pub graph_depth: Option<u32>,
263}
264
265impl RecallItem {
266 /// Computes the similarity score from a vector distance, clamped to
267 /// `[0.0, 1.0]`. Cosine distance returned by sqlite-vec lives in `[0, 2]`
268 /// in theory but the embedder produces unit-norm vectors so the practical
269 /// range is `[0, 1]`. Centralized so every constructor keeps the contract.
270 pub fn score_from_distance(distance: f32) -> f32 {
271 let raw = 1.0 - distance;
272 if raw.is_nan() {
273 0.0
274 } else {
275 raw.clamp(0.0, 1.0)
276 }
277 }
278}
279
280/// Full response envelope returned by the `recall` subcommand.
281///
282/// Contains both direct vector matches and graph-traversal matches, plus the
283/// aggregated `results` list that merges both for callers that do not need
284/// to distinguish the source.
285#[derive(Serialize)]
286pub struct RecallResponse {
287 pub query: String,
288 pub k: usize,
289 pub direct_matches: Vec<RecallItem>,
290 pub graph_matches: Vec<RecallItem>,
291 /// Aggregated alias of `direct_matches` + `graph_matches` for the contract documented in SKILL.md.
292 pub results: Vec<RecallItem>,
293 /// Total execution time in milliseconds from handler start to serialisation.
294 pub elapsed_ms: u64,
295}
296
297#[cfg(test)]
298mod tests {
299 use super::*;
300 use serde::Serialize;
301
302 #[derive(Serialize)]
303 struct Dummy {
304 val: u32,
305 }
306
307 // Non-serializable type to force a JSON serialization error
308 struct NotSerializable;
309 impl Serialize for NotSerializable {
310 fn serialize<S: serde::Serializer>(&self, _: S) -> Result<S::Ok, S::Error> {
311 Err(serde::ser::Error::custom(
312 "intentional serialization failure",
313 ))
314 }
315 }
316
317 #[test]
318 fn emit_json_returns_ok_for_valid_value() {
319 let v = Dummy { val: 42 };
320 assert!(emit_json(&v).is_ok());
321 }
322
323 #[test]
324 fn emit_json_returns_err_for_non_serializable_value() {
325 let v = NotSerializable;
326 assert!(emit_json(&v).is_err());
327 }
328
329 #[test]
330 fn emit_json_compact_returns_ok_for_valid_value() {
331 let v = Dummy { val: 7 };
332 assert!(emit_json_compact(&v).is_ok());
333 }
334
335 #[test]
336 fn emit_json_compact_returns_err_for_non_serializable_value() {
337 let v = NotSerializable;
338 assert!(emit_json_compact(&v).is_err());
339 }
340
341 #[test]
342 fn emit_text_does_not_panic() {
343 emit_text("mensagem de teste");
344 }
345
346 #[test]
347 fn emit_progress_does_not_panic() {
348 emit_progress("progresso de teste");
349 }
350
351 #[test]
352 fn remember_response_serializes_correctly() {
353 let r = RememberResponse {
354 memory_id: 1,
355 name: "teste".to_string(),
356 namespace: "ns".to_string(),
357 action: "created".to_string(),
358 operation: "created".to_string(),
359 version: 1,
360 entities_persisted: 2,
361 relationships_persisted: 3,
362 relationships_truncated: false,
363 chunks_created: 4,
364 chunks_persisted: 4,
365 urls_persisted: 2,
366 extraction_method: None,
367 merged_into_memory_id: None,
368 warnings: vec!["aviso".to_string()],
369 created_at: 1776569715,
370 created_at_iso: "2026-04-19T03:34:15Z".to_string(),
371 elapsed_ms: 123,
372 name_was_normalized: false,
373 original_name: None,
374 };
375 let json = serde_json::to_string(&r).unwrap();
376 assert!(json.contains("memory_id"));
377 assert!(json.contains("aviso"));
378 assert!(json.contains("\"namespace\""));
379 assert!(json.contains("\"merged_into_memory_id\""));
380 assert!(json.contains("\"operation\""));
381 assert!(json.contains("\"created_at\""));
382 assert!(json.contains("\"created_at_iso\""));
383 assert!(json.contains("\"elapsed_ms\""));
384 assert!(json.contains("\"urls_persisted\""));
385 assert!(json.contains("\"relationships_truncated\":false"));
386 }
387
388 #[test]
389 fn recall_item_serializes_renamed_type_field() {
390 let item = RecallItem {
391 memory_id: 10,
392 name: "entidade".to_string(),
393 namespace: "ns".to_string(),
394 memory_type: "entity".to_string(),
395 description: "desc".to_string(),
396 snippet: "trecho".to_string(),
397 distance: 0.5,
398 score: RecallItem::score_from_distance(0.5),
399 source: "db".to_string(),
400 graph_depth: None,
401 };
402 let json = serde_json::to_string(&item).unwrap();
403 assert!(json.contains("\"type\""));
404 assert!(!json.contains("memory_type"));
405 // Field is omitted from JSON when None.
406 assert!(!json.contains("graph_depth"));
407 assert!(json.contains("\"score\":0.5"));
408 }
409
410 #[test]
411 fn recall_response_serializes_with_lists() {
412 let resp = RecallResponse {
413 query: "busca".to_string(),
414 k: 10,
415 direct_matches: vec![],
416 graph_matches: vec![],
417 results: vec![],
418 elapsed_ms: 42,
419 };
420 let json = serde_json::to_string(&resp).unwrap();
421 assert!(json.contains("direct_matches"));
422 assert!(json.contains("graph_matches"));
423 assert!(json.contains("\"k\":"));
424 assert!(json.contains("\"results\""));
425 assert!(json.contains("\"elapsed_ms\""));
426 }
427
428 #[test]
429 fn output_format_default_is_json() {
430 let fmt = OutputFormat::default();
431 assert!(matches!(fmt, OutputFormat::Json));
432 }
433
434 #[test]
435 fn output_format_variants_exist() {
436 let _text = OutputFormat::Text;
437 let _md = OutputFormat::Markdown;
438 let _json = OutputFormat::Json;
439 }
440
441 #[test]
442 fn recall_item_clone_produces_equal_value() {
443 let item = RecallItem {
444 memory_id: 99,
445 name: "clone".to_string(),
446 namespace: "ns".to_string(),
447 memory_type: "relation".to_string(),
448 description: "d".to_string(),
449 snippet: "s".to_string(),
450 distance: 0.1,
451 score: RecallItem::score_from_distance(0.1),
452 source: "src".to_string(),
453 graph_depth: Some(2),
454 };
455 let cloned = item.clone();
456 assert_eq!(cloned.memory_id, item.memory_id);
457 assert_eq!(cloned.name, item.name);
458 assert_eq!(cloned.graph_depth, Some(2));
459 }
460}