diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 066a07a..b733e6f 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -10,11 +10,19 @@ use std::env; | |||
10 | use std::path::{Path, PathBuf}; | 10 | use std::path::{Path, PathBuf}; |
11 | 11 | ||
12 | mod pre_process; | 12 | mod pre_process; |
13 | use pre_process::Section; | ||
13 | 14 | ||
14 | fn main() { | 15 | fn main() { |
15 | let raw_files = env::var("RAW_FILES").unwrap_or("S:\\grilist\\acd\\acd_character_parser\\characters\\".into()); | 16 | let raw_files = env::var("RAW_FILES").unwrap_or("S:\\grilist\\acd\\acd_character_parser\\characters\\".into()); |
16 | let base_path = Path::new(&raw_files); | 17 | let base_path = Path::new(&raw_files); |
17 | 18 | ||
19 | let mut sections: Vec<Section> = vec![]; | ||
20 | sections.push(Section { | ||
21 | name: "image".into(), | ||
22 | re: Regex::new(r#"(?is)<H3 id="section99">.*<p><a href="(.*?)">View Full Size Image"#).unwrap(), | ||
23 | content: String::new(), | ||
24 | }); | ||
25 | |||
18 | for entry in WalkDir::new(base_path).min_depth(1).into_iter().filter_map(|e| e.ok()) { | 26 | for entry in WalkDir::new(base_path).min_depth(1).into_iter().filter_map(|e| e.ok()) { |
19 | let mut f = File::open(entry.path()).expect("could not open file"); | 27 | let mut f = File::open(entry.path()).expect("could not open file"); |
20 | let mut buf = String::new(); | 28 | let mut buf = String::new(); |
@@ -24,5 +32,9 @@ fn main() { | |||
24 | } | 32 | } |
25 | 33 | ||
26 | let buf = pre_process::strip_irrelevant_content(&buf); | 34 | let buf = pre_process::strip_irrelevant_content(&buf); |
35 | |||
36 | pre_process::split_sections(&buf, &mut sections); | ||
37 | |||
38 | println!("{}", sections[0].content); | ||
27 | } | 39 | } |
28 | } | 40 | } |