Parallelize taxonomy rendering

This commit is contained in:
Vincent Prouillet 2017-07-05 19:34:41 +09:00
parent 015f146792
commit ae8335c84b
3 changed files with 58 additions and 25 deletions

View file

@ -4,13 +4,19 @@ Tested with python3 and probably does not work on Windows.
""" """
import datetime import datetime
import os import os
import random
import shutil import shutil
TAGS = ["a", "b", "c", "d", "e", "f", "g"]
CATEGORIES = ["c1", "c2", "c3", "c4"]
PAGE = """ PAGE = """
+++ +++
title = "Hello" title = "Hello"
date = "REPLACE_ME" date = "REPLACE_DATE"
tags = REPLACE_TAG
category = "REPLACE_CATEGORY"
+++ +++
# Modus cognitius profanam ne duae virtutis mundi # Modus cognitius profanam ne duae virtutis mundi
@ -85,7 +91,7 @@ if __name__ == "__main__":
""" """
def gen_skeleton(name): def gen_skeleton(name, is_blog):
if os.path.exists(name): if os.path.exists(name):
shutil.rmtree(name) shutil.rmtree(name)
@ -93,7 +99,18 @@ def gen_skeleton(name):
os.makedirs(os.path.join(name, "static")) os.makedirs(os.path.join(name, "static"))
with open(os.path.join(name, "config.toml"), "w") as f: with open(os.path.join(name, "config.toml"), "w") as f:
f.write(""" if is_blog:
f.write("""
title = "My site"
base_url = "https://replace-this-with-your-url.com"
generate_tags_pages = true
generate_categories_pages = true
[extra.author]
name = "Vincent Prouillet"
""")
else:
f.write("""
title = "My site" title = "My site"
base_url = "https://replace-this-with-your-url.com" base_url = "https://replace-this-with-your-url.com"
@ -101,13 +118,14 @@ base_url = "https://replace-this-with-your-url.com"
name = "Vincent Prouillet" name = "Vincent Prouillet"
""") """)
# Re-use the test templates # Re-use the test templates
shutil.copytree("../test_site/templates", os.path.join(name, "templates")) shutil.copytree("../test_site/templates", os.path.join(name, "templates"))
def gen_section(path, num_pages, paginate): def gen_section(path, num_pages, is_blog):
with open(os.path.join(path, "_index.md"), "w") as f: with open(os.path.join(path, "_index.md"), "w") as f:
if paginate: if is_blog:
f.write(""" f.write("""
+++ +++
paginate_by = 5 paginate_by = 5
@ -121,24 +139,29 @@ template = "section_paginated.html"
day = datetime.date.today() day = datetime.date.today()
for (i, page) in enumerate(range(0, num_pages)): for (i, page) in enumerate(range(0, num_pages)):
with open(os.path.join(path, "page-{}.md".format(i)), "w") as f: with open(os.path.join(path, "page-{}.md".format(i)), "w") as f:
f.write(PAGE.replace("REPLACE_ME", str(day + datetime.timedelta(days=1)))) f.write(
PAGE
.replace("REPLACE_DATE", str(day + datetime.timedelta(days=1)))
.replace("REPLACE_CATEGORY", random.choice(CATEGORIES))
.replace("REPLACE_TAG", str([random.choice(TAGS), random.choice(TAGS)]))
)
def gen_site(name, sections, num_pages_per_section, paginate=False): def gen_site(name, sections, num_pages_per_section, is_blog=False):
gen_skeleton(name) gen_skeleton(name, is_blog)
for section in sections: for section in sections:
path = os.path.join(name, "content", section) if section else os.path.join(name, "content") path = os.path.join(name, "content", section) if section else os.path.join(name, "content")
if section: if section:
os.makedirs(path) os.makedirs(path)
gen_section(path, num_pages_per_section, paginate) gen_section(path, num_pages_per_section, is_blog)
if __name__ == "__main__": if __name__ == "__main__":
gen_site("small-blog", [""], 30, paginate=True) gen_site("small-blog", [""], 30, is_blog=True)
gen_site("medium-blog", [""], 250, paginate=True) gen_site("medium-blog", [""], 250, is_blog=True)
gen_site("big-blog", [""], 1000, paginate=True) gen_site("big-blog", [""], 1000, is_blog=True)
gen_site("huge-blog", [""], 10000, paginate=True) gen_site("huge-blog", [""], 10000, is_blog=True)
gen_site("small-kb", ["help", "help1", "help2", "help3", "help4", "help5", "help6", "help7", "help8", "help9"], 10) gen_site("small-kb", ["help", "help1", "help2", "help3", "help4", "help5", "help6", "help7", "help8", "help9"], 10)
gen_site("medium-kb", ["help", "help1", "help2", "help3", "help4", "help5", "help6", "help7", "help8", "help9"], 100) gen_site("medium-kb", ["help", "help1", "help2", "help3", "help4", "help5", "help6", "help7", "help8", "help9"], 100)

View file

@ -44,3 +44,12 @@ fn bench_render_rss_feed(b: &mut test::Bencher) {
site.set_output_path(&public); site.set_output_path(&public);
b.iter(|| site.render_rss_feed().unwrap()); b.iter(|| site.render_rss_feed().unwrap());
} }
#[bench]
fn bench_render_categories(b: &mut test::Bencher) {
let mut site = setup_site("huge-blog");
let tmp_dir = TempDir::new("benches").expect("create temp dir");
let public = &tmp_dir.path().join("public");
site.set_output_path(&public);
b.iter(|| site.render_categories().unwrap());
}

View file

@ -489,23 +489,24 @@ impl Site {
} }
ensure_directory_exists(&self.output_path)?; ensure_directory_exists(&self.output_path)?;
let output_path = self.output_path.join(&taxonomy.get_list_name()); let output_path = self.output_path.join(&taxonomy.get_list_name());
let list_output = taxonomy.render_list(&self.tera, &self.config)?; let list_output = taxonomy.render_list(&self.tera, &self.config)?;
create_directory(&output_path)?; create_directory(&output_path)?;
create_file(&output_path.join("index.html"), &self.inject_livereload(list_output))?; create_file(&output_path.join("index.html"), &self.inject_livereload(list_output))?;
for item in &taxonomy.items { taxonomy
let single_output = taxonomy.render_single_item(item, &self.tera, &self.config)?; .items
.par_iter()
create_directory(&output_path.join(&item.slug))?; .map(|item| {
create_file( let single_output = taxonomy.render_single_item(item, &self.tera, &self.config)?;
&output_path.join(&item.slug).join("index.html"), create_directory(&output_path.join(&item.slug))?;
&self.inject_livereload(single_output) create_file(
)?; &output_path.join(&item.slug).join("index.html"),
} &self.inject_livereload(single_output)
)
Ok(()) })
.fold(|| Ok(()), Result::and)
.reduce(|| Ok(()), Result::and)
} }
/// What it says on the tin /// What it says on the tin