mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
190 lines
5.7 KiB
Rust
190 lines
5.7 KiB
Rust
extern crate swc_node_base;
|
|
|
|
use std::{fs::read_to_string, path::Path};
|
|
|
|
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
|
use swc_common::{errors::HANDLER, FileName};
|
|
use swc_html_ast::{Document, DocumentFragment, DocumentMode, Element, Namespace};
|
|
use swc_html_codegen::{
|
|
writer::basic::{BasicHtmlWriter, BasicHtmlWriterConfig},
|
|
Emit,
|
|
};
|
|
use swc_html_minifier::{minify_document, minify_document_fragment, option::MinifyOptions};
|
|
use swc_html_parser::{
|
|
parse_file_as_document, parse_file_as_document_fragment, parser::ParserConfig,
|
|
};
|
|
|
|
pub fn bench_files_document(c: &mut Criterion) {
|
|
let mut group = c.benchmark_group("html/minify/document");
|
|
group.sample_size(10);
|
|
|
|
let mut bench_file = |name: &str, path: &Path| {
|
|
let src = read_to_string(path).unwrap();
|
|
|
|
group.bench_function(name, |b| {
|
|
b.iter(|| {
|
|
// We benchmark full time, including time for creating cm, handler
|
|
run_document(&src)
|
|
})
|
|
});
|
|
};
|
|
|
|
bench_file(
|
|
"css_spec",
|
|
Path::new("../swc_html_parser/benches/files/css_2021_spec.html"),
|
|
);
|
|
bench_file(
|
|
"github",
|
|
Path::new("../swc_html_parser/benches/files/github_com_17_05_2022.html"),
|
|
);
|
|
bench_file(
|
|
"stackoverflow",
|
|
Path::new("../swc_html_parser/benches/files/stackoverflow_com_17_05_2022.html"),
|
|
);
|
|
}
|
|
|
|
pub fn bench_files_document_fragment(c: &mut Criterion) {
|
|
let mut group = c.benchmark_group("html/minify/document_fragment");
|
|
group.sample_size(10);
|
|
|
|
let mut bench_file = |name: &str, path: &Path| {
|
|
let src = read_to_string(path).unwrap();
|
|
|
|
group.bench_function(name, |b| {
|
|
b.iter(|| {
|
|
// We benchmark full time, including time for creating cm, handler
|
|
run_document_fragment(&src)
|
|
})
|
|
});
|
|
};
|
|
|
|
bench_file(
|
|
"css_spec",
|
|
Path::new("../swc_html_parser/benches/files/css_2021_spec.html"),
|
|
);
|
|
bench_file(
|
|
"github",
|
|
Path::new("../swc_html_parser/benches/files/github_com_17_05_2022.html"),
|
|
);
|
|
bench_file(
|
|
"stackoverflow",
|
|
Path::new("../swc_html_parser/benches/files/stackoverflow_com_17_05_2022.html"),
|
|
);
|
|
}
|
|
|
|
criterion_group!(files_document, bench_files_document);
|
|
criterion_group!(files_document_fragment, bench_files_document_fragment);
|
|
criterion_main!(files_document, files_document_fragment);
|
|
|
|
fn run_document(src: &str) {
|
|
testing::run_test2(false, |cm, handler| {
|
|
HANDLER.set(&handler, || {
|
|
let fm = cm.new_source_file(FileName::Anon, src.into());
|
|
|
|
let mut errors = vec![];
|
|
let mut document: Document = parse_file_as_document(
|
|
&fm,
|
|
ParserConfig {
|
|
..Default::default()
|
|
},
|
|
&mut errors,
|
|
)
|
|
.unwrap();
|
|
|
|
for err in errors {
|
|
err.to_diagnostics(&handler).emit();
|
|
}
|
|
|
|
minify_document(&mut document, &MinifyOptions::default());
|
|
|
|
let mut buf = String::new();
|
|
{
|
|
let wr = BasicHtmlWriter::new(
|
|
&mut buf,
|
|
None,
|
|
BasicHtmlWriterConfig {
|
|
..Default::default()
|
|
},
|
|
);
|
|
let mut generator = swc_html_codegen::CodeGenerator::new(
|
|
wr,
|
|
swc_html_codegen::CodegenConfig {
|
|
minify: true,
|
|
..Default::default()
|
|
},
|
|
);
|
|
|
|
generator.emit(&document).unwrap();
|
|
}
|
|
|
|
black_box(buf);
|
|
|
|
Ok(())
|
|
})
|
|
})
|
|
.unwrap();
|
|
}
|
|
|
|
fn run_document_fragment(src: &str) {
|
|
testing::run_test2(false, |cm, handler| {
|
|
HANDLER.set(&handler, || {
|
|
let fm = cm.new_source_file(FileName::Anon, src.into());
|
|
|
|
let mut errors = vec![];
|
|
let context_element_namespace = Namespace::HTML;
|
|
let context_element_tag_name = "template";
|
|
let context_element = Element {
|
|
span: Default::default(),
|
|
namespace: context_element_namespace,
|
|
tag_name: context_element_tag_name.into(),
|
|
attributes: vec![],
|
|
is_self_closing: false,
|
|
children: vec![],
|
|
content: None,
|
|
};
|
|
let mut document: DocumentFragment = parse_file_as_document_fragment(
|
|
&fm,
|
|
&context_element,
|
|
DocumentMode::NoQuirks,
|
|
None,
|
|
ParserConfig {
|
|
..Default::default()
|
|
},
|
|
&mut errors,
|
|
)
|
|
.unwrap();
|
|
|
|
for err in errors {
|
|
err.to_diagnostics(&handler).emit();
|
|
}
|
|
|
|
minify_document_fragment(&mut document, &context_element, &MinifyOptions::default());
|
|
|
|
let mut buf = String::new();
|
|
{
|
|
let wr = BasicHtmlWriter::new(
|
|
&mut buf,
|
|
None,
|
|
BasicHtmlWriterConfig {
|
|
..Default::default()
|
|
},
|
|
);
|
|
let mut generator = swc_html_codegen::CodeGenerator::new(
|
|
wr,
|
|
swc_html_codegen::CodegenConfig {
|
|
minify: true,
|
|
..Default::default()
|
|
},
|
|
);
|
|
|
|
generator.emit(&document).unwrap();
|
|
}
|
|
|
|
black_box(buf);
|
|
|
|
Ok(())
|
|
})
|
|
})
|
|
.unwrap();
|
|
}
|