/usr/share/perl5/Debian/LicenseReconcile/App.pm is in license-reconcile 0.14.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Debian::LicenseReconcile::App;
use 5.006;
use strict;
use warnings;
use Class::XSAccessor
constructor => 'new',
getters => {
quiet => 'quiet',
display_mapping => 'display_mapping',
changelog_file => 'changelog_file',
config_file => 'config_file',
copyright => 'copyright',
check_copyright => 'check_copyright',
directory =>'directory',
filters => 'filters',
format_spec => 'format_spec',
files=>'files',
suggest_stanzas=> 'suggest_stanzas',
},
;
use File::Slurp;
use Readonly;
use Debian::LicenseReconcile::Errors;
use Debian::LicenseReconcile::FormatSpec;
use Debian::LicenseReconcile::CopyrightTarget;
use Debian::LicenseReconcile::LicenseCheck;
use Debian::LicenseReconcile;
use Parse::DebianChangelog;
use UNIVERSAL::require;
use Config::Any;
sub _read_copyright_file {
my $self = shift;
my $copyright_text = scalar read_file($self->copyright);
if ($self->format_spec) {
Debian::LicenseReconcile::FormatSpec->check($copyright_text);
}
my $copyright_target = Debian::LicenseReconcile::CopyrightTarget->new;
if ($copyright_target->parse($copyright_text)) {
return $copyright_target;
}
return;
}
sub _parse_changelog {
my $self = shift;
return Parse::DebianChangelog->init(
{
infile=>$self->changelog_file
}
);
}
sub _parse_config {
my $self = shift;
my $config = Config::Any->load_files({
files=>[$self->config_file],
use_ext=>1,
flatten_to_hash=>1,
})->{$self->config_file};
if (not defined $config) {
$config = {};
}
if (not exists $config->{licensecheck}) {
$config->{licensecheck} = {};
}
if ($self->filters) {
foreach my $key (@{$self->filters}) {
if (not exists $config->{$key}) {
$config->{$key}={rules=>[]};
}
}
}
foreach my $key (keys %$config) {
next if $key eq 'licensecheck';
next if ref $config->{$key} ne 'HASH';
next if exists $config->{$key}->{rules};
$config->{$key}->{rules}=[];
}
return $config;
}
sub _build_licensecheck {
my $self = shift;
my $config = shift;
return Debian::LicenseReconcile::LicenseCheck->new(
$self->directory,
$config->{LicenseCheck},
$self->check_copyright,
);
}
sub _build_file_mapping {
my $self = shift;
my $copyright_target = shift;
my $file_mapping = $copyright_target->map_directory($self->directory);
if ($self->files) {
foreach my $key (keys %$file_mapping) {
if (not exists $self->files->{$key}) {
delete $file_mapping->{$key};
}
}
}
if ($self->display_mapping) {
foreach my $file (sort keys %$file_mapping) {
print "$file: $file_mapping->{$file}->{pattern}\n";
}
}
return $file_mapping;
}
sub run {
my $self = shift;
Readonly my $CHANGELOG => $self->_parse_changelog;
Readonly my $CONFIG => $self->_parse_config;
Readonly my $LICENSECHECK => $self->_build_licensecheck($CONFIG);
Readonly my $COPYRIGHT_TARGET => $self->_read_copyright_file;
my $file_checked = {};
if ($COPYRIGHT_TARGET) {
Readonly my $FILE_MAPPING => $self->_build_file_mapping($COPYRIGHT_TARGET);
Readonly my $RECONCILE =>
Debian::LicenseReconcile->new(
$COPYRIGHT_TARGET->patterns($self->check_copyright)
);
foreach my $filter_name (@{$self->filters}) {
$file_checked = $self->_run_filter(
$filter_name,
$file_checked,
$CONFIG,
$CHANGELOG,
$LICENSECHECK,
$FILE_MAPPING,
$RECONCILE
);
}
}
if ($self->suggest_stanzas) {
foreach my $f (sort keys %$file_checked) {
print "Files: $f\n";
if ($self->check_copyright) {
if (not ref $file_checked->{$f}->{copyright}) {
print "Copyright: $file_checked->{$f}->{copyright}\n";
next;
}
my @copyright = @{$file_checked->{$f}->{copyright}};
if (1 == scalar @copyright) {
print "Copyright: $copyright[0]\n";
}
else {
foreach my $line (@copyright) {
print " $line\n";
}
}
}
print "License: $file_checked->{$f}->{license}\n";
print "\n";
}
}
return $self->_report_errors;
}
sub _run_filter {
my $self = shift;
my $filter_name = shift;
my $file_checked = shift;
my $config = shift;
my $changelog = shift;
my $licensecheck = shift;
my $file_mapping = shift;
my $reconcile = shift;
my $class;
($class, $filter_name) = _parse_filter_name($filter_name);
$class->require;
my @files_remaining
= grep {not exists $file_checked->{$_}} keys %$file_mapping;
my $our_config = {rules=>[]};
if (exists $config->{$filter_name}->{rules}
and ref $config->{$filter_name}->{rules} eq 'ARRAY') {
$our_config = $config->{$filter_name};
}
my $test = $class->new(
directory=>$self->directory,
files_remaining=>\@files_remaining,
config=>$our_config,
changelog=>$changelog,
licensecheck=>$licensecheck,
name=>$filter_name,
);
foreach my $titbit ($test->get_info) {
next if $file_checked->{$titbit->{file}};
next if $self->files and not exists $self->files->{$titbit->{file}};
$file_checked->{$titbit->{file}} = $titbit;
if (exists $file_mapping->{$titbit->{file}}) {
$reconcile->check(
$titbit,
$file_mapping->{$titbit->{file}},
$self->check_copyright,
);
}
else {
Debian::LicenseReconcile::Errors->push(
test => 'File mismatch',
msg => "Filter $filter_name found $titbit->{file} which was not in the file mapping. This probably implies a bug in the filter.",
);
}
}
return $file_checked;
}
sub _report_errors {
my $self = shift;
if (not $self->quiet) {
foreach my $error (Debian::LicenseReconcile::Errors->list) {
warn "$error->{test}: $error->{msg}";
}
}
return Debian::LicenseReconcile::Errors->how_many > 0 ? 1 : 0;
}
sub _parse_filter_name {
my $filter_name = shift;
my $class = "Debian::LicenseReconcile::Filter::";
if ($filter_name =~ m{\A(\w+)~(\w+)\z}xms) {
$class .= $2;
$filter_name = $1;
}
else {
$class .= $filter_name;
}
return $class, $filter_name;
}
=head1 NAME
Debian::LicenseReconcile::App - encapsulate the application code
=head1 VERSION
Version 0.14
=cut
our $VERSION = '0.14';
=head1 SYNOPSIS
use Debian::LicenseReconcile::App;
my $app = Debian::LicenseReconcile::App->new(...);
exit($app->run);
=head1 SUBROUTINES/METHODS
=head2 new
This constructor takes key value pairs and returns the correspondingly blessed
object.
=head2 run
This contains the core logic of the tool.
=head2 quiet
=head2 display_mapping
=head2 changelog_file
=head2 config_file
=head2 copyright
=head2 check_copyright
=head2 directory
=head2 filters
=head2 format_spec
=head2 files
=head2 suggest_stanzas
=head1 AUTHOR
Nicholas Bamber, C<< <nicholas at periapt.co.uk> >>
=head1 LICENSE AND COPYRIGHT
Copyright 2012, 2015, Nicholas Bamber <nicholas at periapt.co.uk> .
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
1; # End of Debian::LicenseReconcile::FormatSpec
|