1use std::collections::HashMap;
39use std::path::{Path, PathBuf};
40use std::sync::Mutex;
41
42use super::CommitId;
43use super::filesystem::{make_commit_id, normalise_rel_path};
44use crate::backend::{BackendError, MemBackend};
45use crate::filesystem::changelog::format_rfc3339_utc;
46use crate::provenance::Provenance;
47use crate::vcs::CommitContext;
48
49enum PendingState {
54 Upsert(Vec<u8>),
55 Delete,
56}
57
58#[derive(Default)]
62struct State {
63 committed: HashMap<String, Vec<u8>>,
67 pending: HashMap<String, PendingState>,
70 provenance: Vec<Provenance>,
73 config: Option<Vec<u8>>,
76}
77
78pub struct InMemoryBackend {
81 state: Mutex<State>,
82}
83
84impl InMemoryBackend {
85 pub fn new() -> Self {
88 Self {
89 state: Mutex::new(State::default()),
90 }
91 }
92
93 fn lock(&self) -> Result<std::sync::MutexGuard<'_, State>, BackendError> {
94 self.state
95 .lock()
96 .map_err(|_| BackendError::Other("in-memory backend state poisoned".to_string()))
97 }
98}
99
100impl Default for InMemoryBackend {
101 fn default() -> Self {
102 Self::new()
103 }
104}
105
106impl MemBackend for InMemoryBackend {
107 fn list_entities(&self) -> Result<Vec<PathBuf>, BackendError> {
108 let state = self.lock()?;
116 Ok(state
117 .committed
118 .keys()
119 .filter(|k| k.ends_with(".md") && !k.starts_with(".memstead/"))
120 .map(PathBuf::from)
121 .collect())
122 }
123
124 fn read_entity(&self, rel_path: &Path) -> Result<Option<Vec<u8>>, BackendError> {
125 let key = normalise_rel_path(rel_path)?;
126 let state = self.lock()?;
127 if let Some(staged) = state.pending.get(&key) {
132 return Ok(match staged {
133 PendingState::Upsert(bytes) => Some(bytes.clone()),
134 PendingState::Delete => None,
135 });
136 }
137 Ok(state.committed.get(&key).cloned())
138 }
139
140 fn write_entity(&self, rel_path: &Path, content: &[u8]) -> Result<(), BackendError> {
141 let key = normalise_rel_path(rel_path)?;
142 let mut state = self.lock()?;
143 state
144 .pending
145 .insert(key, PendingState::Upsert(content.to_vec()));
146 Ok(())
147 }
148
149 fn delete_entity(&self, rel_path: &Path) -> Result<(), BackendError> {
150 let key = normalise_rel_path(rel_path)?;
151 let mut state = self.lock()?;
152 state.pending.insert(key, PendingState::Delete);
153 Ok(())
154 }
155
156 fn move_entity(&self, from: &Path, to: &Path) -> Result<(), BackendError> {
157 let from_key = normalise_rel_path(from)?;
158 let to_key = normalise_rel_path(to)?;
159 let mut state = self.lock()?;
160
161 let bytes = match state.pending.remove(&from_key) {
165 Some(PendingState::Upsert(b)) => b,
166 Some(PendingState::Delete) => {
167 state.pending.insert(from_key, PendingState::Delete);
168 return Err(BackendError::Other(format!(
169 "move source {} is already pending deletion",
170 from.display()
171 )));
172 }
173 None => match state.committed.get(&from_key) {
174 Some(b) => b.clone(),
175 None => {
176 return Err(BackendError::Other(format!(
177 "move source {} does not exist",
178 from.display()
179 )));
180 }
181 },
182 };
183
184 if matches!(state.pending.get(&to_key), Some(PendingState::Upsert(_))) {
185 return Err(BackendError::Other(format!(
186 "move target {} already has a pending write",
187 to.display()
188 )));
189 }
190 state.pending.insert(from_key, PendingState::Delete);
191 state.pending.insert(to_key, PendingState::Upsert(bytes));
192 Ok(())
193 }
194
195 fn discard_pending(&self) -> Result<(), BackendError> {
196 let mut state = self.lock()?;
197 state.pending.clear();
198 Ok(())
199 }
200
201 fn commit(&self, _message: &str, _ctx: &CommitContext<'_>) -> Result<CommitId, BackendError> {
202 let mut state = self.lock()?;
203 let ops: Vec<(String, PendingState)> = state.pending.drain().collect();
204 for (key, op) in ops {
205 match op {
206 PendingState::Upsert(bytes) => {
207 state.committed.insert(key, bytes);
208 }
209 PendingState::Delete => {
210 state.committed.remove(&key);
211 }
212 }
213 }
214 Ok(make_commit_id())
215 }
216
217 fn append_provenance(&self, record: &Provenance) -> Result<(), BackendError> {
218 let mut state = self.lock()?;
219 state.provenance.push(record.clone());
220 Ok(())
221 }
222
223 fn read_provenance(&self, cursor: Option<&str>) -> Result<Vec<Provenance>, BackendError> {
224 let state = self.lock()?;
225 let out = state
230 .provenance
231 .iter()
232 .filter(|r| match cursor {
233 Some(c) => format_rfc3339_utc(r.timestamp).as_str() > c,
234 None => true,
235 })
236 .cloned()
237 .collect();
238 Ok(out)
239 }
240
241 fn read_anchors_sidecar(&self) -> Result<Option<Vec<u8>>, BackendError> {
242 self.read_entity(Path::new(crate::anchor::ANCHOR_SIDECAR_PATH))
246 }
247
248 fn write_anchors_sidecar(&self, bytes: &[u8]) -> Result<(), BackendError> {
249 self.write_entity(Path::new(crate::anchor::ANCHOR_SIDECAR_PATH), bytes)
253 }
254
255 fn read_mem_config(&self) -> Result<Option<Vec<u8>>, BackendError> {
256 let state = self.lock()?;
257 Ok(state.config.clone())
258 }
259
260 fn write_mem_config(&self, bytes: &[u8]) -> Result<(), BackendError> {
261 let mut state = self.lock()?;
265 state.config = Some(bytes.to_vec());
266 Ok(())
267 }
268}
269
270#[cfg(test)]
271mod tests {
272 use super::*;
273 use crate::provenance::ProvenanceKind;
274 use crate::vcs::{Actor, ClientId, CommitContext};
275 use std::time::{Duration, UNIX_EPOCH};
276
277 fn ctx<'a>() -> CommitContext<'a> {
278 CommitContext {
279 actor: Actor::Cli,
280 client: Some(ClientId {
281 name: "claude-code".to_string(),
282 version: "0.1.0".to_string(),
283 }),
284 tool: Some("test"),
285 note: None,
286 logical_operation_id: None,
287 entity_ids: None,
288 }
289 }
290
291 #[test]
292 fn write_then_commit_round_trips_in_ram() {
293 let b = InMemoryBackend::new();
294 b.write_entity(Path::new("notes/hello.md"), b"# hi\n")
295 .unwrap();
296 let id = b.commit("c1", &ctx()).unwrap();
297 assert!(!id.is_empty());
298 assert_eq!(
299 b.read_entity(Path::new("notes/hello.md")).unwrap(),
300 Some(b"# hi\n".to_vec())
301 );
302 assert_eq!(
303 b.list_entities().unwrap(),
304 vec![PathBuf::from("notes/hello.md")]
305 );
306 }
307
308 #[test]
309 fn read_sees_pending_write_before_commit() {
310 let b = InMemoryBackend::new();
311 b.write_entity(Path::new("a.md"), b"staged").unwrap();
312 assert_eq!(
314 b.read_entity(Path::new("a.md")).unwrap(),
315 Some(b"staged".to_vec())
316 );
317 assert!(b.list_entities().unwrap().is_empty());
318 }
319
320 #[test]
321 fn delete_removes_committed_path() {
322 let b = InMemoryBackend::new();
323 b.write_entity(Path::new("a.md"), b"a").unwrap();
324 b.write_entity(Path::new("b.md"), b"b").unwrap();
325 b.commit("seed", &ctx()).unwrap();
326 b.delete_entity(Path::new("a.md")).unwrap();
327 b.commit("drop", &ctx()).unwrap();
328 assert_eq!(b.read_entity(Path::new("a.md")).unwrap(), None);
329 assert_eq!(
330 b.read_entity(Path::new("b.md")).unwrap(),
331 Some(b"b".to_vec())
332 );
333 }
334
335 #[test]
336 fn delete_of_missing_path_is_idempotent() {
337 let b = InMemoryBackend::new();
338 b.delete_entity(Path::new("ghost.md")).unwrap();
339 b.commit("noop", &ctx()).unwrap();
340 assert_eq!(b.read_entity(Path::new("ghost.md")).unwrap(), None);
341 }
342
343 #[test]
344 fn move_renames_committed_path() {
345 let b = InMemoryBackend::new();
346 b.write_entity(Path::new("from.md"), b"payload").unwrap();
347 b.commit("seed", &ctx()).unwrap();
348 b.move_entity(Path::new("from.md"), Path::new("nested/to.md"))
349 .unwrap();
350 b.commit("rename", &ctx()).unwrap();
351 assert_eq!(b.read_entity(Path::new("from.md")).unwrap(), None);
352 assert_eq!(
353 b.read_entity(Path::new("nested/to.md")).unwrap(),
354 Some(b"payload".to_vec())
355 );
356 }
357
358 #[test]
359 fn move_carries_pending_upsert_bytes() {
360 let b = InMemoryBackend::new();
361 b.write_entity(Path::new("a.md"), b"alpha").unwrap();
362 b.move_entity(Path::new("a.md"), Path::new("b.md")).unwrap();
363 b.commit("write+move", &ctx()).unwrap();
364 assert_eq!(b.read_entity(Path::new("a.md")).unwrap(), None);
365 assert_eq!(
366 b.read_entity(Path::new("b.md")).unwrap(),
367 Some(b"alpha".to_vec())
368 );
369 }
370
371 #[test]
372 fn move_missing_source_errors() {
373 let b = InMemoryBackend::new();
374 let err = b
375 .move_entity(Path::new("ghost.md"), Path::new("here.md"))
376 .unwrap_err();
377 assert!(matches!(err, BackendError::Other(_)));
378 }
379
380 #[test]
381 fn rejects_path_traversal_absolute_and_empty() {
382 let b = InMemoryBackend::new();
383 assert!(b.write_entity(Path::new("../escape.md"), b"x").is_err());
386 assert!(b.write_entity(Path::new("/etc/passwd"), b"x").is_err());
387 assert!(b.write_entity(Path::new(""), b"x").is_err());
388 }
389
390 #[test]
391 fn discard_pending_drops_staged_writes() {
392 let b = InMemoryBackend::new();
393 b.write_entity(Path::new("a.md"), b"first").unwrap();
394 b.commit("seed", &ctx()).unwrap();
395 b.write_entity(Path::new("a.md"), b"second-uncommitted")
396 .unwrap();
397 b.discard_pending().unwrap();
398 b.commit("after-discard", &ctx()).unwrap();
399 assert_eq!(
401 b.read_entity(Path::new("a.md")).unwrap(),
402 Some(b"first".to_vec())
403 );
404 }
405
406 #[test]
407 fn reports_no_durable_history() {
408 let b = InMemoryBackend::new();
410 assert_eq!(b.current_head().unwrap(), None);
411 }
412
413 #[test]
414 fn mem_config_round_trips() {
415 let b = InMemoryBackend::new();
416 assert_eq!(b.read_mem_config().unwrap(), None);
417 b.write_mem_config(b"{\"schema\":\"default@1.0.0\"}")
418 .unwrap();
419 assert_eq!(
420 b.read_mem_config().unwrap(),
421 Some(b"{\"schema\":\"default@1.0.0\"}".to_vec())
422 );
423 }
424
425 #[test]
426 fn anchors_sidecar_round_trips_and_is_not_listed_as_entity() {
427 let b = InMemoryBackend::new();
428 assert_eq!(b.read_anchors_sidecar().unwrap(), None);
430 b.write_entity(Path::new("x.md"), b"# x\n").unwrap();
432 b.write_anchors_sidecar(b"{\"version\":1,\"entities\":{}}")
433 .unwrap();
434 assert_eq!(
436 b.read_anchors_sidecar().unwrap(),
437 Some(b"{\"version\":1,\"entities\":{}}".to_vec())
438 );
439 b.commit("seed+anchors", &ctx()).unwrap();
440 assert_eq!(
442 b.read_anchors_sidecar().unwrap(),
443 Some(b"{\"version\":1,\"entities\":{}}".to_vec())
444 );
445 assert_eq!(
447 b.list_entities().unwrap(),
448 vec![PathBuf::from("x.md")],
449 "anchors sidecar must not list as an entity"
450 );
451 }
452
453 #[test]
454 fn provenance_appends_and_reads_with_cursor() {
455 let b = InMemoryBackend::new();
456 let t0 = UNIX_EPOCH + Duration::from_secs(1_700_000_000);
457 let t1 = UNIX_EPOCH + Duration::from_secs(1_700_000_001);
458 b.append_provenance(&Provenance::new(
459 t0,
460 ProvenanceKind::Create,
461 Some("specs--a".to_string()),
462 Actor::Cli,
463 None,
464 None,
465 ))
466 .unwrap();
467 b.append_provenance(&Provenance::new(
468 t1,
469 ProvenanceKind::Update,
470 Some("specs--a".to_string()),
471 Actor::Cli,
472 None,
473 None,
474 ))
475 .unwrap();
476
477 assert_eq!(b.read_provenance(None).unwrap().len(), 2);
479 let cursor = format_rfc3339_utc(t0);
481 let after = b.read_provenance(Some(&cursor)).unwrap();
482 assert_eq!(after.len(), 1);
483 assert_eq!(after[0].kind, ProvenanceKind::Update);
484 }
485}