]>
Commit | Line | Data |
---|---|---|
1 | mod gemini_parser; | |
2 | mod file_finder; | |
3 | mod file_handler; | |
4 | ||
5 | use std::io::Result; | |
6 | use std::process::exit; | |
7 | use std::env::current_dir; | |
8 | use std::fs::{create_dir_all, remove_dir_all}; | |
9 | ||
10 | use crate::file_finder::find_files; | |
11 | use crate::file_handler::FileHandler; | |
12 | ||
13 | fn main() -> Result<()> { | |
14 | let source = current_dir()?; | |
15 | let source_name = source.file_name().unwrap().to_string_lossy(); | |
16 | let parent = source.parent().unwrap(); | |
17 | let destination_name = format!("{}_html", source_name); | |
18 | let destination = parent.join(destination_name); | |
19 | ||
20 | // Step 1. Identify the files | |
21 | let files = find_files(&source); | |
22 | ||
23 | // Step 2. Prepare the target priority | |
24 | match remove_dir_all(&destination) { | |
25 | _ => {} | |
26 | }; | |
27 | create_dir_all(&destination)?; | |
28 | ||
29 | // Step 3. Load the layout | |
30 | let mut file_handler = FileHandler::default(); | |
31 | match file_handler.get_layout_or_panic(&files) { | |
32 | Ok(_) => {}, | |
33 | Err(error) => { | |
34 | eprintln!("{}", error); | |
35 | exit(1); | |
36 | } | |
37 | } | |
38 | ||
39 | // Step 4. Process all files | |
40 | file_handler.handle_all(&source, &destination, &files); | |
41 | Ok(()) | |
42 | } |