|
use loda_rust_core::parser::ParsedProgram; |
|
use crate::lodacpp::{LodaCpp, LodaCppEvalStepsExecute, LodaCppEvalSteps}; |
|
use crate::common::SimpleLog; |
|
use std::path::Path; |
|
use std::time::Duration; |
|
use std::time::Instant; |
|
use std::fs::File; |
|
use std::io::Write; |
|
use std::fs; |
|
use anyhow::Context; |
|
|
|
pub enum StatusOfExistingProgram { |
|
CompareNewWithExisting, |
|
NoExistingProgram, |
|
IgnoreExistingProgram { ignore_reason: String }, |
|
} |
|
|
|
#[derive(Debug, PartialEq)] |
|
pub enum CompareTwoProgramsResult { |
|
Program0, |
|
Program1, |
|
} |
|
|
|
pub struct CompareTwoPrograms; |
|
|
|
impl CompareTwoPrograms { |
|
pub fn compare( |
|
simple_log: SimpleLog, |
|
lodacpp: &LodaCpp, |
|
path_program0: &Path, |
|
path_program1: &Path, |
|
status_of_existing_program: &StatusOfExistingProgram, |
|
path_comparison: &Path, |
|
time_limit: Duration, |
|
term_count: usize |
|
) -> anyhow::Result<CompareTwoProgramsResult> { |
|
if !path_program0.is_file() { |
|
return Err(anyhow::anyhow!("Expected a file, but got none. path_program0: {:?}", path_program0)); |
|
} |
|
|
|
match status_of_existing_program { |
|
StatusOfExistingProgram::NoExistingProgram => { |
|
simple_log.println("compare_two_programs: Keeping. This is a new program. There is no previous implementation."); |
|
return Ok(CompareTwoProgramsResult::Program0); |
|
}, |
|
StatusOfExistingProgram::IgnoreExistingProgram { ignore_reason } => { |
|
return Self::ignore_existing_program( |
|
simple_log, |
|
path_program0, |
|
path_program1, |
|
ignore_reason |
|
); |
|
}, |
|
StatusOfExistingProgram::CompareNewWithExisting => { |
|
return Self::compare_new_with_existing( |
|
simple_log, |
|
lodacpp, |
|
path_program0, |
|
path_program1, |
|
path_comparison, |
|
time_limit, |
|
term_count |
|
); |
|
} |
|
} |
|
} |
|
|
|
fn ignore_existing_program( |
|
simple_log: SimpleLog, |
|
path_program0: &Path, |
|
path_program1: &Path, |
|
ignore_reason: &String, |
|
) -> anyhow::Result<CompareTwoProgramsResult> { |
|
let is_identical: bool = Self::is_identical(path_program0, path_program1) |
|
.context("ignore_existing_program")?; |
|
if is_identical { |
|
simple_log.println("compare_two_programs.ignore_existing_program: The two programs are identical. Keeping the existing program as it is."); |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
simple_log.println(format!("compare_two_programs.ignore_existing_program: Keeping the mined program. There is a problem with the previous implementation: {}", ignore_reason)); |
|
Ok(CompareTwoProgramsResult::Program0) |
|
} |
|
|
|
fn compare_new_with_existing( |
|
simple_log: SimpleLog, |
|
lodacpp: &LodaCpp, |
|
path_program0: &Path, |
|
path_program1: &Path, |
|
path_comparison: &Path, |
|
time_limit: Duration, |
|
term_count: usize |
|
) -> anyhow::Result<CompareTwoProgramsResult> { |
|
let is_identical: bool = Self::is_identical(path_program0, path_program1) |
|
.context("compare_new_with_existing")?; |
|
if is_identical { |
|
simple_log.println("compare_two_programs.compare_new_with_existing: The two programs are identical. Keeping the existing program as it is."); |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
simple_log.println("compare_two_programs.compare_new_with_existing: Comparing new program with existing program, and choosing the best."); |
|
|
|
let mut file = File::create(path_comparison)?; |
|
writeln!(&mut file, "program0, measuring steps: {:?}", path_program0)?; |
|
let start0 = Instant::now(); |
|
let result0 = lodacpp.eval_steps( |
|
term_count, |
|
&path_program0, |
|
time_limit |
|
); |
|
let result_steps0: LodaCppEvalSteps = match result0 { |
|
Ok(value) => { |
|
let elapsed: u128 = start0.elapsed().as_millis(); |
|
|
|
writeln!(&mut file, "program0, elapsed: {:?}ms", elapsed)?; |
|
|
|
value |
|
}, |
|
Err(error) => { |
|
|
|
writeln!(&mut file, "Unable to compute steps for program0: {:?}", error)?; |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
}; |
|
if result_steps0.steps().len() != term_count { |
|
writeln!(&mut file, "ERROR: Problem with program0. Expected {} steps, but got {}", term_count, result_steps0.steps().len())?; |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
|
|
writeln!(&mut file, "\n\nprogram1, measuring steps: {:?}", path_program1)?; |
|
let start1 = Instant::now(); |
|
let result1 = lodacpp.eval_steps( |
|
term_count, |
|
&path_program1, |
|
time_limit |
|
); |
|
let result_steps1: LodaCppEvalSteps = match result1 { |
|
Ok(value) => { |
|
let elapsed: u128 = start1.elapsed().as_millis(); |
|
|
|
writeln!(&mut file, "program1, elapsed: {:?}ms", elapsed)?; |
|
|
|
value |
|
}, |
|
Err(error) => { |
|
|
|
writeln!(&mut file, "Unable to compute steps for program1: {:?}", error)?; |
|
return Ok(CompareTwoProgramsResult::Program0); |
|
} |
|
}; |
|
if result_steps1.steps().len() != term_count { |
|
writeln!(&mut file, "ERROR: Problem with program1. Expected {} steps, but got {}", term_count, result_steps1.steps().len())?; |
|
return Ok(CompareTwoProgramsResult::Program0); |
|
} |
|
|
|
write!(&mut file, "\n\nComparing terms:\nprogram0 vs program1\n")?; |
|
|
|
let step_items0: &Vec<u64> = result_steps0.steps(); |
|
let step_items1: &Vec<u64> = result_steps1.steps(); |
|
assert!(step_items0.len() == step_items1.len()); |
|
|
|
let sum0: usize = step_items0.iter().map(|&x| x as usize).sum(); |
|
let sum1: usize = step_items1.iter().map(|&x| x as usize).sum(); |
|
writeln!(&mut file, "sum0: {} sum1: {}", sum0, sum1)?; |
|
|
|
|
|
let mut last_slice_step0_greater_than_step1: usize = 0; |
|
|
|
|
|
let mut identical: bool = true; |
|
for index in 0..step_items0.len() { |
|
let step0: u64 = step_items0[index]; |
|
let step1: u64 = step_items1[index]; |
|
let mut comparison_symbol = " "; |
|
if step0 == step1 { |
|
|
|
comparison_symbol = " = "; |
|
} |
|
if step0 > step1 { |
|
|
|
comparison_symbol = " >"; |
|
identical = false; |
|
if index > 15 { |
|
last_slice_step0_greater_than_step1 += 1; |
|
} |
|
} |
|
if step0 < step1 { |
|
|
|
comparison_symbol = "< "; |
|
identical = false; |
|
} |
|
writeln!(&mut file, "{:>10} {} {}", step0, comparison_symbol, step1)?; |
|
} |
|
|
|
if identical { |
|
writeln!(&mut file, "identical number of steps as the existing program. Keep the existing program.")?; |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
if sum0 == sum1 { |
|
writeln!(&mut file, "same sum as the existing program. Keep the existing program.")?; |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
if sum0 > sum1 { |
|
writeln!(&mut file, "total sum of new program is greater than existing program. Keep the existing program.")?; |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
if last_slice_step0_greater_than_step1 > 0 { |
|
writeln!(&mut file, "last slice of the new program is greater than existing program. Keep the existing program.")?; |
|
return Ok(CompareTwoProgramsResult::Program1); |
|
} |
|
if sum0 < sum1 { |
|
writeln!(&mut file, "the new program is faster than the existing program. Keep the new program.")?; |
|
return Ok(CompareTwoProgramsResult::Program0); |
|
} |
|
error!("uncaught scenario. Using existing program"); |
|
writeln!(&mut file, "uncaught scenario. Using existing program")?; |
|
Ok(CompareTwoProgramsResult::Program1) |
|
} |
|
|
|
|
|
fn is_identical( |
|
path_program0: &Path, |
|
path_program1: &Path, |
|
) -> anyhow::Result<bool> { |
|
if !path_program0.is_file() { |
|
return Err(anyhow::anyhow!("Expected a file, but got none. path_program0: {:?}", path_program0)); |
|
} |
|
if !path_program1.is_file() { |
|
return Err(anyhow::anyhow!("Expected a file, but got none. path_program1: {:?}", path_program1)); |
|
} |
|
let contents0: String = fs::read_to_string(path_program0)?; |
|
let contents1: String = fs::read_to_string(path_program1)?; |
|
let mut parsed_program0: ParsedProgram = ParsedProgram::parse_program(&contents0) |
|
.map_err(|e| anyhow::anyhow!("Unable to parse program0. path: {:?} error: {:?}", path_program0, e))?; |
|
let mut parsed_program1: ParsedProgram = ParsedProgram::parse_program(&contents1) |
|
.map_err(|e| anyhow::anyhow!("Unable to parse program1. path: {:?} error: {:?}", path_program1, e))?; |
|
parsed_program0.assign_zero_line_numbers(); |
|
parsed_program1.assign_zero_line_numbers(); |
|
Ok(parsed_program0 == parsed_program1) |
|
} |
|
} |
|
|
|
#[cfg(test)] |
|
mod tests { |
|
use super::*; |
|
use std::path::PathBuf; |
|
|
|
#[test] |
|
fn test_10000_is_identical_yes() -> anyhow::Result<()> { |
|
|
|
let tempdir = tempfile::tempdir().unwrap(); |
|
let basedir = PathBuf::from(&tempdir.path()).join("test_10000_is_identical_yes"); |
|
fs::create_dir(&basedir)?; |
|
let path0: PathBuf = basedir.join("program0.asm"); |
|
let path1: PathBuf = basedir.join("program1.asm"); |
|
fs::write(&path0, b"; hi\n\nadd $0,1\n\nsub $0,1 ; hi")?; |
|
fs::write(&path1, b"add $0,1\nsub $0,1")?; |
|
|
|
|
|
let is_identical: bool = CompareTwoPrograms::is_identical(&path0, &path1)?; |
|
|
|
|
|
assert_eq!(is_identical, true); |
|
Ok(()) |
|
} |
|
|
|
#[test] |
|
fn test_10001_is_identical_no() -> anyhow::Result<()> { |
|
|
|
let tempdir = tempfile::tempdir().unwrap(); |
|
let basedir = PathBuf::from(&tempdir.path()).join("test_10001_is_identical_no"); |
|
fs::create_dir(&basedir)?; |
|
let path0: PathBuf = basedir.join("program0.asm"); |
|
let path1: PathBuf = basedir.join("program1.asm"); |
|
fs::write(&path0, b"add $0,-1")?; |
|
fs::write(&path1, b"sub $0,1")?; |
|
|
|
|
|
let is_identical: bool = CompareTwoPrograms::is_identical(&path0, &path1)?; |
|
|
|
|
|
assert_eq!(is_identical, false); |
|
Ok(()) |
|
} |
|
} |
|
|