use super::model::{
NnsProposalRefreshAttempt, NnsProposalRefreshAttemptMetadata, NnsProposalRefreshAttemptStatus,
NnsProposalRefreshRequest,
};
use crate::{
nns::proposals::report::{MAINNET_GOVERNANCE_CANISTER_ID, NnsProposalHostError},
snapshot_cache::{
SNAPSHOT_REFRESH_ATTEMPT_SCHEMA_VERSION, SnapshotRefreshAttempt,
SnapshotRefreshAttemptReadError, current_attempt_timestamp,
read_snapshot_refresh_attempt_strict, validate_snapshot_refresh_attempt,
write_snapshot_refresh_attempt,
},
subnet_catalog::{MAINNET_NETWORK, format_utc_timestamp_secs},
};
use std::path::Path;
const NNS_PROPOSAL_ATTEMPT_METADATA_FIELDS: &[&str] = &["governance_canister_id"];
#[derive(Clone, Debug, Eq, PartialEq)]
pub(super) struct NnsProposalAttemptProgress {
pub(super) pages_fetched: u32,
pub(super) rows_fetched: usize,
pub(super) last_cursor: Option<String>,
}
impl NnsProposalAttemptProgress {
pub(super) const fn new(
pages_fetched: u32,
rows_fetched: usize,
last_cursor: Option<String>,
) -> Self {
Self {
pages_fetched,
rows_fetched,
last_cursor,
}
}
pub(super) const fn starting() -> Self {
Self {
pages_fetched: 0,
rows_fetched: 0,
last_cursor: None,
}
}
}
pub(super) fn read_attempt_status(path: &Path) -> Option<NnsProposalRefreshAttemptStatus> {
let attempt =
read_snapshot_refresh_attempt_strict(path, NNS_PROPOSAL_ATTEMPT_METADATA_FIELDS).ok()??;
validate_nns_attempt(path, MAINNET_NETWORK, &attempt).ok()?;
Some(NnsProposalRefreshAttemptStatus::from(attempt))
}
pub(super) fn read_attempt_status_strict(
path: &Path,
expected_network: &str,
) -> Result<Option<NnsProposalRefreshAttemptStatus>, NnsProposalHostError> {
read_snapshot_refresh_attempt_strict::<NnsProposalRefreshAttempt>(
path,
NNS_PROPOSAL_ATTEMPT_METADATA_FIELDS,
)
.map_err(|err| match err {
SnapshotRefreshAttemptReadError::Read { path, source } => {
NnsProposalHostError::ReadCache { path, source }
}
SnapshotRefreshAttemptReadError::Parse { path, source } => {
NnsProposalHostError::ParseCache { path, source }
}
SnapshotRefreshAttemptReadError::Invalid { path, reason } => {
NnsProposalHostError::InvalidRefreshAttempt { path, reason }
}
})?
.map(|attempt| {
validate_nns_attempt(path, expected_network, &attempt)?;
Ok(NnsProposalRefreshAttemptStatus::from(attempt))
})
.transpose()
}
pub(super) fn write_starting_attempt(
path: &Path,
request: &NnsProposalRefreshRequest,
) -> Result<(), NnsProposalHostError> {
write_attempt_status(
path,
request,
"running",
NnsProposalAttemptProgress::starting(),
None,
)
}
pub(super) fn write_running_attempt(
path: &Path,
request: &NnsProposalRefreshRequest,
progress: NnsProposalAttemptProgress,
) -> Result<(), NnsProposalHostError> {
write_attempt_status(path, request, "running", progress, None)
}
pub(super) fn write_complete_attempt(
path: &Path,
request: &NnsProposalRefreshRequest,
progress: NnsProposalAttemptProgress,
) -> Result<(), NnsProposalHostError> {
write_attempt_status(path, request, "complete", progress, None)
}
pub(super) fn write_failed_attempt(
path: &Path,
request: &NnsProposalRefreshRequest,
err: &NnsProposalHostError,
) {
let latest = read_snapshot_refresh_attempt_strict(path, NNS_PROPOSAL_ATTEMPT_METADATA_FIELDS)
.ok()
.flatten();
let latest =
latest.filter(|attempt| validate_nns_attempt(path, &request.network, attempt).is_ok());
let progress = NnsProposalAttemptProgress::new(
latest.as_ref().map_or(0, |attempt| attempt.pages_fetched),
latest.as_ref().map_or(0, |attempt| attempt.rows_fetched),
latest.and_then(|attempt| attempt.last_cursor),
);
let _ = write_attempt_status(path, request, "failed", progress, Some(err.to_string()));
}
fn validate_nns_attempt(
path: &Path,
expected_network: &str,
attempt: &NnsProposalRefreshAttempt,
) -> Result<(), NnsProposalHostError> {
let invalid = |reason| NnsProposalHostError::InvalidRefreshAttempt {
path: path.to_path_buf(),
reason,
};
validate_snapshot_refresh_attempt(attempt, expected_network).map_err(invalid)?;
if attempt.metadata.governance_canister_id != MAINNET_GOVERNANCE_CANISTER_ID {
return Err(invalid(format!(
"governance_canister_id is {}, expected {MAINNET_GOVERNANCE_CANISTER_ID}",
attempt.metadata.governance_canister_id
)));
}
Ok(())
}
fn write_attempt_status(
path: &Path,
request: &NnsProposalRefreshRequest,
status: &'static str,
progress: NnsProposalAttemptProgress,
last_error: Option<String>,
) -> Result<(), NnsProposalHostError> {
let timestamp = format_utc_timestamp_secs(request.now_unix_secs);
let attempt: NnsProposalRefreshAttempt =
SnapshotRefreshAttempt::<NnsProposalRefreshAttemptMetadata> {
schema_version: SNAPSHOT_REFRESH_ATTEMPT_SCHEMA_VERSION,
network: request.network.clone(),
source_endpoint: request.source_endpoint.clone(),
started_at: timestamp.clone(),
updated_at: current_attempt_timestamp(×tamp),
metadata: NnsProposalRefreshAttemptMetadata {
governance_canister_id: MAINNET_GOVERNANCE_CANISTER_ID.to_string(),
},
status: status.to_string(),
page_size: request.page_size,
pages_fetched: progress.pages_fetched,
rows_fetched: progress.rows_fetched,
last_cursor: progress.last_cursor,
last_error,
};
write_snapshot_refresh_attempt(
path,
&attempt,
|path, source| NnsProposalHostError::SerializeCache { path, source },
NnsProposalHostError::Cache,
)
}