934858bebf
- Add repo_path parameter to cached_response and cached_vec_response functions - Implement structured cache key format with namespace, repo_path, and request proto - Replace global cache with Moka in-memory cache using weight-based eviction - Set 256MB memory cap with 10-minute TTL and 2-minute TTI policy - Add metrics collection for cache operations and evictions - Implement efficient repo-scoped invalidation using key structure - Add detailed documentation comments explaining cache architecture - Remove outdated dependencies and update dependency versions - Add error handling for encoding failures in cache operations - Optimize Vec responses with length-delimited encoding and pre-allocation
59 lines
1.7 KiB
Rust
59 lines
1.7 KiB
Rust
pub mod find_files;
|
|
pub mod get_file_metadata;
|
|
pub mod get_tree;
|
|
pub mod list_tree;
|
|
|
|
use crate::bare::GitBare;
|
|
use crate::pb::{self, RecentCommit, object_selector};
|
|
|
|
pub(crate) fn resolve_revision(
|
|
sel: &Option<pb::ObjectSelector>,
|
|
) -> Result<String, crate::error::GitError> {
|
|
match sel.as_ref().and_then(|s| s.selector.as_ref()) {
|
|
Some(object_selector::Selector::Oid(oid)) => {
|
|
crate::sanitize::validate_oid_hex(&oid.hex)?;
|
|
Ok(oid.hex.clone())
|
|
}
|
|
Some(object_selector::Selector::Revision(name)) => {
|
|
crate::sanitize::validate_revision(&name.revision)?;
|
|
Ok(name.revision.clone())
|
|
}
|
|
None => Ok("HEAD".into()),
|
|
}
|
|
}
|
|
|
|
pub(crate) fn recent_commit(gb: &GitBare, revision: &str, path: &str) -> Option<RecentCommit> {
|
|
let output = std::process::Command::new("git")
|
|
.args([
|
|
"--git-dir",
|
|
&gb.bare_dir.to_string_lossy(),
|
|
"log",
|
|
"-1",
|
|
"--format=%H %s %at",
|
|
revision,
|
|
"--",
|
|
path,
|
|
])
|
|
.output()
|
|
.ok()?;
|
|
if !output.status.success() {
|
|
return None;
|
|
}
|
|
let line = String::from_utf8_lossy(&output.stdout).trim().to_string();
|
|
if line.is_empty() {
|
|
return None;
|
|
}
|
|
let (hex, rest) = line.split_once(' ')?;
|
|
let (subject, ts_str) = rest.rsplit_once(' ')?;
|
|
let ts: i64 = ts_str.parse().ok()?;
|
|
Some(RecentCommit {
|
|
oid: Some(gb.oid_to_pb(hex)),
|
|
subject: subject.to_string(),
|
|
committed_timestamp: ts,
|
|
})
|
|
}
|
|
|
|
pub(crate) fn is_lfs_pointer(data: &[u8]) -> bool {
|
|
data.starts_with(b"version https://git-lfs.github.com/spec/v1")
|
|
}
|