4
4
//! passes over the tree to remove redundant information.
5
5
6
6
use crate :: licenses:: { License , LicenseId , LicensesInterner } ;
7
- use std:: collections:: { BTreeMap , BTreeSet } ;
7
+ use std:: collections:: BTreeMap ;
8
8
use std:: path:: { Path , PathBuf } ;
9
9
10
10
#[ derive( serde:: Serialize ) ]
11
11
#[ serde( rename_all = "kebab-case" , tag = "type" ) ]
12
12
pub ( crate ) enum Node < L > {
13
13
Root { children : Vec < Node < L > > } ,
14
14
Directory { name : PathBuf , children : Vec < Node < L > > , license : Option < L > } ,
15
- CondensedDirectory { name : PathBuf , licenses : Vec < L > } ,
16
15
File { name : PathBuf , license : L } ,
17
16
Group { files : Vec < PathBuf > , directories : Vec < PathBuf > , license : L } ,
18
17
Empty ,
@@ -59,8 +58,6 @@ impl Node<LicenseId> {
59
58
directories. entry ( name) . or_insert_with ( Vec :: new) . append ( & mut children) ;
60
59
}
61
60
file @ Node :: File { .. } => files. push ( file) ,
62
- // Propagate condensed directories as-is.
63
- condensed @ Node :: CondensedDirectory { .. } => files. push ( condensed) ,
64
61
Node :: Empty => { }
65
62
Node :: Root { .. } => {
66
63
panic ! ( "can't have a root inside another element" ) ;
@@ -87,7 +84,6 @@ impl Node<LicenseId> {
87
84
}
88
85
Node :: Empty => { }
89
86
Node :: File { .. } => { }
90
- Node :: CondensedDirectory { .. } => { }
91
87
Node :: Group { .. } => {
92
88
panic ! ( "Group should not be present at this stage" ) ;
93
89
}
@@ -134,7 +130,6 @@ impl Node<LicenseId> {
134
130
}
135
131
}
136
132
Node :: File { .. } => { }
137
- Node :: CondensedDirectory { .. } => { }
138
133
Node :: Group { .. } => panic ! ( "group should not be present at this stage" ) ,
139
134
Node :: Empty => { }
140
135
}
@@ -177,9 +172,6 @@ impl Node<LicenseId> {
177
172
Node :: Directory { name : child_child_name, .. } => {
178
173
* child_child_name = child_name. join ( & child_child_name) ;
179
174
}
180
- Node :: CondensedDirectory { name : child_child_name, .. } => {
181
- * child_child_name = child_name. join ( & child_child_name) ;
182
- }
183
175
Node :: File { name : child_child_name, .. } => {
184
176
* child_child_name = child_name. join ( & child_child_name) ;
185
177
}
@@ -194,7 +186,6 @@ impl Node<LicenseId> {
194
186
}
195
187
Node :: Empty => { }
196
188
Node :: File { .. } => { }
197
- Node :: CondensedDirectory { .. } => { }
198
189
Node :: Group { .. } => panic ! ( "Group should not be present at this stage" ) ,
199
190
}
200
191
}
@@ -262,7 +253,6 @@ impl Node<LicenseId> {
262
253
}
263
254
}
264
255
Node :: File { .. } => { }
265
- Node :: CondensedDirectory { .. } => { }
266
256
Node :: Group { .. } => panic ! ( "FileGroup should not be present at this stage" ) ,
267
257
Node :: Empty => { }
268
258
}
@@ -278,7 +268,6 @@ impl Node<LicenseId> {
278
268
}
279
269
children. retain ( |child| !matches ! ( child, Node :: Empty ) ) ;
280
270
}
281
- Node :: CondensedDirectory { .. } => { }
282
271
Node :: Group { .. } => { }
283
272
Node :: File { .. } => { }
284
273
Node :: Empty => { }
@@ -302,24 +291,7 @@ pub(crate) fn build(mut input: Vec<(PathBuf, LicenseId)>) -> Node<LicenseId> {
302
291
// Ensure reproducibility of all future steps.
303
292
input. sort ( ) ;
304
293
305
- let mut condensed_directories = BTreeMap :: new ( ) ;
306
- ' outer: for ( path, license) in input {
307
- // Files in condensed directories are handled separately.
308
- for ( condensed_directory, allowed_file) in super :: CONDENSED_DIRECTORIES {
309
- if path. starts_with ( condensed_directory) {
310
- if path. as_path ( ) == Path :: new ( allowed_file) {
311
- // The licence on our allowed file is used to represent the entire directory
312
- condensed_directories
313
- . entry ( * condensed_directory)
314
- . or_insert_with ( BTreeSet :: new)
315
- . insert ( license) ;
316
- } else {
317
- // don't add the file
318
- }
319
- continue ' outer;
320
- }
321
- }
322
-
294
+ for ( path, license) in input {
323
295
let mut node = Node :: File { name : path. file_name ( ) . unwrap ( ) . into ( ) , license } ;
324
296
for component in path. parent ( ) . unwrap_or_else ( || Path :: new ( "." ) ) . components ( ) . rev ( ) {
325
297
node = Node :: Directory {
@@ -332,22 +304,6 @@ pub(crate) fn build(mut input: Vec<(PathBuf, LicenseId)>) -> Node<LicenseId> {
332
304
children. push ( node) ;
333
305
}
334
306
335
- for ( path, licenses) in condensed_directories {
336
- let path = Path :: new ( path) ;
337
- let mut node = Node :: CondensedDirectory {
338
- name : path. file_name ( ) . unwrap ( ) . into ( ) ,
339
- licenses : licenses. iter ( ) . copied ( ) . collect ( ) ,
340
- } ;
341
- for component in path. parent ( ) . unwrap_or_else ( || Path :: new ( "." ) ) . components ( ) . rev ( ) {
342
- node = Node :: Directory {
343
- name : component. as_os_str ( ) . into ( ) ,
344
- children : vec ! [ node] ,
345
- license : None ,
346
- } ;
347
- }
348
- children. push ( node) ;
349
- }
350
-
351
307
Node :: Root { children }
352
308
}
353
309
@@ -376,10 +332,6 @@ pub(crate) fn expand_interned_licenses(
376
332
Node :: Group { files, directories, license } => {
377
333
Node :: Group { files, directories, license : interner. resolve ( license) }
378
334
}
379
- Node :: CondensedDirectory { name, licenses } => Node :: CondensedDirectory {
380
- name,
381
- licenses : licenses. into_iter ( ) . map ( |license| interner. resolve ( license) ) . collect ( ) ,
382
- } ,
383
335
Node :: Empty => Node :: Empty ,
384
336
}
385
337
}
0 commit comments