/usr/share/perl5/Code/TidyAll.pm is in libcode-tidyall-perl 0.20-1.
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 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 | package Code::TidyAll;
$Code::TidyAll::VERSION = '0.20';
use Cwd qw(realpath);
use Code::TidyAll::Config::INI::Reader;
use Code::TidyAll::Cache;
use Code::TidyAll::Util
qw(abs2rel basename can_load dirname dump_one_line mkpath read_dir read_file rel2abs tempdir_simple uniq write_file);
use Code::TidyAll::Result;
use Date::Format;
use Digest::SHA qw(sha1_hex);
use File::Find qw(find);
use File::Zglob;
use List::MoreUtils qw(uniq);
use Moo;
use Time::Duration::Parse qw(parse_duration);
use Try::Tiny;
use strict;
use warnings;
sub default_conf_names { ( 'tidyall.ini', '.tidyallrc' ) }
# External
has 'backup_ttl' => ( is => 'ro', default => sub { '1 hour' } );
has 'check_only' => ( is => 'ro' );
has 'data_dir' => ( is => 'lazy' );
has 'iterations' => ( is => 'ro', default => sub { 1 } );
has 'list_only' => ( is => 'ro' );
has 'mode' => ( is => 'ro', default => sub { 'cli' } );
has 'no_backups' => ( is => 'ro' );
has 'no_cache' => ( is => 'ro' );
has 'output_suffix' => ( is => 'ro', default => sub { '' } );
has 'plugins' => ( is => 'ro', required => 1 );
has 'quiet' => ( is => 'ro' );
has 'recursive' => ( is => 'ro' );
has 'refresh_cache' => ( is => 'ro' );
has 'root_dir' => ( is => 'ro', required => 1 );
has 'verbose' => ( is => 'ro' );
# Internal
has 'backup_dir' => ( is => 'lazy', init_arg => undef, trigger => 1 );
has 'backup_ttl_secs' => ( is => 'lazy', init_arg => undef );
has 'base_sig' => ( is => 'lazy', init_arg => undef );
has 'cache' => ( is => 'lazy', init_arg => undef );
has 'plugin_objects' => ( is => 'lazy', init_arg => undef );
has 'plugins_for_mode' => ( is => 'lazy', init_arg => undef );
sub _build_backup_dir {
my $self = shift;
return $self->data_dir . "/backups";
}
sub _build_backup_ttl_secs {
my $self = shift;
return parse_duration( $self->backup_ttl );
}
sub _build_base_sig {
my $self = shift;
my $active_plugins = join( "|", map { $_->name } @{ $self->plugin_objects } );
return $self->_sig( [ $Code::TidyAll::VERSION || 0, $active_plugins ] );
}
sub _build_cache {
my $self = shift;
return Code::TidyAll::Cache->new( cache_dir => $self->data_dir . "/cache" );
}
sub _build_data_dir {
my $self = shift;
return $self->root_dir . "/.tidyall.d";
}
sub _build_plugins_for_mode {
my $self = shift;
my $plugins = $self->plugins;
if ( my $mode = $self->mode ) {
$plugins = {
map { ( $_, $plugins->{$_} ) }
grep { $self->_plugin_conf_matches_mode( $plugins->{$_}, $mode ) } keys(%$plugins)
};
}
return $plugins;
}
sub _build_plugin_objects {
my $self = shift;
my @plugin_objects =
map { $self->_load_plugin( $_, $self->plugins->{$_} ) } keys( %{ $self->plugins_for_mode } );
# Sort tidiers before validators, then alphabetical
#
return [ sort { ( $a->is_validator <=> $b->is_validator ) || ( $a->name cmp $b->name ) }
@plugin_objects ];
}
sub BUILD {
my ( $self, $params ) = @_;
# Strict constructor
#
if ( my @bad_params = grep { !$self->can($_) } keys(%$params) ) {
die sprintf(
"unknown constructor param%s %s for %s",
@bad_params > 1 ? "s" : "",
join( ", ", sort map { "'$_'" } @bad_params ),
ref($self)
);
}
$self->{root_dir} = realpath( $self->{root_dir} );
$self->{plugins_for_path} = {};
unless ( $self->no_backups ) {
mkpath( $self->backup_dir, 0, 0775 );
$self->_purge_backups_periodically();
}
}
sub new_from_conf_file {
my ( $class, $conf_file, %params ) = @_;
die "no such file '$conf_file'" unless -f $conf_file;
my $conf_params = $class->_read_conf_file($conf_file);
my $main_params = delete( $conf_params->{'_'} ) || {};
%params = (
plugins => $conf_params,
root_dir => realpath( dirname($conf_file) ),
%$main_params, %params
);
# Initialize with alternate class if given
#
if ( my $tidyall_class = delete( $params{tidyall_class} ) ) {
die "cannot load '$tidyall_class'" unless can_load($tidyall_class);
$class = $tidyall_class;
}
$class->msg( "constructing %s with these params: %s", $class, dump_one_line( \%params ) )
if ( $params{verbose} );
return $class->new(%params);
}
sub _load_plugin {
my ( $self, $plugin_name, $plugin_conf ) = @_;
# Extract first name in case there is a description
#
my ($plugin_fname) = ( $plugin_name =~ /^(\S+)/ );
my $plugin_class = (
$plugin_fname =~ /^\+/
? substr( $plugin_fname, 1 )
: "Code::TidyAll::Plugin::$plugin_fname"
);
try {
can_load($plugin_class) || die "not found";
}
catch {
die "could not load plugin class '$plugin_class': $_";
};
return $plugin_class->new(
class => $plugin_class,
name => $plugin_name,
tidyall => $self,
%$plugin_conf
);
}
sub _plugin_conf_matches_mode {
my ( $self, $conf, $mode ) = @_;
if ( my $only_modes = $conf->{only_modes} ) {
return 0 if ( " " . $only_modes . " " ) !~ / $mode /;
}
if ( my $except_modes = $conf->{except_modes} ) {
return 0 if ( " " . $except_modes . " " ) =~ / $mode /;
}
return 1;
}
sub process_all {
my $self = shift;
return $self->process_paths( $self->find_matched_files );
}
sub process_paths {
my ( $self, @paths ) = @_;
return map { $self->process_path( realpath($_) || rel2abs($_) ) } @paths;
}
sub process_path {
my ( $self, $path ) = @_;
if ( -d $path ) {
if ( $self->recursive ) {
return $self->process_paths( map { "$path/$_" } read_dir($path) );
}
else {
return ( $self->_error_result( "$path: is a directory (try -r/--recursive)", $path ) );
}
}
elsif ( -f $path ) {
return ( $self->process_file($path) );
}
else {
return ( $self->_error_result( "$path: not a file or directory", $path ) );
}
}
sub process_file {
my ( $self, $file ) = @_;
die "$file is not a file" unless -f $file;
my $path = $self->_small_path($file);
if ( $self->list_only ) {
if ( my @plugins = $self->plugins_for_path($path) ) {
printf( "%s (%s)\n", $path, join( ", ", map { $_->name } @plugins ) );
}
return Code::TidyAll::Result->new( path => $path, state => 'checked' );
}
my $cache = $self->no_cache ? undef : $self->cache;
my $cache_key = "sig/$path";
my $contents = my $orig_contents = read_file($file);
if ( $cache && ( my $sig = $cache->get($cache_key) ) ) {
if ( $self->refresh_cache ) {
$cache->remove($cache_key);
}
elsif ( $sig eq $self->_file_sig( $file, $orig_contents ) ) {
$self->msg( "[cached] %s", $path ) if $self->verbose;
return Code::TidyAll::Result->new( path => $path, state => 'cached' );
}
}
my $result = $self->process_source( $orig_contents, $path );
if ( $result->state eq 'tidied' ) {
$self->_backup_file( $path, $contents );
$contents = $result->new_contents;
write_file( join( '', $file, $self->output_suffix ), $contents );
}
$cache->set( $cache_key, $self->_file_sig( $file, $contents ) ) if $cache && $result->ok;
return $result;
}
sub process_source {
my ( $self, $contents, $path ) = @_;
die "contents and path required" unless defined($contents) && defined($path);
my @plugins = $self->plugins_for_path($path);
if ( !@plugins ) {
$self->msg( "[no plugins apply%s] %s",
$self->mode ? " for mode '" . $self->mode . "'" : "", $path )
if $self->verbose;
return Code::TidyAll::Result->new( path => $path, state => 'no_match' );
}
my $basename = basename($path);
my $error;
my $new_contents = my $orig_contents = $contents;
my $plugin;
try {
foreach my $method (qw(preprocess_source process_source_or_file postprocess_source)) {
foreach $plugin (@plugins) {
$new_contents = $plugin->$method( $new_contents, $basename );
}
}
}
catch {
chomp;
$error = $_;
$error = sprintf( "*** '%s': %s", $plugin->name, $_ ) if $plugin;
};
my $was_tidied = !$error && ( $new_contents ne $orig_contents );
if ( $was_tidied && $self->check_only ) {
$error = "*** needs tidying";
undef $was_tidied;
}
if ( !$self->quiet || $error ) {
my $status = $was_tidied ? "[tidied] " : "[checked] ";
my $plugin_names =
$self->verbose ? sprintf( " (%s)", join( ", ", map { $_->name } @plugins ) ) : "";
$self->msg( "%s%s%s", $status, $path, $plugin_names );
}
if ($error) {
return $self->_error_result( $error, $path );
}
elsif ($was_tidied) {
return Code::TidyAll::Result->new(
path => $path,
state => 'tidied',
new_contents => $new_contents
);
}
else {
return Code::TidyAll::Result->new( path => $path, state => 'checked' );
}
}
sub _read_conf_file {
my ( $class, $conf_file ) = @_;
my $conf_string = read_file($conf_file);
my $root_dir = dirname($conf_file);
$conf_string =~ s/\$ROOT/$root_dir/g;
my $conf_hash = Code::TidyAll::Config::INI::Reader->read_string($conf_string);
die "'$conf_file' did not evaluate to a hash"
unless ( ref($conf_hash) eq 'HASH' );
return $conf_hash;
}
sub _backup_file {
my ( $self, $path, $contents ) = @_;
unless ( $self->no_backups ) {
my $backup_file = join( "/", $self->backup_dir, $self->_backup_filename($path) );
mkpath( dirname($backup_file), 0, 0775 );
write_file( $backup_file, $contents );
}
}
sub _backup_filename {
my ( $self, $path ) = @_;
return join( "", $path, "-", time2str( "%Y%m%d-%H%M%S", time ), ".bak" );
}
sub _purge_backups_periodically {
my ($self) = @_;
my $cache = $self->cache;
my $last_purge_backups = $cache->get("last_purge_backups") || 0;
if ( time > $last_purge_backups + $self->backup_ttl_secs ) {
$self->_purge_backups();
$cache->set( "last_purge_backups", time() );
}
}
sub _purge_backups {
my ($self) = @_;
$self->msg("purging old backups") if $self->verbose;
find(
{
follow => 0,
wanted => sub {
unlink $_ if -f && /\.bak$/ && time > ( stat($_) )[9] + $self->backup_ttl_secs;
},
no_chdir => 1
},
$self->backup_dir
);
}
sub find_conf_file {
my ( $class, $conf_names, $start_dir ) = @_;
my $path1 = rel2abs($start_dir);
my $path2 = realpath($start_dir);
my $conf_file = $class->_find_conf_file_upward( $conf_names, $path1 )
|| $class->_find_conf_file_upward( $conf_names, $path2 );
unless ( defined $conf_file ) {
die sprintf(
"could not find %s upwards from %s",
join( " or ", @$conf_names ),
( $path1 eq $path2 ) ? "'$path1'" : "'$path1' or '$path2'"
);
}
return $conf_file;
}
sub _find_conf_file_upward {
my ( $class, $conf_names, $search_dir ) = @_;
$search_dir =~ s{/+$}{};
my $cnt = 0;
while (1) {
foreach my $conf_name (@$conf_names) {
my $try_path = "$search_dir/$conf_name";
return $try_path if ( -f $try_path );
}
if ( $search_dir eq '/' ) {
return undef;
}
else {
$search_dir = dirname($search_dir);
}
die "inf loop!" if ++$cnt > 100;
}
}
sub find_matched_files {
my ($self) = @_;
my @matched_files;
my $plugins_for_path = $self->{plugins_for_path};
my $root_length = length( $self->root_dir );
foreach my $plugin ( @{ $self->plugin_objects } ) {
my @selected = grep { -f && !-l } $self->_zglob( $plugin->selects );
if ( @{ $plugin->ignores } ) {
my %is_ignored = map { ( $_, 1 ) } $self->_zglob( $plugin->ignores );
@selected = grep { !$is_ignored{$_} } @selected;
}
push( @matched_files, @selected );
foreach my $file (@selected) {
my $path = substr( $file, $root_length + 1 );
$plugins_for_path->{$path} ||= [];
push( @{ $plugins_for_path->{$path} }, $plugin );
}
}
return sort( uniq(@matched_files) );
}
sub plugins_for_path {
my ( $self, $path ) = @_;
$self->{plugins_for_path}->{$path} ||=
[ grep { $_->matches_path($path) } @{ $self->plugin_objects } ];
return @{ $self->{plugins_for_path}->{$path} };
}
sub _zglob {
my ( $self, $globs ) = @_;
local $File::Zglob::NOCASE = 0;
my @files;
foreach my $glob (@$globs) {
try {
push( @files, File::Zglob::zglob( join( "/", $self->root_dir, $glob ) ) );
}
catch {
die "error parsing '$glob': $_";
}
}
return uniq(@files);
}
sub _small_path {
my ( $self, $path ) = @_;
die sprintf( "'%s' is not underneath root dir '%s'!", $path, $self->root_dir )
unless index( $path, $self->root_dir ) == 0;
return substr( $path, length( $self->root_dir ) + 1 );
}
sub _file_sig {
my ( $self, $file, $contents ) = @_;
my $last_mod = ( stat($file) )[9];
return $self->_sig( [ $self->base_sig, $last_mod, $contents ] );
}
sub _sig {
my ( $self, $data ) = @_;
return sha1_hex( join( ",", @$data ) );
}
sub _tempdir {
my ($self) = @_;
$self->{tempdir} ||= tempdir_simple();
return $self->{tempdir};
}
sub msg {
my ( $self, $format, @params ) = @_;
printf "$format\n", @params;
}
sub _error_result {
my ( $self, $msg, $path ) = @_;
$self->msg( "%s", $msg );
return Code::TidyAll::Result->new( path => $path, state => 'error', error => $msg );
}
1;
__END__
=pod
=head1 NAME
Code::TidyAll - Engine for tidyall, your all-in-one code tidier and validator
=head1 VERSION
version 0.20
=head1 SYNOPSIS
use Code::TidyAll;
my $ct = Code::TidyAll->new_from_conf_file(
'/path/to/conf/file',
...
);
# or
my $ct = Code::TidyAll->new(
root_dir => '/path/to/root',
plugins => {
perltidy => {
select => 'lib/**/*.(pl|pm)',
argv => '-noll -it=2',
},
...
}
);
# then...
$ct->process_paths($file1, $file2);
=head1 DESCRIPTION
This is the engine used by L<tidyall|tidyall> - read that first to get an
overview.
You can call this API from your own program instead of executing C<tidyall>.
=head1 CONSTRUCTION
=head2 Constructor methods
=over
=item new (%params)
The regular constructor. Must pass at least I<plugins> and I<root_dir>.
=item new_with_conf_file ($conf_file, %params)
Takes a conf file path, followed optionally by a set of key/value parameters.
Reads parameters out of the conf file and combines them with the passed
parameters (the latter take precedence), and calls the regular constructor.
If the conf file or params defines I<tidyall_class>, then that class is
constructed instead of C<Code::TidyAll>.
=back
=head2 Constructor parameters
=over
=item plugins
Specify a hash of plugins, each of which is itself a hash of options. This is
equivalent to what would be parsed out of the sections in the configuration
file.
=item backup_ttl
=item check_only
=item data_dir
=item iterations
=item mode
=item no_backups
=item no_cache
=item output_suffix
=item quiet
=item root_dir
=item verbose
These options are the same as the equivalent C<tidyall> command-line options,
replacing dashes with underscore (e.g. the C<backup-ttl> option becomes
C<backup_ttl> here).
=back
=head1 METHODS
=over
=item process_paths (path, ...)
Call L</process_file> on each file; descend recursively into each directory if
the C<recursive> flag is on. Return a list of
L<Code::TidyAll::Result|Code::TidyAll::Result> objects, one for each file.
=item process_file (file)
Process the I<file>, meaning
=over
=item *
Check the cache and return immediately if file has not changed
=item *
Apply appropriate matching plugins
=item *
Print success or failure result to STDOUT, depending on quiet/verbose settings
=item *
Write the cache if enabled
=item *
Return a L<Code::TidyAll::Result|Code::TidyAll::Result> object
=back
=item process_source (I<source>, I<path>)
Like L</process_file>, but process the I<source> string instead of a file, and
do not read from or write to the cache. You must still pass the relative
I<path> from the root as the second argument, so that we know which plugins to
apply. Return a L<Code::TidyAll::Result|Code::TidyAll::Result> object.
=item plugins_for_path (I<path>)
Given a relative I<path> from the root, return a list of
L<Code::TidyAll::Plugin|Code::TidyAll::Plugin> objects that apply to it, or an
empty list if no plugins apply.
=item find_conf_file (I<conf_names>, I<start_dir>)
Class method. Start in the I<start_dir> and work upwards, looking for one of
the I<conf_names>. Return the pathname if found or throw an error if not
found.
=item find_matched_files
Returns a list of sorted files that match at least one plugin in configuration.
=back
=head1 SEE ALSO
L<Code::TidyAll|Code::TidyAll>
=head1 AUTHOR
Jonathan Swartz <swartz@pobox.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|