2018-01-10 10:58:39 -06:00
|
|
|
use std::fs;
|
2016-10-08 15:29:10 -05:00
|
|
|
use std::path::Path;
|
2015-02-26 23:00:43 -06:00
|
|
|
use std::str;
|
2018-05-08 13:42:53 -05:00
|
|
|
use errors;
|
2019-02-23 01:40:07 -06:00
|
|
|
use crate::syntax::feature_gate::UnstableFeatures;
|
2019-04-17 20:17:12 -05:00
|
|
|
use crate::syntax::edition::Edition;
|
2019-08-10 17:07:07 -05:00
|
|
|
use crate::html::markdown::{IdMap, ErrorCodes, Markdown, Playground};
|
2019-02-23 01:40:07 -06:00
|
|
|
|
2018-11-04 16:39:24 -06:00
|
|
|
#[derive(Clone, Debug)]
|
2018-01-20 15:16:46 -06:00
|
|
|
pub struct ExternalHtml {
|
2016-10-08 16:34:13 -05:00
|
|
|
/// Content that will be included inline in the <head> section of a
|
|
|
|
/// rendered Markdown file or generated documentation
|
2014-06-28 05:35:25 -05:00
|
|
|
pub in_header: String,
|
2016-10-08 16:34:13 -05:00
|
|
|
/// Content that will be included inline between <body> and the content of
|
|
|
|
/// a rendered Markdown file or generated documentation
|
2014-06-28 05:35:25 -05:00
|
|
|
pub before_content: String,
|
2016-10-08 16:34:13 -05:00
|
|
|
/// Content that will be included inline between the content and </body> of
|
|
|
|
/// a rendered Markdown file or generated documentation
|
2014-06-28 05:35:25 -05:00
|
|
|
pub after_content: String
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ExternalHtml {
|
2017-05-08 07:25:01 -05:00
|
|
|
pub fn load(in_header: &[String], before_content: &[String], after_content: &[String],
|
2018-07-22 08:25:00 -05:00
|
|
|
md_before_content: &[String], md_after_content: &[String], diag: &errors::Handler,
|
2019-08-10 17:07:07 -05:00
|
|
|
id_map: &mut IdMap, edition: Edition, playground: &Option<Playground>)
|
2014-06-28 05:35:25 -05:00
|
|
|
-> Option<ExternalHtml> {
|
2018-07-22 12:10:19 -05:00
|
|
|
let codes = ErrorCodes::from(UnstableFeatures::from_environment().is_nightly_build());
|
2018-05-08 13:42:53 -05:00
|
|
|
load_external_files(in_header, diag)
|
2016-10-08 22:53:57 -05:00
|
|
|
.and_then(|ih|
|
2018-05-08 13:42:53 -05:00
|
|
|
load_external_files(before_content, diag)
|
2016-10-08 22:53:57 -05:00
|
|
|
.map(|bc| (ih, bc))
|
|
|
|
)
|
2017-05-08 07:25:01 -05:00
|
|
|
.and_then(|(ih, bc)|
|
2018-05-08 13:42:53 -05:00
|
|
|
load_external_files(md_before_content, diag)
|
2018-07-22 08:25:00 -05:00
|
|
|
.map(|m_bc| (ih,
|
2019-08-10 17:36:04 -05:00
|
|
|
format!("{}{}", bc, Markdown(&m_bc, &[], id_map,
|
2019-08-10 17:27:17 -05:00
|
|
|
codes, edition, playground).to_string())))
|
2017-05-08 07:25:01 -05:00
|
|
|
)
|
2016-10-08 22:53:57 -05:00
|
|
|
.and_then(|(ih, bc)|
|
2018-05-08 13:42:53 -05:00
|
|
|
load_external_files(after_content, diag)
|
2016-10-08 22:53:57 -05:00
|
|
|
.map(|ac| (ih, bc, ac))
|
|
|
|
)
|
2017-05-08 07:25:01 -05:00
|
|
|
.and_then(|(ih, bc, ac)|
|
2018-05-08 13:42:53 -05:00
|
|
|
load_external_files(md_after_content, diag)
|
2018-07-22 08:25:00 -05:00
|
|
|
.map(|m_ac| (ih, bc,
|
2019-08-10 17:36:04 -05:00
|
|
|
format!("{}{}", ac, Markdown(&m_ac, &[], id_map,
|
2019-08-10 17:27:17 -05:00
|
|
|
codes, edition, playground).to_string())))
|
2017-05-08 07:25:01 -05:00
|
|
|
)
|
2016-10-08 22:53:57 -05:00
|
|
|
.map(|(ih, bc, ac)|
|
|
|
|
ExternalHtml {
|
|
|
|
in_header: ih,
|
|
|
|
before_content: bc,
|
|
|
|
after_content: ac,
|
|
|
|
}
|
|
|
|
)
|
2014-06-28 05:35:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-08 21:55:40 -05:00
|
|
|
pub enum LoadStringError {
|
|
|
|
ReadFail,
|
|
|
|
BadUtf8,
|
2014-06-28 05:35:25 -05:00
|
|
|
}
|
|
|
|
|
2018-05-08 13:42:53 -05:00
|
|
|
pub fn load_string<P: AsRef<Path>>(file_path: P, diag: &errors::Handler)
|
|
|
|
-> Result<String, LoadStringError>
|
|
|
|
{
|
2016-10-08 21:55:40 -05:00
|
|
|
let file_path = file_path.as_ref();
|
2018-01-10 10:58:39 -06:00
|
|
|
let contents = match fs::read(file_path) {
|
|
|
|
Ok(bytes) => bytes,
|
|
|
|
Err(e) => {
|
2018-05-08 13:42:53 -05:00
|
|
|
diag.struct_err(&format!("error reading `{}`: {}", file_path.display(), e)).emit();
|
2018-01-10 10:58:39 -06:00
|
|
|
return Err(LoadStringError::ReadFail);
|
|
|
|
}
|
|
|
|
};
|
2016-10-08 21:55:40 -05:00
|
|
|
match str::from_utf8(&contents) {
|
|
|
|
Ok(s) => Ok(s.to_string()),
|
|
|
|
Err(_) => {
|
2018-05-08 13:42:53 -05:00
|
|
|
diag.struct_err(&format!("error reading `{}`: not UTF-8", file_path.display())).emit();
|
2016-10-08 21:55:40 -05:00
|
|
|
Err(LoadStringError::BadUtf8)
|
2014-06-28 05:35:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-08 13:42:53 -05:00
|
|
|
fn load_external_files(names: &[String], diag: &errors::Handler) -> Option<String> {
|
2014-06-28 05:35:25 -05:00
|
|
|
let mut out = String::new();
|
2015-01-31 11:20:46 -06:00
|
|
|
for name in names {
|
2018-05-08 13:42:53 -05:00
|
|
|
let s = match load_string(name, diag) {
|
2016-10-08 21:55:40 -05:00
|
|
|
Ok(s) => s,
|
|
|
|
Err(_) => return None,
|
|
|
|
};
|
|
|
|
out.push_str(&s);
|
2014-09-22 10:28:35 -05:00
|
|
|
out.push('\n');
|
2014-06-28 05:35:25 -05:00
|
|
|
}
|
|
|
|
Some(out)
|
|
|
|
}
|