use dalet::{ daletl::ToDaletl, daletpack::*, typed::{Body, Hl, NNBody, TNArgument, Tag}, }; use flate2::Compression; use std::io::Write; #[macro_export] macro_rules! iprint { ($name:expr, $func:expr) => {{ let start = std::time::Instant::now(); let result = $func; let elapsed = start.elapsed(); println!("{} ({:#?}): {} bytes", $name, elapsed, result.len()); result }}; } pub fn compress_deflate(data: &Vec) -> std::io::Result> { let mut c = flate2::write::DeflateEncoder::new(Vec::new(), Compression::default()); c.write(data)?; c.finish() } pub fn compress_zlib(data: &Vec) -> std::io::Result> { let mut c = flate2::write::ZlibEncoder::new(Vec::new(), Compression::default()); c.write(data)?; c.finish() } #[test] fn bench() { let page: Vec = vec![ Tag::H("I am heading".to_owned(), Hl::One), Tag::H("Heading 2".to_owned(), Hl::Two), Tag::El(NNBody::Tags(vec![ Tag::El(NNBody::Text("Some ".to_owned())), Tag::B("bold".to_owned()), Tag::I("italic".to_owned()), Tag::S("strike".to_owned()), ])), Tag::Br, Tag::Code("Hello world".to_owned(), TNArgument::Null), Tag::Br, Tag::Ol(vec![ Tag::El(NNBody::Text("abc".to_owned())), Tag::El(NNBody::Tags(vec![ Tag::El(NNBody::Text("def".to_owned())), Tag::Ol(vec![ Tag::El(NNBody::Text("defabc".to_owned())), Tag::El(NNBody::Text("defdef".to_owned())), ]), ])), Tag::El(NNBody::Text("xyz".to_owned())), ]), Tag::Br, Tag::El(NNBody::Tags(vec![ Tag::El(NNBody::Text("Lorem ipsum ".to_owned())), Tag::Link( Body::Tags(vec![Tag::Img("https://my-picture".to_owned())]), "https://some-link".to_owned(), ), Tag::El(NNBody::Text( " dolor sit amet consequetur adipiscing elit".to_owned(), )), ])), Tag::Table(vec![ Tag::Tpcol(vec![ Tag::El(NNBody::Text("Col 1".to_owned())), Tag::El(NNBody::Text("Col 2".to_owned())), Tag::El(NNBody::Text("Col 3".to_owned())), ]), Tag::Tcol(vec![ Tag::El(NNBody::Text("Never gonna".to_owned())), Tag::El(NNBody::Text("give you".to_owned())), Tag::El(NNBody::Text("up".to_owned())), ]), ]), ]; let dalet_page = page.to_dl(); let markdown = iprint!("Markdown", include_str!("./bench.md").as_bytes().to_vec()); let daletpack = iprint!("Daletpack", encode_no_compress(&dalet_page).unwrap()); let messagepack = iprint!("Messagepack", rmp_serde::to_vec(&dalet_page).unwrap()); let bincode = iprint!("Bincode", bincode::serialize(&dalet_page).unwrap()); println!(); iprint!("Markdown zstd", utils::compress_zstd(&markdown).unwrap()); iprint!("Daletpack zstd", utils::compress_zstd(&daletpack).unwrap()); iprint!( "Messagepack zstd", utils::compress_zstd(&messagepack).unwrap() ); iprint!("Bincode zstd", utils::compress_zstd(&bincode).unwrap()); println!(); iprint!("Markdown Zlib", compress_zlib(&markdown).unwrap()); iprint!("Daletpack Zlib", compress_zlib(&daletpack).unwrap()); iprint!("Messagepack Zlib", compress_zlib(&messagepack).unwrap()); iprint!("Bincode Zlib", compress_zlib(&bincode).unwrap()); println!(); iprint!("Markdown deflate", compress_deflate(&markdown).unwrap()); iprint!("Daletpack deflate", compress_deflate(&daletpack).unwrap()); iprint!( "Messagepack deflate", compress_deflate(&messagepack).unwrap() ); iprint!("Bincode deflate", compress_deflate(&bincode).unwrap()); }