加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bozosoity-checker.pl 750 Bytes
一键复制 编辑 原始数据 按行查看 历史
swh 提交于 2007-02-27 11:45 . Initial import
#!/usr/bin/perl -w
%used = ();
while ($file = shift) {
open(FH, $file);
if (!($file =~ /_(\d+)\.xml/)) {
die "'$file' doesn't look like it contains a LADSPA ID";
}
$fnid = $1;
#print "looking for $fnid\n";
$found = 0;
while (<FH>) {
if (/id="(\d+)"/) {
$id = $1;
if ($used{$id}) {
print "*** Warning: duplicate ID ($id) found in $file and ".$used{$id}."\n";
} else {
$used{$id} = $file;
}
if ($id < 1000) {
print "*** Warning: non distributable ID ($id) found in $file\n";
} elsif ($id < $fnid) {
print "*** Warning: ID $id in XML less than hinted in filename ($fnid)\n";
}
}
if (/id="$fnid"/) {
$found = 1;
}
}
if (!$found) {
print "*** Warning: no matching ID found in $file\n";
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化