lc

command module
v1.1.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 12, 2018 License: GPL-3.0 Imports: 3 Imported by: 0

README

licensechecker (lc)

lc is a command line tool that recursively iterates over a supplied directory or file attempting to identify what software license each file is under using the list of licenses supplied by the SPDX (Software Package Data Exchange) Project. It will pick up license files named appropiately or inline licenses such as the below in source files

SPDX-License-Identifier: GPL-3.0-only

In a nutshell this project is a reimplementation of http://www.boyter.org/2017/05/identify-software-licenses-python-vector-space-search-ngram-keywords/ using Go while I attempt to nut out the nuances of the language.

It can produce report outputs as valid SPDX, CSV, JSON and CLI formatted. It has been designed to work inside CI systems that capture either stdout or file artifacts.

Build Status

Why

In short taken from, http://ben.balter.com/licensee/

  • You've got an open source project. How do you know what you can and can't do with the software?
  • You've got a bunch of open source projects, how do you know what their licenses are?
  • You've got a project with a license file, but which license is it? Has it been modified?

Why should you care about what licenses your code runs under? See

Installation

The binary name for licencechecker is lc.

For binary files see releases https://github.com/boyter/lc/releases To build from source you need to have Go setup with your GOPATH working and your go binary path exported like so,

export PATH=$PATH:$(go env GOPATH)/bin

then to install

$ go install

Usage

Command line usage of licensechecker is designed to be as simple as possible. Full details can be found in lc --help.

Probably the most useful functionality is the -f modifier which specifies the output format. By default licencechecker will print out results as it processes files. However as it was designed to run at the end of CI tasks you may want to get a nicer output which can be done like so.

$ lc -f tabular .

The above will process starting in the current directory and print out a formatted list of results when finished.

To view all command line options

$ lc --help

Example output of licencechecker running against itself in tabular format while ignoring the .git, licenses and vendor directories

$ lc -pbl .git,vendor,licenses -f tabular .
Directory            File                    License                        Confidence  Size
.                    .gitignore              GPL-3.0-only                   100.00%     275B
.                    .travis.yml             GPL-3.0-only                   100.00%     26B
.                    Gopkg.lock              GPL-3.0-only                   100.00%     1.4K
.                    Gopkg.toml              GPL-3.0-only                   100.00%     972B
.                    LICENSE                 GPL-3.0-only                   99.68%      34.3K
.                    README.md               GPL-3.0-only                   100.00%     9K
.                    database_keywords.json  GPL-3.0-only                   100.00%     3.6M
.                    main.go                 GPL-3.0-only                   100.00%     3.4K
examples/identifier  LICENSE                 GPL-3.0+ AND MIT               95.40%      1K
examples/identifier  LICENSE2                MIT AND GPL-3.0+               99.65%      35K
examples/identifier  has_identifier.py       (MIT OR GPL-3.0+) AND GPL-2.0  100.00%     428B
parsers              constants.go            GPL-3.0-only                   100.00%     4.8M
parsers              formatter.go            GPL-3.0-only                   100.00%     8.1K
parsers              formatter_test.go       GPL-3.0-only                   100.00%     976B
parsers              guesser.go              GPL-3.0-only                   100.00%     10.2K
parsers              guesser_test.go         GPL-3.0-only                   100.00%     610B
parsers              helpers.go              GPL-3.0-only AND Apache-2.0    100.00%     2.5K
parsers              structs.go              GPL-3.0-only                   100.00%     710B
scripts              build_database.py       GPL-3.0-only                   100.00%     4.7K
scripts              include.go              GPL-3.0-only                   100.00%     1008B

Or to write out the results to a CSV file

$ lc --format csv -output licences.csv --pathblacklist .git,licenses,vendor .

Or to a SPDX 2.1 file

$lc -f spdx -o spdx_example.spdx --pbl .git,vendor,licenses -dn licensechecker -pn licensechecker .

You can specify multiple directories as additional arguments and all results will be merged into a single output

$ lc -f tabular ./examples/identifier ./scripts

You can also specify files and directories as additional arguments

$ lc -f tabular README.md LICENSE ./examples/identifier
Directory              File               License                        Confidence  Size
                       README.md          NOASSERTION                    100.00%     8K
                       LICENSE            GPL-3.0-only                   99.68%      34.3K
./examples/identifier  LICENSE            GPL-3.0+ AND MIT               95.40%      1K
./examples/identifier  LICENSE2           MIT AND GPL-3.0+               99.65%      35K
./examples/identifier  has_identifier.py  (MIT OR GPL-3.0+) AND GPL-2.0  100.00%     428B

SPDX

Running against itself to produce a SPDX file using tools from https://github.com/spdx/tools

$ go run main.go  -f spdx -o spdx_example.spdx --pbl .git,vendor,licenses -dn licensechecker -pn licensechecker . && java -jar ./spdx-tools-2.1.12-SNAPSHOT-jar-with-dependencies.jar Verify ./spdx_example.spdx
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console. Set system property 'log4j2.debug' to show Log4j2 internal initialization logging.
03:49:29.479 [main] ERROR org.apache.jena.rdf.model.impl.RDFReaderFImpl - Rewired RDFReaderFImpl - configuration changes have no effect on reading
03:49:29.482 [main] ERROR org.apache.jena.rdf.model.impl.RDFReaderFImpl - Rewired RDFReaderFImpl - configuration changes have no effect on reading
This SPDX Document is valid.

Package

Run go build for windows and linux then the following in linux, keep in mind need to update the version

zip -r9 lc-1.0.0-x86_64-pc-windows.zip lc.exe && zip -r9 lc-1.0.0-x86_64-unknown-linux.zip lc

TODO

  • Add error handling for all the file operations and just in general. Most are currently ignored
  • Add logic to guess the file type for SPDX value FileType
  • Add addtional unit and integration tests
  • Investigate using "github.com/gosuri/uitable" for formatting https://github.com/gosuri/uitable

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL