Skip to content

Commit 2e971bf

Browse files
Removed CondensedDirectory support from license tools.
Now that we have reuse-tool 4.0, we no longer need to massage the JSON license data to collapse LLVM into a single copyright notice and license - reuse-tool can do it for us using an annotation in REUSE.toml. This effectively reverts c6eb03b.
1 parent 445e70b commit 2e971bf

File tree

3 files changed

+11
-89
lines changed

3 files changed

+11
-89
lines changed

src/tools/collect-license-metadata/src/main.rs

-10
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,6 @@ use crate::licenses::LicensesInterner;
66
use anyhow::Error;
77
use std::path::PathBuf;
88

9-
// Some directories have too many slight license differences that'd result in a
10-
// huge report, and could be considered a standalone project anyway. Those
11-
// directories are "condensed" into a single licensing block for ease of
12-
// reading, merging the licensing information.
13-
//
14-
// For every `(dir, file)``, every file in `dir` is considered to have the
15-
// license info of `file`.
16-
const CONDENSED_DIRECTORIES: &[(&str, &str)] =
17-
&[("./src/llvm-project/", "./src/llvm-project/README.md")];
18-
199
fn main() -> Result<(), Error> {
2010
let reuse_exe: PathBuf = std::env::var_os("REUSE_EXE").expect("Missing REUSE_EXE").into();
2111
let dest: PathBuf = std::env::var_os("DEST").expect("Missing DEST").into();

src/tools/collect-license-metadata/src/path_tree.rs

+2-50
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@
44
//! passes over the tree to remove redundant information.
55
66
use crate::licenses::{License, LicenseId, LicensesInterner};
7-
use std::collections::{BTreeMap, BTreeSet};
7+
use std::collections::BTreeMap;
88
use std::path::{Path, PathBuf};
99

1010
#[derive(serde::Serialize)]
1111
#[serde(rename_all = "kebab-case", tag = "type")]
1212
pub(crate) enum Node<L> {
1313
Root { children: Vec<Node<L>> },
1414
Directory { name: PathBuf, children: Vec<Node<L>>, license: Option<L> },
15-
CondensedDirectory { name: PathBuf, licenses: Vec<L> },
1615
File { name: PathBuf, license: L },
1716
Group { files: Vec<PathBuf>, directories: Vec<PathBuf>, license: L },
1817
Empty,
@@ -59,8 +58,6 @@ impl Node<LicenseId> {
5958
directories.entry(name).or_insert_with(Vec::new).append(&mut children);
6059
}
6160
file @ Node::File { .. } => files.push(file),
62-
// Propagate condensed directories as-is.
63-
condensed @ Node::CondensedDirectory { .. } => files.push(condensed),
6461
Node::Empty => {}
6562
Node::Root { .. } => {
6663
panic!("can't have a root inside another element");
@@ -87,7 +84,6 @@ impl Node<LicenseId> {
8784
}
8885
Node::Empty => {}
8986
Node::File { .. } => {}
90-
Node::CondensedDirectory { .. } => {}
9187
Node::Group { .. } => {
9288
panic!("Group should not be present at this stage");
9389
}
@@ -134,7 +130,6 @@ impl Node<LicenseId> {
134130
}
135131
}
136132
Node::File { .. } => {}
137-
Node::CondensedDirectory { .. } => {}
138133
Node::Group { .. } => panic!("group should not be present at this stage"),
139134
Node::Empty => {}
140135
}
@@ -177,9 +172,6 @@ impl Node<LicenseId> {
177172
Node::Directory { name: child_child_name, .. } => {
178173
*child_child_name = child_name.join(&child_child_name);
179174
}
180-
Node::CondensedDirectory { name: child_child_name, .. } => {
181-
*child_child_name = child_name.join(&child_child_name);
182-
}
183175
Node::File { name: child_child_name, .. } => {
184176
*child_child_name = child_name.join(&child_child_name);
185177
}
@@ -194,7 +186,6 @@ impl Node<LicenseId> {
194186
}
195187
Node::Empty => {}
196188
Node::File { .. } => {}
197-
Node::CondensedDirectory { .. } => {}
198189
Node::Group { .. } => panic!("Group should not be present at this stage"),
199190
}
200191
}
@@ -262,7 +253,6 @@ impl Node<LicenseId> {
262253
}
263254
}
264255
Node::File { .. } => {}
265-
Node::CondensedDirectory { .. } => {}
266256
Node::Group { .. } => panic!("FileGroup should not be present at this stage"),
267257
Node::Empty => {}
268258
}
@@ -278,7 +268,6 @@ impl Node<LicenseId> {
278268
}
279269
children.retain(|child| !matches!(child, Node::Empty));
280270
}
281-
Node::CondensedDirectory { .. } => {}
282271
Node::Group { .. } => {}
283272
Node::File { .. } => {}
284273
Node::Empty => {}
@@ -302,24 +291,7 @@ pub(crate) fn build(mut input: Vec<(PathBuf, LicenseId)>) -> Node<LicenseId> {
302291
// Ensure reproducibility of all future steps.
303292
input.sort();
304293

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 {
323295
let mut node = Node::File { name: path.file_name().unwrap().into(), license };
324296
for component in path.parent().unwrap_or_else(|| Path::new(".")).components().rev() {
325297
node = Node::Directory {
@@ -332,22 +304,6 @@ pub(crate) fn build(mut input: Vec<(PathBuf, LicenseId)>) -> Node<LicenseId> {
332304
children.push(node);
333305
}
334306

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-
351307
Node::Root { children }
352308
}
353309

@@ -376,10 +332,6 @@ pub(crate) fn expand_interned_licenses(
376332
Node::Group { files, directories, license } => {
377333
Node::Group { files, directories, license: interner.resolve(license) }
378334
}
379-
Node::CondensedDirectory { name, licenses } => Node::CondensedDirectory {
380-
name,
381-
licenses: licenses.into_iter().map(|license| interner.resolve(license)).collect(),
382-
},
383335
Node::Empty => Node::Empty,
384336
}
385337
}

src/tools/generate-copyright/src/main.rs

+9-29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use anyhow::Error;
2-
use std::collections::BTreeSet;
32
use std::io::Write;
43
use std::path::PathBuf;
54

@@ -27,7 +26,7 @@ fn render_recursive(node: &Node, buffer: &mut Vec<u8>, depth: usize) -> Result<(
2726
}
2827
}
2928
Node::Directory { name, children, license } => {
30-
render_license(&prefix, std::iter::once(name), license.iter(), buffer)?;
29+
render_license(&prefix, std::iter::once(name), license.as_ref(), buffer)?;
3130
if !children.is_empty() {
3231
writeln!(buffer, "{prefix}")?;
3332
writeln!(buffer, "{prefix}*Exceptions:*")?;
@@ -37,19 +36,11 @@ fn render_recursive(node: &Node, buffer: &mut Vec<u8>, depth: usize) -> Result<(
3736
}
3837
}
3938
}
40-
Node::CondensedDirectory { name, licenses } => {
41-
render_license(&prefix, std::iter::once(name), licenses.iter(), buffer)?;
42-
}
4339
Node::Group { files, directories, license } => {
44-
render_license(
45-
&prefix,
46-
directories.iter().chain(files.iter()),
47-
std::iter::once(license),
48-
buffer,
49-
)?;
40+
render_license(&prefix, directories.iter().chain(files.iter()), Some(license), buffer)?;
5041
}
5142
Node::File { name, license } => {
52-
render_license(&prefix, std::iter::once(name), std::iter::once(license), buffer)?;
43+
render_license(&prefix, std::iter::once(name), Some(license), buffer)?;
5344
}
5445
}
5546

@@ -59,27 +50,17 @@ fn render_recursive(node: &Node, buffer: &mut Vec<u8>, depth: usize) -> Result<(
5950
fn render_license<'a>(
6051
prefix: &str,
6152
names: impl Iterator<Item = &'a String>,
62-
licenses: impl Iterator<Item = &'a License>,
53+
license: Option<&License>,
6354
buffer: &mut Vec<u8>,
6455
) -> Result<(), Error> {
65-
let mut spdxs = BTreeSet::new();
66-
let mut copyrights = BTreeSet::new();
67-
for license in licenses {
68-
spdxs.insert(&license.spdx);
69-
for copyright in &license.copyright {
70-
copyrights.insert(copyright);
71-
}
72-
}
73-
7456
for name in names {
7557
writeln!(buffer, "{prefix}**`{name}`** ")?;
7658
}
77-
for spdx in spdxs.iter() {
78-
writeln!(buffer, "{prefix}License: `{spdx}` ")?;
79-
}
80-
for (i, copyright) in copyrights.iter().enumerate() {
81-
let suffix = if i == copyrights.len() - 1 { "" } else { " " };
82-
writeln!(buffer, "{prefix}Copyright: {copyright}{suffix}")?;
59+
if let Some(license) = license {
60+
writeln!(buffer, "{prefix}License: `{}`", license.spdx)?;
61+
for copyright in license.copyright.iter() {
62+
writeln!(buffer, "{prefix}Copyright: {copyright}")?;
63+
}
8364
}
8465

8566
Ok(())
@@ -95,7 +76,6 @@ struct Metadata {
9576
pub(crate) enum Node {
9677
Root { children: Vec<Node> },
9778
Directory { name: String, children: Vec<Node>, license: Option<License> },
98-
CondensedDirectory { name: String, licenses: Vec<License> },
9979
File { name: String, license: License },
10080
Group { files: Vec<String>, directories: Vec<String>, license: License },
10181
}

0 commit comments

Comments
 (0)