|
| 1 | +// storage_migrations.rs |
| 2 | + |
| 3 | +use crate::Config; |
| 4 | +use alloc::vec::Vec; |
| 5 | +use frame_support::{pallet_prelude::*, traits::UncheckedOnRuntimeUpgrade, weights::Weight}; |
| 6 | +use polimec_common::migration_types::{Migration, MigrationInfo, MigrationStatus}; |
| 7 | +use sp_runtime::{traits::ConstU32, WeakBoundedVec}; |
| 8 | + |
| 9 | +pub mod v7 { |
| 10 | + use crate::{AccountIdOf, ProjectId, UserMigrations}; |
| 11 | + |
| 12 | + use super::*; |
| 13 | + |
| 14 | + const LOG: &str = "funding::migration::v7"; |
| 15 | + pub const MAX_PARTICIPATIONS_PER_USER: u32 = 10_000; |
| 16 | + |
| 17 | + type UserMigrationsValue = (MigrationStatus, WeakBoundedVec<Migration, ConstU32<MAX_PARTICIPATIONS_PER_USER>>); |
| 18 | + |
| 19 | + pub struct UncheckedMigrationToV7<T: Config>(PhantomData<T>); |
| 20 | + impl<T: Config> UncheckedOnRuntimeUpgrade for UncheckedMigrationToV7<T> { |
| 21 | + fn on_runtime_upgrade() -> Weight { |
| 22 | + let mut items = 0u64; |
| 23 | + log::info!(target: LOG, "Starting vesting time migration to V7"); |
| 24 | + |
| 25 | + let translate_migrations = |
| 26 | + |_: (ProjectId, AccountIdOf<T>), migration_value: UserMigrationsValue| -> Option<UserMigrationsValue> { |
| 27 | + let (status, migrations) = migration_value; |
| 28 | + let migrated: Vec<_> = migrations |
| 29 | + .iter() |
| 30 | + .map(|migration| { |
| 31 | + items = items.saturating_add(1); |
| 32 | + |
| 33 | + Migration { |
| 34 | + info: MigrationInfo { |
| 35 | + vesting_time: migration.info.vesting_time.checked_div(2).unwrap_or(0), |
| 36 | + ..migration.info |
| 37 | + }, |
| 38 | + ..migration.clone() |
| 39 | + } |
| 40 | + }) |
| 41 | + .collect(); |
| 42 | + |
| 43 | + let bounded = WeakBoundedVec::try_from(migrated) |
| 44 | + .unwrap_or_else(|_| panic!("MaxParticipationsPerUser exceeded during migration")); |
| 45 | + |
| 46 | + Some((status, bounded)) |
| 47 | + }; |
| 48 | + |
| 49 | + UserMigrations::<T>::translate(translate_migrations); |
| 50 | + |
| 51 | + log::info!(target: LOG, "Migrated {} vesting entries", items); |
| 52 | + T::DbWeight::get().reads_writes(items, items) |
| 53 | + } |
| 54 | + |
| 55 | + #[cfg(feature = "try-runtime")] |
| 56 | + fn pre_upgrade() -> Result<Vec<u8>, DispatchError> { |
| 57 | + let migration_count = UserMigrations::<T>::iter().count() as u32; |
| 58 | + log::info!(target: LOG, "Pre-upgrade: {} UserMigrations entries", migration_count); |
| 59 | + |
| 60 | + // Encode counts and sample pre-migration vesting times for validation |
| 61 | + let user_migrations = UserMigrations::<T>::iter().collect::<Vec<_>>(); |
| 62 | + |
| 63 | + Ok((migration_count, user_migrations).encode()) |
| 64 | + } |
| 65 | + |
| 66 | + #[cfg(feature = "try-runtime")] |
| 67 | + fn post_upgrade(pre_state: Vec<u8>) -> Result<(), DispatchError> { |
| 68 | + let (pre_migration_count, pre_user_migrations): ( |
| 69 | + u32, |
| 70 | + Vec<((ProjectId, AccountIdOf<T>), UserMigrationsValue)>, |
| 71 | + ) = Decode::decode(&mut &pre_state[..]).expect("Failed to decode pre-migration state"); |
| 72 | + |
| 73 | + let post_migration_count = UserMigrations::<T>::iter().count() as u32; |
| 74 | + |
| 75 | + if pre_migration_count != post_migration_count { |
| 76 | + return Err("Migration count mismatch".into()); |
| 77 | + } |
| 78 | + |
| 79 | + for (key, pre_value) in pre_user_migrations { |
| 80 | + let post_value = UserMigrations::<T>::get(key.clone()) |
| 81 | + .unwrap_or_else(|| panic!("Post-migration UserMigrations entry not found for {:?}", key)); |
| 82 | + |
| 83 | + for (pre_migration, post_migration) in pre_value.1.iter().zip(post_value.1.iter()) { |
| 84 | + if pre_migration.info.vesting_time.checked_div(2).unwrap_or(0) != post_migration.info.vesting_time { |
| 85 | + return Err("Migration vesting time mismatch".into()); |
| 86 | + } |
| 87 | + } |
| 88 | + } |
| 89 | + |
| 90 | + Ok(()) |
| 91 | + } |
| 92 | + } |
| 93 | + |
| 94 | + pub type MigrationToV7<T> = frame_support::migrations::VersionedMigration< |
| 95 | + 6, |
| 96 | + 7, |
| 97 | + UncheckedMigrationToV7<T>, |
| 98 | + crate::Pallet<T>, |
| 99 | + <T as frame_system::Config>::DbWeight, |
| 100 | + >; |
| 101 | +} |
0 commit comments