use super::{load::load_sns_neurons_cache_at, scan::collect_sns_neurons_cache_paths};
use crate::sns::report::{
SnsHostError, SnsNeuronsCacheSummary,
neurons_cache::{
attempt::read_sns_neurons_attempt_status, model::SnsNeuronsCache,
paths::sns_neurons_attempt_path_for_cache_path,
},
};
use std::path::{Path, PathBuf};
pub(in crate::sns::report::neurons_cache) fn list_sns_neurons_cache_summaries(
icp_root: &Path,
network: &str,
) -> Result<Vec<SnsNeuronsCacheSummary>, SnsHostError> {
collect_sns_neurons_cache_paths(icp_root, network)?
.into_iter()
.map(|path| {
let cache = load_sns_neurons_cache_at(path.clone(), network)?;
Ok(sns_neurons_cache_summary(path, cache))
})
.collect()
}
pub(in crate::sns::report::neurons_cache) fn sns_neurons_cache_summary(
cache_path: PathBuf,
cache: SnsNeuronsCache,
) -> SnsNeuronsCacheSummary {
let attempt_path = sns_neurons_attempt_path_for_cache_path(&cache_path);
let metadata = cache.metadata;
SnsNeuronsCacheSummary {
id: metadata.id,
name: metadata.name,
root_canister_id: metadata.root_canister_id,
governance_canister_id: metadata.governance_canister_id,
complete: cache.completeness.is_api_exhausted(),
row_count: cache.completeness.row_count,
page_count: cache.completeness.page_count,
page_size: cache.completeness.page_size,
fetched_at: cache.fetched_at,
source_endpoint: cache.source_endpoint,
cache_path: cache_path.display().to_string(),
refresh_attempt_path: attempt_path.display().to_string(),
latest_attempt: read_sns_neurons_attempt_status(&attempt_path),
}
}