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
//! Note storage capability — temporal-referential record CRUD.
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use uuid::Uuid;
use crate::types::{BatchWriteSummary, DeleteMode, Page, PageRequest, SqlValue, StorageResult};
/// A storage-level note record. Flat, SQL-friendly representation.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Note {
pub id: Uuid,
pub namespace: String,
pub kind: String,
pub status: String,
pub name: Option<String>,
pub content: String,
pub salience: Option<f64>,
pub decay_factor: Option<f64>,
pub expires_at: Option<i64>,
pub properties: Option<Value>,
pub created_at: i64,
pub updated_at: i64,
pub deleted_at: Option<i64>,
}
impl Note {
/// Create a new note with a generated UUID and current timestamp.
pub fn new(
namespace: impl Into<String>,
kind: impl Into<String>,
content: impl Into<String>,
) -> Self {
let now = chrono::Utc::now().timestamp_micros();
Self {
id: Uuid::new_v4(),
namespace: namespace.into(),
kind: kind.into(),
status: "active".to_string(),
name: None,
content: content.into(),
salience: None,
decay_factor: None,
expires_at: None,
properties: None,
created_at: now,
updated_at: now,
deleted_at: None,
}
}
/// Set the note display name.
pub fn with_name(mut self, n: impl Into<String>) -> Self {
self.name = Some(n.into());
self
}
/// Set salience (infallible). Rejects non-finite values by returning `self`
/// unchanged; clamps finite values to `[0.0, 1.0]`. Prefer
/// [`try_with_salience`](Self::try_with_salience) at public boundaries.
pub fn with_salience(mut self, s: f64) -> Self {
if !s.is_finite() {
return self;
}
self.salience = Some(s.clamp(0.0, 1.0));
self
}
/// Set decay factor (infallible). Rejects non-finite values by returning
/// `self` unchanged; floors finite values at `0.0`. Prefer
/// [`try_with_decay`](Self::try_with_decay) at public boundaries.
pub fn with_decay(mut self, d: f64) -> Self {
if !d.is_finite() {
return self;
}
self.decay_factor = Some(d.max(0.0));
self
}
/// Set salience with validation. Returns an error for non-finite or
/// out-of-range `[0.0, 1.0]` values.
pub fn try_with_salience(mut self, s: f64) -> Result<Self, String> {
if !s.is_finite() {
return Err(format!("salience must be finite, got {s}"));
}
if !(0.0..=1.0).contains(&s) {
return Err(format!("salience must be in [0.0, 1.0], got {s}"));
}
self.salience = Some(s);
Ok(self)
}
/// Set decay factor with validation. Returns an error for non-finite or
/// negative values.
pub fn try_with_decay(mut self, d: f64) -> Result<Self, String> {
if !d.is_finite() {
return Err(format!("decay_factor must be finite, got {d}"));
}
if d < 0.0 {
return Err(format!("decay_factor must be >= 0.0, got {d}"));
}
self.decay_factor = Some(d);
Ok(self)
}
/// Set the note properties JSON blob.
pub fn with_properties(mut self, p: Value) -> Self {
self.properties = Some(p);
self
}
}
#[cfg(test)]
mod tests {
use super::*;
fn base_note() -> Note {
Note::new("ns:test", "memory", "hello world")
}
// -- with_salience --
#[test]
fn with_salience_clamps_to_range() {
let n = base_note().with_salience(1.5);
assert_eq!(n.salience, Some(1.0));
let n = base_note().with_salience(-0.1);
assert_eq!(n.salience, Some(0.0));
let n = base_note().with_salience(0.7);
assert_eq!(n.salience, Some(0.7));
}
#[test]
fn with_salience_ignores_nan() {
let n = base_note().with_salience(f64::NAN);
assert_eq!(n.salience, None, "NaN must not set salience");
}
#[test]
fn with_salience_ignores_inf() {
let n = base_note().with_salience(f64::INFINITY);
assert_eq!(n.salience, None, "+Inf must not set salience");
let n = base_note().with_salience(f64::NEG_INFINITY);
assert_eq!(n.salience, None, "-Inf must not set salience");
}
// -- with_decay --
#[test]
fn with_decay_floors_at_zero() {
let n = base_note().with_decay(-1.0);
assert_eq!(n.decay_factor, Some(0.0));
let n = base_note().with_decay(0.5);
assert_eq!(n.decay_factor, Some(0.5));
}
#[test]
fn with_decay_ignores_nan() {
let n = base_note().with_decay(f64::NAN);
assert_eq!(n.decay_factor, None, "NaN must not set decay_factor");
}
#[test]
fn with_decay_ignores_inf() {
let n = base_note().with_decay(f64::INFINITY);
assert_eq!(n.decay_factor, None, "+Inf must not set decay_factor");
}
// -- try_with_salience --
#[test]
fn try_with_salience_accepts_valid_range() {
let n = base_note().try_with_salience(0.0).unwrap();
assert_eq!(n.salience, Some(0.0));
let n = base_note().try_with_salience(1.0).unwrap();
assert_eq!(n.salience, Some(1.0));
let n = base_note().try_with_salience(0.85).unwrap();
assert_eq!(n.salience, Some(0.85));
}
#[test]
fn try_with_salience_rejects_nan() {
let err = base_note().try_with_salience(f64::NAN).unwrap_err();
assert!(err.contains("finite"), "error must mention finite: {err}");
}
#[test]
fn try_with_salience_rejects_out_of_range() {
let err = base_note().try_with_salience(1.1).unwrap_err();
assert!(err.contains("1.0"), "error must mention bound: {err}");
let err = base_note().try_with_salience(-0.01).unwrap_err();
assert!(err.contains("0.0"), "error must mention bound: {err}");
}
// -- try_with_decay --
#[test]
fn try_with_decay_accepts_valid_values() {
let n = base_note().try_with_decay(0.0).unwrap();
assert_eq!(n.decay_factor, Some(0.0));
let n = base_note().try_with_decay(2.5).unwrap();
assert_eq!(n.decay_factor, Some(2.5));
}
#[test]
fn try_with_decay_rejects_nan() {
let err = base_note().try_with_decay(f64::NAN).unwrap_err();
assert!(err.contains("finite"), "error must mention finite: {err}");
}
#[test]
fn try_with_decay_rejects_negative() {
let err = base_note().try_with_decay(-0.1).unwrap_err();
assert!(err.contains("0.0"), "error must mention bound: {err}");
}
}
/// Sort direction for filtered note queries.
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum SortDir {
Asc,
Desc,
}
/// Comparison operator for a [`PropertyFilter`] on a JSON path.
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum FilterOp {
Eq,
/// Matches rows where the JSON field equals the value OR the field is absent/NULL.
/// Used for properties that may be missing in legacy rows (e.g. `$.read`).
EqOrMissing,
Ne,
Lt,
Lte,
Gt,
Gte,
/// Matches rows where `json_type(properties, path) = value`.
/// Value must be a SQLite json_type string literal: 'true', 'false', 'integer',
/// 'real', 'text', 'array', 'object', or 'null'.
JsonTypeEq,
/// Matches rows where the json_type is absent (NULL) OR differs from value.
/// Equivalent to `json_type IS NULL OR json_type != value`.
/// Used for unread filter: matches any `$.read` that is NOT the JSON boolean true.
JsonTypeNeMissing,
/// Matches rows where `json_extract(properties, path)` equals any value in
/// the set. A row with a missing/NULL property does not match — use
/// `NotInOrMissing` with the complementary set when "absent" should count
/// as included. `PropertyFilter.value` is unused for this op; the set
/// lives in the variant itself.
In(Vec<SqlValue>),
/// Matches rows where the property is missing/NULL OR its value is not in
/// the set. Used for "exclude a small closed set of terminal values, but
/// treat a still-unset property as included" (e.g. GTD default task
/// listing excludes `done`/`cancelled` while a task with no `status` yet
/// still counts as `inbox`, i.e. included). `PropertyFilter.value` is
/// unused for this op; the set lives in the variant itself.
NotInOrMissing(Vec<SqlValue>),
}
/// A single `json_extract(properties, '$.field') op value` predicate.
///
/// Callers import this as `khive_storage::note::PropertyFilter` to avoid
/// collision with the vector-metadata `PropertyFilter` in `khive_storage::types`.
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct PropertyFilter {
pub json_path: String,
pub op: FilterOp,
pub value: SqlValue,
}
/// Filter + sort options for [`NoteStore::query_notes_filtered`].
///
/// Designed for general property-based filtering on any JSON field, not
/// schedule-specific, so D9 and future packs can reuse the same API.
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
pub struct NoteFilter {
pub kind: Option<String>,
#[serde(default)]
pub property_filters: Vec<PropertyFilter>,
/// `(json_path, direction)` — `None` defaults to `created_at DESC`.
pub order_by: Option<(String, SortDir)>,
/// When non-empty, restricts results to any of these namespaces using
/// `namespace IN (...)`. Takes precedence over the `namespace` string
/// parameter passed to `query_notes_filtered`. When empty the
/// caller-supplied `namespace` parameter is used (backward-compatible).
#[serde(default)]
pub namespaces: Vec<String>,
/// Restrict to notes where `created_at >= min_created_at` (microseconds epoch).
/// `None` applies no lower-bound constraint.
pub min_created_at: Option<i64>,
}
/// Temporal-referential note CRUD over the notes substrate table.
#[async_trait]
pub trait NoteStore: Send + Sync + 'static {
/// Insert or update a single note.
async fn upsert_note(&self, note: Note) -> StorageResult<()>;
/// Insert or update a batch of notes.
async fn upsert_notes(&self, notes: Vec<Note>) -> StorageResult<BatchWriteSummary>;
/// Fetch a note by UUID, returning `None` if absent.
async fn get_note(&self, id: Uuid) -> StorageResult<Option<Note>>;
/// Fetch a note by UUID regardless of soft-deletion state.
///
/// Returns the note row even when `deleted_at` is set. Callers use this
/// to distinguish "soft-deleted" from "never existed".
async fn get_note_including_deleted(&self, id: Uuid) -> StorageResult<Option<Note>>;
/// Delete a note by UUID using the specified delete mode.
async fn delete_note(&self, id: Uuid, mode: DeleteMode) -> StorageResult<bool>;
/// Patch `properties`/`updated_at` on an existing note in place via a real
/// `UPDATE`, leaving every other column (including the row's `rowid`)
/// untouched.
///
/// Unlike `upsert_note` (an `INSERT OR REPLACE`, which on a primary-key
/// conflict is a SQLite DELETE+INSERT that silently reassigns the row's
/// implicit `rowid`), this never churns `rowid`, which is required by any
/// caller relying on `rowid` as a stable, monotonically-increasing cursor (#780).
/// Returns `true` when a live (non-soft-deleted) row with this `id` was
/// found and updated, `false` otherwise.
async fn update_note_properties(
&self,
id: Uuid,
properties: Option<Value>,
updated_at: i64,
) -> StorageResult<bool>;
/// Query notes by namespace and optional kind with pagination.
async fn query_notes(
&self,
namespace: &str,
kind: Option<&str>,
page: PageRequest,
) -> StorageResult<Page<Note>>;
/// Query notes with property-based filtering and custom sort.
async fn query_notes_filtered(
&self,
namespace: &str,
filter: &NoteFilter,
page: PageRequest,
) -> StorageResult<Page<Note>>;
/// Fetch up to `max_rows + 1` notes matching `filter` in a single
/// deterministically-ordered SQL statement, with no separate `COUNT(*)`
/// and no pagination loop.
///
/// A single statement observes one consistent snapshot for its entire
/// execution, so the result cannot be split across a concurrent insert
/// the way a `COUNT(*)` followed by independent `LIMIT`/`OFFSET` pages
/// can. Callers detect the over-bound case by checking whether the
/// returned `Vec` has more than `max_rows` items — that means at least
/// `max_rows + 1` rows matched and the caller must reject the query
/// rather than silently return a truncated, possibly priority-incomplete
/// set.
async fn query_notes_filtered_bounded(
&self,
namespace: &str,
filter: &NoteFilter,
max_rows: u32,
) -> StorageResult<Vec<Note>>;
/// Count notes in a namespace, optionally filtered by kind.
async fn count_notes(&self, namespace: &str, kind: Option<&str>) -> StorageResult<u64>;
/// Attempt to insert a note without overwriting an existing row.
///
/// Returns `true` when the row was newly written. Returns `false` only
/// when a live note with the same non-empty `external_id` already exists in
/// the same namespace and kind (confirmed dedup hit). Any other constraint
/// violation (e.g. a primary key collision) is surfaced as a `StorageError`
/// so that callers do not misinterpret unexpected failures as deduplication.
async fn try_insert_note(&self, note: Note) -> StorageResult<bool>;
/// Fetch multiple notes by UUID in a single call.
async fn get_notes_batch(&self, ids: &[Uuid]) -> StorageResult<Vec<Note>> {
let mut out = Vec::with_capacity(ids.len());
for &id in ids {
if let Some(n) = self.get_note(id).await? {
out.push(n);
}
}
Ok(out)
}
}