1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
use crate::error::ErrorCode;
use crate::{AccountDeserialize, AccountSerialize, Owner, Result};
use solana_program::{
bpf_loader_upgradeable::UpgradeableLoaderState, program_error::ProgramError, pubkey::Pubkey,
};
#[derive(Clone)]
pub struct ProgramData {
pub slot: u64,
pub upgrade_authority_address: Option<Pubkey>,
}
impl AccountDeserialize for ProgramData {
fn try_deserialize(buf: &mut &[u8]) -> Result<Self> {
ProgramData::try_deserialize_unchecked(buf)
}
fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self> {
let program_state = AccountDeserialize::try_deserialize_unchecked(buf)?;
match program_state {
UpgradeableLoaderState::Uninitialized => Err(ErrorCode::AccountNotProgramData.into()),
UpgradeableLoaderState::Buffer {
authority_address: _,
} => Err(ErrorCode::AccountNotProgramData.into()),
UpgradeableLoaderState::Program {
programdata_address: _,
} => Err(ErrorCode::AccountNotProgramData.into()),
UpgradeableLoaderState::ProgramData {
slot,
upgrade_authority_address,
} => Ok(ProgramData {
slot,
upgrade_authority_address,
}),
}
}
}
impl AccountSerialize for ProgramData {
fn try_serialize<W: std::io::Write>(&self, _writer: &mut W) -> Result<()> {
Ok(())
}
}
impl Owner for ProgramData {
fn owner() -> solana_program::pubkey::Pubkey {
anchor_lang::solana_program::bpf_loader_upgradeable::ID
}
}
impl Owner for UpgradeableLoaderState {
fn owner() -> Pubkey {
anchor_lang::solana_program::bpf_loader_upgradeable::ID
}
}
impl AccountSerialize for UpgradeableLoaderState {
fn try_serialize<W: std::io::Write>(&self, _writer: &mut W) -> Result<()> {
Ok(())
}
}
impl AccountDeserialize for UpgradeableLoaderState {
fn try_deserialize(buf: &mut &[u8]) -> Result<Self> {
UpgradeableLoaderState::try_deserialize_unchecked(buf)
}
fn try_deserialize_unchecked(buf: &mut &[u8]) -> Result<Self> {
bincode::deserialize(buf).map_err(|_| ProgramError::InvalidAccountData.into())
}
}