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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
#![feature(test)]
#![allow(match_ref_pats)]
#![allow(too_many_arguments)]
#![allow(unknown_lints)]
#[macro_use] extern crate nom;
#[macro_use] extern crate lazy_static;
extern crate regex;
extern crate colored;
pub mod test;
pub mod types;
pub mod error;
pub mod cli_helpers;
pub mod gitignore;
pub mod prelude {
use std::fs;
use std::path::PathBuf;
use regex::{Regex, RegexSet};
use types::*;
use colored::*;
use gitignore::*;
use std::io::prelude::*;
use std::process::exit;
use std::fs::{Metadata, File};
#[cfg(not(target_os = "windows"))]
use std::os::unix::fs::PermissionsExt;
pub use cli_helpers::*;
pub use error::*;
#[cfg(not(target_os = "windows"))]
pub fn is_artifact(path_str: &str, re: Option<&Regex>, metadata: &Metadata, gitignore: &Option<RegexSet>) -> bool {
if let Some(r) = re {
r.is_match(path_str)
}
else {
lazy_static! {
static ref REGEX: Regex =
Regex::new(r".*?\.(a|la|o|ll|keter|bc|dyn_o|out|d|rlib|crate|min\.js|hi|dyn_hi|jsexe|webapp|js\.externs|ibc|toc|aux|fdb_latexmk|fls|egg-info|whl|js_a|js_hi|jld|ji|js_o|so.*|dump-.*|vmb|crx|orig|elmo|elmi|pyc)$")
.unwrap();
}
lazy_static! {
static ref REGEX_GITIGNORE: Regex =
Regex::new(r".*?\.(stats|conf|h|cache.*|dat|pc|info)$")
.unwrap();
}
if REGEX.is_match(path_str) { true }
else if let &Some(ref x) = gitignore {
if metadata.permissions().mode() == 0o755 || REGEX_GITIGNORE.is_match(path_str)
{ x.is_match(path_str) }
else { false }
}
else { false }
}
}
#[cfg(target_os = "windows")]
pub fn is_artifact(path_str: &str, re: Option<&Regex>, _: &Metadata, gitignore:&Option<RegexSet>) -> bool {
if let Some(r) = re {
r.is_match(path_str)
}
else {
lazy_static! {
static ref REGEX: Regex =
Regex::new(r".*?\.(exe|a|la|o|ll|keter|bc|dyn_o|out|d|rlib|crate|min\.js|hi|dyn_hi|jsexe|webapp|js\.externs|ibc|toc|aux|fdb_latexmk|fls|egg-info|whl|js_a|js_hi|jld|ji|js_o|so.*|dump-.*|vmb|crx|orig|elmo|elmi|pyc)$")
.unwrap();
}
lazy_static! {
static ref REGEX_GITIGNORE: Regex =
Regex::new(r".*?\.(stats|conf|h|cache.*)$")
.unwrap();
}
if REGEX.is_match(&path_str) { true }
else if let &Some(ref x) = gitignore {
if REGEX_GITIGNORE.is_match(path_str) {
if x.is_match(path_str) { true } else { false }
} else { false }
}
else { false }
}
}
pub fn read_all(in_paths: &PathBuf,
depth: u8,
min_bytes: Option<u64>,
artifact_regex: Option<&Regex>,
excludes: Option<&Regex>,
silent: bool,
maybe_gitignore: &Option<RegexSet>,
with_gitignore: bool,
artifacts_only: bool) -> FileTree {
let mut tree = FileTree::new();
let min_size = min_bytes.map(FileSize::new);
let gitignore = if with_gitignore {
if let &Some(ref gitignore) = maybe_gitignore { Some(gitignore.to_owned()) }
else {
let mut gitignore_path = in_paths.clone();
gitignore_path.push(".gitignore");
if let Ok(mut file) = File::open(gitignore_path) {
let mut contents = String::new();
file.read_to_string(&mut contents)
.expect("File read failed.");
Some(file_contents_to_regex(&contents))
} else { None }
}
} else { None };
if let Ok(paths) = fs::read_dir(in_paths) {
for p in paths {
let path = p.unwrap().path();
let path_string = path.clone().into_os_string().into_string()
.expect("OS String invalid.");
let bool_loop = match excludes {
Some(ex) => !ex.is_match(&path_string),
_ => true,
};
if bool_loop {
if let Ok(metadata) = fs::metadata(&path) {
if metadata.is_file() {
if !artifacts_only || is_artifact(&path_string, artifact_regex, &metadata, &gitignore) {
let file_size = FileSize::new(metadata.len());
if let Some(b) = min_bytes {
if file_size >= FileSize::new(b) {
tree.push(path_string, file_size, None, depth + 1, min_size);
}
}
else {
tree.push(path_string, file_size, None, depth + 1, min_size);
}
}
}
else if metadata.is_dir() {
let mut subtree = read_all(&path, depth + 1, min_bytes, artifact_regex, excludes, silent, &gitignore, with_gitignore, artifacts_only);
let dir_size = subtree.file_size;
if let Some(b) = min_bytes {
if dir_size >= FileSize::new(b) {
tree.push(path_string, dir_size, Some(&mut subtree), depth + 1, min_size);
}
}
else { tree.push(path_string, dir_size, Some(&mut subtree), depth + 1, min_size); }
}
}
else if !silent { eprintln!("{}: ignoring symlink at {}", "Warning".yellow(), path.display()); }
}
}
}
else if !in_paths.exists() {
eprintln!("{}: path '{}' does not exist.", "Error".red(), &in_paths.display());
exit(0x0001);
}
else if !in_paths.is_dir() {
eprintln!("{}: {} is not a directory.", "Error".red(), &in_paths.display());
exit(0x0001);
}
else if !silent {
eprintln!("{}: permission denied for directory: {}", "Warning".yellow(), &in_paths.display());
}
tree
}
}