|
| 1 | +// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file |
| 2 | +// for details. All rights reserved. Use of this source code is governed by a |
| 3 | +// BSD-style license that can be found in the LICENSE file. |
| 4 | + |
| 5 | +import 'dart:convert'; |
| 6 | +import 'dart:io'; |
| 7 | + |
| 8 | +Future<void> main(List<String> args) async { |
| 9 | + if (args.isEmpty || args.contains('--help')) { |
| 10 | + print('dart batch_compare_analysis.dart <before.json> <after.json>'); |
| 11 | + print(''); |
| 12 | + print( |
| 13 | + 'Compare analysis results and highlight changes using the output of the ' |
| 14 | + '`batch_compare_licenses.dart script.'); |
| 15 | + return; |
| 16 | + } |
| 17 | + final a = await _read(args[0]); |
| 18 | + final b = await _read(args[1]); |
| 19 | + |
| 20 | + final changes = <String, List<String>>{}; |
| 21 | + final keys = a.keys.toSet().intersection(b.keys.toSet()); |
| 22 | + for (final key in keys) { |
| 23 | + final diff = a[key]!.diff(b[key]!); |
| 24 | + for (final d in diff) { |
| 25 | + changes.putIfAbsent(d, () => []).add(key); |
| 26 | + } |
| 27 | + } |
| 28 | + final entries = changes.entries.toList() |
| 29 | + ..sort((a, b) => -a.value.length.compareTo(b.value.length)); |
| 30 | + for (final entry in entries) { |
| 31 | + print( |
| 32 | + '${entry.value.length.toString().padLeft(6)} ${entry.key.padLeft(30)}: ${entry.value.take(5).join(', ')}'); |
| 33 | + } |
| 34 | +} |
| 35 | + |
| 36 | +class LicenseResult { |
| 37 | + final List<String> spdxIds; |
| 38 | + |
| 39 | + LicenseResult({required this.spdxIds}); |
| 40 | + factory LicenseResult.fromJson(Map<String, dynamic> input) { |
| 41 | + return LicenseResult( |
| 42 | + spdxIds: |
| 43 | + (input['spdxIds'] as List?)?.cast<String>() ?? const <String>[]); |
| 44 | + } |
| 45 | + |
| 46 | + List<String> diff(LicenseResult other) { |
| 47 | + return <String>[ |
| 48 | + ...spdxIds.where((id) => !other.spdxIds.contains(id)).map((e) => '-$e'), |
| 49 | + ...other.spdxIds.where((id) => !spdxIds.contains(id)).map((e) => '+$e'), |
| 50 | + ]; |
| 51 | + } |
| 52 | +} |
| 53 | + |
| 54 | +Future<Map<String, LicenseResult>> _read(String inputFilePath) async { |
| 55 | + final content = await File(inputFilePath).readAsString(); |
| 56 | + final data = json.decode(content) as Map<String, dynamic>; |
| 57 | + return data.map((key, value) => |
| 58 | + MapEntry(key, LicenseResult.fromJson(value as Map<String, dynamic>))); |
| 59 | +} |
0 commit comments