############################################################################## # $URL: http://perlcritic.tigris.org/svn/perlcritic/trunk/Perl-Critic/lib/Perl/Critic/Policy/CodeLayout/RequireConsistentNewlines.pm $ # $Date: 2008-07-22 06:47:03 -0700 (Tue, 22 Jul 2008) $ # $Author: clonezone $ # $Revision: 2609 $ ############################################################################## package Perl::Critic::Policy::CodeLayout::RequireConsistentNewlines; use 5.006001; use strict; use warnings; use Readonly; use Perl::Critic::Utils qw{ :severities }; use PPI::Token::Whitespace; use English qw(-no_match_vars); use base 'Perl::Critic::Policy'; our $VERSION = '1.090'; Readonly::Scalar my $LINE_END => qr/\015{1,2}\012|\012|\015/mxs; #----------------------------------------------------------------------------- Readonly::Scalar my $DESC => q{Use the same newline through the source}; Readonly::Scalar my $EXPL => q{Change your newlines to be the same throughout}; #----------------------------------------------------------------------------- sub supported_parameters { return () } sub default_severity { return $SEVERITY_HIGH } sub default_themes { return qw( core bugs ) } sub applies_to { return 'PPI::Document' } #----------------------------------------------------------------------------- sub violates { my ( $self, undef, $doc ) = @_; my $filename = $doc->filename(); return if !$filename; my $fh; return if !open $fh, '<', $filename; local $RS = undef; my $source = <$fh>; close $fh or return; my $newline; # undef until we find the first one my $line = 1; my @v; while ( $source =~ m/\G([^\012\015]*)($LINE_END)/cgmxs ) { my $code = $1; my $nl = $2; my $col = length $code; $newline ||= $nl; if ( $nl ne $newline ) { my $token = PPI::Token::Whitespace->new( $nl ); $token->{_location} = [$line, $col, $col]; push @v, $self->violation( $DESC, $EXPL, $token ); } $line++; } return @v; } 1; #----------------------------------------------------------------------------- __END__ =pod =for stopwords GnuPG =head1 NAME Perl::Critic::Policy::CodeLayout::RequireConsistentNewlines - Use the same newline through the source. =head1 AFFILIATION This Policy is part of the core L distribution. =head1 DESCRIPTION Source code files are divided into lines with line endings of C<\r>, C<\n> or C<\r\n>. Mixing these different line endings causes problems in many text editors and, notably, Module::Signature and GnuPG. =head1 CAVEAT This policy works outside of PPI because PPI automatically normalizes source code to local newline conventions. So, this will only work if we know the filename of the source code. =head1 CONFIGURATION This Policy is not configurable except for the standard options. =head1 AUTHOR Chris Dolan =head1 COPYRIGHT Copyright (C) 2006 Chris Dolan. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut # Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 78 # indent-tabs-mode: nil # c-indentation-style: bsd # End: # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :