use std::collections::HashSet;
use std::path::Path;
use std::path::PathBuf;
use std::time::{Duration, Instant};
use glob::Pattern;
use ignore::WalkBuilder;
use regex::RegexBuilder;
use crate::core::protocol;
use crate::core::symbol_map::{self, SymbolMap};
use crate::core::tokens::count_tokens;
use crate::tools::CrpMode;
pub(crate) const MAX_FILE_SIZE: u64 = 512_000;
pub(crate) const MAX_WALK_DEPTH: usize = 20;
const MAX_MATCH_LINE_WIDTH: usize = 150;
pub const NATIVE_GREP_BASELINE_FACTOR: f64 = 2.5;
pub struct SearchOutcome {
pub text: String,
pub modeled_baseline: usize,
pub observed_tokens: usize,
}
impl SearchOutcome {
fn error(text: String) -> Self {
Self {
text,
modeled_baseline: 0,
observed_tokens: 0,
}
}
fn from_observed(text: String, observed_tokens: usize) -> Self {
let modeled = (observed_tokens as f64 * NATIVE_GREP_BASELINE_FACTOR).ceil() as usize;
Self {
text,
modeled_baseline: modeled.max(observed_tokens),
observed_tokens,
}
}
}
fn search_deadline() -> Option<Duration> {
const DEFAULT_MS: u64 = 10_000;
let ms = std::env::var("LEAN_CTX_SEARCH_DEADLINE_MS")
.ok()
.and_then(|v| v.trim().parse::<u64>().ok())
.unwrap_or(DEFAULT_MS);
(ms > 0).then(|| Duration::from_millis(ms))
}
#[allow(clippy::too_many_arguments)]
pub fn handle(
pattern: &str,
dir: &str,
include: Option<&str>,
max_results: usize,
crp_mode: CrpMode,
respect_gitignore: bool,
allow_secret_paths: bool,
anchored: bool,
) -> SearchOutcome {
handle_filtered(
pattern,
dir,
include,
max_results,
crp_mode,
respect_gitignore,
allow_secret_paths,
anchored,
None,
None,
)
}
#[allow(clippy::too_many_arguments)]
pub fn handle_filtered(
pattern: &str,
dir: &str,
include: Option<&str>,
max_results: usize,
_crp_mode: CrpMode,
respect_gitignore: bool,
allow_secret_paths: bool,
anchored: bool,
exclude: Option<&str>,
exclude_pattern: Option<&str>,
) -> SearchOutcome {
let include_patterns = compile_include(include);
let exclude_patterns = compile_include(exclude);
const MAX_PATTERN_LEN: usize = 1024;
const MAX_REGEX_SIZE: usize = 1 << 20;
let redact = crate::core::redaction::redaction_enabled_for_active_role();
if pattern.len() > MAX_PATTERN_LEN {
return SearchOutcome::error(format!(
"ERROR: pattern too long ({} > {MAX_PATTERN_LEN} chars)",
pattern.len()
));
}
let re = match RegexBuilder::new(pattern)
.size_limit(MAX_REGEX_SIZE)
.dfa_size_limit(MAX_REGEX_SIZE)
.build()
{
Ok(r) => r,
Err(e) => return SearchOutcome::error(format!("ERROR: invalid regex: {e}")),
};
let exclude_re = exclude_pattern.and_then(|p| {
RegexBuilder::new(p)
.size_limit(MAX_REGEX_SIZE)
.dfa_size_limit(MAX_REGEX_SIZE)
.build()
.ok()
});
let root = Path::new(dir);
if !root.exists() {
return SearchOutcome::error(format!("ERROR: {dir} does not exist"));
}
if let Some(err) = crate::tools::walk_guard::deny_unsafe_walk_root(dir) {
return SearchOutcome::error(err);
}
let mut files: Vec<PathBuf> = Vec::new();
let mut matches = Vec::new();
let mut raw_tokens_accum: usize = 0;
let mut files_searched = 0u32;
let mut files_skipped_size = 0u32;
let mut files_skipped_encoding = 0u32;
let mut files_skipped_boundary = 0u32;
let mut files_skipped_special = 0u32;
let mut deadline_hit = false;
let mut any_enclosing = false;
let used_index = if let Some(idx) =
crate::core::search_index::get_fresh(dir, respect_gitignore, allow_secret_paths)
{
files = idx
.candidate_paths(pattern, &include_patterns, root)
.into_paths();
true
} else {
false
};
if !used_index {
let walker = WalkBuilder::new(root)
.hidden(false)
.max_depth(Some(MAX_WALK_DEPTH))
.git_ignore(respect_gitignore)
.git_global(respect_gitignore)
.git_exclude(respect_gitignore)
.require_git(false)
.filter_entry(move |e| {
if respect_gitignore {
crate::core::walk_filter::keep_entry(e)
} else {
crate::core::cloud_files::keep_entry(e)
}
})
.build();
for entry in walker.filter_map(std::result::Result::ok) {
if entry.file_type().is_none_or(|ft| ft.is_dir()) {
continue;
}
if entry.file_type().is_some_and(|ft| ft.is_symlink()) {
continue;
}
let path = entry.path();
if is_binary_ext(path) || is_generated_file(path) {
continue;
}
if !allow_secret_paths && crate::core::io_boundary::is_secret_like(path).is_some() {
files_skipped_boundary += 1;
continue;
}
if !include_patterns.is_empty() {
let rel = path.strip_prefix(root).unwrap_or(path);
let rel_str = rel.to_string_lossy();
if !include_patterns.iter().any(|p| p.matches(&rel_str)) {
continue;
}
}
files.push(path.to_path_buf());
}
}
if !exclude_patterns.is_empty() {
files.retain(|path| {
let rel = path.strip_prefix(root).unwrap_or(path);
let rel_str = rel.to_string_lossy();
!exclude_patterns.iter().any(|p| p.matches(&rel_str))
});
}
files.sort_unstable_by(|a, b| a.as_os_str().cmp(b.as_os_str()));
let root_str = root.to_string_lossy();
let deadline = search_deadline().map(|budget| Instant::now() + budget);
for path in &files {
if matches.len() >= max_results {
break;
}
if deadline.is_some_and(|dl| Instant::now() >= dl) {
deadline_hit = true;
break;
}
let state = match std::fs::metadata(path) {
Ok(meta) if !meta.file_type().is_file() => {
files_skipped_special += 1;
continue;
}
Ok(meta) if meta.len() > MAX_FILE_SIZE => {
files_skipped_size += 1;
continue;
}
Ok(meta) => crate::core::content_cache::FileState::from_metadata(&meta),
Err(_) => {
files_skipped_encoding += 1;
continue;
}
};
let content: std::sync::Arc<str> =
if let Some(cached) = state.and_then(|s| crate::core::content_cache::get(path, s)) {
crate::core::cache::record_search_content_read(true);
cached
} else {
if state.is_some() {
crate::core::cache::record_search_content_read(false);
}
let Ok(text) = std::fs::read_to_string(path) else {
files_skipped_encoding += 1;
continue;
};
let arc: std::sync::Arc<str> = std::sync::Arc::from(text);
if let Some(s) = state {
crate::core::content_cache::insert(path, s, std::sync::Arc::clone(&arc));
}
arc
};
files_searched += 1;
let mut file_enclosing: Option<EnclosingIndex> = None;
for (i, line) in content.lines().enumerate() {
if re.is_match(line) && !exclude_re.as_ref().is_some_and(|ex| ex.is_match(line)) {
let short_path =
protocol::shorten_path_relative(&path.to_string_lossy(), &root_str);
raw_tokens_accum += count_tokens(line.trim()) + 2;
let mut shown = if redact {
crate::core::redaction::redact_text(line.trim())
} else {
line.trim().to_string()
};
if shown.len() > MAX_MATCH_LINE_WIDTH {
shown.truncate(shown.floor_char_boundary(MAX_MATCH_LINE_WIDTH));
shown.push_str("...");
}
let tag = file_enclosing
.get_or_insert_with(|| EnclosingIndex::for_file(path, content.as_ref()))
.tag_for(i + 1);
if tag.is_some() {
any_enclosing = true;
}
let tag = tag.unwrap_or_default();
if anchored {
matches.push(format!(
"{short_path}:{}:{} {}{}",
i + 1,
crate::core::anchor::line_hash(line),
shown,
tag
));
} else {
matches.push(format!("{short_path}:{} {}{}", i + 1, shown, tag));
}
if matches.len() >= max_results {
break;
}
}
}
}
if matches.len() > 1 {
use std::collections::HashMap;
let mut file_counts: HashMap<String, usize> = HashMap::new();
for m in &matches {
let file = extract_file_from_match(m).to_string();
*file_counts.entry(file).or_default() += 1;
}
matches.sort_by(|a, b| {
let fa = extract_file_from_match(a);
let fb = extract_file_from_match(b);
let ca = file_counts.get(fa).copied().unwrap_or(0);
let cb = file_counts.get(fb).copied().unwrap_or(0);
cb.cmp(&ca).then_with(|| fa.cmp(fb))
});
}
if matches.is_empty() {
let mut msg = format!("0 matches for '{pattern}' in {files_searched} files");
if files_skipped_size > 0 {
msg.push_str(&format!(" ({files_skipped_size} large files skipped)"));
}
if files_skipped_encoding > 0 {
msg.push_str(&format!(
" ({files_skipped_encoding} files skipped: binary/encoding)"
));
}
if files_skipped_boundary > 0 {
msg.push_str(&format!(
" ({files_skipped_boundary} secret-like files skipped by boundary policy)"
));
}
if files_skipped_special > 0 {
msg.push_str(&format!(
" ({files_skipped_special} special files skipped: not regular files)"
));
}
if deadline_hit {
msg.push_str(
" (search stopped at the time budget — refine the pattern or scope with path=)",
);
}
return SearchOutcome::error(msg);
}
let matched_files: Vec<&str> = {
let mut seen = HashSet::new();
matches
.iter()
.filter_map(|m| {
let file = extract_file_from_match(m);
if seen.insert(file) { Some(file) } else { None }
})
.collect()
};
let mut result = format!("{} matches in {} files", matches.len(), files_searched);
if matched_files.len() > 1 {
if matched_files.len() <= 10 {
result.push_str(" [");
result.push_str(&matched_files.join(", "));
result.push(']');
} else {
let shown: Vec<&str> = matched_files.iter().take(8).copied().collect();
result.push_str(&format!(
" [{}, +{} more]",
shown.join(", "),
matched_files.len() - 8
));
}
}
result.push_str(":\n");
if anchored {
result.push_str("[anchored: path:line:hh → edit via ctx_patch]\n");
}
if any_enclosing {
result.push_str(
"[∈ enclosing symbol → ctx_search(action=symbol, handle=\"path#name@Lstart\")]\n",
);
}
result.push_str(&matches.join("\n"));
if files_skipped_size > 0 {
result.push_str(&format!("\n({files_skipped_size} files >512KB skipped)"));
}
if files_skipped_encoding > 0 {
result.push_str(&format!(
"\n({files_skipped_encoding} files skipped: binary/encoding)"
));
}
if files_skipped_boundary > 0 {
result.push_str(&format!(
"\n({files_skipped_boundary} secret-like files skipped by boundary policy)"
));
}
if files_skipped_special > 0 {
result.push_str(&format!(
"\n({files_skipped_special} special files skipped: not regular files)"
));
}
if deadline_hit {
result.push_str(&format!(
"\n(search stopped after the {}s budget — {files_searched} files scanned; \
refine the pattern or scope with path= for full coverage)",
search_deadline().map_or(0, |d| d.as_secs())
));
}
let scope_hint = monorepo_scope_hint(&matches, dir);
if let Some(delta) = crate::core::search_delta::compute_delta(pattern, &matches) {
return SearchOutcome::from_observed(delta, raw_tokens_accum);
}
if symbol_map::substitution_enabled() {
let exts = extract_extensions(include);
let ext_refs: Vec<&str> = exts.iter().map(String::as_str).collect();
let mut sym = SymbolMap::new();
let idents = symbol_map::extract_identifiers(&result, &ext_refs);
for ident in &idents {
sym.register(ident);
}
if sym.len() >= 3 {
let sym_table = sym.format_table();
let compressed = sym.apply(&result);
let original_tok = count_tokens(&result);
let compressed_tok = count_tokens(&compressed) + count_tokens(&sym_table);
let net_saving = original_tok.saturating_sub(compressed_tok);
if original_tok > 0 && net_saving * 100 / original_tok >= 5 {
result = format!("{compressed}{sym_table}");
}
}
}
if let Some(hint) = scope_hint {
result.push_str(&hint);
}
SearchOutcome::from_observed(result, raw_tokens_accum)
}
pub(crate) fn is_binary_ext(path: &Path) -> bool {
let ext = path.extension().and_then(|e| e.to_str()).unwrap_or("");
matches!(
ext,
"png"
| "jpg"
| "jpeg"
| "gif"
| "webp"
| "ico"
| "svg"
| "woff"
| "woff2"
| "ttf"
| "eot"
| "pdf"
| "zip"
| "tar"
| "gz"
| "br"
| "zst"
| "bz2"
| "xz"
| "mp3"
| "mp4"
| "webm"
| "ogg"
| "wasm"
| "so"
| "dylib"
| "dll"
| "exe"
| "lock"
| "map"
| "snap"
| "patch"
| "db"
| "sqlite"
| "parquet"
| "arrow"
| "bin"
| "o"
| "a"
| "class"
| "pyc"
| "pyo"
)
}
pub(crate) fn is_generated_file(path: &Path) -> bool {
let name = path.file_name().and_then(|n| n.to_str()).unwrap_or("");
name.ends_with(".min.js")
|| name.ends_with(".min.css")
|| name.ends_with(".bundle.js")
|| name.ends_with(".chunk.js")
|| name.ends_with(".d.ts")
|| name.ends_with(".js.map")
|| name.ends_with(".css.map")
}
struct EnclosingIndex {
spans: Vec<(usize, usize, String)>,
}
impl EnclosingIndex {
fn for_file(path: &Path, content: &str) -> Self {
let ext = path.extension().and_then(|e| e.to_str()).unwrap_or("");
let mut spans: Vec<(usize, usize, String)> =
crate::core::signatures::extract_signatures(content, ext)
.into_iter()
.filter_map(|s| match (s.start_line, s.end_line) {
(Some(a), Some(b)) if b > a => Some((a, b, s.name)),
_ => None,
})
.collect();
spans.sort_by(|x, y| x.0.cmp(&y.0).then(x.1.cmp(&y.1)));
Self { spans }
}
fn tag_for(&self, line: usize) -> Option<String> {
let mut best: Option<&(usize, usize, String)> = None;
for sp in &self.spans {
if line >= sp.0 && line <= sp.1 {
match best {
None => best = Some(sp),
Some(b) if (sp.1 - sp.0) < (b.1 - b.0) => best = Some(sp),
_ => {}
}
}
}
best.map(|(start, _, name)| format!(" ∈{name}@L{start}"))
}
}
const MAX_INCLUDE_GLOBS: usize = 64;
fn compile_include(include: Option<&str>) -> Vec<Pattern> {
let Some(raw) = include else {
return Vec::new();
};
expand_braces(raw)
.into_iter()
.take(MAX_INCLUDE_GLOBS)
.filter(|g| !g.is_empty())
.map(|g| {
if g.contains('/') {
g
} else {
format!("**/{g}")
}
})
.filter_map(|g| Pattern::new(&g).ok())
.collect()
}
fn expand_braces(pattern: &str) -> Vec<String> {
let Some(open) = pattern.find('{') else {
return vec![pattern.to_string()];
};
let Some(close_rel) = pattern[open..].find('}') else {
return vec![pattern.to_string()];
};
let close = open + close_rel;
let prefix = &pattern[..open];
let inner = &pattern[open + 1..close];
let suffix = &pattern[close + 1..];
let mut out = Vec::new();
for alt in inner.split(',') {
let alt = alt.trim();
for expanded_suffix in expand_braces(suffix) {
out.push(format!("{prefix}{alt}{expanded_suffix}"));
if out.len() >= MAX_INCLUDE_GLOBS {
return out;
}
}
}
out
}
fn extract_extensions(include: Option<&str>) -> Vec<String> {
let Some(pattern) = include else {
return Vec::new();
};
let filename = pattern.rsplit('/').next().unwrap_or(pattern);
let Some(dot) = filename.rfind('.') else {
return Vec::new();
};
let ext_part = &filename[dot + 1..];
if let Some(inner) = ext_part.strip_prefix('{').and_then(|s| s.strip_suffix('}')) {
return inner
.split(',')
.map(|e| e.trim().to_string())
.filter(|e| !e.is_empty())
.collect();
}
if ext_part.is_empty() {
return Vec::new();
}
vec![ext_part.to_string()]
}
fn extract_file_from_match(line: &str) -> &str {
let start = if line.len() >= 2
&& line.as_bytes().first().is_some_and(u8::is_ascii_alphabetic)
&& line.as_bytes().get(1) == Some(&b':')
{
2
} else {
0
};
match line[start..].find(':') {
Some(pos) => &line[..start + pos],
None => line,
}
}
fn monorepo_scope_hint(matches: &[String], search_dir: &str) -> Option<String> {
let top_dirs: HashSet<&str> = matches
.iter()
.filter_map(|m| {
let path = extract_file_from_match(m);
let relative = path.strip_prefix("./").unwrap_or(path);
let relative = relative.strip_prefix(search_dir).unwrap_or(relative);
let relative = relative.strip_prefix('/').unwrap_or(relative);
relative.split('/').next()
})
.collect();
if top_dirs.len() > 3 {
let mut dirs: Vec<&&str> = top_dirs.iter().collect();
dirs.sort();
let dir_list: Vec<String> = dirs.iter().take(6).map(|d| format!("'{d}'")).collect();
let extra = if top_dirs.len() > 6 {
format!(", +{} more", top_dirs.len() - 6)
} else {
String::new()
};
Some(format!(
"\n\nResults span {} directories ({}{}). \
Use the 'path' parameter to scope to a specific service, \
e.g. path=\"{}/\".",
top_dirs.len(),
dir_list.join(", "),
extra,
dirs[0]
))
} else {
None
}
}
#[cfg(test)]
#[path = "tests.rs"]
mod tests;