2023-10-20 20:16:22 -04:00
|
|
|
use std::path::Path;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2023-10-20 19:13:22 -04:00
|
|
|
use crate::cli::parameters::BuildArgs;
|
|
|
|
use crate::config::Config;
|
2023-10-20 20:16:22 -04:00
|
|
|
use tokio::task::JoinHandle;
|
|
|
|
use walkdir::WalkDir;
|
2023-10-20 19:13:22 -04:00
|
|
|
|
|
|
|
pub(crate) async fn build_site(args: BuildArgs) -> Result<(), Box<dyn std::error::Error>> {
|
2023-10-20 20:16:22 -04:00
|
|
|
let config = Config::load_from_file(args.config).await?;
|
2023-10-21 18:00:51 -04:00
|
|
|
let org_files = {
|
|
|
|
let mut ret = Vec::new();
|
|
|
|
let org_files_iter = get_org_files(config.get_root_directory())?;
|
|
|
|
for entry in org_files_iter {
|
|
|
|
ret.push(entry.await??);
|
|
|
|
}
|
|
|
|
ret
|
|
|
|
};
|
|
|
|
let parsed_org_files = {
|
|
|
|
let mut ret = Vec::new();
|
|
|
|
for (path, contents) in org_files.iter() {
|
|
|
|
let parsed = organic::parser::parse_file(contents.as_str(), Some(path))?;
|
|
|
|
ret.push((path, contents, parsed));
|
|
|
|
}
|
|
|
|
ret
|
|
|
|
};
|
2023-10-20 20:16:22 -04:00
|
|
|
|
2023-10-20 19:13:22 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
2023-10-20 20:16:22 -04:00
|
|
|
|
|
|
|
async fn read_file(path: PathBuf) -> std::io::Result<(PathBuf, String)> {
|
|
|
|
let contents = tokio::fs::read_to_string(&path).await?;
|
|
|
|
Ok((path, contents))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_org_files<P: AsRef<Path>>(
|
|
|
|
root_dir: P,
|
|
|
|
) -> Result<impl Iterator<Item = JoinHandle<std::io::Result<(PathBuf, String)>>>, walkdir::Error> {
|
|
|
|
let org_files = WalkDir::new(root_dir)
|
|
|
|
.into_iter()
|
|
|
|
.filter(|e| match e {
|
|
|
|
Ok(dir_entry) => {
|
|
|
|
dir_entry.file_type().is_file()
|
|
|
|
&& Path::new(dir_entry.file_name())
|
|
|
|
.extension()
|
|
|
|
.map(|ext| ext.to_ascii_lowercase() == "org")
|
|
|
|
.unwrap_or(false)
|
|
|
|
}
|
|
|
|
Err(_) => true,
|
|
|
|
})
|
|
|
|
.collect::<Result<Vec<_>, _>>()?;
|
|
|
|
let org_files = org_files
|
|
|
|
.into_iter()
|
|
|
|
.map(walkdir::DirEntry::into_path)
|
|
|
|
.map(|path| tokio::spawn(read_file(path)));
|
|
|
|
Ok(org_files)
|
|
|
|
}
|