use std::path::{Path, PathBuf};
use std::time::{SystemTime, UNIX_EPOCH};
use crate::constants::{INSTRUCTIONS_TRUNCATION_MARKER, MAX_INSTRUCTIONS_BYTES};
pub const INSTRUCTION_FILENAMES: &[&str] = &["AGENTS.md", "MERMAID.md"];
const MAX_WALK_DEPTH: usize = 32;
#[derive(Debug, Clone)]
pub struct InstructionSource {
pub path: PathBuf,
pub mtime: SystemTime,
pub byte_len: usize,
}
#[derive(Debug, Clone)]
pub struct LoadedInstructions {
pub path: PathBuf,
pub content: String,
pub mtime: SystemTime,
pub byte_len: usize,
pub truncated: bool,
pub sources: Vec<InstructionSource>,
}
impl LoadedInstructions {
pub fn approx_tokens(&self) -> usize {
self.content.len() / 4
}
}
#[derive(Debug, PartialEq, Eq)]
pub enum ReloadOutcome {
Unchanged,
LoadedFirst { tokens: usize },
Reloaded {
old_tokens: usize,
new_tokens: usize,
},
Removed,
}
pub fn find_instruction_files(start: &Path) -> Vec<PathBuf> {
let home = std::env::var_os("HOME").map(PathBuf::from);
let mut current = start.to_path_buf();
for _ in 0..MAX_WALK_DEPTH {
let found: Vec<PathBuf> = INSTRUCTION_FILENAMES
.iter()
.map(|name| current.join(name))
.filter(|candidate| candidate.is_file())
.collect();
if !found.is_empty() {
return found;
}
if current.join(".git").exists() {
return Vec::new();
}
if let Some(ref h) = home
&& current == *h
{
return Vec::new();
}
match current.parent() {
Some(parent) if parent != current => current = parent.to_path_buf(),
_ => return Vec::new(),
}
}
Vec::new()
}
pub fn load_from_path(path: &Path) -> Option<LoadedInstructions> {
load_from_paths(&[path.to_path_buf()])
}
pub fn load_from_paths(paths: &[PathBuf]) -> Option<LoadedInstructions> {
let mut sources = Vec::new();
let mut bodies = Vec::new();
let mut total_byte_len = 0usize;
let mut latest_mtime = UNIX_EPOCH;
for path in paths {
let metadata = std::fs::metadata(path).ok()?;
let mtime = metadata.modified().ok()?;
let raw = std::fs::read_to_string(path).ok()?;
total_byte_len = total_byte_len.saturating_add(raw.len());
if mtime > latest_mtime {
latest_mtime = mtime;
}
sources.push(InstructionSource {
path: path.to_path_buf(),
mtime,
byte_len: raw.len(),
});
bodies.push((path.to_path_buf(), raw));
}
let primary = sources.first()?.path.clone();
let raw = combine_instruction_bodies(bodies);
let byte_len = total_byte_len;
let (content, truncated) = if raw.len() > MAX_INSTRUCTIONS_BYTES {
let cut = raw.floor_char_boundary(MAX_INSTRUCTIONS_BYTES);
let mut clipped = raw[..cut].to_string();
clipped.push_str(INSTRUCTIONS_TRUNCATION_MARKER);
(clipped, true)
} else {
(raw, false)
};
Some(LoadedInstructions {
path: primary,
content,
mtime: latest_mtime,
byte_len,
truncated,
sources,
})
}
pub fn refresh(
current: Option<LoadedInstructions>,
cwd: &Path,
) -> (Option<LoadedInstructions>, ReloadOutcome) {
match current {
Some(prior) => {
let paths: Vec<PathBuf> = if prior.sources.is_empty() {
vec![prior.path.clone()]
} else {
prior
.sources
.iter()
.map(|source| source.path.clone())
.collect()
};
let changed = if prior.sources.is_empty() {
std::fs::metadata(&prior.path)
.and_then(|m| m.modified())
.map(|mtime| mtime != prior.mtime)
.unwrap_or(true)
} else {
prior.sources.iter().any(|source| {
std::fs::metadata(&source.path)
.and_then(|m| m.modified())
.map(|mtime| mtime != source.mtime)
.unwrap_or(true)
})
};
if !changed {
return (Some(prior), ReloadOutcome::Unchanged);
}
let old_tokens = prior.approx_tokens();
match load_from_paths(&paths) {
Some(reloaded) => {
let new_tokens = reloaded.approx_tokens();
(
Some(reloaded),
ReloadOutcome::Reloaded {
old_tokens,
new_tokens,
},
)
},
None => {
(None, ReloadOutcome::Removed)
},
}
},
None => {
match load_from_paths(&find_instruction_files(cwd)) {
Some(loaded) => {
let tokens = loaded.approx_tokens();
(Some(loaded), ReloadOutcome::LoadedFirst { tokens })
},
None => (None, ReloadOutcome::Unchanged),
}
},
}
}
fn combine_instruction_bodies(bodies: Vec<(PathBuf, String)>) -> String {
if bodies.len() == 1 {
return bodies
.into_iter()
.next()
.map(|(_, body)| body)
.unwrap_or_default();
}
bodies
.into_iter()
.map(|(path, body)| {
let name = path
.file_name()
.and_then(|name| name.to_str())
.unwrap_or("instructions");
format!("# Project Instructions: {}\n\n{}", name, body)
})
.collect::<Vec<_>>()
.join("\n\n---\n\n")
}
#[cfg(test)]
mod tests {
use super::*;
use std::fs;
use std::sync::Mutex;
static FS_LOCK: Mutex<()> = Mutex::new(());
fn temp_dir(name: &str) -> PathBuf {
let p = std::env::temp_dir().join(format!("mermaid_instructions_test_{}", name));
let _ = fs::remove_dir_all(&p);
fs::create_dir_all(&p).expect("create temp dir");
p
}
#[test]
fn find_instruction_files_finds_in_cwd() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("cwd");
fs::write(dir.join("MERMAID.md"), "rules").unwrap();
let found = find_instruction_files(&dir);
assert_eq!(found, vec![dir.join("MERMAID.md")]);
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn find_instruction_files_loads_both_in_precedence_order() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("both");
fs::write(dir.join("AGENTS.md"), "agent rules").unwrap();
fs::write(dir.join("MERMAID.md"), "mermaid rules").unwrap();
let found = find_instruction_files(&dir);
assert_eq!(found, vec![dir.join("AGENTS.md"), dir.join("MERMAID.md")]);
let loaded = load_from_paths(&found).expect("load combined");
assert!(loaded.content.contains("# Project Instructions: AGENTS.md"));
assert!(loaded.content.contains("agent rules"));
assert!(
loaded
.content
.contains("# Project Instructions: MERMAID.md")
);
assert!(loaded.content.contains("mermaid rules"));
assert!(
loaded.content.find("mermaid rules") > loaded.content.find("agent rules"),
"MERMAID.md must come last so its guidance overrides AGENTS.md"
);
assert_eq!(loaded.sources.len(), 2);
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn find_instruction_files_walks_up_to_git_root() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let root = temp_dir("walkup");
fs::create_dir(root.join(".git")).unwrap();
fs::write(root.join("MERMAID.md"), "root rules").unwrap();
let sub = root.join("subdir/deeper");
fs::create_dir_all(&sub).unwrap();
let found = find_instruction_files(&sub);
assert_eq!(found, vec![root.join("MERMAID.md")]);
let _ = fs::remove_dir_all(&root);
}
#[test]
fn find_instruction_files_stops_at_git_root_without_file() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let root = temp_dir("git_no_md");
fs::create_dir(root.join(".git")).unwrap();
let parent = root.parent().unwrap();
let above_md = parent.join("MERMAID.md");
fs::write(&above_md, "outside").unwrap();
let sub = root.join("subdir");
fs::create_dir_all(&sub).unwrap();
let found = find_instruction_files(&sub);
assert!(found.is_empty(), "walk must stop at .git boundary");
let _ = fs::remove_dir_all(&root);
let _ = fs::remove_file(&above_md);
}
#[test]
fn find_instruction_files_returns_empty_if_absent() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("absent");
fs::create_dir(dir.join(".git")).unwrap();
let found = find_instruction_files(&dir);
assert!(found.is_empty());
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn load_from_path_truncates_oversized_file() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("oversized");
let path = dir.join("MERMAID.md");
let big = "a".repeat(50_000);
fs::write(&path, &big).unwrap();
let loaded = load_from_path(&path).expect("load");
assert!(loaded.truncated);
assert_eq!(loaded.byte_len, 50_000); assert!(loaded.content.ends_with(INSTRUCTIONS_TRUNCATION_MARKER));
assert_eq!(
loaded.content.len(),
MAX_INSTRUCTIONS_BYTES + INSTRUCTIONS_TRUNCATION_MARKER.len()
);
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn load_from_path_returns_none_when_missing() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("missing");
assert!(load_from_path(&dir.join("nope.md")).is_none());
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn refresh_returns_unchanged_when_mtime_stable() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("stable");
let path = dir.join("MERMAID.md");
fs::write(&path, "v1").unwrap();
let prior = load_from_path(&path).unwrap();
let (after, outcome) = refresh(Some(prior.clone()), &dir);
assert_eq!(outcome, ReloadOutcome::Unchanged);
assert!(after.is_some());
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn refresh_returns_reloaded_on_content_change() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("changed");
let path = dir.join("MERMAID.md");
fs::write(&path, "v1").unwrap();
let prior = load_from_path(&path).unwrap();
std::thread::sleep(std::time::Duration::from_millis(1100));
fs::write(&path, "v2 longer content here").unwrap();
let (after, outcome) = refresh(Some(prior), &dir);
assert!(matches!(outcome, ReloadOutcome::Reloaded { .. }));
assert_eq!(after.unwrap().content, "v2 longer content here");
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn refresh_returns_removed_when_file_deleted() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("removed");
let path = dir.join("MERMAID.md");
fs::write(&path, "v1").unwrap();
let prior = load_from_path(&path).unwrap();
fs::remove_file(&path).unwrap();
let (after, outcome) = refresh(Some(prior), &dir);
assert_eq!(outcome, ReloadOutcome::Removed);
assert!(after.is_none());
let _ = fs::remove_dir_all(&dir);
}
#[test]
fn refresh_returns_loaded_first_on_initial_discovery() {
let _lock = FS_LOCK.lock().unwrap_or_else(|e| e.into_inner());
let dir = temp_dir("first");
fs::create_dir(dir.join(".git")).unwrap();
fs::write(dir.join("MERMAID.md"), "fresh").unwrap();
let (after, outcome) = refresh(None, &dir);
assert!(matches!(outcome, ReloadOutcome::LoadedFirst { .. }));
assert_eq!(after.unwrap().content, "fresh");
let _ = fs::remove_dir_all(&dir);
}
}