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
200
201
202
203
use std::{
collections::{BTreeMap, HashSet},
path::{Path, PathBuf},
};
use crate::{
common::fs::{scan_dir, FileInfo, FsVisitor},
crc::calculate_crc,
};
use super::core::{FileRef, PackFileRef, PackIndexFile};
#[derive(Default, Debug, Clone, PartialEq, Eq)]
pub struct Config {
pub directory: PathBuf,
pub output: PathBuf,
pub manifest: PathBuf,
pub prefix: String,
pub pack_files: Vec<PackFileConfig>,
}
fn extend_path_buf(mut p: PathBuf, e: &str) -> PathBuf {
p.push(e);
p
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
enum Filter<'a> {
None,
Exact(&'a str),
StartsWith(&'a str),
EndsWith(&'a str),
Contains(&'a str),
}
impl<'a> Filter<'a> {
fn matches(self, other: &'a str) -> bool {
match self {
Self::None => true,
Self::Exact(v) => other == v,
Self::StartsWith(v) => other.starts_with(v),
Self::EndsWith(v) => other.ends_with(v),
Self::Contains(v) => other.contains(v),
}
}
}
impl<'a> From<&'a str> for Filter<'a> {
fn from(text: &'a str) -> Self {
let mut chr = text.chars();
let start = chr.next();
let end = chr.next_back();
let len = text.len();
match (start, end) {
(Some('*'), Some('*')) => Filter::Contains(&text[1..(len - 1)]),
(Some('*'), _) => Filter::EndsWith(&text[1..]),
(_, Some('*')) => Filter::StartsWith(&text[..len - 1]),
(None, None) => Filter::None,
_ => Filter::Exact(text),
}
}
}
struct Visitor<'c, 'f> {
filter: Filter<'f>,
effect: ArgEffect,
crc_set: &'c mut HashSet<u32>,
}
impl<'c, 'f> FsVisitor for Visitor<'c, 'f> {
fn visit_file(&mut self, info: FileInfo) {
if self.filter.matches(info.name()) {
let new_path = info.path();
let crc = calculate_crc(new_path.as_bytes());
println!("dir-file {}", new_path);
match self.effect {
ArgEffect::Include => {
self.crc_set.insert(crc);
}
ArgEffect::Exclude => {
self.crc_set.remove(&crc);
}
}
}
}
}
impl Config {
pub fn run(&self) -> PackIndexFile {
let root: &Path = self.directory.as_ref();
let mut archives = Vec::with_capacity(self.pack_files.len());
let mut files = BTreeMap::new();
let mut index = 0u32;
for pack_file in self.pack_files.iter() {
let mut crc_set = HashSet::<u32>::new();
for arg in &pack_file.args {
let path = {
let mut p = self.prefix.clone();
p.push_str(&arg.name);
p
};
match &arg.kind {
ArgKind::File => {
let crc = calculate_crc(path.as_bytes());
println!("file {}", path);
match arg.effect {
ArgEffect::Include => {
crc_set.insert(crc);
}
ArgEffect::Exclude => {
crc_set.remove(&crc);
}
}
}
ArgKind::Dir { recurse, filter } => {
let real_path = arg.name.split('\\').fold(root.to_owned(), extend_path_buf);
let filter = Filter::from(filter.as_ref());
let mut visitor = Visitor {
filter,
effect: arg.effect,
crc_set: &mut crc_set,
};
scan_dir(&mut visitor, path, &real_path, *recurse);
}
}
}
let has_entries = !crc_set.is_empty();
for crc in crc_set {
files.entry(crc).or_insert(FileRef {
category: if pack_file.compressed { 1 } else { 0 },
pack_file: index,
});
}
if has_entries {
archives.push(PackFileRef {
path: format!("{}{}", self.prefix, &pack_file.name),
});
index += 1;
}
}
PackIndexFile { archives, files }
}
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PackFileConfig {
pub name: String,
pub compressed: bool,
pub args: Vec<PackFileArg>,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum ArgEffect {
Include,
Exclude,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ArgKind {
File,
Dir {
recurse: bool,
filter: String,
},
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PackFileArg {
pub effect: ArgEffect,
pub name: String,
pub kind: ArgKind,
}