//! Compiles a Leo program from a file path. use crate::{ constraints::{generate_constraints, generate_test_constraints}, errors::CompilerError, GroupType, ImportParser, OutputBytes, OutputFile, }; use leo_ast::LeoAst; use leo_input::LeoInputParser; use leo_package::inputs::InputPairs; use leo_typed::{Input, LeoTypedAst, MainInput, Program}; use snarkos_errors::gadgets::SynthesisError; use snarkos_models::{ curves::{Field, PrimeField}, gadgets::r1cs::{ConstraintSynthesizer, ConstraintSystem}, }; use sha2::{Digest, Sha256}; use std::{fs, marker::PhantomData, path::PathBuf}; #[derive(Clone)] pub struct Compiler> { package_name: String, main_file_path: PathBuf, output_directory: PathBuf, program: Program, program_input: Input, imported_programs: ImportParser, _engine: PhantomData, _group: PhantomData, } impl> Compiler { pub fn new(package_name: String, main_file_path: PathBuf, output_directory: PathBuf) -> Self { Self { package_name: package_name.clone(), main_file_path, output_directory, program: Program::new(package_name), program_input: Input::new(), imported_programs: ImportParser::new(), _engine: PhantomData, _group: PhantomData, } } /// Parse the input and state files. /// Stores a typed ast of all input variables to the program. pub fn parse_input(&mut self, input_string: &str, state_string: &str) -> Result<(), CompilerError> { let input_syntax_tree = LeoInputParser::parse_file(&input_string)?; let state_syntax_tree = LeoInputParser::parse_file(&state_string)?; self.program_input.parse_input(input_syntax_tree)?; self.program_input.parse_state(state_syntax_tree)?; Ok(()) } /// Parses program files. /// Returns a compiler struct that stores the typed program abstract syntax trees (ast). pub fn parse_program_without_input( package_name: String, main_file_path: PathBuf, output_directory: PathBuf, ) -> Result { let mut compiler = Self::new(package_name, main_file_path, output_directory); compiler.parse_program()?; Ok(compiler) } /// Parses input, state, and program files. /// Returns a compiler struct that stores the typed input and typed program abstract syntax trees (ast). pub fn parse_program_with_input( package_name: String, main_file_path: PathBuf, output_directory: PathBuf, input_string: &str, state_string: &str, ) -> Result { let mut compiler = Self::new(package_name, main_file_path, output_directory); compiler.parse_input(input_string, state_string)?; compiler.parse_program()?; Ok(compiler) } /// Parses the Leo program file, constructs a syntax tree, and generates a program. pub(crate) fn parse_program(&mut self) -> Result<(), CompilerError> { // Use the parser to construct the abstract syntax tree. let program_string = LeoAst::load_file(&self.main_file_path)?; self.parse_program_from_string(&program_string) } /// Parses the Leo program string, constructs a syntax tree, and generates a program. /// Used for testing only. #[deprecated(note = "Please use the 'parse_program' method instead.")] pub fn parse_program_from_string(&mut self, program_string: &str) -> Result<(), CompilerError> { // Use the given bytes to construct the abstract syntax tree. let ast = LeoAst::new(&self.main_file_path, &program_string)?; // Derive the package name. let package_name = self.package_name.clone(); // Use the typed parser to construct the typed syntax tree. let typed_tree = LeoTypedAst::new(&package_name, &ast); self.program = typed_tree.into_repr(); self.imported_programs = ImportParser::parse(&self.program)?; log::debug!("Program parsing complete\n{:#?}", self.program); Ok(()) } /// Manually sets main function input pub fn set_main_input(&mut self, input: MainInput) { self.program_input.set_main_input(input); } pub fn checksum(&self) -> Result { // Read in the main file as string let unparsed_file = fs::read_to_string(&self.main_file_path) .map_err(|_| CompilerError::FileReadError(self.main_file_path.clone()))?; // Hash the file contents let mut hasher = Sha256::new(); hasher.update(unparsed_file.as_bytes()); let hash = hasher.finalize(); Ok(hex::encode(hash)) } /// Synthesizes the circuit without program input to verify correctness. pub fn compile_constraints>(self, cs: &mut CS) -> Result { let path = self.main_file_path; generate_constraints::(cs, self.program, self.program_input, &self.imported_programs).map_err( |mut error| { error.set_path(path); error }, ) } /// Synthesizes the circuit for test functions with program input. pub fn compile_test_constraints(self, input_pairs: InputPairs) -> Result<(), CompilerError> { generate_test_constraints::(self.program, input_pairs, &self.imported_programs) } /// Calls the internal generate_constraints method with arguments pub fn generate_constraints_helper>( self, cs: &mut CS, ) -> Result { let path = self.main_file_path; generate_constraints::<_, G, _>(cs, self.program, self.program_input, &self.imported_programs).map_err( |mut error| { error.set_path(path); error }, ) } pub fn to_bytes(&self) -> Result, CompilerError> { Ok(bincode::serialize(&self.program)?) } pub fn from_bytes(bytes: &[u8]) -> Result { let program: Program = bincode::deserialize(bytes)?; let program_input = Input::new(); Ok(Self { package_name: program.name.clone(), main_file_path: PathBuf::new(), output_directory: PathBuf::new(), program, program_input, imported_programs: ImportParser::new(), _engine: PhantomData, _group: PhantomData, }) } } impl> ConstraintSynthesizer for Compiler { /// Synthesizes the circuit with program input. fn generate_constraints>(self, cs: &mut CS) -> Result<(), SynthesisError> { let output_directory = self.output_directory.clone(); let package_name = self.package_name.clone(); let result = self.generate_constraints_helper(cs).map_err(|e| { log::error!("{}", e); SynthesisError::Unsatisfiable })?; log::info!("Program circuit successfully synthesized!"); // Write results to file let output_file = OutputFile::new(&package_name); output_file.write(&output_directory, result.bytes()).unwrap(); Ok(()) } }