2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-01-29 21:16:48 -05:00
|
|
|
|
2020-09-16 09:38:38 -04:00
|
|
|
//! This module provides file formatting utilities using
|
2020-10-22 21:21:02 -04:00
|
|
|
//! [`dprint-plugin-typescript`](https://github.com/dprint/dprint-plugin-typescript).
|
2020-01-29 21:16:48 -05:00
|
|
|
//!
|
|
|
|
//! At the moment it is only consumed using CLI but in
|
|
|
|
//! the future it can be easily extended to provide
|
|
|
|
//! the same functions as ops available in JS runtime.
|
|
|
|
|
2020-05-23 09:22:08 -04:00
|
|
|
use crate::colors;
|
|
|
|
use crate::diff::diff;
|
2020-11-22 15:45:44 -05:00
|
|
|
use crate::file_watcher;
|
2021-01-19 12:39:35 -05:00
|
|
|
use crate::fs_util::{collect_files, get_extension, is_supported_ext_md};
|
2020-08-03 17:39:48 -04:00
|
|
|
use crate::text_encoding;
|
2020-09-14 12:48:57 -04:00
|
|
|
use deno_core::error::generic_error;
|
|
|
|
use deno_core::error::AnyError;
|
2020-09-21 12:36:37 -04:00
|
|
|
use deno_core::futures;
|
2020-11-22 15:45:44 -05:00
|
|
|
use deno_core::futures::FutureExt;
|
2020-01-29 21:16:48 -05:00
|
|
|
use std::fs;
|
2020-02-09 05:19:05 -05:00
|
|
|
use std::io::stdin;
|
|
|
|
use std::io::stdout;
|
|
|
|
use std::io::Read;
|
|
|
|
use std::io::Write;
|
2020-01-29 21:16:48 -05:00
|
|
|
use std::path::Path;
|
|
|
|
use std::path::PathBuf;
|
2020-04-23 19:01:15 -04:00
|
|
|
use std::sync::atomic::{AtomicUsize, Ordering};
|
|
|
|
use std::sync::{Arc, Mutex};
|
2020-01-29 21:16:48 -05:00
|
|
|
|
2020-05-28 13:35:24 -04:00
|
|
|
const BOM_CHAR: char = '\u{FEFF}';
|
|
|
|
|
2020-05-04 15:17:15 -04:00
|
|
|
/// Format JavaScript/TypeScript files.
|
2020-07-30 12:09:08 -04:00
|
|
|
pub async fn format(
|
2020-10-21 07:12:01 -04:00
|
|
|
args: Vec<PathBuf>,
|
2020-11-22 15:45:44 -05:00
|
|
|
ignore: Vec<PathBuf>,
|
2020-07-30 12:09:08 -04:00
|
|
|
check: bool,
|
2020-11-22 15:45:44 -05:00
|
|
|
watch: bool,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-11-22 15:45:44 -05:00
|
|
|
let target_file_resolver = || {
|
|
|
|
// collect the files that are to be formatted
|
2021-01-19 12:39:35 -05:00
|
|
|
collect_files(&args, &ignore, is_supported_ext_md)
|
2020-11-22 15:45:44 -05:00
|
|
|
};
|
|
|
|
let operation = |paths: Vec<PathBuf>| {
|
2021-01-19 12:39:35 -05:00
|
|
|
let config = get_typescript_config();
|
2020-11-22 15:45:44 -05:00
|
|
|
async move {
|
|
|
|
if check {
|
|
|
|
check_source_files(config, paths).await?;
|
|
|
|
} else {
|
|
|
|
format_source_files(config, paths).await?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
.boxed_local()
|
|
|
|
};
|
|
|
|
|
|
|
|
if watch {
|
|
|
|
file_watcher::watch_func(target_file_resolver, operation, "Fmt").await?;
|
2020-05-04 15:17:15 -04:00
|
|
|
} else {
|
2020-11-22 15:45:44 -05:00
|
|
|
operation(target_file_resolver()?).await?;
|
2020-05-04 15:17:15 -04:00
|
|
|
}
|
2020-11-22 15:45:44 -05:00
|
|
|
|
|
|
|
Ok(())
|
2020-03-25 17:24:26 -04:00
|
|
|
}
|
|
|
|
|
2021-01-19 12:39:35 -05:00
|
|
|
/// Formats markdown (using https://github.com/dprint/dprint-plugin-markdown) and its code blocks
|
|
|
|
/// (ts/tsx, js/jsx).
|
|
|
|
fn format_markdown(
|
|
|
|
file_text: &str,
|
|
|
|
ts_config: dprint_plugin_typescript::configuration::Configuration,
|
|
|
|
) -> Result<String, String> {
|
|
|
|
let md_config = get_markdown_config();
|
|
|
|
dprint_plugin_markdown::format_text(
|
|
|
|
&file_text,
|
|
|
|
&md_config,
|
|
|
|
Box::new(move |tag, text, line_width| {
|
|
|
|
let tag = tag.to_lowercase();
|
|
|
|
if matches!(
|
|
|
|
tag.as_str(),
|
|
|
|
"ts" | "tsx" | "js" | "jsx" | "javascript" | "typescript"
|
|
|
|
) {
|
|
|
|
// It's important to tell dprint proper file extension, otherwise
|
|
|
|
// it might parse the file twice.
|
|
|
|
let extension = match tag.as_str() {
|
|
|
|
"javascript" => "js",
|
|
|
|
"typescript" => "ts",
|
|
|
|
rest => rest,
|
|
|
|
};
|
|
|
|
let fake_filename =
|
|
|
|
PathBuf::from(format!("deno_fmt_stdin.{}", extension));
|
|
|
|
|
|
|
|
let mut codeblock_config = ts_config.clone();
|
|
|
|
codeblock_config.line_width = line_width;
|
|
|
|
dprint_plugin_typescript::format_text(
|
|
|
|
&fake_filename,
|
|
|
|
&text,
|
|
|
|
&codeblock_config,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
Ok(text.to_string())
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-04-23 19:01:15 -04:00
|
|
|
async fn check_source_files(
|
2021-01-19 12:39:35 -05:00
|
|
|
config: dprint_plugin_typescript::configuration::Configuration,
|
2020-02-03 15:52:32 -05:00
|
|
|
paths: Vec<PathBuf>,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-04-23 19:01:15 -04:00
|
|
|
let not_formatted_files_count = Arc::new(AtomicUsize::new(0));
|
2020-09-09 10:45:31 -04:00
|
|
|
let checked_files_count = Arc::new(AtomicUsize::new(0));
|
2020-05-23 09:22:08 -04:00
|
|
|
|
|
|
|
// prevent threads outputting at the same time
|
|
|
|
let output_lock = Arc::new(Mutex::new(0));
|
2020-04-23 19:01:15 -04:00
|
|
|
|
|
|
|
run_parallelized(paths, {
|
|
|
|
let not_formatted_files_count = not_formatted_files_count.clone();
|
2020-09-09 10:45:31 -04:00
|
|
|
let checked_files_count = checked_files_count.clone();
|
2020-04-23 19:01:15 -04:00
|
|
|
move |file_path| {
|
2020-09-09 10:45:31 -04:00
|
|
|
checked_files_count.fetch_add(1, Ordering::Relaxed);
|
2020-05-28 13:35:24 -04:00
|
|
|
let file_text = read_file_contents(&file_path)?.text;
|
2021-01-19 12:39:35 -05:00
|
|
|
let ext = get_extension(&file_path).unwrap_or_else(String::new);
|
|
|
|
let r = if ext == "md" {
|
|
|
|
format_markdown(&file_text, config.clone())
|
|
|
|
} else {
|
|
|
|
dprint_plugin_typescript::format_text(&file_path, &file_text, &config)
|
|
|
|
};
|
2020-04-23 19:01:15 -04:00
|
|
|
match r {
|
|
|
|
Ok(formatted_text) => {
|
2020-05-28 13:35:24 -04:00
|
|
|
if formatted_text != file_text {
|
2020-09-08 05:58:17 -04:00
|
|
|
not_formatted_files_count.fetch_add(1, Ordering::Relaxed);
|
2020-05-23 09:22:08 -04:00
|
|
|
let _g = output_lock.lock().unwrap();
|
2020-11-12 17:17:31 -05:00
|
|
|
let diff = diff(&file_text, &formatted_text);
|
|
|
|
info!("");
|
|
|
|
info!("{} {}:", colors::bold("from"), file_path.display());
|
|
|
|
info!("{}", diff);
|
2020-04-23 19:01:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => {
|
2020-04-24 05:14:18 -04:00
|
|
|
let _g = output_lock.lock().unwrap();
|
2020-04-28 15:17:40 -04:00
|
|
|
eprintln!("Error checking: {}", file_path.to_string_lossy());
|
2020-04-23 19:01:15 -04:00
|
|
|
eprintln!(" {}", e);
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
|
|
|
}
|
2020-04-23 19:01:15 -04:00
|
|
|
Ok(())
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
2020-04-23 19:01:15 -04:00
|
|
|
})
|
|
|
|
.await?;
|
2020-01-29 21:16:48 -05:00
|
|
|
|
2020-04-23 19:01:15 -04:00
|
|
|
let not_formatted_files_count =
|
2020-09-08 05:58:17 -04:00
|
|
|
not_formatted_files_count.load(Ordering::Relaxed);
|
2020-09-09 10:45:31 -04:00
|
|
|
let checked_files_count = checked_files_count.load(Ordering::Relaxed);
|
|
|
|
let checked_files_str =
|
|
|
|
format!("{} {}", checked_files_count, files_str(checked_files_count));
|
2020-04-23 19:01:15 -04:00
|
|
|
if not_formatted_files_count == 0 {
|
2020-09-20 07:49:22 -04:00
|
|
|
info!("Checked {}", checked_files_str);
|
2020-02-13 16:02:18 -05:00
|
|
|
Ok(())
|
|
|
|
} else {
|
2020-09-09 10:45:31 -04:00
|
|
|
let not_formatted_files_str = files_str(not_formatted_files_count);
|
2020-09-14 12:48:57 -04:00
|
|
|
Err(generic_error(format!(
|
2020-09-09 10:45:31 -04:00
|
|
|
"Found {} not formatted {} in {}",
|
|
|
|
not_formatted_files_count, not_formatted_files_str, checked_files_str,
|
2020-08-25 18:22:15 -04:00
|
|
|
)))
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-23 19:01:15 -04:00
|
|
|
async fn format_source_files(
|
2021-01-19 12:39:35 -05:00
|
|
|
config: dprint_plugin_typescript::configuration::Configuration,
|
2020-02-03 15:52:32 -05:00
|
|
|
paths: Vec<PathBuf>,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-04-23 19:01:15 -04:00
|
|
|
let formatted_files_count = Arc::new(AtomicUsize::new(0));
|
2020-09-09 10:45:31 -04:00
|
|
|
let checked_files_count = Arc::new(AtomicUsize::new(0));
|
2020-04-23 19:01:15 -04:00
|
|
|
let output_lock = Arc::new(Mutex::new(0)); // prevent threads outputting at the same time
|
|
|
|
|
|
|
|
run_parallelized(paths, {
|
|
|
|
let formatted_files_count = formatted_files_count.clone();
|
2020-09-09 10:45:31 -04:00
|
|
|
let checked_files_count = checked_files_count.clone();
|
2020-04-23 19:01:15 -04:00
|
|
|
move |file_path| {
|
2020-09-09 10:45:31 -04:00
|
|
|
checked_files_count.fetch_add(1, Ordering::Relaxed);
|
2020-05-28 13:35:24 -04:00
|
|
|
let file_contents = read_file_contents(&file_path)?;
|
2021-01-19 12:39:35 -05:00
|
|
|
let ext = get_extension(&file_path).unwrap_or_else(String::new);
|
|
|
|
let r = if ext == "md" {
|
|
|
|
format_markdown(&file_contents.text, config.clone())
|
|
|
|
} else {
|
|
|
|
dprint_plugin_typescript::format_text(
|
|
|
|
&file_path,
|
|
|
|
&file_contents.text,
|
|
|
|
&config,
|
|
|
|
)
|
|
|
|
};
|
2020-04-23 19:01:15 -04:00
|
|
|
match r {
|
|
|
|
Ok(formatted_text) => {
|
2020-05-28 13:35:24 -04:00
|
|
|
if formatted_text != file_contents.text {
|
|
|
|
write_file_contents(
|
|
|
|
&file_path,
|
|
|
|
FileContents {
|
|
|
|
had_bom: file_contents.had_bom,
|
|
|
|
text: formatted_text,
|
|
|
|
},
|
|
|
|
)?;
|
2020-09-08 05:58:17 -04:00
|
|
|
formatted_files_count.fetch_add(1, Ordering::Relaxed);
|
2020-04-24 05:14:18 -04:00
|
|
|
let _g = output_lock.lock().unwrap();
|
2020-09-20 07:49:22 -04:00
|
|
|
info!("{}", file_path.to_string_lossy());
|
2020-04-23 19:01:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => {
|
2020-04-24 05:14:18 -04:00
|
|
|
let _g = output_lock.lock().unwrap();
|
2020-04-28 15:17:40 -04:00
|
|
|
eprintln!("Error formatting: {}", file_path.to_string_lossy());
|
2020-04-23 19:01:15 -04:00
|
|
|
eprintln!(" {}", e);
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
|
|
|
}
|
2020-04-23 19:01:15 -04:00
|
|
|
Ok(())
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
2020-04-23 19:01:15 -04:00
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
|
2020-09-08 05:58:17 -04:00
|
|
|
let formatted_files_count = formatted_files_count.load(Ordering::Relaxed);
|
2020-04-08 10:31:48 -04:00
|
|
|
debug!(
|
|
|
|
"Formatted {} {}",
|
2020-04-23 19:01:15 -04:00
|
|
|
formatted_files_count,
|
|
|
|
files_str(formatted_files_count),
|
2020-04-08 10:31:48 -04:00
|
|
|
);
|
2020-09-09 10:45:31 -04:00
|
|
|
|
|
|
|
let checked_files_count = checked_files_count.load(Ordering::Relaxed);
|
2020-09-20 07:49:22 -04:00
|
|
|
info!(
|
2020-09-09 10:45:31 -04:00
|
|
|
"Checked {} {}",
|
|
|
|
checked_files_count,
|
|
|
|
files_str(checked_files_count)
|
|
|
|
);
|
|
|
|
|
2020-02-26 05:50:53 -05:00
|
|
|
Ok(())
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
|
|
|
|
2020-02-09 05:19:05 -05:00
|
|
|
/// Format stdin and write result to stdout.
|
2021-01-19 12:39:35 -05:00
|
|
|
/// Treats input as TypeScript or as set by `--ext` flag.
|
2020-02-09 05:19:05 -05:00
|
|
|
/// Compatible with `--check` flag.
|
2021-01-19 12:39:35 -05:00
|
|
|
pub fn format_stdin(check: bool, ext: String) -> Result<(), AnyError> {
|
2020-02-09 05:19:05 -05:00
|
|
|
let mut source = String::new();
|
|
|
|
if stdin().read_to_string(&mut source).is_err() {
|
2020-09-14 12:48:57 -04:00
|
|
|
return Err(generic_error("Failed to read from stdin"));
|
2020-02-09 05:19:05 -05:00
|
|
|
}
|
2021-01-19 12:39:35 -05:00
|
|
|
let config = get_typescript_config();
|
|
|
|
let r = if ext.as_str() == "md" {
|
|
|
|
format_markdown(&source, config)
|
|
|
|
} else {
|
|
|
|
// dprint will fallback to jsx parsing if parsing this as a .ts file doesn't work
|
|
|
|
dprint_plugin_typescript::format_text(
|
|
|
|
&PathBuf::from("_stdin.ts"),
|
|
|
|
&source,
|
|
|
|
&config,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
match r {
|
2020-04-19 07:26:17 -04:00
|
|
|
Ok(formatted_text) => {
|
2020-02-09 05:19:05 -05:00
|
|
|
if check {
|
|
|
|
if formatted_text != source {
|
|
|
|
println!("Not formatted stdin");
|
|
|
|
}
|
|
|
|
} else {
|
2020-02-27 15:39:41 -05:00
|
|
|
stdout().write_all(formatted_text.as_bytes())?;
|
2020-02-09 05:19:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => {
|
2020-09-14 12:48:57 -04:00
|
|
|
return Err(generic_error(e));
|
2020-02-09 05:19:05 -05:00
|
|
|
}
|
|
|
|
}
|
2020-02-27 15:39:41 -05:00
|
|
|
Ok(())
|
2020-01-29 21:16:48 -05:00
|
|
|
}
|
2020-02-13 16:02:18 -05:00
|
|
|
|
2020-05-04 15:17:15 -04:00
|
|
|
fn files_str(len: usize) -> &'static str {
|
2020-09-20 07:49:22 -04:00
|
|
|
if len <= 1 {
|
2020-05-04 15:17:15 -04:00
|
|
|
"file"
|
|
|
|
} else {
|
|
|
|
"files"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-19 12:39:35 -05:00
|
|
|
fn get_typescript_config(
|
|
|
|
) -> dprint_plugin_typescript::configuration::Configuration {
|
|
|
|
dprint_plugin_typescript::configuration::ConfigurationBuilder::new()
|
|
|
|
.deno()
|
|
|
|
.build()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_markdown_config() -> dprint_plugin_markdown::configuration::Configuration
|
|
|
|
{
|
|
|
|
dprint_plugin_markdown::configuration::ConfigurationBuilder::new()
|
|
|
|
// Matches `.dprintrc.json` in the repository
|
|
|
|
.text_wrap(dprint_plugin_markdown::configuration::TextWrap::Always)
|
|
|
|
.ignore_directive("deno-fmt-ignore")
|
|
|
|
.ignore_start_directive("deno-fmt-ignore-start")
|
|
|
|
.ignore_end_directive("deno-fmt-ignore-end")
|
|
|
|
.build()
|
2020-05-04 15:17:15 -04:00
|
|
|
}
|
|
|
|
|
2020-05-28 13:35:24 -04:00
|
|
|
struct FileContents {
|
|
|
|
text: String,
|
|
|
|
had_bom: bool,
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:48:57 -04:00
|
|
|
fn read_file_contents(file_path: &Path) -> Result<FileContents, AnyError> {
|
2020-08-03 17:39:48 -04:00
|
|
|
let file_bytes = fs::read(&file_path)?;
|
|
|
|
let charset = text_encoding::detect_charset(&file_bytes);
|
|
|
|
let file_text = text_encoding::convert_to_utf8(&file_bytes, charset)?;
|
2020-05-28 13:35:24 -04:00
|
|
|
let had_bom = file_text.starts_with(BOM_CHAR);
|
|
|
|
let text = if had_bom {
|
|
|
|
// remove the BOM
|
|
|
|
String::from(&file_text[BOM_CHAR.len_utf8()..])
|
|
|
|
} else {
|
2020-08-03 17:39:48 -04:00
|
|
|
String::from(file_text)
|
2020-05-28 13:35:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(FileContents { text, had_bom })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_file_contents(
|
2020-09-08 05:58:17 -04:00
|
|
|
file_path: &Path,
|
2020-05-28 13:35:24 -04:00
|
|
|
file_contents: FileContents,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError> {
|
2020-05-28 13:35:24 -04:00
|
|
|
let file_text = if file_contents.had_bom {
|
|
|
|
// add back the BOM
|
|
|
|
format!("{}{}", BOM_CHAR, file_contents.text)
|
|
|
|
} else {
|
|
|
|
file_contents.text
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(fs::write(file_path, file_text)?)
|
|
|
|
}
|
|
|
|
|
2020-06-11 19:44:17 -04:00
|
|
|
pub async fn run_parallelized<F>(
|
2020-04-23 19:01:15 -04:00
|
|
|
file_paths: Vec<PathBuf>,
|
|
|
|
f: F,
|
2020-09-14 12:48:57 -04:00
|
|
|
) -> Result<(), AnyError>
|
2020-04-23 19:01:15 -04:00
|
|
|
where
|
2020-09-14 12:48:57 -04:00
|
|
|
F: FnOnce(PathBuf) -> Result<(), AnyError> + Send + 'static + Clone,
|
2020-04-23 19:01:15 -04:00
|
|
|
{
|
|
|
|
let handles = file_paths.iter().map(|file_path| {
|
|
|
|
let f = f.clone();
|
|
|
|
let file_path = file_path.clone();
|
|
|
|
tokio::task::spawn_blocking(move || f(file_path))
|
|
|
|
});
|
|
|
|
let join_results = futures::future::join_all(handles).await;
|
|
|
|
|
|
|
|
// find the tasks that panicked and let the user know which files
|
|
|
|
let panic_file_paths = join_results
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.filter_map(|(i, join_result)| {
|
|
|
|
join_result
|
|
|
|
.as_ref()
|
|
|
|
.err()
|
|
|
|
.map(|_| file_paths[i].to_string_lossy())
|
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
if !panic_file_paths.is_empty() {
|
|
|
|
panic!("Panic formatting: {}", panic_file_paths.join(", "))
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for any errors and if so return the first one
|
|
|
|
let mut errors = join_results.into_iter().filter_map(|join_result| {
|
|
|
|
join_result
|
|
|
|
.ok()
|
|
|
|
.map(|handle_result| handle_result.err())
|
|
|
|
.flatten()
|
|
|
|
});
|
|
|
|
|
|
|
|
if let Some(e) = errors.next() {
|
|
|
|
Err(e)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|