use std::fs;
use std::io::Read;
use colored::Colorize;
use aver::ast::TopLevel;
use aver::source::parse_source;
use aver::types::checker::TypeError;
use aver::value::Value;
use aver::vm;
pub(super) fn read_file(path: &str) -> Result<String, String> {
fs::read_to_string(path).map_err(|e| format!("Cannot open file '{}': {}", path, e))
}
pub(super) fn parse_file(source: &str) -> Result<Vec<TopLevel>, String> {
parse_source(source)
}
pub(super) fn resolve_module_root(module_root: Option<&str>) -> String {
if let Some(root) = module_root {
return root.to_string();
}
std::env::current_dir()
.ok()
.and_then(|p| p.into_os_string().into_string().ok())
.unwrap_or_else(|| ".".to_string())
}
pub(super) fn load_runtime_policy(
module_root: &str,
) -> Result<Option<aver::config::ProjectConfig>, String> {
aver::config::ProjectConfig::load_from_dir(std::path::Path::new(module_root))
.map_err(|e| format!("aver.toml: {}", e))
}
pub(super) fn apply_runtime_policy_to_vm(
machine: &mut vm::VM,
module_root: &str,
) -> Result<(), String> {
if let Some(config) = load_runtime_policy(module_root)? {
machine.set_runtime_policy(config);
}
Ok(())
}
pub(super) fn print_type_errors(errors: &[TypeError]) {
for te in errors {
eprintln!(
"{}",
format!("error[{}:{}]: {}", te.line, te.col, te.message).red()
);
}
}
pub(super) use aver::diagnostics::context::compute_memo_fns;
pub(super) fn format_type_errors(errors: &[TypeError]) -> String {
let mut out = Vec::new();
for te in errors {
out.push(format!("error[{}:{}]: {}", te.line, te.col, te.message));
}
out.join("\n")
}
pub(super) fn collect_entry_expressions(
exprs: &[String],
input_file: Option<&str>,
) -> Result<Vec<String>, String> {
if let Some(path) = input_file {
let content = if path == "-" {
let mut buf = String::new();
std::io::stdin()
.read_to_string(&mut buf)
.map_err(|e| format!("Cannot read stdin: {}", e))?;
buf
} else {
fs::read_to_string(path)
.map_err(|e| format!("Cannot read input file '{}': {}", path, e))?
};
let trimmed = content.trim().to_string();
if trimmed.is_empty() {
return Err(format!("Input file '{}' is empty", path));
}
return Ok(vec![trimmed]);
}
Ok(exprs.to_vec())
}
pub(super) fn parse_call_expression(src: &str) -> Result<(String, Vec<Value>), String> {
aver::replay::parse_entry_call(src)
}
pub(super) fn encode_entry_args_json(args: &[Value]) -> Result<aver::replay::JsonValue, String> {
aver::replay::encode_entry_args(args)
}
pub(super) fn entry_recording_stem(fn_name: &str, args: &[Value]) -> String {
aver::replay::recording_stem(fn_name, args)
}