|
| 1 | +""" |
| 2 | +Copyright (c) 2020 Arm Limited. All rights reserved. |
| 3 | +
|
| 4 | +SPDX-License-Identifier: Apache-2.0 |
| 5 | +
|
| 6 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | +you may not use this file except in compliance with the License. |
| 8 | +You may obtain a copy of the License at |
| 9 | +
|
| 10 | +http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | +Unless required by applicable law or agreed to in writing, software |
| 13 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | +See the License for the specific language governing permissions and |
| 16 | +limitations |
| 17 | +""" |
| 18 | + |
| 19 | +import json |
| 20 | +import argparse |
| 21 | +import sys |
| 22 | + |
| 23 | +def license_check(file): |
| 24 | + |
| 25 | + offenders = [] |
| 26 | + |
| 27 | + # find all licenses in the files, must be licensed and permissive |
| 28 | + with open(file, 'r') as scancode_output: |
| 29 | + results = json.load(scancode_output) |
| 30 | + |
| 31 | + for file in results['files']: |
| 32 | + # ignore directory, not relevant here |
| 33 | + if file['type'] == 'directory': |
| 34 | + continue |
| 35 | + if not file['licenses']: |
| 36 | + offenders.append(file) |
| 37 | + for i in range(len(file['licenses'])): |
| 38 | + if (not file['licenses'][i]['spdx_license_key'] or (file['licenses'][i]['category'] != 'Permissive')): |
| 39 | + offenders.append(file['path']) |
| 40 | + |
| 41 | + if offenders: |
| 42 | + print("Found files with missing license details, please review and fix") |
| 43 | + print(*offenders, sep = ", ") |
| 44 | + sys.exit(-1) |
| 45 | + else: |
| 46 | + sys.exit(0) |
| 47 | + |
| 48 | +def parse_args(): |
| 49 | + parser = argparse.ArgumentParser( |
| 50 | + description="License check.") |
| 51 | + parser.add_argument('-f', '--file', |
| 52 | + help="scancode-toolkit output json file") |
| 53 | + return parser.parse_args() |
| 54 | + |
| 55 | +if __name__ == "__main__": |
| 56 | + |
| 57 | + args = parse_args() |
| 58 | + |
| 59 | + if args.file: |
| 60 | + license_check(args.file) |
| 61 | + else: |
| 62 | + sys.exit("Missing scancode json file to be checked") |
0 commit comments