すべてのソースファイルの先頭でライセンスヘッダーを使用する必要がある既存のプロジェクトがあります。問題は、ライセンスヘッダーが静的ではないことです。
#+======================================================================
# \$HeadURL [filled in by svn] \$
# \$Id [filled in by svn] \$
#
# Project : Project blah blah - only one line
#
# Description : A longer description
# which may or may not span multiple lines
#
# Author(s) : some author text
# but there may be a few more authors, too!
#
# Copyright (c) : 2010-YYYY Some company,
# and a few fixed lines of
# address
#
# and a few more lines of fixed license code
# that does not change
#
#-======================================================================
ファイルのリストをスキャンしてファイルタイプ(C、Java、bashなど)を判別し、ライセンスのプリアンブルが存在するかどうかを確認するための基本的なチェックを行う既存のperlスクリプトがあります。
そうでない場合は、手動で更新する必要がある空白のライセンスヘッダーを挿入できます。
しかし、私はどのように私ができるか知りたいです:
- 非静的情報を使用して既存のライセンスを検出し、
- 既存のperlprocessFile($ fileName、$ type)関数(下記)を拡張して、既存の「プロジェクト」、「説明」、および「作成者」情報を保持しますか?
動的テキストを示すためにライセンステンプレートにマーカーを配置する必要があるのではないかと思います。動的テキストは、再生成されたヘッダーに保存する必要があります。
perl正規表現またはパターンマッチャーを使用して現在の変数情報を取得し、ヘッダーに再挿入して年を更新する方法についての指針を教えてください。
すべての魔法は「for($ i = 0; $ i <5; ++ $ i)」ループで発生する必要があることがわかります。
sub processFile {
my $i;
my $lineno = 0;
my $filename = $_[0];
my $type = $_[1];
my @license = split(/\n/, $licenses{$type});
my @contents;
#print "$filename is a $type file\n";
tie @contents, 'Tie::File', $filename or die $!;
if ($prolog{$type}) { # should not insert license at line 0
my $len = scalar(@contents);
while ($lineno < $len) {
if ($contents[$lineno] =~ /^$prolog{$type}$/) {
last;
} else {
$lineno++;
}
}
if ($lineno >= $len) {
# no prolog, so let's just insert it into the start
$lineno = 0;
} else {
$lineno = $lineno + 1;
}
} else {
$lineno = 0;
}
# Compare the first 5 lines excluding prolog with the license
# header. If they match, the license header won't be inserted.
for ($i = 0; $i < 5; ++$i) {
my $line = $contents[$i + $lineno];
$line =~ s/\$(\w+)\:.*\$/\$$1\$/;
if ($line ne $license[$i]) {
splice @contents, $lineno, 0, @license;
push @processedFiles, $filename;
last
}
}
untie @contents;
}