forked from 0LNetworkCommunity/libra-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[move] enhance vouch system [breaking] (0LNetworkCommunity#303)
- Loading branch information
1 parent
1c8bde3
commit bc610d1
Showing
15 changed files
with
1,154 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
98 changes: 98 additions & 0 deletions
98
framework/libra-framework/sources/ol_sources/migrations.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
module ol_framework::migrations { | ||
use std::vector; | ||
use std::string; | ||
use std::error; | ||
use diem_framework::system_addresses; | ||
use ol_framework::epoch_helper; | ||
|
||
use diem_std::debug::print; | ||
|
||
// migrations | ||
use ol_framework::vouch_migration; | ||
|
||
//////// CONST //////// | ||
const EMIGRATIONS_NOT_INITIALIZED: u64 = 1; | ||
|
||
//////// STRUCTS //////// | ||
struct Migration has store, copy { | ||
number: u64, | ||
epoch: u64, | ||
description: vector<u8>, | ||
} | ||
|
||
struct Migrations has key { | ||
last_migration: u64, | ||
history: vector<Migration>, | ||
} | ||
|
||
public fun execute(root: &signer) acquires Migrations { | ||
// ensure ol_framework | ||
system_addresses::assert_ol(root); | ||
|
||
// execute all migrations | ||
if (apply_migration(root, 1, b"Vouch migration initializes GivenVouches, ReceivedVouches, and drop MyVouches")) { | ||
vouch_migration::migrate_my_vouches(); | ||
}; | ||
|
||
} | ||
|
||
fun apply_migration(root: &signer, mig_number: u64, description: vector<u8>): bool acquires Migrations { | ||
if (can_execute_migration(mig_number)) { | ||
print(&string::utf8(b">>> Migration started:")); | ||
print(&mig_number); | ||
print(&string::utf8(description)); | ||
|
||
register_migration(root, mig_number, description); | ||
true | ||
} else { | ||
false | ||
} | ||
} | ||
|
||
fun can_execute_migration(mig_number: u64): bool acquires Migrations { | ||
get_last_migration_number() < mig_number | ||
} | ||
|
||
fun register_migration(root: &signer, mig_number: u64, description: vector<u8>) acquires Migrations { | ||
let epoch = epoch_helper::get_current_epoch(); | ||
|
||
if (exists<Migrations>(@ol_framework)) { | ||
// update | ||
let state = borrow_global_mut<Migrations>(@diem_framework); | ||
state.last_migration = mig_number; | ||
vector::push_back(&mut state.history, Migration { | ||
number: mig_number, | ||
epoch: epoch, | ||
description: description, | ||
}); | ||
} else { | ||
// initialize | ||
move_to<Migrations>(root, Migrations { | ||
last_migration: mig_number, | ||
history: vector[Migration { | ||
number: mig_number, | ||
epoch: epoch, | ||
description: description, | ||
}], | ||
}); | ||
}; | ||
} | ||
|
||
public fun get_last_migration_number(): u64 acquires Migrations { | ||
if (!exists<Migrations>(@ol_framework)) { | ||
return 0 | ||
}; | ||
|
||
let state = borrow_global<Migrations>(@ol_framework); | ||
state.last_migration | ||
} | ||
|
||
public fun get_last_migrations_history(): (u64, u64, vector<u8>) acquires Migrations { | ||
assert!(exists<Migrations>(@ol_framework), error::invalid_state(EMIGRATIONS_NOT_INITIALIZED)); | ||
|
||
let state = borrow_global<Migrations>(@ol_framework); | ||
let last_migration = vector::borrow(&state.history, vector::length(&state.history) -1); | ||
(last_migration.number, last_migration.epoch, last_migration.description) | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.