// Copyright 2019-2020 Mozilla Foundation. See the COPYRIGHT // file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. extern crate log; extern crate mapped_hyph; use std::env; use std::fs::File; struct Logger {} impl log::Log for Logger { fn enabled(&self, _: &log::Metadata) -> bool { true } fn log(&self, record: &log::Record) { eprintln!("{} - {}", record.level(), record.args()); } fn flush(&self) {} } static LOGGER: Logger = Logger {}; fn main() -> std::io::Result<()> { unsafe { log::set_logger_racy(&LOGGER).unwrap() }; let args: Vec = env::args().collect(); if args.len() == 3 { let in_file = File::open(&args[1])?; let mut out_file = File::create(&args[2])?; mapped_hyph::builder::compile(&in_file, &mut out_file, true)?; } else { println!("usage: hyf_compile "); } Ok(()) }