rust/src/librustdoc/externalfiles.rs

91 lines
2.9 KiB
Rust
Raw Permalink Normal View History

2019-12-22 23:42:04 +01:00
use crate::html::markdown::{ErrorCodes, IdMap, Markdown, Playground};
2020-01-01 19:40:49 +01:00
use crate::rustc_span::edition::Edition;
use std::fs;
use std::path::Path;
use std::str;
2019-02-23 08:40:07 +01:00
#[derive(Clone, Debug)]
crate struct ExternalHtml {
/// Content that will be included inline in the <head> section of a
/// rendered Markdown file or generated documentation
crate in_header: String,
/// Content that will be included inline between <body> and the content of
/// a rendered Markdown file or generated documentation
crate before_content: String,
/// Content that will be included inline between the content and </body> of
/// a rendered Markdown file or generated documentation
crate after_content: String,
}
impl ExternalHtml {
crate fn load(
2019-12-22 23:42:04 +01:00
in_header: &[String],
before_content: &[String],
after_content: &[String],
md_before_content: &[String],
md_after_content: &[String],
2020-10-10 20:27:52 +02:00
nightly_build: bool,
diag: &rustc_errors::Handler,
2019-12-22 23:42:04 +01:00
id_map: &mut IdMap,
edition: Edition,
playground: &Option<Playground>,
) -> Option<ExternalHtml> {
2020-10-10 20:27:52 +02:00
let codes = ErrorCodes::from(nightly_build);
let ih = load_external_files(in_header, diag)?;
let bc = load_external_files(before_content, diag)?;
let m_bc = load_external_files(md_before_content, diag)?;
2019-12-22 23:42:04 +01:00
let bc = format!(
"{}{}",
bc,
Markdown(&m_bc, &[], id_map, codes, edition, playground).into_string()
2019-12-22 23:42:04 +01:00
);
let ac = load_external_files(after_content, diag)?;
let m_ac = load_external_files(md_after_content, diag)?;
2019-12-22 23:42:04 +01:00
let ac = format!(
"{}{}",
ac,
Markdown(&m_ac, &[], id_map, codes, edition, playground).into_string()
2019-12-22 23:42:04 +01:00
);
Some(ExternalHtml { in_header: ih, before_content: bc, after_content: ac })
}
}
crate enum LoadStringError {
2016-10-09 04:55:40 +02:00
ReadFail,
BadUtf8,
}
crate fn load_string<P: AsRef<Path>>(
2019-12-22 23:42:04 +01:00
file_path: P,
diag: &rustc_errors::Handler,
2019-12-22 23:42:04 +01:00
) -> Result<String, LoadStringError> {
2016-10-09 04:55:40 +02:00
let file_path = file_path.as_ref();
let contents = match fs::read(file_path) {
Ok(bytes) => bytes,
Err(e) => {
diag.struct_err(&format!("error reading `{}`: {}", file_path.display(), e)).emit();
return Err(LoadStringError::ReadFail);
}
};
2016-10-09 04:55:40 +02:00
match str::from_utf8(&contents) {
Ok(s) => Ok(s.to_string()),
Err(_) => {
diag.struct_err(&format!("error reading `{}`: not UTF-8", file_path.display())).emit();
2016-10-09 04:55:40 +02:00
Err(LoadStringError::BadUtf8)
}
}
}
fn load_external_files(names: &[String], diag: &rustc_errors::Handler) -> Option<String> {
let mut out = String::new();
2015-01-31 18:20:46 +01:00
for name in names {
let s = match load_string(name, diag) {
2016-10-09 04:55:40 +02:00
Ok(s) => s,
Err(_) => return None,
};
out.push_str(&s);
out.push('\n');
}
Some(out)
}