2018-04-30 11:09:24 +02:00
|
|
|
// `error_chain!` can recurse deeply
|
|
|
|
#![recursion_limit = "1024"]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate error_chain;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate clap;
|
|
|
|
|
2018-04-30 15:08:04 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
2018-04-21 12:51:43 +02:00
|
|
|
extern crate ansi_term;
|
|
|
|
extern crate atty;
|
|
|
|
extern crate console;
|
2018-04-30 15:08:04 +02:00
|
|
|
extern crate directories;
|
2018-04-21 17:12:25 +02:00
|
|
|
extern crate git2;
|
2018-04-21 12:51:43 +02:00
|
|
|
extern crate syntect;
|
|
|
|
|
2018-05-10 23:39:13 +02:00
|
|
|
mod app;
|
2018-05-10 12:36:09 +02:00
|
|
|
mod assets;
|
2018-05-15 17:45:58 -07:00
|
|
|
mod decorations;
|
2018-05-10 12:36:09 +02:00
|
|
|
mod diff;
|
2018-05-07 01:32:00 +02:00
|
|
|
mod printer;
|
2018-05-11 02:32:31 +02:00
|
|
|
mod style;
|
2018-04-23 23:56:47 +02:00
|
|
|
mod terminal;
|
|
|
|
|
2018-04-30 15:08:04 +02:00
|
|
|
use std::fs::{self, File};
|
2018-05-07 22:49:55 +02:00
|
|
|
use std::io::{self, BufRead, BufReader, Write};
|
2018-05-16 21:22:16 +02:00
|
|
|
use std::path::Path;
|
2018-05-06 14:53:52 +02:00
|
|
|
use std::process::{self, Child, Command, Stdio};
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2018-04-22 13:27:20 +02:00
|
|
|
use ansi_term::Colour::{Fixed, Green, Red, White, Yellow};
|
2018-04-22 14:05:43 +02:00
|
|
|
use ansi_term::Style;
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2018-05-02 14:29:07 +02:00
|
|
|
use syntect::easy::HighlightLines;
|
2018-05-10 12:36:09 +02:00
|
|
|
use syntect::highlighting::Theme;
|
2018-05-18 12:30:30 +02:00
|
|
|
use syntect::parsing::SyntaxDefinition;
|
2018-04-23 23:56:47 +02:00
|
|
|
|
2018-05-18 12:30:30 +02:00
|
|
|
use app::App;
|
2018-05-10 12:36:09 +02:00
|
|
|
use assets::{config_dir, syntax_set_path, theme_set_path, HighlightingAssets};
|
|
|
|
use diff::get_git_diff;
|
2018-05-07 01:32:00 +02:00
|
|
|
use printer::Printer;
|
2018-04-23 23:56:47 +02:00
|
|
|
|
2018-04-30 11:09:24 +02:00
|
|
|
mod errors {
|
2018-05-03 20:34:23 +02:00
|
|
|
error_chain! {
|
2018-04-30 11:09:24 +02:00
|
|
|
foreign_links {
|
2018-05-09 21:09:01 +02:00
|
|
|
Clap(::clap::Error);
|
2018-04-30 11:09:24 +02:00
|
|
|
Io(::std::io::Error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
use errors::*;
|
|
|
|
|
2018-05-07 22:49:55 +02:00
|
|
|
enum OutputType {
|
2018-05-03 18:12:03 +02:00
|
|
|
Pager(Child),
|
2018-05-07 22:49:55 +02:00
|
|
|
Stdout(io::Stdout),
|
2018-05-03 18:12:03 +02:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:49:55 +02:00
|
|
|
impl OutputType {
|
2018-05-06 19:26:41 +02:00
|
|
|
fn pager() -> Result<Self> {
|
2018-05-03 18:12:03 +02:00
|
|
|
Ok(OutputType::Pager(Command::new("less")
|
|
|
|
.args(&["--quit-if-one-screen", "--RAW-CONTROL-CHARS", "--no-init"])
|
|
|
|
.stdin(Stdio::piped())
|
|
|
|
.spawn()
|
2018-05-06 14:53:52 +02:00
|
|
|
.chain_err(|| "Could not spawn pager")?))
|
2018-05-03 18:12:03 +02:00
|
|
|
}
|
|
|
|
|
2018-05-07 22:49:55 +02:00
|
|
|
fn stdout() -> Self {
|
|
|
|
OutputType::Stdout(io::stdout())
|
2018-05-03 18:12:03 +02:00
|
|
|
}
|
|
|
|
|
2018-05-06 19:26:41 +02:00
|
|
|
fn handle(&mut self) -> Result<&mut Write> {
|
2018-05-03 18:12:03 +02:00
|
|
|
Ok(match *self {
|
2018-05-06 14:53:52 +02:00
|
|
|
OutputType::Pager(ref mut command) => command
|
|
|
|
.stdin
|
|
|
|
.as_mut()
|
|
|
|
.chain_err(|| "Could not open stdin for pager")?,
|
2018-05-03 18:12:03 +02:00
|
|
|
OutputType::Stdout(ref mut handle) => handle,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:49:55 +02:00
|
|
|
impl Drop for OutputType {
|
2018-05-03 18:12:03 +02:00
|
|
|
fn drop(&mut self) {
|
|
|
|
if let OutputType::Pager(ref mut command) = *self {
|
|
|
|
let _ = command.wait();
|
|
|
|
}
|
|
|
|
}
|
2018-04-23 23:56:47 +02:00
|
|
|
}
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2018-04-22 14:05:43 +02:00
|
|
|
const GRID_COLOR: u8 = 238;
|
2018-05-05 15:55:16 +02:00
|
|
|
const LINE_NUMBER_COLOR: u8 = 244;
|
|
|
|
|
|
|
|
#[derive(Default)]
|
2018-05-07 01:32:00 +02:00
|
|
|
pub struct Colors {
|
|
|
|
pub grid: Style,
|
|
|
|
pub filename: Style,
|
|
|
|
pub git_added: Style,
|
|
|
|
pub git_removed: Style,
|
|
|
|
pub git_modified: Style,
|
|
|
|
pub line_number: Style,
|
2018-05-05 15:55:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Colors {
|
|
|
|
fn plain() -> Self {
|
|
|
|
Colors::default()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn colored() -> Self {
|
|
|
|
Colors {
|
|
|
|
grid: Fixed(GRID_COLOR).normal(),
|
|
|
|
filename: White.bold(),
|
|
|
|
git_added: Green.normal(),
|
|
|
|
git_removed: Red.normal(),
|
|
|
|
git_modified: Yellow.normal(),
|
|
|
|
line_number: Fixed(LINE_NUMBER_COLOR).normal(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-22 13:53:04 +02:00
|
|
|
|
2018-05-07 19:59:40 +02:00
|
|
|
fn print_file(
|
2018-04-22 13:27:20 +02:00
|
|
|
theme: &Theme,
|
2018-05-18 12:30:30 +02:00
|
|
|
syntax: &SyntaxDefinition,
|
2018-05-07 01:32:00 +02:00
|
|
|
printer: &mut Printer,
|
2018-05-07 19:59:40 +02:00
|
|
|
filename: Option<&str>,
|
2018-04-30 11:09:24 +02:00
|
|
|
) -> Result<()> {
|
2018-05-07 19:59:40 +02:00
|
|
|
let stdin = io::stdin(); // TODO: this is not always needed
|
|
|
|
|
|
|
|
let mut reader: Box<BufRead> = match filename {
|
|
|
|
None => Box::new(stdin.lock()),
|
|
|
|
Some(filename) => Box::new(BufReader::new(File::open(filename)?)),
|
|
|
|
};
|
|
|
|
|
2018-05-02 14:29:07 +02:00
|
|
|
let mut highlighter = HighlightLines::new(syntax, theme);
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2018-05-07 19:59:40 +02:00
|
|
|
printer.print_header(filename)?;
|
2018-04-21 17:36:57 +02:00
|
|
|
|
2018-05-18 11:56:25 +02:00
|
|
|
let mut buffer = Vec::new();
|
|
|
|
while reader.read_until(b'\n', &mut buffer)? > 0 {
|
|
|
|
{
|
|
|
|
let line = String::from_utf8_lossy(&buffer);
|
|
|
|
let regions = highlighter.highlight(line.as_ref());
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2018-05-18 11:56:25 +02:00
|
|
|
printer.print_line(®ions)?;
|
|
|
|
}
|
|
|
|
buffer.clear();
|
2018-04-21 12:51:43 +02:00
|
|
|
}
|
|
|
|
|
2018-05-07 01:32:00 +02:00
|
|
|
printer.print_footer()?;
|
2018-04-21 17:12:25 +02:00
|
|
|
|
2018-04-21 12:51:43 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:49:55 +02:00
|
|
|
fn get_output_type(paging: bool) -> OutputType {
|
2018-05-06 19:38:28 +02:00
|
|
|
if paging {
|
2018-05-07 22:49:55 +02:00
|
|
|
OutputType::pager().unwrap_or_else(|_| OutputType::stdout())
|
2018-05-06 19:26:41 +02:00
|
|
|
} else {
|
2018-05-07 22:49:55 +02:00
|
|
|
OutputType::stdout()
|
2018-05-06 19:26:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-30 15:08:04 +02:00
|
|
|
fn run() -> Result<()> {
|
2018-05-10 23:39:13 +02:00
|
|
|
let app = App::new();
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2018-05-10 23:39:13 +02:00
|
|
|
match app.matches.subcommand() {
|
2018-05-08 19:48:10 +02:00
|
|
|
("cache", Some(cache_matches)) => {
|
|
|
|
if cache_matches.is_present("init") {
|
2018-05-16 21:22:16 +02:00
|
|
|
let source_dir = cache_matches.value_of("source").map(Path::new);
|
|
|
|
let target_dir = cache_matches.value_of("target").map(Path::new);
|
|
|
|
|
|
|
|
let assets = HighlightingAssets::from_files(source_dir)?;
|
|
|
|
assets.save(target_dir)?;
|
2018-05-08 19:48:10 +02:00
|
|
|
} else if cache_matches.is_present("clear") {
|
|
|
|
print!("Clearing theme set cache ... ");
|
2018-05-13 09:57:11 +02:00
|
|
|
fs::remove_file(theme_set_path()).ok();
|
2018-05-08 19:48:10 +02:00
|
|
|
println!("okay");
|
|
|
|
|
|
|
|
print!("Clearing syntax set cache ... ");
|
2018-05-13 09:57:11 +02:00
|
|
|
fs::remove_file(syntax_set_path()).ok();
|
2018-05-08 19:48:10 +02:00
|
|
|
println!("okay");
|
|
|
|
} else if cache_matches.is_present("config-dir") {
|
2018-05-10 12:36:09 +02:00
|
|
|
println!("{}", config_dir());
|
2018-05-08 19:48:10 +02:00
|
|
|
}
|
2018-04-30 15:08:04 +02:00
|
|
|
}
|
|
|
|
_ => {
|
2018-05-10 23:39:13 +02:00
|
|
|
let config = app.config()?;
|
2018-04-30 15:08:04 +02:00
|
|
|
|
2018-05-10 12:36:09 +02:00
|
|
|
let assets = HighlightingAssets::new();
|
2018-05-11 19:53:17 +08:00
|
|
|
let theme = assets.get_theme(config.theme.unwrap_or("Default"))?;
|
2018-04-30 15:08:04 +02:00
|
|
|
|
2018-05-10 23:39:13 +02:00
|
|
|
if app.matches.is_present("list-languages") {
|
2018-05-14 22:59:57 +08:00
|
|
|
let mut languages = assets.syntax_set.syntaxes().to_owned();
|
2018-05-15 01:49:00 +08:00
|
|
|
languages.sort_by_key(|lang| lang.name.to_uppercase());
|
2018-05-07 09:25:47 -07:00
|
|
|
|
2018-05-08 22:13:37 +02:00
|
|
|
let longest = languages
|
|
|
|
.iter()
|
2018-05-10 12:50:40 +02:00
|
|
|
.filter(|s| !s.hidden && !s.file_extensions.is_empty())
|
2018-05-07 12:08:39 -07:00
|
|
|
.map(|s| s.name.len())
|
2018-05-07 13:00:23 -07:00
|
|
|
.max()
|
|
|
|
.unwrap_or(32); // Fallback width if they have no language definitions.
|
2018-05-07 09:25:47 -07:00
|
|
|
|
2018-05-08 22:29:38 +02:00
|
|
|
let separator = " ";
|
2018-05-07 12:08:39 -07:00
|
|
|
for lang in languages {
|
2018-05-10 12:50:40 +02:00
|
|
|
if lang.hidden || lang.file_extensions.is_empty() {
|
2018-05-08 11:50:56 -07:00
|
|
|
continue;
|
|
|
|
}
|
2018-05-07 14:42:58 -07:00
|
|
|
print!("{:width$}{}", lang.name, separator, width = longest);
|
|
|
|
|
|
|
|
// Line-wrapping for the possible file extension overflow.
|
2018-05-10 23:39:13 +02:00
|
|
|
let desired_width = config.term_width - longest - separator.len();
|
2018-05-07 14:42:58 -07:00
|
|
|
// Number of characters on this line so far, wrap before `desired_width`
|
|
|
|
let mut num_chars = 0;
|
|
|
|
|
2018-05-08 12:20:45 -07:00
|
|
|
let comma_separator = ", ";
|
2018-05-07 14:42:58 -07:00
|
|
|
let mut extension = lang.file_extensions.iter().peekable();
|
|
|
|
while let Some(word) = extension.next() {
|
|
|
|
// If we can't fit this word in, then create a line break and align it in.
|
2018-05-08 22:13:37 +02:00
|
|
|
let new_chars = word.len() + comma_separator.len();
|
|
|
|
if num_chars + new_chars >= desired_width {
|
2018-05-07 14:42:58 -07:00
|
|
|
num_chars = 0;
|
|
|
|
print!("\n{:width$}{}", "", separator, width = longest);
|
|
|
|
}
|
|
|
|
|
2018-05-08 22:13:37 +02:00
|
|
|
num_chars += new_chars;
|
2018-05-08 22:29:38 +02:00
|
|
|
print!("{}", Green.paint(word as &str));
|
2018-05-07 14:42:58 -07:00
|
|
|
if extension.peek().is_some() {
|
2018-05-08 12:20:45 -07:00
|
|
|
print!("{}", comma_separator);
|
2018-05-07 14:42:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
println!();
|
2018-05-07 09:25:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2018-05-11 19:53:17 +08:00
|
|
|
if app.matches.is_present("list-themes") {
|
|
|
|
let themes = &assets.theme_set.themes;
|
|
|
|
for (theme, _) in themes.iter() {
|
|
|
|
println!("{}", theme);
|
|
|
|
}
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2018-05-10 23:39:13 +02:00
|
|
|
let mut output_type = get_output_type(config.paging);
|
2018-05-07 19:59:40 +02:00
|
|
|
let handle = output_type.handle()?;
|
2018-05-10 23:39:13 +02:00
|
|
|
let mut printer = Printer::new(handle, &config);
|
2018-05-07 19:59:40 +02:00
|
|
|
|
2018-05-10 23:39:13 +02:00
|
|
|
for file in &config.files {
|
2018-05-07 19:59:40 +02:00
|
|
|
printer.line_changes = file.and_then(|filename| get_git_diff(filename));
|
2018-05-18 12:30:30 +02:00
|
|
|
let syntax = assets.get_syntax(config.language, *file)?;
|
2018-05-07 19:59:40 +02:00
|
|
|
|
2018-05-18 12:30:30 +02:00
|
|
|
print_file(theme, &syntax, &mut printer, *file)?;
|
2018-04-30 15:08:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let result = run();
|
2018-04-21 12:51:43 +02:00
|
|
|
|
2018-04-30 11:09:24 +02:00
|
|
|
if let Err(error) = result {
|
|
|
|
match error {
|
|
|
|
Error(ErrorKind::Io(ref io_error), _)
|
2018-05-06 14:53:52 +02:00
|
|
|
if io_error.kind() == io::ErrorKind::BrokenPipe => {}
|
2018-04-30 11:09:24 +02:00
|
|
|
_ => {
|
|
|
|
eprintln!("{}: {}", Red.paint("[bat error]"), error);
|
|
|
|
|
|
|
|
process::exit(1);
|
|
|
|
}
|
|
|
|
};
|
2018-04-21 12:51:43 +02:00
|
|
|
}
|
|
|
|
}
|