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
//! Concurrent palace registry.
//!
//! Why: The service is machine-wide and must serve many concurrent requests
//! across multiple palaces; a `DashMap<PalaceId, Arc<PalaceHandle>>` lets
//! lookups proceed without blocking other readers or writers.
//! What: Wraps a `DashMap` with register / get / list helpers. The
//! `PalaceHandle` type re-exported here is the canonical retrieval handle from
//! [`crate::retrieval`] — there is exactly one `PalaceHandle` in the crate.
//! Test: Register two palaces on separate tasks, assert both visible via `list()`.
use crate::memory_core::palace::{Palace, PalaceId};
use crate::memory_core::retrieval::PalaceHandle;
use crate::memory_core::store::palace_store::PalaceStore;
use anyhow::{Context, Result};
use dashmap::DashMap;
use std::path::Path;
use std::sync::Arc;
#[derive(Default, Clone)]
pub struct PalaceRegistry {
palaces: Arc<DashMap<PalaceId, Arc<PalaceHandle>>>,
}
impl PalaceRegistry {
pub fn new() -> Self {
Self::default()
}
/// Insert a new palace handle, replacing any prior entry with the same id.
///
/// Why: Registry is the single source of truth for live palaces; callers
/// hand off ownership of a freshly built handle and the registry shares it
/// behind an `Arc` to all concurrent readers.
/// What: Reads `handle.id`, wraps the handle in `Arc`, and inserts.
/// Test: `register_and_get_roundtrip` re-fetches by id and compares.
pub fn register(&self, handle: PalaceHandle) {
let id = handle.id.clone();
self.palaces.insert(id, Arc::new(handle));
}
/// Insert an already-shared handle. Useful when the caller wants to keep
/// its own `Arc` reference (e.g. to mutate L1 caches under a separate lock).
pub fn register_arc(&self, handle: Arc<PalaceHandle>) {
let id = handle.id.clone();
self.palaces.insert(id, handle);
}
/// Cheap clone of the `Arc` — no locking, never blocks readers.
pub fn get(&self, id: &PalaceId) -> Option<Arc<PalaceHandle>> {
self.palaces.get(id).map(|r| r.clone())
}
pub fn list(&self) -> Vec<PalaceId> {
self.palaces.iter().map(|r| r.key().clone()).collect()
}
pub fn len(&self) -> usize {
self.palaces.len()
}
pub fn is_empty(&self) -> bool {
self.palaces.is_empty()
}
/// Open a palace by id, hydrating from `<data_root>/<palace_id>/` on disk.
///
/// Why: The CLI and MCP server look palaces up by id; this is the single
/// entry point for reconstructing a `PalaceHandle` from disk and
/// memoizing it in the registry.
/// What: Returns the cached `Arc<PalaceHandle>` if present; otherwise loads
/// metadata via `PalaceStore::load_palace`, calls `PalaceHandle::open`, and
/// inserts the handle.
/// Test: `registry_create_and_open` round-trips create -> drop -> reopen.
pub fn open_palace(&self, data_root: &Path, palace_id: &PalaceId) -> Result<Arc<PalaceHandle>> {
if let Some(h) = self.get(palace_id) {
return Ok(h);
}
let palace_dir = data_root.join(palace_id.as_str());
let palace = PalaceStore::load_palace(&palace_dir)
.with_context(|| format!("load palace metadata for {palace_id}"))?;
let handle = PalaceHandle::open(&palace)?;
self.register_arc(handle.clone());
Ok(handle)
}
/// Create and persist a new palace, then open it.
///
/// Why: `palace new` saves metadata and immediately wants a working handle
/// for further operations; combining the steps avoids a TOCTOU between
/// save and open.
/// What: Computes `data_dir = data_root/<id>`, writes `palace.json`, and
/// returns a freshly opened handle (registered in the registry).
/// Test: `registry_create_and_open`.
pub fn create_palace(&self, data_root: &Path, mut palace: Palace) -> Result<Arc<PalaceHandle>> {
// Always anchor data_dir under data_root/<id> so callers can pass a
// bare Palace without worrying about path layout.
let palace_dir = data_root.join(palace.id.as_str());
palace.data_dir = palace_dir.clone();
std::fs::create_dir_all(&palace_dir)
.with_context(|| format!("create palace dir {}", palace_dir.display()))?;
PalaceStore::save_palace(&palace)
.with_context(|| format!("save palace metadata for {}", palace.id))?;
let handle = PalaceHandle::open(&palace)?;
self.register_arc(handle.clone());
Ok(handle)
}
/// List every palace persisted under `data_root`.
///
/// Why: `palace list` and `status` need a registry-wide view that survives
/// across daemon restarts.
/// What: Delegates to `PalaceStore::list_palaces`.
/// Test: `list_palaces_finds_saved_palaces` in the palace_store module
/// covers the underlying walker.
pub fn list_palaces(data_root: &Path) -> Result<Vec<Palace>> {
PalaceStore::list_palaces(data_root)
.with_context(|| format!("list palaces under {}", data_root.display()))
}
/// Open a registry rooted at `data_root` and pre-hydrate every persisted
/// palace into the in-memory map.
///
/// Why: Issue #52 — production hosts (open-mpm) want a single call that
/// brings up the full registry on daemon startup so that recall paths
/// don't pay a lazy-open latency on the first request after a restart.
/// Existing call sites continue to use `new()` + `open_palace()`; this is
/// the convenience for hosts that prefer an eager warmup.
/// What: Creates `data_root` if missing, calls `PalaceStore::list_palaces`,
/// and for each persisted palace builds a `PalaceHandle` via
/// `PalaceHandle::open` and registers it. Errors hydrating a single palace
/// are logged and skipped so one corrupt palace doesn't take the whole
/// registry down — matches the resiliency choice in `PalaceStore::list_palaces`.
/// Test: `open_hydrates_persisted_palaces` exercises restart by writing,
/// dropping, and reopening.
pub fn open(data_root: &Path) -> Result<Self> {
std::fs::create_dir_all(data_root)
.with_context(|| format!("create registry root {}", data_root.display()))?;
let registry = Self::new();
let palaces = PalaceStore::list_palaces(data_root)
.with_context(|| format!("list palaces under {}", data_root.display()))?;
for palace in palaces {
match PalaceHandle::open(&palace) {
Ok(handle) => registry.register_arc(handle),
Err(e) => {
tracing::warn!(palace = %palace.id, "skipping palace during registry open: {e:#}");
}
}
}
Ok(registry)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::memory_core::store::{kg::KnowledgeGraph, vector::UsearchStore};
use tempfile::tempdir;
fn make_handle(id: &str, dir: &std::path::Path) -> PalaceHandle {
let vs = UsearchStore::new(dir.join(format!("{id}.usearch")), 384).unwrap();
let kg = KnowledgeGraph::open(&dir.join(format!("{id}.db"))).unwrap();
PalaceHandle::new(PalaceId::new(id), format!("Identity for {id}"), vs, kg)
}
#[test]
fn register_and_get_roundtrip() {
let dir = tempdir().unwrap();
let reg = PalaceRegistry::new();
reg.register(make_handle("alpha", dir.path()));
let h = reg.get(&PalaceId::new("alpha")).expect("registered");
assert_eq!(h.id.as_str(), "alpha");
}
#[test]
fn registry_create_and_open() {
use crate::memory_core::palace::Palace;
use chrono::Utc;
let dir = tempdir().unwrap();
let data_root = dir.path();
let palace = Palace {
id: PalaceId::new("alpha"),
name: "Alpha".to_string(),
description: Some("test".to_string()),
created_at: Utc::now(),
data_dir: data_root.join("alpha"),
};
// Create through the registry.
{
let reg = PalaceRegistry::new();
let handle = reg
.create_palace(data_root, palace.clone())
.expect("create_palace");
assert_eq!(handle.id, PalaceId::new("alpha"));
// Persist a tiny identity directly (PalaceHandle.identity is set
// at open time so we mutate via PalaceStore for the test).
crate::memory_core::store::palace_store::PalaceStore::save_identity(
&handle.id,
"I am Alpha",
handle.data_dir.as_ref().expect("data_dir set"),
)
.expect("save identity");
}
// Drop the registry, reopen from disk.
let reg2 = PalaceRegistry::new();
let handle2 = reg2
.open_palace(data_root, &PalaceId::new("alpha"))
.expect("open_palace");
assert_eq!(handle2.id, PalaceId::new("alpha"));
assert_eq!(handle2.identity, "I am Alpha");
// list_palaces sees it too.
let palaces = PalaceRegistry::list_palaces(data_root).unwrap();
assert_eq!(palaces.len(), 1);
assert_eq!(palaces[0].name, "Alpha");
}
/// Why: Issue #52 — payloads (drawer content) must survive a process
/// restart. Open a registry, write a drawer with a known content string,
/// drop everything, reopen via `PalaceRegistry::open(path)`, and assert the
/// drawer content is still recoverable from the registered handle.
/// What: Uses `PalaceHandle::remember` (the canonical write path) so the
/// full persistence chain (kg drawer row + usearch vector + L1 snapshot)
/// is exercised, not just metadata.
/// Test: This test itself.
#[tokio::test]
async fn palace_payloads_survive_registry_restart() {
use crate::memory_core::palace::{Palace, RoomType};
use chrono::Utc;
let dir = tempdir().unwrap();
let data_root = dir.path();
// Phase 1: create palace + write a payload, then drop everything.
{
let registry = PalaceRegistry::open(data_root).unwrap();
let palace = Palace {
id: PalaceId::new("restart-test"),
name: "Restart".to_string(),
description: None,
created_at: Utc::now(),
data_dir: data_root.join("restart-test"),
};
let handle = registry.create_palace(data_root, palace).unwrap();
handle
.remember(
"the quokka is a small marsupial native to Western Australia".to_string(),
RoomType::Research,
vec!["wildlife".to_string()],
0.7,
)
.await
.expect("remember persists the drawer");
}
// Phase 2: reopen from disk, assert the payload is still there.
let registry = PalaceRegistry::open(data_root).unwrap();
assert_eq!(
registry.len(),
1,
"registry should have hydrated the persisted palace"
);
let handle = registry
.get(&PalaceId::new("restart-test"))
.expect("palace should be registered after open()");
let drawers = handle.drawers.read().clone();
assert!(
drawers
.iter()
.any(|d| d.content.contains("quokka") && d.tags.contains(&"wildlife".to_string())),
"persisted drawer content must survive restart; got {drawers:?}"
);
}
#[test]
fn list_contains_all_registered() {
let dir = tempdir().unwrap();
let reg = PalaceRegistry::new();
reg.register(make_handle("a", dir.path()));
reg.register(make_handle("b", dir.path()));
let ids: Vec<_> = reg.list().into_iter().map(|p| p.0).collect();
assert_eq!(ids.len(), 2);
assert!(ids.contains(&"a".to_string()));
assert!(ids.contains(&"b".to_string()));
}
}