solana/sdk/src/instruction_processor_utils.rs

61 lines
1.9 KiB
Rust
Raw Normal View History

use crate::{account::KeyedAccount, instruction::InstructionError};
use num_traits::FromPrimitive;
/// Return the next KeyedAccount or a NotEnoughAccountKeys instruction error
pub fn next_keyed_account<I: Iterator>(iter: &mut I) -> Result<I::Item, InstructionError> {
iter.next().ok_or(InstructionError::NotEnoughAccountKeys)
}
/// Return true if the first keyed_account is executable, used to determine if
/// the loader should call a program's 'main'
pub fn is_executable(keyed_accounts: &[KeyedAccount]) -> Result<bool, InstructionError> {
Ok(!keyed_accounts.is_empty() && keyed_accounts[0].executable()?)
}
2020-01-20 15:27:36 -08:00
pub fn limited_deserialize<T>(instruction_data: &[u8]) -> Result<T, InstructionError>
where
T: serde::de::DeserializeOwned,
{
let limit = crate::packet::PACKET_DATA_SIZE as u64;
bincode::config()
.limit(limit)
2020-01-20 15:27:36 -08:00
.deserialize(instruction_data)
.map_err(|_| InstructionError::InvalidInstructionData)
}
2019-04-25 10:29:44 -07:00
pub trait DecodeError<E> {
fn decode_custom_error_to_enum(custom: u32) -> Option<E>
2019-04-25 10:29:44 -07:00
where
E: FromPrimitive,
{
E::from_u32(custom)
2019-04-25 10:29:44 -07:00
}
fn type_of() -> &'static str;
2019-04-25 10:29:44 -07:00
}
#[cfg(test)]
mod tests {
use super::*;
use num_derive::FromPrimitive;
#[test]
fn test_decode_custom_error_to_enum() {
#[derive(Debug, FromPrimitive, PartialEq)]
enum TestEnum {
A,
B,
C,
}
impl<T> DecodeError<T> for TestEnum {
fn type_of() -> &'static str {
2019-04-25 10:29:44 -07:00
"TestEnum"
}
}
assert_eq!(TestEnum::decode_custom_error_to_enum(0), Some(TestEnum::A));
assert_eq!(TestEnum::decode_custom_error_to_enum(1), Some(TestEnum::B));
assert_eq!(TestEnum::decode_custom_error_to_enum(2), Some(TestEnum::C));
let option: Option<TestEnum> = TestEnum::decode_custom_error_to_enum(3);
assert_eq!(option, None);
}
}