forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.rs
109 lines (98 loc) · 3.22 KB
/
main.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate serde_json;
mod problem;
use std::env;
use std::fs;
use std::path::{Path};
use std::io::Write;
/// main() helps to generate the submission template .rs
fn main() {
let args: Vec<String> = env::args().collect();
if args.len() < 2 {
panic!("problem id must be provided");
}
let id = &args[1];
let id = id.parse::<u32>().expect(&format!("not a number: {}", id));
let problem = problem::get_problem(id)
.expect(&format!("problem #{} not found", id));
let code = problem.code_definition.iter()
.filter(|&d| { d.value == "rust" })
.next()
.expect("problem has no rust support yet");
let file_name = format!("n{:04}_{}", id, problem.title_slug.replace("-", "_"));
let file_path = Path::new("./src").join(format!("{}.rs", file_name));
if file_path.exists() {
panic!("problem already initialized");
}
let template = fs::read_to_string("./template.rs").unwrap();
let source = template
.replace("__PROBLEM_TITLE__", &problem.title)
.replace("__PROBLEM_DESC__", &build_desc(&problem.content))
.replace("__PROBLEM_DEFAULT_CODE__", &code.default_code)
.replace("__PROBLEM_ID__", &format!("{}", id))
.replace("__EXTRA_USE__", &parse_extra_use(&code.default_code));
let mut file = fs::OpenOptions::new()
.write(true)
.create(true)
.truncate(true)
.open(&file_path)
.unwrap();
file.write_all(source.as_bytes()).unwrap();
drop(file);
let mut lib_file = fs::OpenOptions::new()
.write(true)
.append(true)
.open("./src/lib.rs")
.unwrap();
writeln!(lib_file, "mod {};", file_name);
}
fn parse_extra_use(code: &str) -> String {
let mut extra_use_line = String::new();
// a linked-list problem
if code.contains("pub struct ListNode") {
extra_use_line.push_str("\nuse super::util::linked_list::{ListNode, to_list};")
}
if code.contains("pub struct TreeNode") {
extra_use_line.push_str("\nuse super::util::tree::{TreeNode, to_tree};")
}
if code.contains("pub struct Point") {
extra_use_line.push_str("\nuse super::util::point::Point;")
}
extra_use_line
}
fn build_desc(content: &str) -> String {
// TODO: fix this shit
content
.replace("<strong>", "")
.replace("</strong>", "")
.replace("<em>", "")
.replace("</em>", "")
.replace("</p>", "")
.replace("<p>", "")
.replace("<b>", "")
.replace("</b>", "")
.replace("<pre>", "")
.replace("</pre>", "")
.replace("<ul>", "")
.replace("</ul>", "")
.replace("<li>", "")
.replace("</li>", "")
.replace("<code>", "")
.replace("</code>", "")
.replace("<i>", "")
.replace("</i>", "")
.replace("<sub>", "")
.replace("</sub>", "")
.replace("</sup>", "")
.replace("<sup>", "^")
.replace(" ", " ")
.replace(">", ">")
.replace("<", "<")
.replace(""", "\"")
.replace("−", "-")
.replace("'", "'")
.replace("\n\n", "\n")
.replace("\n", "\n * ")
}