zola/components/library/src/library.rs

354 lines
13 KiB
Rust
Raw Normal View History

2018-10-02 14:42:34 +00:00
use std::collections::{HashMap, HashSet};
use std::path::{Path, PathBuf};
use slotmap::{DenseSlotMap, Key};
use front_matter::SortBy;
use content::{Page, Section};
2018-10-31 07:18:57 +00:00
use sorting::{find_siblings, sort_pages_by_date, sort_pages_by_weight};
2018-10-02 14:42:34 +00:00
2018-10-05 17:34:27 +00:00
/// Houses everything about pages and sections
/// Think of it as a database where each page and section has an id (Key here)
/// that can be used to find the actual value
/// Sections and pages can then refer to other elements by those keys, which are very cheap to
/// copy.
/// We can assume the keys are always existing as removing a page/section deletes all references
/// to that key.
2018-10-02 14:42:34 +00:00
#[derive(Debug)]
pub struct Library {
2018-10-05 17:34:27 +00:00
/// All the pages of the site
2018-10-02 14:42:34 +00:00
pages: DenseSlotMap<Page>,
2018-10-05 17:34:27 +00:00
/// All the sections of the site
2018-10-02 14:42:34 +00:00
sections: DenseSlotMap<Section>,
2018-10-05 17:34:27 +00:00
/// A mapping path -> key for pages so we can easily get their key
2018-10-02 14:42:34 +00:00
paths_to_pages: HashMap<PathBuf, Key>,
2018-10-05 17:34:27 +00:00
/// A mapping path -> key for sections so we can easily get their key
pub paths_to_sections: HashMap<PathBuf, Key>,
2018-10-02 14:42:34 +00:00
}
impl Library {
pub fn new(cap_pages: usize, cap_sections: usize) -> Self {
Library {
pages: DenseSlotMap::with_capacity(cap_pages),
sections: DenseSlotMap::with_capacity(cap_sections),
paths_to_pages: HashMap::with_capacity(cap_pages),
paths_to_sections: HashMap::with_capacity(cap_sections),
}
}
2018-10-05 17:34:27 +00:00
/// Add a section and return its Key
2018-10-02 14:42:34 +00:00
pub fn insert_section(&mut self, section: Section) -> Key {
let path = section.file.path.clone();
let key = self.sections.insert(section);
self.paths_to_sections.insert(path, key);
key
}
2018-10-05 17:34:27 +00:00
/// Add a page and return its Key
2018-10-02 14:42:34 +00:00
pub fn insert_page(&mut self, page: Page) -> Key {
let path = page.file.path.clone();
let key = self.pages.insert(page);
self.paths_to_pages.insert(path, key);
key
}
pub fn pages(&self) -> &DenseSlotMap<Page> {
&self.pages
}
pub fn pages_mut(&mut self) -> &mut DenseSlotMap<Page> {
&mut self.pages
}
pub fn pages_values(&self) -> Vec<&Page> {
self.pages.values().collect::<Vec<_>>()
}
pub fn sections(&self) -> &DenseSlotMap<Section> {
&self.sections
}
pub fn sections_mut(&mut self) -> &mut DenseSlotMap<Section> {
&mut self.sections
}
pub fn sections_values(&self) -> Vec<&Section> {
self.sections.values().collect::<Vec<_>>()
}
/// Find out the direct subsections of each subsection if there are some
/// as well as the pages for each section
pub fn populate_sections(&mut self) {
2018-10-31 07:18:57 +00:00
let (root_path, index_path) = self
.sections
.values()
.find(|s| s.is_index())
.map(|s| (s.file.parent.clone(), s.file.path.clone()))
.unwrap();
2018-10-31 07:18:57 +00:00
let root_key = self.paths_to_sections[&index_path];
// We are going to get both the ancestors and grandparents for each section in one go
let mut ancestors: HashMap<PathBuf, Vec<_>> = HashMap::new();
let mut subsections: HashMap<PathBuf, Vec<_>> = HashMap::new();
2018-10-02 14:42:34 +00:00
for section in self.sections.values_mut() {
// Make sure the pages of a section are empty since we can call that many times on `serve`
section.pages = vec![];
section.ignored_pages = vec![];
2018-10-02 14:42:34 +00:00
if let Some(ref grand_parent) = section.file.grand_parent {
subsections
.entry(grand_parent.join("_index.md"))
2018-10-02 14:42:34 +00:00
.or_insert_with(|| vec![])
.push(section.file.path.clone());
}
// Index has no ancestors, no need to go through it
if section.is_index() {
ancestors.insert(section.file.path.clone(), vec![]);
continue;
}
let mut path = root_path.clone();
// Index section is the first ancestor of every single section
2018-10-18 21:20:29 +00:00
let mut parents = vec![root_key];
for component in &section.file.components {
path = path.join(component);
// Skip itself
if path == section.file.parent {
continue;
}
if let Some(section_key) = self.paths_to_sections.get(&path.join("_index.md")) {
parents.push(*section_key);
}
}
ancestors.insert(section.file.path.clone(), parents);
2018-10-02 14:42:34 +00:00
}
for (key, page) in &mut self.pages {
let mut parent_section_path = page.file.parent.join("_index.md");
while let Some(section_key) = self.paths_to_sections.get(&parent_section_path) {
let parent_is_transparent;
// We need to get a reference to a section later so keep the scope of borrowing small
{
let mut section = self.sections.get_mut(*section_key).unwrap();
section.pages.push(key);
parent_is_transparent = section.meta.transparent;
}
2018-10-31 07:18:57 +00:00
page.ancestors =
ancestors.get(&parent_section_path).cloned().unwrap_or_else(|| vec![]);
// Don't forget to push the actual parent
page.ancestors.push(*section_key);
// Find the page template if one of a parent has page_template set
// Stops after the first one found, keep in mind page.ancestors
// is [index, ..., parent] so we need to reverse it first
if page.meta.template.is_none() {
for ancestor in page.ancestors.iter().rev() {
let s = self.sections.get(*ancestor).unwrap();
if s.meta.page_template.is_some() {
page.meta.template = s.meta.page_template.clone();
break;
}
}
}
if !parent_is_transparent {
break;
}
// We've added `_index.md` so if we are here so we need to go up twice
match parent_section_path.clone().parent().unwrap().parent() {
Some(parent) => parent_section_path = parent.join("_index.md"),
None => break,
}
2018-10-02 14:42:34 +00:00
}
}
self.sort_sections_pages();
2018-10-02 14:42:34 +00:00
let sections = self.paths_to_sections.clone();
let mut sections_weight = HashMap::new();
for (key, section) in &self.sections {
sections_weight.insert(key, section.meta.weight);
}
for section in self.sections.values_mut() {
if let Some(ref children) = subsections.get(&section.file.path) {
let mut children: Vec<_> = children.iter().map(|p| sections[p]).collect();
children.sort_by(|a, b| sections_weight[a].cmp(&sections_weight[b]));
section.subsections = children;
2018-10-02 14:42:34 +00:00
}
2018-10-31 07:18:57 +00:00
section.ancestors =
ancestors.get(&section.file.path).cloned().unwrap_or_else(|| vec![]);
2018-10-02 14:42:34 +00:00
}
}
/// Sort all sections pages
pub fn sort_sections_pages(&mut self) {
2018-10-02 14:42:34 +00:00
let mut updates = HashMap::new();
for (key, section) in &self.sections {
let (sorted_pages, cannot_be_sorted_pages) = match section.meta.sort_by {
SortBy::None => continue,
SortBy::Date => {
2018-10-31 07:18:57 +00:00
let data = section
.pages
2018-10-02 14:42:34 +00:00
.iter()
.map(|k| {
if let Some(page) = self.pages.get(*k) {
(k, page.meta.datetime, page.permalink.as_ref())
} else {
unreachable!("Sorting got an unknown page")
}
})
.collect();
sort_pages_by_date(data)
2018-10-31 07:18:57 +00:00
}
2018-10-02 14:42:34 +00:00
SortBy::Weight => {
2018-10-31 07:18:57 +00:00
let data = section
.pages
2018-10-02 14:42:34 +00:00
.iter()
.map(|k| {
if let Some(page) = self.pages.get(*k) {
(k, page.meta.weight, page.permalink.as_ref())
} else {
unreachable!("Sorting got an unknown page")
}
})
.collect();
sort_pages_by_weight(data)
}
};
updates.insert(key, (sorted_pages, cannot_be_sorted_pages, section.meta.sort_by));
}
for (key, (sorted, cannot_be_sorted, sort_by)) in updates {
// Find sibling between sorted pages first
2018-10-31 07:18:57 +00:00
let with_siblings = find_siblings(
sorted
.iter()
.map(|k| {
if let Some(page) = self.pages.get(*k) {
(k, page.is_draft())
} else {
unreachable!("Sorting got an unknown page")
}
})
.collect(),
);
2018-10-02 14:42:34 +00:00
for (k2, val1, val2) in with_siblings {
if let Some(page) = self.pages.get_mut(k2) {
match sort_by {
SortBy::Date => {
page.earlier = val2;
page.later = val1;
2018-10-31 07:18:57 +00:00
}
2018-10-02 14:42:34 +00:00
SortBy::Weight => {
page.lighter = val1;
page.heavier = val2;
2018-10-31 07:18:57 +00:00
}
SortBy::None => unreachable!("Impossible to find siblings in SortBy::None"),
2018-10-02 14:42:34 +00:00
}
} else {
unreachable!("Sorting got an unknown page")
}
}
if let Some(s) = self.sections.get_mut(key) {
s.pages = sorted;
s.ignored_pages = cannot_be_sorted;
}
}
}
2018-10-05 17:34:27 +00:00
/// Find all the orphan pages: pages that are in a folder without an `_index.md`
2018-10-02 14:42:34 +00:00
pub fn get_all_orphan_pages(&self) -> Vec<&Page> {
2018-10-31 07:18:57 +00:00
let pages_in_sections =
self.sections.values().flat_map(|s| &s.pages).collect::<HashSet<_>>();
2018-10-02 14:42:34 +00:00
self.pages
2018-10-05 13:03:22 +00:00
.iter()
.filter(|(key, _)| !pages_in_sections.contains(&key))
.map(|(_, page)| page)
2018-10-02 14:42:34 +00:00
.collect()
}
pub fn find_parent_section(&self, path: &Path) -> Option<&Section> {
let page_key = self.paths_to_pages[path];
for s in self.sections.values() {
if s.pages.contains(&page_key) {
2018-10-31 07:18:57 +00:00
return Some(s);
}
}
None
}
/// Only used in tests
pub fn get_section_key(&self, path: &PathBuf) -> Option<&Key> {
self.paths_to_sections.get(path)
}
2018-10-02 14:42:34 +00:00
pub fn get_section(&self, path: &PathBuf) -> Option<&Section> {
self.sections.get(self.paths_to_sections.get(path).cloned().unwrap_or_default())
}
pub fn get_section_mut(&mut self, path: &PathBuf) -> Option<&mut Section> {
self.sections.get_mut(self.paths_to_sections.get(path).cloned().unwrap_or_default())
}
pub fn get_section_by_key(&self, key: Key) -> &Section {
self.sections.get(key).unwrap()
}
pub fn get_section_mut_by_key(&mut self, key: Key) -> &mut Section {
self.sections.get_mut(key).unwrap()
}
pub fn get_section_path_by_key(&self, key: Key) -> &str {
&self.get_section_by_key(key).file.relative
}
2018-10-02 14:42:34 +00:00
pub fn get_page(&self, path: &PathBuf) -> Option<&Page> {
self.pages.get(self.paths_to_pages.get(path).cloned().unwrap_or_default())
}
pub fn get_page_by_key(&self, key: Key) -> &Page {
self.pages.get(key).unwrap()
}
pub fn get_page_mut_by_key(&mut self, key: Key) -> &mut Page {
self.pages.get_mut(key).unwrap()
}
2018-10-05 17:34:27 +00:00
pub fn remove_section(&mut self, path: &PathBuf) -> Option<Section> {
if let Some(k) = self.paths_to_sections.remove(path) {
self.sections.remove(k)
} else {
None
}
}
pub fn remove_page(&mut self, path: &PathBuf) -> Option<Page> {
2018-10-02 14:42:34 +00:00
if let Some(k) = self.paths_to_pages.remove(path) {
self.pages.remove(k)
} else {
None
}
}
2018-10-05 17:34:27 +00:00
/// Used in rebuild, to check if we know it already
pub fn contains_section(&self, path: &PathBuf) -> bool {
self.paths_to_sections.contains_key(path)
}
/// Used in rebuild, to check if we know it already
2018-10-02 14:42:34 +00:00
pub fn contains_page(&self, path: &PathBuf) -> bool {
self.paths_to_pages.contains_key(path)
}
}