spdx/lib.rs
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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
/// Error types
pub mod error;
pub mod expression;
/// Auto-generated lists of license identifiers and exception identifiers
pub mod identifiers;
/// Contains types for lexing an SPDX license expression
pub mod lexer;
mod licensee;
/// Auto-generated full canonical text of each license
#[cfg(feature = "text")]
pub mod text;
pub use error::ParseError;
pub use expression::Expression;
use identifiers::{IS_COPYLEFT, IS_DEPRECATED, IS_FSF_LIBRE, IS_GNU, IS_OSI_APPROVED};
pub use lexer::ParseMode;
pub use licensee::Licensee;
use std::{
cmp::{self, Ordering},
fmt,
};
/// Unique identifier for a particular license
///
/// ```
/// let bsd = spdx::license_id("BSD-3-Clause").unwrap();
///
/// assert!(
/// bsd.is_fsf_free_libre()
/// && bsd.is_osi_approved()
/// && !bsd.is_deprecated()
/// && !bsd.is_copyleft()
/// );
/// ```
#[derive(Copy, Clone, Eq)]
pub struct LicenseId {
/// The short identifier for the license
pub name: &'static str,
/// The full name of the license
pub full_name: &'static str,
index: usize,
flags: u8,
}
impl PartialEq for LicenseId {
#[inline]
fn eq(&self, o: &Self) -> bool {
self.index == o.index
}
}
impl Ord for LicenseId {
#[inline]
fn cmp(&self, o: &Self) -> Ordering {
self.index.cmp(&o.index)
}
}
impl PartialOrd for LicenseId {
#[inline]
fn partial_cmp(&self, o: &Self) -> Option<Ordering> {
Some(self.cmp(o))
}
}
impl LicenseId {
/// Returns true if the license is [considered free by the FSF](https://www.gnu.org/licenses/license-list.en.html)
///
/// ```
/// assert!(spdx::license_id("GPL-2.0-only").unwrap().is_fsf_free_libre());
/// ```
#[inline]
#[must_use]
pub fn is_fsf_free_libre(self) -> bool {
self.flags & IS_FSF_LIBRE != 0
}
/// Returns true if the license is [OSI approved](https://opensource.org/licenses)
///
/// ```
/// assert!(spdx::license_id("MIT").unwrap().is_osi_approved());
/// ```
#[inline]
#[must_use]
pub fn is_osi_approved(self) -> bool {
self.flags & IS_OSI_APPROVED != 0
}
/// Returns true if the license is deprecated
///
/// ```
/// assert!(spdx::license_id("wxWindows").unwrap().is_deprecated());
/// ```
#[inline]
#[must_use]
pub fn is_deprecated(self) -> bool {
self.flags & IS_DEPRECATED != 0
}
/// Returns true if the license is [copyleft](https://en.wikipedia.org/wiki/Copyleft)
///
/// ```
/// assert!(spdx::license_id("LGPL-3.0-or-later").unwrap().is_copyleft());
/// ```
#[inline]
#[must_use]
pub fn is_copyleft(self) -> bool {
self.flags & IS_COPYLEFT != 0
}
/// Returns true if the license is a [GNU license](https://www.gnu.org/licenses/identify-licenses-clearly.html),
/// which operate differently than all other SPDX license identifiers
///
/// ```
/// assert!(spdx::license_id("AGPL-3.0-only").unwrap().is_gnu());
/// ```
#[inline]
#[must_use]
pub fn is_gnu(self) -> bool {
self.flags & IS_GNU != 0
}
/// Attempts to retrieve the license text
///
/// ```
/// assert!(spdx::license_id("GFDL-1.3-invariants").unwrap().text().contains("Invariant Sections"))
/// ```
#[cfg(feature = "text")]
#[inline]
pub fn text(self) -> &'static str {
text::LICENSE_TEXTS[self.index].1
}
}
impl fmt::Debug for LicenseId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.name)
}
}
/// Unique identifier for a particular exception
///
/// ```
/// let exception_id = spdx::exception_id("LLVM-exception").unwrap();
/// assert!(!exception_id.is_deprecated());
/// ```
#[derive(Copy, Clone, Eq)]
pub struct ExceptionId {
/// The short identifier for the exception
pub name: &'static str,
index: usize,
flags: u8,
}
impl PartialEq for ExceptionId {
#[inline]
fn eq(&self, o: &Self) -> bool {
self.index == o.index
}
}
impl Ord for ExceptionId {
#[inline]
fn cmp(&self, o: &Self) -> Ordering {
self.index.cmp(&o.index)
}
}
impl PartialOrd for ExceptionId {
#[inline]
fn partial_cmp(&self, o: &Self) -> Option<Ordering> {
Some(self.cmp(o))
}
}
impl ExceptionId {
/// Returns true if the exception is deprecated
///
/// ```
/// assert!(spdx::exception_id("Nokia-Qt-exception-1.1").unwrap().is_deprecated());
/// ```
#[inline]
#[must_use]
pub fn is_deprecated(self) -> bool {
self.flags & IS_DEPRECATED != 0
}
/// Attempts to retrieve the license exception text
///
/// ```
/// assert!(spdx::exception_id("LLVM-exception").unwrap().text().contains("LLVM Exceptions to the Apache 2.0 License"));
/// ```
#[cfg(feature = "text")]
#[inline]
pub fn text(self) -> &'static str {
text::EXCEPTION_TEXTS[self.index].1
}
}
impl fmt::Debug for ExceptionId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.name)
}
}
/// Represents a single license requirement, which must include a valid
/// [`LicenseItem`], and may allow current and future versions of the license,
/// and may also allow for a specific exception
///
/// While they can be constructed manually, most of the time these will
/// be parsed and combined in an `Expression`
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct LicenseReq {
/// The license
pub license: LicenseItem,
/// The exception allowed for this license, as specified following
/// the `WITH` operator
pub exception: Option<ExceptionId>,
}
impl From<LicenseId> for LicenseReq {
fn from(id: LicenseId) -> Self {
// We need to special case GNU licenses because reasons
let (id, or_later) = if id.is_gnu() {
let (or_later, name) = id
.name
.strip_suffix("-or-later")
.map_or((false, id.name), |name| (true, name));
let root = name.strip_suffix("-only").unwrap_or(name);
// If the root, eg GPL-2.0 licenses, which are currently deprecated,
// are actually removed we will need to add them manually, but that
// should only occur on a major revision of the SPDX license list,
// so for now we should be fine with this
(
license_id(root).expect("Unable to find root GNU license"),
or_later,
)
} else {
(id, false)
};
Self {
license: LicenseItem::Spdx { id, or_later },
exception: None,
}
}
}
impl fmt::Display for LicenseReq {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
self.license.fmt(f)?;
if let Some(ref exe) = self.exception {
write!(f, " WITH {}", exe.name)?;
}
Ok(())
}
}
/// A single license term in a license expression, according to the SPDX spec.
/// This can be either an SPDX license, which is mapped to a [`LicenseId`] from
/// a valid SPDX short identifier, or else a document AND/OR license ref
#[derive(Debug, Clone, Eq)]
pub enum LicenseItem {
/// A regular SPDX license id
Spdx {
id: LicenseId,
/// Indicates the license had a `+`, allowing the licensee to license
/// the software under either the specific version, or any later versions
or_later: bool,
},
Other {
/// Purpose: Identify any external SPDX documents referenced within this SPDX document.
/// See the [spec](https://spdx.org/spdx-specification-21-web-version#h.h430e9ypa0j9) for
/// more details.
doc_ref: Option<String>,
/// Purpose: Provide a locally unique identifier to refer to licenses that are not found on the SPDX License List.
/// See the [spec](https://spdx.org/spdx-specification-21-web-version#h.4f1mdlm) for
/// more details.
lic_ref: String,
},
}
impl LicenseItem {
/// Returns the license identifier, if it is a recognized SPDX license and not
/// a license referencer
#[must_use]
pub fn id(&self) -> Option<LicenseId> {
match self {
Self::Spdx { id, .. } => Some(*id),
Self::Other { .. } => None,
}
}
}
impl Ord for LicenseItem {
fn cmp(&self, o: &Self) -> Ordering {
match (self, o) {
(
Self::Spdx {
id: a,
or_later: la,
},
Self::Spdx {
id: b,
or_later: lb,
},
) => match a.cmp(b) {
Ordering::Equal => la.cmp(lb),
o => o,
},
(
Self::Other {
doc_ref: ad,
lic_ref: al,
},
Self::Other {
doc_ref: bd,
lic_ref: bl,
},
) => match ad.cmp(bd) {
Ordering::Equal => al.cmp(bl),
o => o,
},
(Self::Spdx { .. }, Self::Other { .. }) => Ordering::Less,
(Self::Other { .. }, Self::Spdx { .. }) => Ordering::Greater,
}
}
}
impl PartialOrd for LicenseItem {
#[allow(clippy::non_canonical_partial_ord_impl)]
fn partial_cmp(&self, o: &Self) -> Option<Ordering> {
match (self, o) {
(Self::Spdx { id: a, .. }, Self::Spdx { id: b, .. }) => a.partial_cmp(b),
(
Self::Other {
doc_ref: ad,
lic_ref: al,
},
Self::Other {
doc_ref: bd,
lic_ref: bl,
},
) => match ad.cmp(bd) {
Ordering::Equal => al.partial_cmp(bl),
o => Some(o),
},
(Self::Spdx { .. }, Self::Other { .. }) => Some(cmp::Ordering::Less),
(Self::Other { .. }, Self::Spdx { .. }) => Some(cmp::Ordering::Greater),
}
}
}
impl PartialEq for LicenseItem {
fn eq(&self, o: &Self) -> bool {
matches!(self.partial_cmp(o), Some(cmp::Ordering::Equal))
}
}
impl fmt::Display for LicenseItem {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
match self {
LicenseItem::Spdx { id, or_later } => {
id.name.fmt(f)?;
if *or_later {
if id.is_gnu() && id.is_deprecated() {
f.write_str("-or-later")?;
} else if !id.is_gnu() {
f.write_str("+")?;
}
}
Ok(())
}
LicenseItem::Other {
doc_ref: Some(d),
lic_ref: l,
} => write!(f, "DocumentRef-{}:LicenseRef-{}", d, l),
LicenseItem::Other {
doc_ref: None,
lic_ref: l,
} => write!(f, "LicenseRef-{}", l),
}
}
}
/// Attempts to find a [`LicenseId`] for the string. Note that any `+` at the
/// end is trimmed when searching for a match.
///
/// ```
/// assert!(spdx::license_id("MIT").is_some());
/// assert!(spdx::license_id("BitTorrent-1.1+").is_some());
/// ```
#[inline]
#[must_use]
pub fn license_id(name: &str) -> Option<LicenseId> {
let name = name.trim_end_matches('+');
identifiers::LICENSES
.binary_search_by(|lic| lic.0.cmp(name))
.map(|index| {
let (name, full_name, flags) = identifiers::LICENSES[index];
LicenseId {
name,
full_name,
index,
flags,
}
})
.ok()
}
/// Find license partially matching the name, e.g. "apache" => "Apache-2.0"
///
/// Returns length (in bytes) of the string matched. Garbage at the end is
/// ignored. See
/// [`identifiers::IMPRECISE_NAMES`](identifiers/constant.IMPRECISE_NAMES.html)
/// for the list of invalid names, and the valid license identifiers they are
/// paired with.
///
/// ```
/// assert!(spdx::imprecise_license_id("simplified bsd license").unwrap().0 == spdx::license_id("BSD-2-Clause").unwrap());
/// ```
#[inline]
#[must_use]
pub fn imprecise_license_id(name: &str) -> Option<(LicenseId, usize)> {
for (prefix, correct_name) in identifiers::IMPRECISE_NAMES {
if let Some(name_prefix) = name.as_bytes().get(0..prefix.len()) {
if prefix.as_bytes().eq_ignore_ascii_case(name_prefix) {
return license_id(correct_name).map(|lic| (lic, prefix.len()));
}
}
}
None
}
/// Attempts to find an [`ExceptionId`] for the string
///
/// ```
/// assert!(spdx::exception_id("LLVM-exception").is_some());
/// ```
#[inline]
#[must_use]
pub fn exception_id(name: &str) -> Option<ExceptionId> {
identifiers::EXCEPTIONS
.binary_search_by(|exc| exc.0.cmp(name))
.map(|index| {
let (name, flags) = identifiers::EXCEPTIONS[index];
ExceptionId { name, index, flags }
})
.ok()
}
/// Returns the version number of the SPDX list from which
/// the license and exception identifiers are sourced from
///
/// ```
/// assert_eq!(spdx::license_version(), "3.25.0");
/// ```
#[inline]
#[must_use]
pub fn license_version() -> &'static str {
identifiers::VERSION
}
#[cfg(test)]
mod test {
use super::LicenseItem;
use crate::{license_id, Expression};
#[test]
fn gnu_or_later_display() {
let gpl_or_later = LicenseItem::Spdx {
id: license_id("GPL-3.0").unwrap(),
or_later: true,
};
let gpl_or_later_in_id = LicenseItem::Spdx {
id: license_id("GPL-3.0-or-later").unwrap(),
or_later: true,
};
let gpl_or_later_parsed = Expression::parse("GPL-3.0-or-later").unwrap();
let non_gnu_or_later = LicenseItem::Spdx {
id: license_id("Apache-2.0").unwrap(),
or_later: true,
};
assert_eq!(gpl_or_later.to_string(), "GPL-3.0-or-later");
assert_eq!(gpl_or_later_parsed.to_string(), "GPL-3.0-or-later");
assert_eq!(gpl_or_later_in_id.to_string(), "GPL-3.0-or-later");
assert_eq!(non_gnu_or_later.to_string(), "Apache-2.0+");
}
}