added missing sections to new document

This commit is contained in:
Andrei Stoica 2023-06-22 16:54:00 -04:00
parent 0fdef6ed6e
commit 061afcf9cd
1 changed files with 23 additions and 16 deletions

View File

@ -5,13 +5,15 @@ use crate::config::Config;
use crate::todo_file::TodoFile; use crate::todo_file::TodoFile;
use chrono::naive::NaiveDate; use chrono::naive::NaiveDate;
use chrono::{Datelike, Local}; use chrono::{Datelike, Local};
use comrak::nodes::{AstNode, NodeValue}; use comrak::nodes::{AstNode, NodeHeading, NodeValue};
use comrak::{format_commonmark, parse_document, Arena}; use comrak::{format_commonmark, parse_document, Arena};
use comrak::{ComrakExtensionOptions, ComrakOptions, ComrakParseOptions}; use comrak::{ComrakExtensionOptions, ComrakOptions, ComrakParseOptions};
use std::borrow::Borrow; use std::borrow::Borrow;
use std::collections::HashSet;
use std::env; use std::env;
use std::fs::{read, read_dir, File}; use std::fs::{read, read_dir, File};
use std::io::Write; use std::io::Write;
use std::iter::FromIterator;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::process::Command; use std::process::Command;
use std::str; use std::str;
@ -60,26 +62,32 @@ fn main() {
); );
let mut today_file_path = data_dir.clone(); let mut today_file_path = data_dir.clone();
today_file_path.push(today_file_name); today_file_path.push(today_file_name);
let sections: HashSet<String> =
HashSet::from_iter(cfg.sections.clone().unwrap().into_iter());
let arena = Arena::new(); let arena = Arena::new();
let root = parse_todo_file(&latest_file, &arena); let root = parse_todo_file(&latest_file, &arena);
//println!("{:#?}", root); let found_sections: HashSet<String> = HashSet::from_iter(
//println!("======================================================="); &mut cleanup_sections(&root, &cfg.sections.unwrap()).into_iter(),
//println!("{:#?}", root.children().collect::<Vec<_>>()); );
cleanup_sections(&root, &cfg.sections.unwrap(), 2); let missing_sections: Vec<&String> = sections.symmetric_difference(&found_sections).collect();
//println!("{:#?}", root);
let mut new_doc = vec![]; let mut new_doc = vec![];
format_commonmark(root, &ComrakOptions::default(), &mut new_doc).unwrap(); format_commonmark(root, &ComrakOptions::default(), &mut new_doc).unwrap();
for section in missing_sections.iter().map(|s| format!("\n## {}\n", s)) {
new_doc.append(&mut section.as_bytes().to_vec())
}
let mut new_file = File::create(today_file_path.clone()).unwrap(); let mut new_file = File::create(today_file_path.clone()).unwrap();
new_file.write_all(&new_doc).unwrap(); new_file.write_all(&new_doc).unwrap();
Some(today_file_path) Some(today_file_path)
}, }
Some(_) => { Some(_) => {
println!("Todays file was created"); println!("Todays file was created");
Some(latest_file.file.path()) Some(latest_file.file.path())
}, }
_ => { _ => {
println!("Could not get today's date"); println!("Could not get today's date");
None None
@ -120,15 +128,12 @@ fn parse_todo_file<'a>(file: &TodoFile, arena: &'a Arena<AstNode<'a>>) -> &'a As
parse_document(arena, contents, options) parse_document(arena, contents, options)
} }
fn cleanup_sections<'a>( fn cleanup_sections<'a>(root: &'a AstNode<'a>, sections: &Vec<String>) -> Vec<String> {
root: &'a AstNode<'a>, let mut found_sections: Vec<String> = Vec::new();
sections: &Vec<String>, for node in root.reverse_children() {
target_level: u8,
) -> &'a AstNode<'a> {
for node in root.reverse_children(){
let node_ref = &node.data.borrow(); let node_ref = &node.data.borrow();
if let NodeValue::Heading(heading) = node_ref.value { if let NodeValue::Heading(heading) = node_ref.value {
if heading.level != target_level { if heading.level < 3 {
continue; continue;
} }
println!("at level {}", heading.level); println!("at level {}", heading.level);
@ -162,10 +167,12 @@ fn cleanup_sections<'a>(
} }
} }
node.detach(); // remove heading as well node.detach(); // remove heading as well
} else {
found_sections.push(title.to_string());
} }
}; };
} }
root found_sections
} }
fn get_data_dir(dir_name: &str) -> PathBuf { fn get_data_dir(dir_name: &str) -> PathBuf {