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
|
package Software::Copyright;
use 5.20.0;
use warnings;
use utf8;
use Unicode::Normalize;
use Mouse;
use Mouse::Util::TypeConstraints;
use MouseX::NativeTraits;
use Storable qw/dclone/;
use Software::Copyright::Statement;
use feature qw/postderef signatures/;
no warnings qw/experimental::postderef experimental::signatures/;
use overload '""' => \&stringify;
use overload 'eq' => \&is_equal;
use overload 'ne' => \&is_not_equal;
sub _clean_copyright ($c) {
# cut off everything after and including the first non-printable
# (spare \n and \c though)
$c =~ s![\x00-\x09\x0b\x0c\x0e\x1f].*!!;
return $c;
}
sub _create_or_merge ($result, $c) {
my $st = Software::Copyright::Statement->new($c);
my $name = $st->name // '';
if ($result->{$name}) {
$result->{$name}->merge($st);
}
elsif ($st->name) {
$result->{$name} = $st;
}
elsif ($st->record) {
$result->{$st->record} = $st;
}
else {
$result->{unknown} = $st;
}
return;
}
subtype 'Copyright::Software::StatementHash' => as 'HashRef[Software::Copyright::Statement]';
coerce 'Copyright::Software::StatementHash' => from 'Str' => via {
my $str = $_ ;
my $result = {} ;
my @year_only_data;
my @data = split( m!(?:\s+/\s+)|(?:\s*\n\s*)!, $str);
# split statement that can be licensecheck output or debfmt data
foreach my $c ( @data ) {
if ($c =~ /^[\d\s,.-]+$/) {
push @year_only_data, $c;
}
else {
# copyright contain letters, so hopefully some name
_create_or_merge($result, $c);
}
}
# year only data is dropped when other more significant data is
# present (with names)
if (@data eq @year_only_data) {
# got only year data, save it.
foreach my $c ( @data ) {
_create_or_merge($result, $c);
}
}
return $result;
};
has statement_by_name => (
is => 'ro',
coerce => 1,
traits => ['Hash'],
isa => 'Copyright::Software::StatementHash',
default => sub { {} },
handles => {
statement_list => 'values',
owners => 'keys',
statement => 'get',
set_statement => 'set',
},
required => 1,
);
around BUILDARGS => sub ($orig, $class, @args) {
my $str = _clean_copyright($args[0]);
# cleanup
$str =~ /^[\s\W]+|[\s\W]+$/g;
return $class->$orig({
statement_by_name => $str,
}) ;
};
sub merge ($self, $input) {
my $other = ref($input) ? $input : Software::Copyright->new($input);
foreach my $owner ($other->owners) {
my $from = $other->statement($owner);
my $target = $self->statement($owner);
if ($target) {
$target->merge($from);
}
else {
$self->set_statement($owner, dclone($from));
}
}
return;
}
sub stringify ($self, $=1, $=1) {
return join("\n", reverse sort $self->statement_list);
}
sub is_equal ($self, $other, $=1) {
return $self->stringify eq $other->stringify;
}
sub is_not_equal ($self, $other, $=1) {
return $self->stringify ne $other->stringify;
}
sub is_valid ($self) {
return (scalar grep {$_->name || $_->record } $self->statement_list) ? 1 : 0;
}
sub contains($self, $input) {
my $other = ref($input) ? $input : Software::Copyright->new($input);
my $result = 1 ;
foreach my $other_owner ($other->owners) {
my $other_st = $other->statement($other_owner);
my $self_st = $self->statement($other_owner);
if ($self_st) {
$result &&= $self_st->contains($other_st);
}
else {
$result = 0;
}
}
return $result;
}
1;
# ABSTRACT: Copyright class
__END__
=head1 SYNOPSIS
use Software::Copyright;
my $copyright = Software::Copyright->new('2020,2021, Joe <joe@example.com>');
# stringification
my $s = "$copyright"; # => is "2020, 2021, Joe <joe\@example.com>"
# add with merge
$copyright->merge('2018-2020 Averell');
# after addition
$s = "$copyright"; # => is "2020, 2021, Joe <joe\@example.com>\n2018-2020, Averell"
# merge statement which adds email
$copyright->merge('2016, Averell <averell@example.com>');
$s = "$copyright"; # => is "2020, 2021, Joe <joe\@example.com>\n2016, 2018-2020, Averell <averell\@example.com>"
=head1 DESCRIPTION
This class holds a copyright statement, i.e. a set of year range, name
and email.
=head1 CONSTRUCTOR
The constructor is called with a copyright statement string. This string can be
spread on several lines. The constructor is also compatible with the string given by
Debian's L<licensecheck>, i.e. the statements can be separated by "C</>".
=head1 Methods
=head2 statement
Get the L<Software::Copyright::Statement> object of a given user.
=head2 statement_list
Returns a list of L<Software::Copyright::Statement> object for all users.
=head2 stringify
Returns a string containing a cleaned up copyright statement.
=head2 is_valid
Returns true if the copyright contains valid records, i.e. records with names.
=head2 owners
Return a list of statement owners. An owner is either a name or a record.
=head2 statement
Returns the L<Software::Copyright::Statement> object for the given owner:
my $statement = $copyright->statement('Joe Dalton');
=head2 merge
Merge in a statement. This statement is either merged with a existing
statement when the owner match or appended to the list of statements.
The statement parameter can either be a string or an
L<Software::Copyright::Statement> object.
=head2 contains
Return 1 if the other copyright is contained in current copyright,
i.e. all other statements are contained in current statements (See
L<Copyright::Statement/"contains"> for details on statement
containment).
For instance:
=over
=item *
C<2016, Joe> copyright is contained in C<2014-2020, Joe> copyright.
=item *
C<2016, Joe> is contained in C<2014-2020, Joe / 2019, Jack>
=item *
C<2010, Joe> is B<not> contained in C<2014-2020, Joe>
=back
=head1 Operator overload
Operator C<"">, C<eq> and C<ne> are overloaded.
=head1 See also
L<Software::Copyright::Statement>, L<Software::Copyright::Owner>
=cut
|