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
use crate::Program; use syn::parse::{Error as ParseError, Result as ParseResult}; use syn::spanned::Spanned; mod instructions; mod state; pub fn parse(program_mod: syn::ItemMod) -> ParseResult<Program> { let state = state::parse(&program_mod)?; let (ixs, fallback_fn) = instructions::parse(&program_mod)?; Ok(Program { state, ixs, name: program_mod.ident.clone(), program_mod, fallback_fn, }) } fn ctx_accounts_ident(path_ty: &syn::PatType) -> ParseResult<proc_macro2::Ident> { let p = match &*path_ty.ty { syn::Type::Path(p) => &p.path, _ => return Err(ParseError::new(path_ty.ty.span(), "invalid type")), }; let segment = p .segments .first() .ok_or_else(|| ParseError::new(p.segments.span(), "expected generic arguments here"))?; let generic_args = match &segment.arguments { syn::PathArguments::AngleBracketed(args) => args, _ => return Err(ParseError::new(path_ty.span(), "missing accounts context")), }; let generic_ty = generic_args .args .iter() .filter_map(|arg| match arg { syn::GenericArgument::Type(ty) => Some(ty), _ => None, }) .next() .ok_or_else(|| ParseError::new(generic_args.span(), "expected Accounts type"))?; let path = match generic_ty { syn::Type::Path(ty_path) => &ty_path.path, _ => { return Err(ParseError::new( generic_ty.span(), "expected Accounts struct type", )) } }; Ok(path.segments[0].ident.clone()) }