mdBook/src/main.rs

114 lines
3.6 KiB
Rust
Raw Normal View History

2018-02-18 15:10:47 +08:00
extern crate chrono;
2015-08-01 12:59:05 +08:00
#[macro_use]
extern crate clap;
2016-08-14 21:55:10 +08:00
extern crate env_logger;
extern crate error_chain;
#[macro_use]
extern crate log;
extern crate mdbook;
2017-01-02 01:42:47 +08:00
extern crate open;
use chrono::Local;
2018-07-24 01:45:01 +08:00
use clap::{App, AppSettings, ArgMatches};
use env_logger::Builder;
2018-07-24 01:45:01 +08:00
use log::LevelFilter;
use mdbook::utils;
2018-07-24 01:45:01 +08:00
use std::env;
use std::ffi::OsStr;
use std::io::Write;
use std::path::{Path, PathBuf};
2015-07-07 03:12:24 +08:00
mod cmd;
2015-07-07 03:12:24 +08:00
const NAME: &'static str = "mdbook";
fn main() {
init_logger();
2016-08-14 21:55:10 +08:00
2015-08-01 12:59:05 +08:00
// Create a list of valid arguments and sub-commands
let app = App::new(NAME)
.about("Create a book in form of a static website from markdown files")
.author("Mathieu David <mathieudavid@mathieudavid.org>")
// Get the version from our Cargo.toml using clap's crate_version!() macro
.version(concat!("v",crate_version!()))
2018-02-18 15:10:47 +08:00
.setting(AppSettings::ArgRequiredElseHelp)
.after_help("For more information about a specific command, \
try `mdbook <command> --help`\n\
Source code for mdbook available \
at: https://github.com/rust-lang-nursery/mdBook")
.subcommand(cmd::init::make_subcommand())
.subcommand(cmd::build::make_subcommand())
.subcommand(cmd::test::make_subcommand())
.subcommand(cmd::clean::make_subcommand());
#[cfg(feature = "watch")]
let app = app.subcommand(cmd::watch::make_subcommand());
#[cfg(feature = "serve")]
let app = app.subcommand(cmd::serve::make_subcommand());
2015-08-01 12:59:05 +08:00
// Check which subcomamnd the user ran...
let res = match app.get_matches().subcommand() {
("init", Some(sub_matches)) => cmd::init::execute(sub_matches),
("build", Some(sub_matches)) => cmd::build::execute(sub_matches),
("clean", Some(sub_matches)) => cmd::clean::execute(sub_matches),
#[cfg(feature = "watch")]
("watch", Some(sub_matches)) => cmd::watch::execute(sub_matches),
2016-04-02 10:46:05 +08:00
#[cfg(feature = "serve")]
("serve", Some(sub_matches)) => cmd::serve::execute(sub_matches),
("test", Some(sub_matches)) => cmd::test::execute(sub_matches),
(_, _) => unreachable!(),
2015-07-07 03:12:24 +08:00
};
2015-08-01 12:59:05 +08:00
if let Err(e) = res {
utils::log_backtrace(&e);
::std::process::exit(101);
2015-07-07 03:12:24 +08:00
}
}
fn init_logger() {
let mut builder = Builder::new();
builder.format(|formatter, record| {
2018-02-18 15:10:47 +08:00
writeln!(
formatter,
"{} [{}] ({}): {}",
Local::now().format("%Y-%m-%d %H:%M:%S"),
record.level(),
record.target(),
record.args()
)
});
if let Ok(var) = env::var("RUST_LOG") {
builder.parse(&var);
} else {
// if no RUST_LOG provided, default to logging at the Info level
builder.filter(None, LevelFilter::Info);
// Filter extraneous html5ever not-implemented messages
builder.filter(Some("html5ever"), LevelFilter::Error);
}
builder.init();
}
2015-08-01 12:59:05 +08:00
fn get_book_dir(args: &ArgMatches) -> PathBuf {
if let Some(dir) = args.value_of("dir") {
// Check if path is relative from current dir, or absolute...
let p = Path::new(dir);
if p.is_relative() {
env::current_dir().unwrap().join(dir)
2015-08-01 12:59:05 +08:00
} else {
p.to_path_buf()
2015-08-01 12:59:05 +08:00
}
} else {
env::current_dir().expect("Unable to determine the current directory")
2015-07-07 03:12:24 +08:00
}
}
2016-04-02 10:46:05 +08:00
2017-01-02 01:42:47 +08:00
fn open<P: AsRef<OsStr>>(path: P) {
if let Err(e) = open::that(path) {
error!("Error opening web browser: {}", e);
2017-01-02 01:42:47 +08:00
}
}