use crate::{
snapshot_cache::SNAPSHOT_REFRESH_ATTEMPT_SCHEMA_VERSION,
sns::report::{
SnsProposalsRefreshRequest,
cache_attempt::{SnsRefreshAttemptMetadata, SnsRefreshAttemptProgress},
proposals_cache::model::SnsProposalsRefreshAttempt,
source::{MainnetSns, SnsFetchRequest},
},
};
use std::path::Path;
#[derive(Clone, Copy)]
pub(in crate::sns::report::proposals_cache) struct SnsProposalsAttemptContext<'a> {
pub(in crate::sns::report::proposals_cache) path: &'a Path,
pub(in crate::sns::report::proposals_cache) request: &'a SnsProposalsRefreshRequest,
pub(in crate::sns::report::proposals_cache) fetch_request: &'a SnsFetchRequest,
pub(in crate::sns::report::proposals_cache) sns: &'a MainnetSns,
}
pub(in crate::sns::report::proposals_cache) type SnsProposalsAttemptProgress =
SnsRefreshAttemptProgress;
pub(in crate::sns::report::proposals_cache::attempt) struct SnsProposalsAttemptParts<'a> {
pub(in crate::sns::report::proposals_cache::attempt) context: SnsProposalsAttemptContext<'a>,
pub(in crate::sns::report::proposals_cache::attempt) status: &'static str,
pub(in crate::sns::report::proposals_cache::attempt) progress: SnsProposalsAttemptProgress,
pub(in crate::sns::report::proposals_cache::attempt) last_error: Option<String>,
}
pub(in crate::sns::report::proposals_cache::attempt) fn attempt_from_parts(
parts: SnsProposalsAttemptParts<'_>,
) -> SnsProposalsRefreshAttempt {
SnsProposalsRefreshAttempt {
schema_version: SNAPSHOT_REFRESH_ATTEMPT_SCHEMA_VERSION,
network: parts.context.request.network.clone(),
source_endpoint: parts.context.request.source_endpoint.clone(),
started_at: parts.context.fetch_request.fetched_at.clone(),
updated_at: parts.context.fetch_request.fetched_at.clone(),
metadata: SnsRefreshAttemptMetadata {
root_canister_id: parts.context.sns.root_canister_id.clone(),
governance_canister_id: parts.context.sns.governance_canister_id.clone(),
},
status: parts.status.to_string(),
page_size: parts.context.request.page_size,
pages_fetched: parts.progress.pages_fetched,
rows_fetched: parts.progress.rows_fetched,
last_cursor: parts.progress.last_cursor,
last_error: parts.last_error,
}
}