added Urgency support

This commit is contained in:
specCon18 2024-06-29 01:33:53 -04:00
parent 4917f464a2
commit 84db46689c
5 changed files with 127 additions and 112 deletions

View file

@ -1 +1 @@
flake-profile-1-link flake-profile-3-link

View file

@ -0,0 +1 @@
/nix/store/s3bdhnm2dx7jldz6179klz4lcx97jnwa-nix-shell-env

View file

@ -0,0 +1 @@
/nix/store/i3rlyi8v4kyhgadm396y1cqv2grr7w14-nix-shell-env

1
result Symbolic link
View file

@ -0,0 +1 @@
/nix/store/1027jkd1x56049465arvbvyrcghm25rg-yunodo-0.6.0

View file

@ -1,6 +1,6 @@
use clap::Parser; use clap::Parser;
use std::{io, fs, path::PathBuf,collections::HashMap}; use std::{io, fs, path::PathBuf, collections::HashMap};
//TODO: implement mod file_tree :ODOT//
#[derive(Parser)] #[derive(Parser)]
#[command(name = "YUNODO")] #[command(name = "YUNODO")]
#[command(version = "0.5.0")] #[command(version = "0.5.0")]
@ -13,32 +13,30 @@ struct Cli {
#[arg(short, long)] #[arg(short, long)]
debug: Option<bool>, debug: Option<bool>,
} }
fn main() { fn main() {
let cli = Cli::parse(); let cli = Cli::parse();
if let Some(path) = cli.path.as_deref() { if let Some(path) = cli.path.as_deref() {
let path_string = path.display().to_string(); let path_string = path.display().to_string();
let mut output_csv_item: String = String::new(); let mut output_csv_item: String = String::new();
match read_files_in_directory(&path_string.as_str()) { match read_files_in_directory(&path_string.as_str()) {
Ok(files_content) => { Ok(files_content) => {
for (filename, lines) in files_content { for (filename, lines) in files_content {
for (line_number, line) in lines.iter().enumerate() { for (line_number, line) in lines.iter().enumerate() {
// Check if the line starts with "//" and not within strings or other signatures if !line.contains("//TODO:") {
if !line.contains("//") {
continue; continue;
} }
// Variables to track if we are within a string, comment, or signature
let mut in_string = false; let mut in_string = false;
let mut in_comment = false; let mut in_comment = false;
let mut _in_signature = false;
// Iterate through each character in the line
for (i, c) in line.chars().enumerate() { for (i, c) in line.chars().enumerate() {
match c { match c {
'"' => in_string = !in_string, '"' => in_string = !in_string,
'/' if !in_string => { '/' if !in_string => {
if i + 1 < line.len() && line.chars().nth(i + 1).unwrap() == '/' { if i + 1 < line.len() && line.chars().nth(i + 1).unwrap() == '/' {
// Check if it's a comment
in_comment = true; in_comment = true;
break; break;
} else if i + 1 < line.len() && line.chars().nth(i + 1).unwrap() == '*' { } else if i + 1 < line.len() && line.chars().nth(i + 1).unwrap() == '*' {
@ -46,31 +44,26 @@ fn main() {
} }
} }
'*' if i + 1 < line.len() && line.chars().nth(i + 1).unwrap() == '/' && in_comment => { '*' if i + 1 < line.len() && line.chars().nth(i + 1).unwrap() == '/' && in_comment => {
// Check for end of block comment
in_comment = false; in_comment = false;
break; break;
} }
_ => (), _ => (),
} }
} }
if in_comment { if in_comment {
// Extract TODO comments if let Some(todo_comment) = extract_todo_comment(line) {
let v: Vec<&str> = line.split("//TODO:").collect(); let (adjusted_todo_comment, uscore) = extract_uscore(&todo_comment);
if let Some(last_part) = v.last() { let line_number_str = (line_number + 1).to_string(); // Convert line number to String
if let Some(end_index) = last_part.find(":ODOT//") { let uscore_str = uscore.to_string(); // Convert uscore to String
let extracted = &last_part[..end_index];
// Format output CSV item if !output_csv_item.is_empty() {
if !output_csv_item.is_empty(){ output_csv_item.push_str(",");
//OUTPUT_CSV_TO_APPEND, PATH, FILENAME, LINE_NUMBER, EXTRACTED_COMMENT
output_csv_item = format!("{},{},{},{},{}", output_csv_item, path_string, filename, line_number + 1, extracted);
} else {
//PATH, FILENAME, LINE_NUMBER, EXTRACTED_COMMENT
output_csv_item = format!("{},{},{},{}",path_string, filename, line_number + 1, extracted);
}
} }
output_csv_item.push_str(&format!("{},{},{},{},{}", path_string, filename, line_number_str, adjusted_todo_comment, uscore_str));
} }
} }
} }
} }
} }
@ -78,29 +71,19 @@ fn main() {
eprintln!("Error: {}", err); eprintln!("Error: {}", err);
} }
} }
if let Some(format) = cli.format.as_deref() { if let Some(format) = cli.format.as_deref() {
//TODO: write match to match format and select which output :ODOT//
match format { match format {
"md"|"MD" => out_as_md_table(output_csv_item.clone()), "md" | "MD" => out_as_md_table(output_csv_item.clone()),
"json"|"JSON" => out_as_json_object(output_csv_item.clone()), "json" | "JSON" => out_as_json_object(output_csv_item.clone()),
"yaml"|"YAML" => out_as_yaml_file(output_csv_item.clone()), "yaml" | "YAML" => out_as_yaml_file(output_csv_item.clone()),
"toml"|"TOML" => out_as_toml_file(output_csv_item.clone()), "toml" | "TOML" => out_as_toml_file(output_csv_item.clone()),
_ => println!("That's not a supported format") _ => println!("That's not a supported format")
} }
} }
} }
} }
/// Reads files in a given directory and its subdirectories.
///
/// # Arguments
///
/// * `dir_path` - A string slice representing the path to the directory.
///
/// # Returns
///
/// A Result containing a vector of tuples where each tuple contains the filename and
/// a vector of lines in the file, or an io::Error if an error occurs during file I/O.
fn read_files_in_directory(dir_path: &str) -> io::Result<Vec<(String, Vec<String>)>> { fn read_files_in_directory(dir_path: &str) -> io::Result<Vec<(String, Vec<String>)>> {
let mut files_content = Vec::new(); let mut files_content = Vec::new();
let paths = fs::read_dir(dir_path)?; let paths = fs::read_dir(dir_path)?;
@ -109,13 +92,11 @@ fn read_files_in_directory(dir_path: &str) -> io::Result<Vec<(String, Vec<String
let entry = path?; let entry = path?;
let path = entry.path(); let path = entry.path();
if path.is_file() { if path.is_file() {
// If the entry is a file, read its content
let filename = path.file_name().unwrap().to_string_lossy().into_owned(); let filename = path.file_name().unwrap().to_string_lossy().into_owned();
let content = fs::read_to_string(&path)?; let content = fs::read_to_string(&path)?;
let lines: Vec<String> = content.lines().map(|s| s.to_string()).collect(); let lines: Vec<String> = content.lines().map(|s| s.to_string()).collect();
files_content.push((filename, lines)); files_content.push((filename, lines));
} else if path.is_dir() { } else if path.is_dir() {
// If the entry is a directory, recursively call the function to read its content
let subdir_path = path.to_string_lossy().into_owned(); let subdir_path = path.to_string_lossy().into_owned();
let subdir_content = read_files_in_directory(&subdir_path)?; let subdir_content = read_files_in_directory(&subdir_path)?;
files_content.extend(subdir_content); files_content.extend(subdir_content);
@ -124,63 +105,91 @@ fn read_files_in_directory(dir_path: &str) -> io::Result<Vec<(String, Vec<String
Ok(files_content) Ok(files_content)
} }
fn out_as_md_table(input_csv:String){
//TODO: iterate the input_csv and split into vec @ comma then pop vec backfilling table appending formatted values to new vec to be iterated and displayed :ODOT//
let mut split_input: Vec<&str> = input_csv.split(',').collect();
//Formatting Values
let headers = String::from("| File Path | File Name | Line Number | Comment |");
let divider = String::from("|:----------|:---------:|:-----------:|:--------|");
//Output Vector fn extract_todo_comment(line: &str) -> Option<String> {
let mut table:Vec<String> = Vec::new(); if let Some(start) = line.find("//TODO:") {
if let Some(end) = line[start + "//TODO:".len()..].find(":ODOT//") {
return Some(line[start + "//TODO:".len()..start + "//TODO:".len() + end].trim().to_string());
}
}
None
}
fn extract_uscore(comment: &str) -> (String, u8) {
// Initialize uscore to 0 by default
let mut uscore = 0;
// Check if comment starts with "U:"
if let Some(start_uscore) = comment.find("U:") {
// Calculate the start and end positions for slicing
let start_idx = start_uscore + "U:".len();
if let Some(end_uscore) = comment[start_idx..].find(' ') {
// Extract the number part after "U:"
let num_str = &comment[start_idx..start_idx + end_uscore];
// Attempt to parse the substring as u8
if let Ok(num) = num_str.parse::<u8>() {
uscore = num;
}
}
// Remove "U: number" part from the comment
let new_comment = format!("{}{}", &comment[..start_uscore], &comment[start_uscore + "U: ".len()..]);
return (new_comment, uscore);
}
// Return original comment and 0 uscore if "U:" or a valid number is not found
(comment.to_string(), uscore)
}
fn out_as_md_table(input_csv: String) {
let mut split_input: Vec<&str> = input_csv.split(',').collect();
let headers = String::from("| File Path | File Name | Line Number | Comment | Uscore |");
let divider = String::from("|:----------|:---------:|:-----------:|:--------|:------|");
let mut table: Vec<String> = Vec::new();
table.push(headers); table.push(headers);
table.push(divider); table.push(divider);
split_and_print(&mut split_input, &mut table); split_and_print(&mut split_input, &mut table);
for line in table { for line in table {
println!("{}",line); println!("{}", line);
} }
} }
fn split_csv(vec: &mut Vec<&str>,split:usize) -> Vec<String> {
let mut rows: Vec<String> = Vec::new();
if !vec.is_empty() {
let mut vec2 = vec.split_off(split);
let row = vec.join(",");
rows.push(row);
let mut remaining_rows = split_csv(&mut vec2,split);
rows.append(&mut remaining_rows);
}
rows
}
fn split_and_print(vec: &mut Vec<&str>,table: &mut Vec<String>) { fn split_and_print(vec: &mut Vec<&str>, table: &mut Vec<String>) {
if vec.is_empty() { while !vec.is_empty() {
return; // Extract elements from the vec
} let path = vec.remove(0).trim().to_string();
let name = vec.remove(0).trim().to_string();
let line = vec.remove(0).trim().to_string();
let comment = vec.remove(0).trim().to_string();
let mut vec2 = vec.split_off(4); // Uscore is the last element and needs parsing
let comment = vec.pop(); let uscore = if let Some(last) = vec.pop() {
let line = vec.pop(); last.trim().parse::<u8>().unwrap_or(0)
let name = vec.pop(); } else {
let path = vec.pop(); 0
let spacer = '|'; };
let formatted_row = format!("{} {} {} {} {} {} {} {} {}",spacer,path.unwrap(),spacer,name.unwrap(),spacer,line.unwrap(),spacer,comment.unwrap(),spacer);
table.push(formatted_row); // Format as Markdown table row
split_and_print(&mut vec2, table); let formatted_row = format!("| {} | {} | {} | {} | {} |", path, name, line, comment, uscore);
table.push(formatted_row);
}
} }
fn out_as_json_object(input_csv:String){
fn out_as_json_object(input_csv: String) {
let mut output: Vec<String> = Vec::new();
let object_open_char = "{".to_string(); let object_open_char = "{".to_string();
let object_close_char = "}".to_string(); let object_close_char = "}".to_string();
let depth_counter = 0;
let mut split_input: Vec<&str> = input_csv.split(',').collect(); let mut split_input: Vec<&str> = input_csv.split(',').collect();
let rows:Vec<String> = split_csv(&mut split_input,4); let rows: Vec<String> = split_csv(&mut split_input, 5);
output.push(object_open_char.clone());
let mut output:Vec<String> = Vec::new();
output.push(object_open_char);
for row in rows { for row in rows {
let mut cols: Vec<_> = row.split(',').collect(); let mut cols: Vec<_> = row.split(',').collect();
let obj_open = " {"; let obj_open = " {";
let obj_close = " },"; let obj_close = " },";
let uscore = format!(" \"uscore\":\"{}\",", cols.pop().unwrap());
let comment = format!(" \"todo_comment\":\"{}\",", cols.pop().unwrap()); let comment = format!(" \"todo_comment\":\"{}\",", cols.pop().unwrap());
let line_number = format!(" \"line_number\":\"{}\",", cols.pop().unwrap()); let line_number = format!(" \"line_number\":\"{}\",", cols.pop().unwrap());
let file_name = format!(" \"file_name\":\"{}\",", cols.pop().unwrap()); let file_name = format!(" \"file_name\":\"{}\",", cols.pop().unwrap());
@ -190,89 +199,92 @@ fn out_as_json_object(input_csv:String){
output.push(file_name.clone()); output.push(file_name.clone());
output.push(line_number.clone()); output.push(line_number.clone());
output.push(comment.clone()); output.push(comment.clone());
output.push(uscore.clone());
output.push(obj_close.to_string()); output.push(obj_close.to_string());
} }
output.push(object_close_char); output.push(object_close_char);
for line in output { for line in output {
println!("{}",line) println!("{}", line)
} }
} }
fn out_as_toml_file(input_csv: String) {
// Split input CSV into rows
let mut split_input: Vec<&str> = input_csv.split(',').collect();
// Remove any empty elements fn out_as_toml_file(input_csv: String) {
let mut split_input: Vec<&str> = input_csv.split(',').collect();
split_input.retain(|&x| x.trim() != ""); split_input.retain(|&x| x.trim() != "");
// Define data structures to store todos and headers let mut todos: HashMap<String, Vec<(String, String, u8)>> = HashMap::new();
let mut todos: HashMap<String, Vec<(String, String)>> = HashMap::new();
// Parse each row of the CSV
while !split_input.is_empty() { while !split_input.is_empty() {
let path = split_input.remove(0).trim().to_string(); let path = split_input.remove(0).trim().to_string();
let file = split_input.remove(0).trim().to_string(); let file = split_input.remove(0).trim().to_string();
let line = split_input.remove(0).trim().to_string(); let line = split_input.remove(0).trim().to_string();
let comment = split_input.remove(0).trim().to_string(); let comment = split_input.remove(0).trim().to_string();
let uscore = split_input.remove(0).trim().parse::<u8>().unwrap_or(0);
let header = format!("{}{}", path, file); let header = format!("{}{}", path, file);
// Store todo item under the header todos.entry(header.clone()).or_insert(Vec::new()).push((line.clone(), comment.clone(), uscore));
todos.entry(header.clone()).or_insert(Vec::new()).push((line.clone(), comment.clone()));
} }
// Write todos to TOML file
let mut toml_output = String::new(); let mut toml_output = String::new();
for (header, todo_list) in todos { for (header, todo_list) in todos {
// Write header
toml_output.push_str(&format!("[{}]\n", header)); toml_output.push_str(&format!("[{}]\n", header));
// Write todo items under this header for (i, (line, comment, uscore)) in todo_list.iter().enumerate() {
for (i, (line, comment)) in todo_list.clone().into_iter().enumerate() { toml_output.push_str("[[todo]]\n");
toml_output.push_str(&format!("[[todo]]\n"));
toml_output.push_str(&format!("line = {}\n", line)); toml_output.push_str(&format!("line = {}\n", line));
toml_output.push_str(&format!("comment = \"{}\"\n", comment)); toml_output.push_str(&format!("comment = \"{}\"\n", comment));
toml_output.push_str(&format!("uscore = {}\n", uscore));
if i < todo_list.len() - 1 { if i < todo_list.len() - 1 {
toml_output.push_str("\n"); // Separate todo items with a newline toml_output.push_str("\n");
} }
} }
} }
println!("{}", toml_output); println!("{}", toml_output);
} }
fn out_as_yaml_file(input_csv: String) {
// Split input CSV into rows
let mut split_input: Vec<&str> = input_csv.split(',').collect();
// Remove any empty elements fn out_as_yaml_file(input_csv: String) {
let mut split_input: Vec<&str> = input_csv.split(',').collect();
split_input.retain(|&x| x.trim() != ""); split_input.retain(|&x| x.trim() != "");
// Define data structures to store todos and headers let mut todos: HashMap<String, Vec<(String, String, u8)>> = HashMap::new();
let mut todos: HashMap<String, Vec<(String, String)>> = HashMap::new();
// Parse each row of the CSV
while !split_input.is_empty() { while !split_input.is_empty() {
let path = split_input.remove(0).trim().to_string(); let path = split_input.remove(0).trim().to_string();
let file = split_input.remove(0).trim().to_string(); let file = split_input.remove(0).trim().to_string();
let line = split_input.remove(0).trim().to_string(); let line = split_input.remove(0).trim().to_string();
let comment = split_input.remove(0).trim().to_string(); let comment = split_input.remove(0).trim().to_string();
let uscore = split_input.remove(0).trim().parse::<u8>().unwrap_or(0);
let header = format!("{}{}", path, file); let header = format!("{}{}", path, file);
// Store todo item under the header todos.entry(header.clone()).or_insert(Vec::new()).push((line.clone(), comment.clone(), uscore));
todos.entry(header.clone()).or_insert(Vec::new()).push((line.clone(), comment.clone()));
} }
// Write todos to YAML file
let mut yaml_output = String::new(); let mut yaml_output = String::new();
for (header, todo_list) in todos { for (header, todo_list) in todos {
// Write header
yaml_output.push_str(&format!("\"{}\":\n", header)); yaml_output.push_str(&format!("\"{}\":\n", header));
// Write todo items under this header for (line, comment, uscore) in todo_list {
for (line, comment) in todo_list {
yaml_output.push_str(" \"item\":\n"); yaml_output.push_str(" \"item\":\n");
yaml_output.push_str(&format!(" \"line_number\": \"{}\"\n", line)); yaml_output.push_str(&format!(" \"line_number\": \"{}\"\n", line));
yaml_output.push_str(&format!(" \"comment\": \"{}\"\n", comment)); yaml_output.push_str(&format!(" \"comment\": \"{}\"\n", comment));
yaml_output.push_str(&format!(" \"uscore\": \"{}\"\n", uscore));
} }
} }
// Print YAML output to terminal
println!("{}", yaml_output); println!("{}", yaml_output);
} }
fn split_csv(vec: &mut Vec<&str>, split: usize) -> Vec<String> {
let mut rows: Vec<String> = Vec::new();
if !vec.is_empty() {
let mut vec2 = vec.split_off(split);
let row = vec.join(",");
rows.push(row);
let mut remaining_rows = split_csv(&mut vec2, split);
rows.append(&mut remaining_rows);
}
rows
}