kalker/kalk_cli/src/main.rs
2021-01-30 16:39:22 +01:00

90 lines
2.7 KiB
Rust

mod output;
mod repl;
use kalk::parser;
use seahorse::{App, Context, Flag, FlagType};
use std::env;
use std::fs::File;
use std::io::Read;
static DEFAULT_PRECISION: u32 = 53;
fn main() {
let args: Vec<String> = env::args().collect();
let app = App::new("kalk")
.author(env!("CARGO_PKG_AUTHORS"))
.version(env!("CARGO_PKG_VERSION"))
.usage("kalk [options] [input]")
.action(default_action)
.flag(
Flag::new("input-file", FlagType::String)
.description("Load a file with predefined variables and functions")
.alias("i"),
)
.flag(
Flag::new("precision", FlagType::Int)
.description("Specify number precision")
.alias("p"),
)
.flag(
Flag::new("angle-unit", FlagType::String)
.description("Unit used for angles, either rad or deg. This can also be specified using an environment variable with the name 'ANGLE_UNIT'.")
.alias("a"),
);
app.run(args);
}
fn default_action(context: &Context) {
#[cfg(windows)]
ansi_term::enable_ansi_support().unwrap_or_default();
let angle_unit = if let Ok(angle_unit) = context.string_flag("angle-unit") {
match angle_unit.as_ref() {
"rad" | "deg" => angle_unit,
_ => {
output::print_err("Invalid angle unit. Expected 'rad' or 'deg'.");
std::process::exit(1);
}
}
} else {
get_env_angle_unit()
};
let mut parser_context = parser::Context::new()
.set_angle_unit(&angle_unit)
.set_timeout(None);
let precision = context.int_flag("precision").unwrap_or(53isize) as u32;
if let Ok(input_file_path) = context.string_flag("input-file") {
load_input_file(&input_file_path, precision, &mut parser_context);
}
if context.args.len() == 0 {
// REPL
repl::start(&mut parser_context, precision);
} else {
// Direct output
output::eval(&mut parser_context, &context.args.join(" "), precision);
}
}
fn load_input_file(file_name: &str, precision: u32, parser_context: &mut parser::Context) {
let mut file_content = String::new();
File::open(&file_name)
.expect("Couldn't find file.")
.read_to_string(&mut file_content)
.expect("Failed to read input file.");
// Parse the input file content, resulting in the symbol table being filled out.
// Output is not needed here.
parser::eval(parser_context, &file_content, precision).expect("Failed to parse input file.");
}
fn get_env_angle_unit() -> String {
if let Ok(angle_unit_var) = env::var("ANGLE_UNIT") {
angle_unit_var
} else {
String::from("rad")
}
}