2018-06-09 09:25:47 -05:00
|
|
|
use std::fs;
|
|
|
|
use std::io::{self, Write};
|
2019-03-01 10:59:38 -06:00
|
|
|
use std::path::Path;
|
|
|
|
|
2020-02-08 22:21:37 -06:00
|
|
|
use rustc_span::source_map::SourceMap;
|
2017-07-13 04:42:14 -05:00
|
|
|
|
2019-06-12 16:59:20 -05:00
|
|
|
use crate::config::FileName;
|
|
|
|
use crate::emitter::{self, Emitter};
|
2019-10-19 03:15:13 -05:00
|
|
|
use crate::NewlineStyle;
|
2015-08-01 08:02:59 -05:00
|
|
|
|
2019-06-12 16:59:20 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
use crate::config::Config;
|
|
|
|
#[cfg(test)]
|
|
|
|
use crate::create_emitter;
|
2018-04-20 04:08:20 -05:00
|
|
|
#[cfg(test)]
|
2019-02-04 04:30:43 -06:00
|
|
|
use crate::formatting::FileRecord;
|
2015-08-01 08:02:59 -05:00
|
|
|
|
|
|
|
// Append a newline to the end of each file.
|
2019-05-09 13:37:51 -05:00
|
|
|
pub(crate) fn append_newline(s: &mut String) {
|
2016-05-15 04:41:05 -05:00
|
|
|
s.push_str("\n");
|
2015-08-01 08:02:59 -05:00
|
|
|
}
|
|
|
|
|
2018-04-20 04:08:20 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
pub(crate) fn write_all_files<T>(
|
2018-08-23 16:10:46 -05:00
|
|
|
source_file: &[FileRecord],
|
2017-11-30 08:04:19 -06:00
|
|
|
out: &mut T,
|
|
|
|
config: &Config,
|
|
|
|
) -> Result<(), io::Error>
|
2017-06-11 22:58:58 -05:00
|
|
|
where
|
|
|
|
T: Write,
|
2016-01-18 23:02:21 -06:00
|
|
|
{
|
2019-08-15 21:14:53 -05:00
|
|
|
let mut emitter = create_emitter(config);
|
2019-06-12 16:59:20 -05:00
|
|
|
|
|
|
|
emitter.emit_header(out)?;
|
2018-08-23 16:10:46 -05:00
|
|
|
for &(ref filename, ref text) in source_file {
|
2019-10-19 03:15:13 -05:00
|
|
|
write_file(
|
|
|
|
None,
|
|
|
|
filename,
|
|
|
|
text,
|
|
|
|
out,
|
|
|
|
&mut *emitter,
|
|
|
|
config.newline_style(),
|
|
|
|
)?;
|
2018-04-20 04:08:20 -05:00
|
|
|
}
|
2019-06-12 16:59:20 -05:00
|
|
|
emitter.emit_footer(out)?;
|
2015-08-01 08:02:59 -05:00
|
|
|
|
2015-12-29 22:54:35 -06:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-05-09 13:37:51 -05:00
|
|
|
pub(crate) fn write_file<T>(
|
2019-03-01 10:59:38 -06:00
|
|
|
source_map: Option<&SourceMap>,
|
2017-12-08 07:16:47 -06:00
|
|
|
filename: &FileName,
|
2019-03-01 10:59:38 -06:00
|
|
|
formatted_text: &str,
|
2017-06-11 22:58:58 -05:00
|
|
|
out: &mut T,
|
2019-08-15 21:14:53 -05:00
|
|
|
emitter: &mut dyn Emitter,
|
2019-10-19 03:15:13 -05:00
|
|
|
newline_style: NewlineStyle,
|
2019-06-12 16:59:20 -05:00
|
|
|
) -> Result<emitter::EmitterResult, io::Error>
|
2017-06-11 22:58:58 -05:00
|
|
|
where
|
|
|
|
T: Write,
|
2016-01-18 23:02:21 -06:00
|
|
|
{
|
2019-03-01 10:59:38 -06:00
|
|
|
fn ensure_real_path(filename: &FileName) -> &Path {
|
|
|
|
match *filename {
|
|
|
|
FileName::Real(ref path) => path,
|
|
|
|
_ => panic!("cannot format `{}` and emit to files", filename),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-08 22:21:37 -06:00
|
|
|
impl From<&FileName> for rustc_span::FileName {
|
|
|
|
fn from(filename: &FileName) -> rustc_span::FileName {
|
2019-03-01 10:59:38 -06:00
|
|
|
match filename {
|
2020-02-08 22:21:37 -06:00
|
|
|
FileName::Real(path) => rustc_span::FileName::Real(path.to_owned()),
|
|
|
|
FileName::Stdin => rustc_span::FileName::Custom("stdin".to_owned()),
|
2019-03-01 10:59:38 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-19 03:15:13 -05:00
|
|
|
// SourceFile's in the SourceMap will always have Unix-style line endings
|
|
|
|
// See: https://github.com/rust-lang/rustfmt/issues/3850
|
|
|
|
// So if the user has explicitly overridden the rustfmt `newline_style`
|
|
|
|
// config and `filename` is FileName::Real, then we must check the file system
|
|
|
|
// to get the original file value in order to detect newline_style conflicts.
|
|
|
|
// Otherwise, parse session is around (cfg(not(test))) and newline_style has been
|
|
|
|
// left as the default value, then try getting source from the parse session
|
|
|
|
// source map instead of hitting the file system. This also supports getting
|
2019-03-01 10:59:38 -06:00
|
|
|
// original text for `FileName::Stdin`.
|
2019-10-19 03:15:13 -05:00
|
|
|
let original_text = if newline_style != NewlineStyle::Auto && *filename != FileName::Stdin {
|
|
|
|
fs::read_to_string(ensure_real_path(filename))?
|
|
|
|
} else {
|
|
|
|
match source_map
|
|
|
|
.and_then(|x| x.get_source_file(&filename.into()))
|
|
|
|
.and_then(|x| x.src.as_ref().map(ToString::to_string))
|
|
|
|
{
|
|
|
|
Some(ori) => ori,
|
|
|
|
None => fs::read_to_string(ensure_real_path(filename))?,
|
|
|
|
}
|
2017-12-08 07:16:47 -06:00
|
|
|
};
|
|
|
|
|
2019-06-12 16:59:20 -05:00
|
|
|
let formatted_file = emitter::FormattedFile {
|
|
|
|
filename,
|
|
|
|
original_text: &original_text,
|
|
|
|
formatted_text,
|
|
|
|
};
|
2015-08-01 08:02:59 -05:00
|
|
|
|
2019-06-12 16:59:20 -05:00
|
|
|
emitter.emit_formatted_file(out, formatted_file)
|
2015-08-01 08:02:59 -05:00
|
|
|
}
|