@@ -10,8 +10,8 @@ use std::path::{Path, PathBuf};
10
10
#[ derive( serde:: Serialize ) ]
11
11
#[ serde( rename_all = "kebab-case" , tag = "type" ) ]
12
12
pub ( crate ) enum Node < L > {
13
- Root { childs : Vec < Node < L > > } ,
14
- Directory { name : PathBuf , childs : Vec < Node < L > > , license : Option < L > } ,
13
+ Root { children : Vec < Node < L > > } ,
14
+ Directory { name : PathBuf , children : Vec < Node < L > > , license : Option < L > } ,
15
15
File { name : PathBuf , license : L } ,
16
16
Group { files : Vec < PathBuf > , directories : Vec < PathBuf > , license : L } ,
17
17
Empty ,
@@ -48,14 +48,14 @@ impl Node<LicenseId> {
48
48
/// ```
49
49
fn merge_directories ( & mut self ) {
50
50
match self {
51
- Node :: Root { childs } | Node :: Directory { childs , license : None , .. } => {
51
+ Node :: Root { children } | Node :: Directory { children , license : None , .. } => {
52
52
let mut directories = BTreeMap :: new ( ) ;
53
53
let mut files = Vec :: new ( ) ;
54
54
55
- for child in childs . drain ( ..) {
55
+ for child in children . drain ( ..) {
56
56
match child {
57
- Node :: Directory { name, mut childs , license : None } => {
58
- directories. entry ( name) . or_insert_with ( Vec :: new) . append ( & mut childs ) ;
57
+ Node :: Directory { name, mut children , license : None } => {
58
+ directories. entry ( name) . or_insert_with ( Vec :: new) . append ( & mut children ) ;
59
59
}
60
60
file @ Node :: File { .. } => {
61
61
files. push ( file) ;
@@ -73,14 +73,14 @@ impl Node<LicenseId> {
73
73
}
74
74
}
75
75
76
- childs . extend ( directories. into_iter ( ) . map ( |( name, childs ) | Node :: Directory {
76
+ children . extend ( directories. into_iter ( ) . map ( |( name, children ) | Node :: Directory {
77
77
name,
78
- childs ,
78
+ children ,
79
79
license : None ,
80
80
} ) ) ;
81
- childs . append ( & mut files) ;
81
+ children . append ( & mut files) ;
82
82
83
- for child in & mut * childs {
83
+ for child in & mut * children {
84
84
child. merge_directories ( ) ;
85
85
}
86
86
}
@@ -105,13 +105,13 @@ impl Node<LicenseId> {
105
105
/// our inclusion of LLVM.
106
106
fn collapse_in_licensed_directories ( & mut self ) {
107
107
match self {
108
- Node :: Directory { childs , license, .. } => {
109
- for child in & mut * childs {
108
+ Node :: Directory { children , license, .. } => {
109
+ for child in & mut * children {
110
110
child. collapse_in_licensed_directories ( ) ;
111
111
}
112
112
113
113
let mut licenses_count = BTreeMap :: new ( ) ;
114
- for child in & * childs {
114
+ for child in & * children {
115
115
let Some ( license) = child. license ( ) else { continue } ;
116
116
* licenses_count. entry ( license) . or_insert ( 0 ) += 1 ;
117
117
}
@@ -122,12 +122,12 @@ impl Node<LicenseId> {
122
122
. map ( |( license, _) | license) ;
123
123
124
124
if let Some ( most_popular_license) = most_popular_license {
125
- childs . retain ( |child| child. license ( ) != Some ( most_popular_license) ) ;
125
+ children . retain ( |child| child. license ( ) != Some ( most_popular_license) ) ;
126
126
* license = Some ( most_popular_license) ;
127
127
}
128
128
}
129
- Node :: Root { childs } => {
130
- for child in & mut * childs {
129
+ Node :: Root { children } => {
130
+ for child in & mut * children {
131
131
child. collapse_in_licensed_directories ( ) ;
132
132
}
133
133
}
@@ -138,29 +138,29 @@ impl Node<LicenseId> {
138
138
}
139
139
140
140
/// Reduce the depth of the tree by merging subdirectories with the same license as their
141
- /// parent directory into their parent, and adjusting the paths of the childs accordingly.
141
+ /// parent directory into their parent, and adjusting the paths of the children accordingly.
142
142
fn merge_directory_licenses ( & mut self ) {
143
143
match self {
144
- Node :: Root { childs } => {
145
- for child in & mut * childs {
144
+ Node :: Root { children } => {
145
+ for child in & mut * children {
146
146
child. merge_directory_licenses ( ) ;
147
147
}
148
148
}
149
- Node :: Directory { childs , license, .. } => {
149
+ Node :: Directory { children , license, .. } => {
150
150
let mut to_add = Vec :: new ( ) ;
151
- for child in & mut * childs {
151
+ for child in & mut * children {
152
152
child. merge_directory_licenses ( ) ;
153
153
154
154
let Node :: Directory {
155
155
name : child_name,
156
- childs : child_childs ,
156
+ children : child_children ,
157
157
license : child_license,
158
158
} = child else { continue } ;
159
159
160
160
if child_license != license {
161
161
continue ;
162
162
}
163
- for mut child_child in child_childs . drain ( ..) {
163
+ for mut child_child in child_children . drain ( ..) {
164
164
match & mut child_child {
165
165
Node :: Root { .. } => {
166
166
panic ! ( "can't have a root inside another element" ) ;
@@ -181,7 +181,7 @@ impl Node<LicenseId> {
181
181
182
182
* child = Node :: Empty ;
183
183
}
184
- childs . append ( & mut to_add) ;
184
+ children . append ( & mut to_add) ;
185
185
}
186
186
Node :: Empty => { }
187
187
Node :: File { .. } => { }
@@ -203,14 +203,14 @@ impl Node<LicenseId> {
203
203
directories : Vec < PathBuf > ,
204
204
}
205
205
match self {
206
- Node :: Root { childs } | Node :: Directory { childs , .. } => {
206
+ Node :: Root { children } | Node :: Directory { children , .. } => {
207
207
let mut grouped: BTreeMap < LicenseId , Grouped > = BTreeMap :: new ( ) ;
208
208
209
- for child in & mut * childs {
209
+ for child in & mut * children {
210
210
child. merge_groups ( ) ;
211
211
match child {
212
- Node :: Directory { name, childs , license : Some ( license) } => {
213
- if childs . is_empty ( ) {
212
+ Node :: Directory { name, children , license : Some ( license) } => {
213
+ if children . is_empty ( ) {
214
214
grouped
215
215
. entry ( * license)
216
216
. or_insert_with ( Grouped :: default)
@@ -234,16 +234,16 @@ impl Node<LicenseId> {
234
234
for ( license, mut grouped) in grouped. into_iter ( ) {
235
235
if grouped. files . len ( ) + grouped. directories . len ( ) <= 1 {
236
236
if let Some ( name) = grouped. files . pop ( ) {
237
- childs . push ( Node :: File { license, name } ) ;
237
+ children . push ( Node :: File { license, name } ) ;
238
238
} else if let Some ( name) = grouped. directories . pop ( ) {
239
- childs . push ( Node :: Directory {
239
+ children . push ( Node :: Directory {
240
240
name,
241
- childs : Vec :: new ( ) ,
241
+ children : Vec :: new ( ) ,
242
242
license : Some ( license) ,
243
243
} ) ;
244
244
}
245
245
} else {
246
- childs . push ( Node :: Group {
246
+ children . push ( Node :: Group {
247
247
license,
248
248
files : grouped. files ,
249
249
directories : grouped. directories ,
@@ -261,11 +261,11 @@ impl Node<LicenseId> {
261
261
/// sure to remove them from the tree.
262
262
fn remove_empty ( & mut self ) {
263
263
match self {
264
- Node :: Root { childs } | Node :: Directory { childs , .. } => {
265
- for child in & mut * childs {
264
+ Node :: Root { children } | Node :: Directory { children , .. } => {
265
+ for child in & mut * children {
266
266
child. remove_empty ( ) ;
267
267
}
268
- childs . retain ( |child| !matches ! ( child, Node :: Empty ) ) ;
268
+ children . retain ( |child| !matches ! ( child, Node :: Empty ) ) ;
269
269
}
270
270
Node :: Group { .. } => { }
271
271
Node :: File { .. } => { }
@@ -275,7 +275,7 @@ impl Node<LicenseId> {
275
275
276
276
fn license ( & self ) -> Option < LicenseId > {
277
277
match self {
278
- Node :: Directory { childs , license : Some ( license) , .. } if childs . is_empty ( ) => {
278
+ Node :: Directory { children , license : Some ( license) , .. } if children . is_empty ( ) => {
279
279
Some ( * license)
280
280
}
281
281
Node :: File { license, .. } => Some ( * license) ,
@@ -285,7 +285,7 @@ impl Node<LicenseId> {
285
285
}
286
286
287
287
pub ( crate ) fn build ( mut input : Vec < ( PathBuf , LicenseId ) > ) -> Node < LicenseId > {
288
- let mut childs = Vec :: new ( ) ;
288
+ let mut children = Vec :: new ( ) ;
289
289
290
290
// Ensure reproducibility of all future steps.
291
291
input. sort ( ) ;
@@ -295,15 +295,15 @@ pub(crate) fn build(mut input: Vec<(PathBuf, LicenseId)>) -> Node<LicenseId> {
295
295
for component in path. parent ( ) . unwrap_or_else ( || Path :: new ( "." ) ) . components ( ) . rev ( ) {
296
296
node = Node :: Directory {
297
297
name : component. as_os_str ( ) . into ( ) ,
298
- childs : vec ! [ node] ,
298
+ children : vec ! [ node] ,
299
299
license : None ,
300
300
} ;
301
301
}
302
302
303
- childs . push ( node) ;
303
+ children . push ( node) ;
304
304
}
305
305
306
- Node :: Root { childs }
306
+ Node :: Root { children }
307
307
}
308
308
309
309
/// Convert a `Node<LicenseId>` into a `Node<&License>`, expanding all interned license IDs with a
@@ -313,14 +313,14 @@ pub(crate) fn expand_interned_licenses(
313
313
interner : & LicensesInterner ,
314
314
) -> Node < & License > {
315
315
match node {
316
- Node :: Root { childs } => Node :: Root {
317
- childs : childs
316
+ Node :: Root { children } => Node :: Root {
317
+ children : children
318
318
. into_iter ( )
319
319
. map ( |child| expand_interned_licenses ( child, interner) )
320
320
. collect ( ) ,
321
321
} ,
322
- Node :: Directory { name, childs , license } => Node :: Directory {
323
- childs : childs
322
+ Node :: Directory { name, children , license } => Node :: Directory {
323
+ children : children
324
324
. into_iter ( )
325
325
. map ( |child| expand_interned_licenses ( child, interner) )
326
326
. collect ( ) ,
0 commit comments