私が書いている perl スクリプトは、Makefile のような継続行を持つファイルを解析する必要があります。つまり、空白で始まる行は前の行の一部です。
私は以下のコードを書きましたが、あまりクリーンでも perl っぽいとも思えません (「redo」も使用していません!)。
多くのエッジ ケースがあります: 奇妙な場所での EOF、単一行のファイル、空白行 (または非空白行、または継続行) で開始または終了するファイル、空のファイル。すべてのテスト ケース (およびコード) は次の場所にあります: http://whatexit.org/tal/flatten.tar
私のすべてのテストに合格する、よりクリーンで perl っぽいコードを書くことができますか?
#!/usr/bin/perl -w
use strict;
sub process_file_with_continuations {
my $processref = shift @_;
my $nextline;
my $line = <ARGV>;
$line = '' unless defined $line;
chomp $line;
while (defined($nextline = <ARGV>)) {
chomp $nextline;
next if $nextline =~ /^\s*#/; # skip comments
$nextline =~ s/\s+$//g; # remove trailing whitespace
if (eof()) { # Handle EOF
$nextline =~ s/^\s+/ /;
if ($nextline =~ /^\s+/) { # indented line
&$processref($line . $nextline);
}
else {
&$processref($line);
&$processref($nextline) if $nextline ne '';
}
$line = '';
}
elsif ($nextline eq '') { # blank line
&$processref($line);
$line = '';
}
elsif ($nextline =~ /^\s+/) { # indented line
$nextline =~ s/^\s+/ /;
$line .= $nextline;
}
else { # non-indented line
&$processref($line) unless $line eq '';
$line = $nextline;
}
}
&$processref($line) unless $line eq '';
}
sub process_one_line {
my $line = shift @_;
print "$line\n";
}
process_file_with_continuations \&process_one_line;