minify-html/src/unit/tag.rs

185 lines
6.9 KiB
Rust
Raw Normal View History

2019-12-29 05:53:49 -05:00
use phf::{phf_set, Set};
use crate::err::{ErrorType, ProcessingResult};
2019-12-27 05:52:49 -05:00
use crate::proc::{Processor, ProcessorRange};
use crate::spec::codepoint::{is_alphanumeric, is_whitespace};
2020-01-07 04:56:37 -05:00
use crate::spec::tag::omission::CLOSING_TAG_OMISSION_RULES;
use crate::spec::tag::void::VOID_TAGS;
use crate::unit::attr::{AttributeMinification, ATTRS, AttrType, process_attr, ProcessedAttr};
2019-12-25 04:44:51 -05:00
use crate::unit::content::process_content;
use crate::unit::script::process_script;
2019-12-29 05:53:49 -05:00
use crate::unit::style::process_style;
2019-12-27 05:52:49 -05:00
pub static JAVASCRIPT_MIME_TYPES: Set<&'static [u8]> = phf_set! {
b"application/ecmascript",
b"application/javascript",
b"application/x-ecmascript",
b"application/x-javascript",
b"text/ecmascript",
b"text/javascript",
b"text/javascript1.0",
b"text/javascript1.1",
b"text/javascript1.2",
b"text/javascript1.3",
b"text/javascript1.4",
b"text/javascript1.5",
b"text/jscript",
b"text/livescript",
b"text/x-ecmascript",
b"text/x-javascript",
};
// Tag names may only use ASCII alphanumerics. However, some people also use `:` and `-`.
// See https://html.spec.whatwg.org/multipage/syntax.html#syntax-tag-name for spec.
fn is_valid_tag_name_char(c: u8) -> bool {
is_alphanumeric(c) || c == b':' || c == b'-'
}
2020-01-06 08:28:35 -05:00
#[derive(Copy, Clone)]
enum TagType {
Script,
Style,
Other,
}
2020-01-06 07:36:05 -05:00
pub struct ProcessedTag {
pub name: ProcessorRange,
pub has_closing_tag: bool,
2020-01-06 07:36:05 -05:00
}
impl ProcessedTag {
pub fn write_closing_tag(&self, proc: &mut Processor) -> () {
if self.has_closing_tag {
proc.write_slice(b"</");
proc.write_range(self.name);
proc.write(b'>');
2020-01-06 07:36:05 -05:00
};
}
}
// TODO Comment param `prev_sibling_closing_tag`.
pub fn process_tag(proc: &mut Processor, prev_sibling_closing_tag: Option<ProcessedTag>) -> ProcessingResult<ProcessedTag> {
2019-12-29 19:33:49 -05:00
// TODO Minify opening and closing tag whitespace after name and last attr.
2019-12-25 07:29:18 -05:00
// TODO DOC No checking if opening and closing names match.
2019-12-25 04:44:51 -05:00
// Expect to be currently at an opening tag.
2019-12-29 19:33:49 -05:00
if cfg!(debug_assertions) {
2020-01-06 07:36:05 -05:00
chain!(proc.match_char(b'<').expect().discard());
2019-12-29 19:33:49 -05:00
} else {
2020-01-06 07:36:05 -05:00
proc.skip_expect();
2019-12-29 19:33:49 -05:00
};
2019-12-25 04:44:51 -05:00
// May not be valid tag name at current position, so require instead of expect.
2020-01-07 04:56:37 -05:00
let source_tag_name = chain!(proc.match_while_pred(is_valid_tag_name_char).require_with_reason("tag name")?.discard().range());
2020-01-06 07:36:05 -05:00
if let Some(prev_tag) = prev_sibling_closing_tag {
let can_omit = match CLOSING_TAG_OMISSION_RULES.get(&proc[prev_tag.name]) {
Some(rule) => rule.can_omit_as_before(&proc[source_tag_name]),
2020-01-06 07:36:05 -05:00
_ => false,
};
if !can_omit {
prev_tag.write_closing_tag(proc);
};
};
// Write initially skipped left chevron.
proc.write(b'<');
// Write previously skipped name and use written code as range (otherwise source code will eventually be overwritten).
2020-01-07 04:56:37 -05:00
let tag_name = proc.write_range(source_tag_name);
2020-01-07 04:56:37 -05:00
let tag_type = match &proc[tag_name] {
b"script" => TagType::Script,
b"style" => TagType::Style,
_ => TagType::Other,
};
let mut last_attr_type: Option<AttrType> = None;
let mut self_closing = false;
2020-01-07 04:56:37 -05:00
let is_void_tag = VOID_TAGS.contains(&proc[tag_name]);
loop {
// At the beginning of this loop, the last parsed unit was either the tag name or an attribute (including its value, if it had one).
2020-01-15 06:09:16 -05:00
chain!(proc.match_while_pred(is_whitespace).discard());
2019-12-25 07:29:18 -05:00
if chain!(proc.match_char(b'>').keep().matched()) {
// End of tag.
break;
}
2020-01-07 04:56:37 -05:00
// Don't write self closing "/>" as it could be shortened to ">" if void tag.
self_closing = chain!(proc.match_seq(b"/>").discard().matched());
2019-12-25 04:44:51 -05:00
if self_closing {
break;
}
2020-01-06 08:28:35 -05:00
// Mark attribute start in case we want to erase it completely.
let attr_checkpoint = proc.checkpoint();
let mut erase_attr = false;
// Write space after tag name or unquoted/valueless attribute.
// Don't write after quoted.
2020-01-15 06:09:16 -05:00
// Handle rare case where file ends in opening tag before an attribute and no minification has been done yet,
// e.g. `<-` (yes, that's the entire file).
if proc.at_end() {
return Err(ErrorType::UnexpectedEnd);
};
match last_attr_type {
Some(AttrType::Unquoted) | Some(AttrType::NoValue) | None => proc.write(b' '),
_ => {}
};
2020-01-07 08:38:42 -05:00
let ProcessedAttr { name, typ, value } = process_attr(proc, tag_name)?;
2020-01-06 08:28:35 -05:00
match (tag_type, &proc[name]) {
(TagType::Script, b"type") => {
// It's JS if the value is empty or one of `JAVASCRIPT_MIME_TYPES`.
2020-01-10 02:45:06 -05:00
let script_tag_type_is_js = value
2020-01-07 04:56:37 -05:00
.filter(|v| !JAVASCRIPT_MIME_TYPES.contains(&proc[*v]))
.is_none();
2020-01-06 08:28:35 -05:00
if script_tag_type_is_js {
erase_attr = true;
};
2020-01-07 04:56:37 -05:00
}
(_, name) => {
// TODO Check if HTML tag before checking if attribute removal applies to all elements.
erase_attr = match (value, ATTRS.get(&proc[tag_name], name)) {
(None, Some(AttributeMinification { redundant_if_empty: true, .. })) => true,
(Some(val), Some(AttributeMinification { default_value: Some(defval), .. })) => proc[val].eq(*defval),
_ => false,
};
}
2019-12-27 05:52:49 -05:00
};
2020-01-06 08:28:35 -05:00
if erase_attr {
proc.erase_written(attr_checkpoint);
} else {
last_attr_type = Some(typ);
};
2019-12-25 04:44:51 -05:00
};
// TODO Self closing does not actually close for HTML elements, but might close for foreign elements.
// See spec for more details.
2020-01-07 04:56:37 -05:00
if self_closing || is_void_tag {
if self_closing {
// Write discarded tag closing characters.
if is_void_tag {
proc.write_slice(b">");
} else {
proc.write_slice(b"/>");
};
2020-01-07 04:56:37 -05:00
};
return Ok(ProcessedTag { name: tag_name, has_closing_tag: false });
2019-12-25 04:44:51 -05:00
};
match tag_type {
TagType::Script => process_script(proc)?,
TagType::Style => process_style(proc)?,
2020-01-07 04:56:37 -05:00
_ => process_content(proc, Some(tag_name))?,
2019-12-25 04:44:51 -05:00
};
// Require closing tag for non-void.
chain!(proc.match_seq(b"</").require_with_reason("closing tag")?.discard());
let closing_tag = chain!(proc.match_while_pred(is_valid_tag_name_char).require_with_reason("closing tag name")?.discard().range());
// We need to check closing tag matches as otherwise when we later write closing tag, it might be longer than source closing tag and cause source to be overwritten.
2020-01-10 02:45:06 -05:00
if !proc[closing_tag].eq(&proc[tag_name]) {
return Err(ErrorType::ClosingTagMismatch);
};
chain!(proc.match_while_pred(is_whitespace).discard());
2020-01-06 07:36:05 -05:00
chain!(proc.match_char(b'>').require()?.discard());
Ok(ProcessedTag { name: tag_name, has_closing_tag: true })
}