36 lines
1.1 KiB
Rust
36 lines
1.1 KiB
Rust
use crate::account::{AccountSharedData, ReadableAccount, WritableAccount};
|
|
pub use solana_program::feature::*;
|
|
|
|
pub fn from_account<T: ReadableAccount>(account: &T) -> Option<Feature> {
|
|
if account.owner() != &id() {
|
|
None
|
|
} else {
|
|
bincode::deserialize(account.data()).ok()
|
|
}
|
|
}
|
|
|
|
pub fn to_account(feature: &Feature, account: &mut AccountSharedData) -> Option<()> {
|
|
bincode::serialize_into(account.data_as_mut_slice(), feature).ok()
|
|
}
|
|
|
|
pub fn create_account(feature: &Feature, lamports: u64) -> AccountSharedData {
|
|
let data_len = Feature::size_of().max(bincode::serialized_size(feature).unwrap() as usize);
|
|
let mut account = AccountSharedData::new(lamports, data_len, &id());
|
|
to_account(feature, &mut account).unwrap();
|
|
account
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn feature_deserialize_none() {
|
|
let just_initialized = AccountSharedData::new(42, Feature::size_of(), &id());
|
|
assert_eq!(
|
|
from_account(&just_initialized),
|
|
Some(Feature { activated_at: None })
|
|
);
|
|
}
|
|
}
|