solana/sdk/src/account.rs

55 lines
1.6 KiB
Rust
Raw Normal View History

2018-09-26 16:55:36 -07:00
use pubkey::Pubkey;
/// An Account with userdata that is stored on chain
#[repr(C)]
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct Account {
/// tokens in the account
pub tokens: u64,
2018-11-12 09:55:28 -08:00
/// data held in this account
pub userdata: Vec<u8>,
2018-11-12 09:55:28 -08:00
/// the program that owns this account
pub owner: Pubkey,
2018-11-12 09:55:28 -08:00
/// this account's userdata contains a loaded program (and is now read-only)
pub executable: bool,
2018-11-12 09:55:28 -08:00
/// the loader for this account
/// (Pubkey::default() if the account is not executable and thus was never 'loaded')
pub loader: Pubkey,
}
impl Account {
// TODO do we want to add executable and leader_owner even though they should always be false/default?
pub fn new(tokens: u64, space: usize, owner: Pubkey) -> Account {
Account {
tokens,
userdata: vec![0u8; space],
owner,
executable: false,
loader: Pubkey::default(),
}
}
}
#[repr(C)]
#[derive(Debug)]
pub struct KeyedAccount<'a> {
pub key: &'a Pubkey,
pub account: &'a mut Account,
}
impl<'a> From<(&'a Pubkey, &'a mut Account)> for KeyedAccount<'a> {
fn from((key, account): (&'a Pubkey, &'a mut Account)) -> Self {
KeyedAccount { key, account }
}
}
impl<'a> From<&'a mut (Pubkey, Account)> for KeyedAccount<'a> {
fn from((key, account): &'a mut (Pubkey, Account)) -> Self {
KeyedAccount { key, account }
}
}
pub fn create_keyed_accounts(accounts: &mut [(Pubkey, Account)]) -> Vec<KeyedAccount> {
accounts.iter_mut().map(Into::into).collect()
}