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
use crate::{BoxResult, ConfigFile, ConfigFileVec};
use std::io::{self, BufRead, BufReader};
use std::{fs::File, str::FromStr, string::ToString};
pub fn collect_files_as<T>(f: &dyn Fn(std::path::PathBuf) -> T, pat: &str) -> BoxResult<Vec<T>> {
let mut files = Vec::<T>::new();
for r in glob::glob(pat)? {
files.push(f(r?))
}
Ok(files)
}
pub fn collect_config_files(pattern: &str, required: bool) -> ConfigFileVec {
let f = |p: std::path::PathBuf| ConfigFile::from(p).required(required);
collect_files_as(&f, pattern).expect("Failed to find any similar files...")
}
pub fn try_collect_config_files(pattern: &str, required: bool) -> BoxResult<ConfigFileVec> {
let f = |p: std::path::PathBuf| ConfigFile::from(p).required(required);
collect_files_as(&f, pattern)
}
pub fn file_to_vec(fp: String) -> io::Result<Vec<String>> {
let file_in = File::open(fp)?;
let file_reader = BufReader::new(file_in);
Ok(file_reader.lines().filter_map(io::Result::ok).collect())
}
pub fn fnl_remove<T: Clone + ToString>(data: T) -> String {
let data = data.to_string();
let mut chars = data.chars();
chars.next();
chars.next_back();
chars.as_str().to_string()
}
pub fn is_float<T: ToString>(data: &T) -> bool {
f64::from_str(&data.to_string()).is_ok()
}
pub fn project_root() -> std::path::PathBuf {
std::path::Path::new(&env!("CARGO_MANIFEST_DIR"))
.ancestors()
.nth(1)
.unwrap()
.to_path_buf()
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_file_to_vec() {
let fp = "../README.md".to_string();
let a = file_to_vec(fp);
let b = try_collect_config_files("**/Cargo.*", false);
assert!(a.is_ok());
assert!(b.is_ok());
assert!(!a.expect("").is_empty())
}
#[test]
fn test_is_float() {
let data = vec!["1", "-10", "ifjuka87"];
assert!(is_float(&data[0]));
assert!(is_float(&data[1]));
assert!(!is_float(&data[2]))
}
}