1use crate::canonical::hash_bytes;
29use crate::operation::{OpId, OperationRecord};
30use std::collections::{BTreeMap, BTreeSet, VecDeque};
31use std::fs;
32use std::io::{self, Read, Seek, SeekFrom, Write};
33use std::path::{Path, PathBuf};
34
35pub struct OpLog {
36 dir: PathBuf,
37}
38
39impl OpLog {
40 pub fn open(root: &Path) -> io::Result<Self> {
41 let dir = root.join("ops");
42 fs::create_dir_all(&dir)?;
43 Ok(Self { dir })
44 }
45
46 fn path(&self, op_id: &OpId) -> PathBuf {
47 self.dir.join(format!("{op_id}.json"))
48 }
49
50 pub fn put(&self, rec: &OperationRecord) -> io::Result<()> {
62 let path = self.path(&rec.op_id);
63 if path.exists() {
64 return Ok(());
65 }
66 let bytes = serde_json::to_vec(rec)
67 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
68 let tmp = path.with_extension("json.tmp");
69 let mut f = fs::File::create(&tmp)?;
70 f.write_all(&bytes)?;
71 f.sync_all()?;
72 fs::rename(&tmp, &path)?;
73 Ok(())
74 }
75
76 pub fn get(&self, op_id: &OpId) -> io::Result<Option<OperationRecord>> {
77 let path = self.path(op_id);
78 if path.exists() {
79 let bytes = fs::read(&path)?;
80 let rec: OperationRecord = serde_json::from_slice(&bytes)
81 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
82 return Ok(Some(rec));
83 }
84 for pack_idx in self.list_pack_indices()? {
89 let idx = PackIndex::load(&pack_idx)?;
90 if let Some(&offset) = idx.ops.get(op_id) {
91 let pack_path = pack_idx.with_extension("pack");
92 return read_packed_op(&pack_path, offset).map(Some);
93 }
94 }
95 Ok(None)
96 }
97
98 fn list_pack_indices(&self) -> io::Result<Vec<PathBuf>> {
102 let mut out = Vec::new();
103 for entry in fs::read_dir(&self.dir)? {
104 let entry = entry?;
105 let name = match entry.file_name().into_string() {
106 Ok(s) => s,
107 Err(_) => continue,
108 };
109 if name.starts_with("pack-") && name.ends_with(".idx") {
110 out.push(entry.path());
111 }
112 }
113 Ok(out)
114 }
115
116 pub fn repack(&self, threshold: usize) -> io::Result<usize> {
136 let loose: Vec<(OpId, PathBuf)> = self.list_loose_files()?;
137 if loose.len() < threshold {
138 return Ok(0);
139 }
140 let mut ops: Vec<(OpId, Vec<u8>)> = Vec::with_capacity(loose.len());
144 for (op_id, path) in &loose {
145 let bytes = fs::read(path)?;
146 ops.push((op_id.clone(), bytes));
147 }
148 ops.sort_by(|a, b| a.0.cmp(&b.0));
149 let mut name_input = Vec::new();
150 for (id, _) in &ops {
151 name_input.extend_from_slice(id.as_bytes());
152 name_input.push(b'\n');
153 }
154 let pack_hash = hash_bytes(&name_input);
155 let pack_path = self.dir.join(format!("pack-{pack_hash}.pack"));
156 let idx_path = self.dir.join(format!("pack-{pack_hash}.idx"));
157 if pack_path.exists() && idx_path.exists() {
158 let count = ops.len();
161 for (_, path) in &loose {
162 let _ = fs::remove_file(path);
163 }
164 return Ok(count);
165 }
166
167 let pack_tmp = pack_path.with_extension("pack.tmp");
170 let idx_tmp = idx_path.with_extension("idx.tmp");
171 let mut offsets: BTreeMap<OpId, u64> = BTreeMap::new();
172 {
173 let mut f = fs::File::create(&pack_tmp)?;
174 let mut cursor: u64 = 0;
175 for (op_id, bytes) in &ops {
176 offsets.insert(op_id.clone(), cursor);
177 let len = bytes.len() as u64;
178 f.write_all(&len.to_be_bytes())?;
179 f.write_all(bytes)?;
180 cursor += 8 + len;
181 }
182 f.sync_all()?;
183 }
184 let idx = PackIndex { version: 1, ops: offsets };
188 idx.save(&idx_tmp)?;
189
190 fs::rename(&pack_tmp, &pack_path)?;
191 fs::rename(&idx_tmp, &idx_path)?;
192
193 let count = ops.len();
195 for (_, path) in &loose {
196 let _ = fs::remove_file(path);
197 }
198 Ok(count)
199 }
200
201 pub fn evict(&self, victims: &BTreeSet<OpId>) -> io::Result<usize> {
216 if victims.is_empty() {
217 return Ok(0);
218 }
219 let mut removed = 0;
220 for (op_id, path) in self.list_loose_files()? {
222 if victims.contains(&op_id) {
223 match fs::remove_file(&path) {
224 Ok(()) => removed += 1,
225 Err(e) if e.kind() == io::ErrorKind::NotFound => {}
226 Err(e) => return Err(e),
227 }
228 }
229 }
230 for pack_idx in self.list_pack_indices()? {
232 let idx = PackIndex::load(&pack_idx)?;
233 let pack_path = pack_idx.with_extension("pack");
234 let touched = idx.ops.keys().any(|op_id| victims.contains(op_id));
235 if !touched {
236 continue;
237 }
238 let mut survivors: Vec<(OpId, Vec<u8>)> = Vec::new();
240 for (op_id, &offset) in &idx.ops {
241 if victims.contains(op_id) {
242 removed += 1;
243 continue;
244 }
245 let rec = read_packed_op(&pack_path, offset)?;
246 let bytes = serde_json::to_vec(&rec)
247 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
248 survivors.push((op_id.clone(), bytes));
249 }
250 let _ = fs::remove_file(&pack_path);
253 let _ = fs::remove_file(&pack_idx);
254 if survivors.is_empty() {
255 continue;
256 }
257 self.write_pack_from_survivors(survivors)?;
258 }
259 Ok(removed)
260 }
261
262 fn write_pack_from_survivors(
267 &self,
268 mut ops: Vec<(OpId, Vec<u8>)>,
269 ) -> io::Result<()> {
270 ops.sort_by(|a, b| a.0.cmp(&b.0));
271 let mut name_input = Vec::new();
272 for (id, _) in &ops {
273 name_input.extend_from_slice(id.as_bytes());
274 name_input.push(b'\n');
275 }
276 let pack_hash = hash_bytes(&name_input);
277 let pack_path = self.dir.join(format!("pack-{pack_hash}.pack"));
278 let idx_path = self.dir.join(format!("pack-{pack_hash}.idx"));
279 if pack_path.exists() && idx_path.exists() {
280 return Ok(());
281 }
282 let pack_tmp = pack_path.with_extension("pack.tmp");
283 let idx_tmp = idx_path.with_extension("idx.tmp");
284 let mut offsets: BTreeMap<OpId, u64> = BTreeMap::new();
285 {
286 let mut f = fs::File::create(&pack_tmp)?;
287 let mut cursor: u64 = 0;
288 for (op_id, bytes) in &ops {
289 offsets.insert(op_id.clone(), cursor);
290 let len = bytes.len() as u64;
291 f.write_all(&len.to_be_bytes())?;
292 f.write_all(bytes)?;
293 cursor += 8 + len;
294 }
295 f.sync_all()?;
296 }
297 let idx = PackIndex { version: 1, ops: offsets };
298 idx.save(&idx_tmp)?;
299 fs::rename(&pack_tmp, &pack_path)?;
300 fs::rename(&idx_tmp, &idx_path)?;
301 Ok(())
302 }
303
304 fn list_loose_files(&self) -> io::Result<Vec<(OpId, PathBuf)>> {
307 let mut out = Vec::new();
308 for entry in fs::read_dir(&self.dir)? {
309 let entry = entry?;
310 let name = match entry.file_name().into_string() {
311 Ok(s) => s,
312 Err(_) => continue,
313 };
314 if let Some(id) = name.strip_suffix(".json") {
315 if !id.starts_with("pack-") {
316 out.push((id.to_string(), entry.path()));
317 }
318 }
319 }
320 Ok(out)
321 }
322
323 pub fn delete(&self, op_id: &OpId) -> io::Result<()> {
332 let path = self.path(op_id);
333 match fs::remove_file(&path) {
334 Ok(()) => Ok(()),
335 Err(e) if e.kind() == io::ErrorKind::NotFound => Ok(()),
336 Err(e) => Err(e),
337 }
338 }
339
340 pub fn walk_back(
343 &self,
344 head: &OpId,
345 limit: Option<usize>,
346 ) -> io::Result<Vec<OperationRecord>> {
347 let mut out = Vec::new();
348 let mut seen = BTreeSet::new();
349 let mut frontier: VecDeque<OpId> = VecDeque::from([head.clone()]);
350 while let Some(id) = frontier.pop_back() {
351 if !seen.insert(id.clone()) {
352 continue;
353 }
354 if let Some(rec) = self.get(&id)? {
355 for p in &rec.op.parents {
359 if !seen.contains(p) {
360 frontier.push_front(p.clone());
361 }
362 }
363 out.push(rec);
364 if let Some(n) = limit {
365 if out.len() >= n {
366 break;
367 }
368 }
369 }
370 }
371 Ok(out)
372 }
373
374 pub fn walk_forward(
377 &self,
378 head: &OpId,
379 limit: Option<usize>,
380 ) -> io::Result<Vec<OperationRecord>> {
381 let mut all = self.walk_back(head, None)?;
382 all.reverse();
383 if let Some(n) = limit {
384 all.truncate(n);
385 }
386 Ok(all)
387 }
388
389 pub fn walk_forward_since(
407 &self,
408 head: &OpId,
409 since: &OpId,
410 ) -> io::Result<Option<Vec<OperationRecord>>> {
411 if head == since {
412 return Ok(Some(Vec::new()));
413 }
414 let mut out = Vec::new();
415 let mut seen = BTreeSet::new();
416 let mut frontier: VecDeque<OpId> = VecDeque::from([head.clone()]);
417 let mut found = false;
418 while let Some(id) = frontier.pop_back() {
419 if !seen.insert(id.clone()) {
420 continue;
421 }
422 if id == *since {
423 found = true;
424 continue; }
426 if let Some(rec) = self.get(&id)? {
427 for p in &rec.op.parents {
428 if !seen.contains(p) {
429 frontier.push_front(p.clone());
430 }
431 }
432 out.push(rec);
433 }
434 }
435 if !found {
436 return Ok(None);
437 }
438 out.reverse();
439 Ok(Some(out))
440 }
441
442 pub fn lca(&self, a: &OpId, b: &OpId) -> io::Result<Option<OpId>> {
457 let a_anc: BTreeSet<OpId> = self
458 .walk_back(a, None)?
459 .into_iter()
460 .map(|r| r.op_id)
461 .collect();
462 for rec in self.walk_back(b, None)? {
467 if a_anc.contains(&rec.op_id) {
468 return Ok(Some(rec.op_id));
469 }
470 }
471 Ok(None)
472 }
473
474 pub fn list_all(&self) -> io::Result<Vec<OperationRecord>> {
479 let mut out = Vec::new();
480 let mut seen: BTreeSet<OpId> = BTreeSet::new();
481 for (id, _) in self.list_loose_files()? {
486 if let Some(rec) = self.get(&id)? {
487 if seen.insert(rec.op_id.clone()) {
488 out.push(rec);
489 }
490 }
491 }
492 for pack_idx in self.list_pack_indices()? {
493 let idx = PackIndex::load(&pack_idx)?;
494 let pack_path = pack_idx.with_extension("pack");
495 for (op_id, &offset) in &idx.ops {
496 if seen.insert(op_id.clone()) {
497 out.push(read_packed_op(&pack_path, offset)?);
498 }
499 }
500 }
501 Ok(out)
502 }
503
504 pub fn ops_since(
508 &self,
509 head: &OpId,
510 base: Option<&OpId>,
511 ) -> io::Result<Vec<OperationRecord>> {
512 let exclude: BTreeSet<OpId> = match base {
513 Some(b) => self
514 .walk_back(b, None)?
515 .into_iter()
516 .map(|r| r.op_id)
517 .collect(),
518 None => BTreeSet::new(),
519 };
520 Ok(self
521 .walk_back(head, None)?
522 .into_iter()
523 .filter(|r| !exclude.contains(&r.op_id))
524 .collect())
525 }
526}
527
528#[derive(serde::Serialize, serde::Deserialize)]
532struct PackIndex {
533 version: u32,
534 ops: BTreeMap<OpId, u64>,
535}
536
537impl PackIndex {
538 fn load(path: &Path) -> io::Result<Self> {
539 let bytes = fs::read(path)?;
540 serde_json::from_slice(&bytes)
541 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))
542 }
543
544 fn save(&self, path: &Path) -> io::Result<()> {
545 let bytes = serde_json::to_vec(self)
546 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
547 let mut f = fs::File::create(path)?;
548 f.write_all(&bytes)?;
549 f.sync_all()?;
550 Ok(())
551 }
552}
553
554fn read_packed_op(pack_path: &Path, offset: u64) -> io::Result<OperationRecord> {
557 let mut f = fs::File::open(pack_path)?;
558 f.seek(SeekFrom::Start(offset))?;
559 let mut len_buf = [0u8; 8];
560 f.read_exact(&mut len_buf)?;
561 let len = u64::from_be_bytes(len_buf) as usize;
562 let mut buf = vec![0u8; len];
563 f.read_exact(&mut buf)?;
564 serde_json::from_slice(&buf)
565 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))
566}
567
568#[cfg(test)]
569mod tests {
570 use super::*;
571 use crate::operation::{Operation, OperationKind, StageTransition};
572 use std::collections::{BTreeMap, BTreeSet};
573
574 fn add_op() -> OperationRecord {
575 let op = Operation::new(
576 OperationKind::AddFunction {
577 sig_id: "fac::Int->Int".into(),
578 stage_id: "abc123".into(),
579 effects: BTreeSet::new(),
580 budget_cost: None,
581 in_file: None,
582 },
583 [],
584 );
585 OperationRecord::new(
586 op,
587 StageTransition::Create {
588 sig_id: "fac::Int->Int".into(),
589 stage_id: "abc123".into(),
590 },
591 )
592 }
593
594 fn modify_op(parent: &OpId, sig: &str, from: &str, to: &str) -> OperationRecord {
595 let op = Operation::new(
596 OperationKind::ModifyBody {
597 sig_id: sig.into(),
598 from_stage_id: from.into(),
599 to_stage_id: to.into(),
600 from_budget: None,
601 to_budget: None,
602 },
603 [parent.clone()],
604 );
605 OperationRecord::new(
606 op,
607 StageTransition::Replace {
608 sig_id: sig.into(),
609 from: from.into(),
610 to: to.into(),
611 },
612 )
613 }
614
615 #[test]
616 fn put_then_get_round_trips() {
617 let tmp = tempfile::tempdir().unwrap();
618 let log = OpLog::open(tmp.path()).unwrap();
619 let rec = add_op();
620 log.put(&rec).unwrap();
621 let back = log.get(&rec.op_id).unwrap().unwrap();
622 assert_eq!(back, rec);
623 }
624
625 #[test]
626 fn put_is_idempotent() {
627 let tmp = tempfile::tempdir().unwrap();
628 let log = OpLog::open(tmp.path()).unwrap();
629 let rec = add_op();
630 log.put(&rec).unwrap();
631 log.put(&rec).unwrap(); assert!(log.get(&rec.op_id).unwrap().is_some());
633 }
634
635 #[test]
636 fn get_missing_returns_none() {
637 let tmp = tempfile::tempdir().unwrap();
638 let log = OpLog::open(tmp.path()).unwrap();
639 assert!(log.get(&"deadbeef".to_string()).unwrap().is_none());
640 }
641
642 #[test]
643 fn walk_back_returns_newest_first() {
644 let tmp = tempfile::tempdir().unwrap();
645 let log = OpLog::open(tmp.path()).unwrap();
646 let a = add_op();
647 log.put(&a).unwrap();
648 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "def456");
649 log.put(&b).unwrap();
650 let c = modify_op(&b.op_id, "fac::Int->Int", "def456", "789aaa");
651 log.put(&c).unwrap();
652
653 let walked = log.walk_back(&c.op_id, None).unwrap();
654 let ids: Vec<_> = walked.iter().map(|r| r.op_id.as_str()).collect();
655 assert_eq!(
656 ids,
657 vec![c.op_id.as_str(), b.op_id.as_str(), a.op_id.as_str()]
658 );
659 }
660
661 #[test]
662 fn walk_forward_returns_oldest_first() {
663 let tmp = tempfile::tempdir().unwrap();
664 let log = OpLog::open(tmp.path()).unwrap();
665 let a = add_op();
666 log.put(&a).unwrap();
667 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "def456");
668 log.put(&b).unwrap();
669
670 let walked = log.walk_forward(&b.op_id, None).unwrap();
671 let ids: Vec<_> = walked.iter().map(|r| r.op_id.as_str()).collect();
672 assert_eq!(ids, vec![a.op_id.as_str(), b.op_id.as_str()]);
673 }
674
675 #[test]
676 fn walk_forward_since_returns_only_ops_after_the_boundary() {
677 let tmp = tempfile::tempdir().unwrap();
678 let log = OpLog::open(tmp.path()).unwrap();
679 let a = add_op();
680 log.put(&a).unwrap();
681 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "def456");
682 log.put(&b).unwrap();
683 let c = modify_op(&b.op_id, "fac::Int->Int", "def456", "789aaa");
684 log.put(&c).unwrap();
685
686 let since_a = log.walk_forward_since(&c.op_id, &a.op_id).unwrap().unwrap();
688 let ids: Vec<_> = since_a.iter().map(|r| r.op_id.as_str()).collect();
689 assert_eq!(ids, vec![b.op_id.as_str(), c.op_id.as_str()]);
690
691 let since_b = log.walk_forward_since(&c.op_id, &b.op_id).unwrap().unwrap();
693 let ids: Vec<_> = since_b.iter().map(|r| r.op_id.as_str()).collect();
694 assert_eq!(ids, vec![c.op_id.as_str()]);
695 }
696
697 #[test]
698 fn walk_forward_since_head_equals_since_returns_empty_without_touching_the_log() {
699 let tmp = tempfile::tempdir().unwrap();
700 let log = OpLog::open(tmp.path()).unwrap();
701 let a = add_op();
702 log.put(&a).unwrap();
703
704 let ghost = "never-written-anywhere".to_string();
709 let result = log.walk_forward_since(&ghost, &ghost).unwrap();
710 assert_eq!(result, Some(Vec::new()));
711 }
712
713 #[test]
714 fn walk_forward_since_returns_none_when_boundary_is_not_an_ancestor() {
715 let tmp = tempfile::tempdir().unwrap();
716 let log = OpLog::open(tmp.path()).unwrap();
717 let a = add_op();
718 log.put(&a).unwrap();
719 let op = Operation::new(
724 OperationKind::AddFunction {
725 sig_id: "unrelated::Str->Str".into(),
726 stage_id: "zzz999".into(),
727 effects: BTreeSet::new(),
728 budget_cost: None,
729 in_file: None,
730 },
731 [],
732 );
733 let unrelated = OperationRecord::new(
734 op,
735 StageTransition::Create {
736 sig_id: "unrelated::Str->Str".into(),
737 stage_id: "zzz999".into(),
738 },
739 );
740 log.put(&unrelated).unwrap();
741 assert_ne!(a.op_id, unrelated.op_id, "test setup must produce two distinct ops");
742
743 let result = log.walk_forward_since(&a.op_id, &unrelated.op_id).unwrap();
744 assert_eq!(
745 result, None,
746 "unrelated op_id is not an ancestor of `a` -- callers must fall back to a full walk"
747 );
748 }
749
750 #[test]
751 fn lca_finds_common_ancestor() {
752 let tmp = tempfile::tempdir().unwrap();
753 let log = OpLog::open(tmp.path()).unwrap();
754 let root = add_op();
755 log.put(&root).unwrap();
756 let left = modify_op(&root.op_id, "fac::Int->Int", "abc123", "left1");
757 log.put(&left).unwrap();
758 let right = modify_op(&root.op_id, "fac::Int->Int", "abc123", "right1");
759 log.put(&right).unwrap();
760
761 let lca = log.lca(&left.op_id, &right.op_id).unwrap();
762 assert_eq!(lca, Some(root.op_id));
763 }
764
765 #[test]
766 fn lca_none_for_independent_histories() {
767 let tmp = tempfile::tempdir().unwrap();
768 let log = OpLog::open(tmp.path()).unwrap();
769 let a = add_op();
770 log.put(&a).unwrap();
771 let b = OperationRecord::new(
773 Operation::new(
774 OperationKind::AddFunction {
775 sig_id: "double::Int->Int".into(),
776 stage_id: "ddd111".into(),
777 effects: BTreeSet::new(),
778 budget_cost: None,
779 in_file: None,
780 },
781 [],
782 ),
783 StageTransition::Create {
784 sig_id: "double::Int->Int".into(),
785 stage_id: "ddd111".into(),
786 },
787 );
788 log.put(&b).unwrap();
789
790 assert_eq!(log.lca(&a.op_id, &b.op_id).unwrap(), None);
791 }
792
793 #[test]
794 fn ops_since_excludes_base_history() {
795 let tmp = tempfile::tempdir().unwrap();
796 let log = OpLog::open(tmp.path()).unwrap();
797 let a = add_op();
798 log.put(&a).unwrap();
799 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "def456");
800 log.put(&b).unwrap();
801 let c = modify_op(&b.op_id, "fac::Int->Int", "def456", "789aaa");
802 log.put(&c).unwrap();
803
804 let since: Vec<_> = log
805 .ops_since(&c.op_id, Some(&a.op_id))
806 .unwrap()
807 .into_iter()
808 .map(|r| r.op_id)
809 .collect();
810 assert_eq!(since.len(), 2);
811 assert!(since.contains(&b.op_id));
812 assert!(since.contains(&c.op_id));
813 assert!(!since.contains(&a.op_id));
814 }
815
816 #[test]
817 fn repack_consolidates_loose_files_into_a_pack() {
818 let tmp = tempfile::tempdir().unwrap();
819 let log = OpLog::open(tmp.path()).unwrap();
820 let a = add_op();
821 log.put(&a).unwrap();
822 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "def456");
823 log.put(&b).unwrap();
824
825 let n = log.repack(0).unwrap(); assert_eq!(n, 2);
827 let ops_dir = tmp.path().join("ops");
828 let loose: Vec<_> = fs::read_dir(&ops_dir).unwrap()
829 .filter_map(|e| e.ok())
830 .filter(|e| e.path().extension().is_some_and(|x| x == "json"))
831 .filter(|e| !e.file_name().to_string_lossy().starts_with("pack-"))
832 .collect();
833 assert!(loose.is_empty(), "loose .json files should be deleted");
834 let packs: Vec<_> = fs::read_dir(&ops_dir).unwrap()
835 .filter_map(|e| e.ok())
836 .filter(|e| e.path().extension().is_some_and(|x| x == "pack"))
837 .collect();
838 assert_eq!(packs.len(), 1);
839
840 assert_eq!(log.get(&a.op_id).unwrap().unwrap(), a);
842 assert_eq!(log.get(&b.op_id).unwrap().unwrap(), b);
843 }
844
845 #[test]
846 fn repack_below_threshold_is_a_noop() {
847 let tmp = tempfile::tempdir().unwrap();
848 let log = OpLog::open(tmp.path()).unwrap();
849 log.put(&add_op()).unwrap();
850 let n = log.repack(10).unwrap();
851 assert_eq!(n, 0);
852 }
853
854 #[test]
855 fn repack_is_deterministic_on_same_input() {
856 let make_log = || {
859 let tmp = tempfile::tempdir().unwrap();
860 let log = OpLog::open(tmp.path()).unwrap();
861 let a = add_op();
862 log.put(&a).unwrap();
863 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "def456");
864 log.put(&b).unwrap();
865 log.repack(0).unwrap();
866 (tmp, log)
867 };
868 let (tmp1, _log1) = make_log();
869 let (tmp2, _log2) = make_log();
870 let pack_name = |dir: &std::path::Path| -> String {
871 fs::read_dir(dir.join("ops")).unwrap()
872 .filter_map(|e| e.ok())
873 .find(|e| e.path().extension().is_some_and(|x| x == "pack"))
874 .unwrap()
875 .file_name().into_string().unwrap()
876 };
877 assert_eq!(pack_name(tmp1.path()), pack_name(tmp2.path()));
878 }
879
880 #[test]
881 fn walk_back_works_across_loose_and_packed_ops() {
882 let tmp = tempfile::tempdir().unwrap();
885 let log = OpLog::open(tmp.path()).unwrap();
886 let a = add_op();
887 log.put(&a).unwrap();
888 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "b1");
889 log.put(&b).unwrap();
890 log.repack(0).unwrap();
891 let c = modify_op(&b.op_id, "fac::Int->Int", "b1", "c1");
893 log.put(&c).unwrap();
894
895 let walked = log.walk_back(&c.op_id, None).unwrap();
896 let ids: Vec<_> = walked.iter().map(|r| r.op_id.as_str()).collect();
897 assert_eq!(ids, vec![c.op_id.as_str(), b.op_id.as_str(), a.op_id.as_str()]);
898 }
899
900 #[test]
901 fn list_all_dedups_across_loose_and_pack() {
902 let tmp = tempfile::tempdir().unwrap();
903 let log = OpLog::open(tmp.path()).unwrap();
904 let a = add_op();
905 log.put(&a).unwrap();
906 log.repack(0).unwrap();
907 log.put(&a).unwrap();
911
912 let all = log.list_all().unwrap();
913 assert_eq!(all.len(), 1);
914 assert_eq!(all[0].op_id, a.op_id);
915 }
916
917 #[test]
918 fn walk_back_orders_ancestors_after_descendants() {
919 let tmp = tempfile::tempdir().unwrap();
930 let log = OpLog::open(tmp.path()).unwrap();
931 let a = add_op();
932 log.put(&a).unwrap();
933 let b = modify_op(&a.op_id, "fac::Int->Int", "abc123", "b1");
934 log.put(&b).unwrap();
935 let c = OperationRecord::new(
936 Operation::new(
937 OperationKind::ModifyBody {
938 sig_id: "double::Int->Int".into(),
939 from_stage_id: "ddd000".into(),
940 to_stage_id: "c1".into(),
941 from_budget: None,
942 to_budget: None,
943 },
944 [a.op_id.clone()],
945 ),
946 StageTransition::Replace {
947 sig_id: "double::Int->Int".into(),
948 from: "ddd000".into(),
949 to: "c1".into(),
950 },
951 );
952 log.put(&c).unwrap();
953 let m = OperationRecord::new(
954 Operation::new(
955 OperationKind::Merge { resolved: 0 },
956 [b.op_id.clone(), c.op_id.clone()],
957 ),
958 StageTransition::Merge { entries: BTreeMap::new() },
959 );
960 log.put(&m).unwrap();
961
962 let walked = log.walk_back(&m.op_id, None).unwrap();
963 let pos = |id: &str| walked.iter().position(|r| r.op_id == id).unwrap();
964 let (m_pos, b_pos, c_pos, a_pos) =
965 (pos(&m.op_id), pos(&b.op_id), pos(&c.op_id), pos(&a.op_id));
966 assert!(m_pos < b_pos, "merge before its parent b");
968 assert!(m_pos < c_pos, "merge before its parent c");
969 assert!(b_pos < a_pos, "b before its parent a");
970 assert!(c_pos < a_pos, "c before its parent a");
971 }
972}