3 # makeDist: Build a BackupPC distribution
7 # This script should be run with no arguments to build a
8 # distribution. The $Version and $ReleaseDate should be
9 # edited below to specify the version name and the release
10 # date. The distribution is createede in the sub-directory
11 # dist. The dsitribution is in the file name:
13 # dist/BackupPC-$Version.tar.gz.
15 # Often the language files are not up to date, and makeDist
16 # exits after complaining about the lang files being inconsistent.
17 # Use the -l option to turn off that behavior.
20 # Craig Barratt <cbarratt@users.sourceforge.net>
23 # Copyright (C) 2001-2007 Craig Barratt
25 # This program is free software; you can redistribute it and/or modify
26 # it under the terms of the GNU General Public License as published by
27 # the Free Software Foundation; either version 2 of the License, or
28 # (at your option) any later version.
30 # This program is distributed in the hope that it will be useful,
31 # but WITHOUT ANY WARRANTY; without even the implied warranty of
32 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 # GNU General Public License for more details.
35 # You should have received a copy of the GNU General Public License
36 # along with this program; if not, write to the Free Software
37 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
39 #========================================================================
48 use BackupPC::Config::Meta qw(:all);
51 die("BackupPC::Lib->new failed\n")
52 if ( !($bpc = BackupPC::Lib->new(".", ".", "./conf", 1)) );
56 my $Version = "3.1.0";
57 my $ReleaseDate = "15 Apr 2007";
58 my $DistDir = "dist/BackupPC-$Version";
63 bin/BackupPC_archiveHost
64 bin/BackupPC_archiveStart
65 bin/BackupPC_attribPrint
67 bin/BackupPC_fixupBackupSummary
71 bin/BackupPC_sendEmail
72 bin/BackupPC_serverMesg
73 bin/BackupPC_trashClean
74 bin/BackupPC_tarExtract
75 bin/BackupPC_tarCreate
76 bin/BackupPC_tarPCCopy
77 bin/BackupPC_compressPool
78 bin/BackupPC_zipCreate
80 lib/BackupPC/Attrib.pm
81 lib/BackupPC/Config.pm
82 lib/BackupPC/FileZIO.pm
84 lib/BackupPC/PoolWrite.pm
85 lib/BackupPC/Storage.pm
87 lib/BackupPC/CGI/AdminOptions.pm
88 lib/BackupPC/CGI/Archive.pm
89 lib/BackupPC/CGI/ArchiveInfo.pm
90 lib/BackupPC/CGI/Browse.pm
91 lib/BackupPC/CGI/DirHistory.pm
92 lib/BackupPC/CGI/EditConfig.pm
93 lib/BackupPC/CGI/EmailSummary.pm
94 lib/BackupPC/CGI/GeneralInfo.pm
95 lib/BackupPC/CGI/HostInfo.pm
96 lib/BackupPC/CGI/Lib.pm
97 lib/BackupPC/CGI/LOGlist.pm
98 lib/BackupPC/CGI/Queue.pm
99 lib/BackupPC/CGI/ReloadServer.pm
100 lib/BackupPC/CGI/RestoreFile.pm
101 lib/BackupPC/CGI/RestoreInfo.pm
102 lib/BackupPC/CGI/Restore.pm
103 lib/BackupPC/CGI/RSS.pm
104 lib/BackupPC/CGI/StartServer.pm
105 lib/BackupPC/CGI/StartStopBackup.pm
106 lib/BackupPC/CGI/StopServer.pm
107 lib/BackupPC/CGI/Summary.pm
108 lib/BackupPC/CGI/View.pm
109 lib/BackupPC/Config/Meta.pm
110 lib/BackupPC/Lang/de.pm
111 lib/BackupPC/Lang/en.pm
112 lib/BackupPC/Lang/es.pm
113 lib/BackupPC/Lang/fr.pm
114 lib/BackupPC/Lang/it.pm
115 lib/BackupPC/Lang/nl.pm
116 lib/BackupPC/Lang/pt_br.pm
117 lib/BackupPC/Lang/zh_CN.pm
118 lib/BackupPC/Storage/Text.pm
119 lib/BackupPC/Xfer/Archive.pm
120 lib/BackupPC/Xfer/BackupPCd.pm
121 lib/BackupPC/Xfer/Smb.pm
122 lib/BackupPC/Xfer/Tar.pm
123 lib/BackupPC/Xfer/Rsync.pm
124 lib/BackupPC/Xfer/RsyncDigest.pm
125 lib/BackupPC/Xfer/RsyncFileIO.pm
126 lib/BackupPC/Zip/FileMember.pm
127 cgi-bin/BackupPC_Admin
131 if ( !getopts("l", \%opts) || @ARGV != 0 ) {
132 print("usage: $0 [-l]\n");
137 # Check config parameters
142 $errCnt += CheckConfigParams("conf/config.pl", $ConfVars, 0);
144 $errCnt += CheckConfigParams("doc-src/BackupPC.pod", $ConfVars, 1);
146 $errCnt += CheckMetaDataVsConfig($ConfVars, "lib/BackupPC/Config/Meta.pm");
148 $errCnt += CheckEditorVsConfig($ConfVars, "lib/BackupPC/CGI/EditConfig.pm");
151 # These config parameters are not used in the code, so ignore them.
153 $ConfVars->{BackupPCUser} = 2;
154 $ConfVars->{CgiDir} = 2;
155 $ConfVars->{TopDir} = 2;
156 $ConfVars->{LogDir} = 2;
157 $ConfVars->{ConfDir} = 2;
158 $ConfVars->{InstallDir} = 2;
159 $ConfVars->{CgiImageDir} = 2;
162 # These config parameters are used in the code to be backward compatible,
163 # but are not present in the current config file, so ignore them.
165 $ConfVars->{BlackoutHourBegin} = 2;
166 $ConfVars->{BlackoutHourEnd} = 2;
167 $ConfVars->{BlackoutWeekDays} = 2;
168 $ConfVars->{RsyncLogLevel} = 2;
170 foreach my $file ( @PerlSrc ) {
171 $errCnt += CheckConfigParams($file, $ConfVars, 1);
174 $errCnt += CheckLangUsage();
175 $errCnt += CheckLangTags();
178 print("Exiting because of errors\n");
183 foreach my $var ( sort(keys(%$ConfVars) ) ) {
184 next if ( $ConfVars->{$var} >= 2 || $var =~ /^\$/ );
185 printf("Unused config parameter $var\n");
189 print("Exiting because of errors\n");
193 rmtree($DistDir, 0, 0);
194 mkpath($DistDir, 0, 0777);
196 foreach my $dir ( qw(bin doc conf images init.d/src cgi-bin
204 mkpath("$DistDir/$dir", 0, 0777);
208 my $ConfPod = config2pod();
210 mkpath("doc", 0, 0777);
211 InstallFile("doc-src/BackupPC.pod", "doc/BackupPC.pod");
214 pod2html("doc/BackupPC.pod",
215 "--backlink=Back to Top",
218 "--outfile=doc/BackupPC.html");
220 foreach my $file ( (@PerlSrc,
226 conf/BackupPC_stnd.css
227 conf/BackupPC_stnd_orig.css
230 init.d/src/debian-backuppc
231 init.d/src/freebsd-backuppc
232 init.d/src/gentoo-backuppc
233 init.d/src/gentoo-backuppc.conf
234 init.d/src/linux-backuppc
235 init.d/src/slackware-backuppc
236 init.d/src/solaris-backuppc
237 init.d/src/suse-backuppc
245 InstallFile("$file", "$DistDir/$file");
248 system("cd dist ; tar zcf BackupPC-$Version.tar.gz BackupPC-$Version");
249 print("Distribution written to dist/BackupPC-$Version.tar.gz\n");
250 unlink("pod2htmd.x~~");
251 unlink("pod2htmi.x~~");
252 unlink("pod2htmd.tmp");
253 unlink("pod2htmi.tmp");
255 ###########################################################################
257 ###########################################################################
261 my($file, $dest) = @_;
263 unlink($dest) if ( -d $dest );
264 if ( $file =~ /\.gif/ || $file =~ /\.png/ ) {
265 die("can't copy($file, $dest)\n") unless copy($file, $dest);
267 open(FILE, $file) || die("can't open $file for reading\n");
268 open(OUT, ">$dest") || die("can't open $dest for writing\n");
272 s/^([#*\s]+)Version \d+\.\d+[\.\w]*, released \d+ \w+ \d{4}\.?/$1Version __VERSION__, released __RELEASEDATE__./;
273 s/__VERSION__/$Version/g;
274 s/__RELEASEDATE__/$ReleaseDate/g;
275 if ( $file =~ /BackupPC\.html$/ ) {
277 # fixup for conf links
279 if ( !/A NAME="item_(%|_)conf/i ) {
281 defined($ConfName{$1})
282 ? "\L<a href=\"#$ConfName{$1}\">\E\$Conf{$1}<\/A>"
288 if ( /__CONFIGPOD__/ ) {
290 } elsif ( /^use lib ".*BackupPC\/lib";/
291 || /^use lib "\/home\/pcbackup\/install\/lib";/ ) {
292 print OUT "use lib \"__INSTALLDIR__/lib\";\n";
293 } elsif ( $file =~ /Lib.pm/ && /^(\s*\$topDir\s*=\s*)'.*'(\s*if\s.*)/ ) {
294 print OUT "$1'__TOPDIR__'$2\n";
295 } elsif ( $file =~ /Lib.pm/ && /^(\s*\$installDir\s*=\s*)'.*'(\s*if\s.*)/ ) {
296 print OUT "$1'__INSTALLDIR__'$2\n";
297 } elsif ( $file =~ /Lib.pm/ && /^(\s*ConfDir\s*=\>\s*\$confDir eq.*)'.*'(.*)/ ) {
298 print OUT "$1'__CONFDIR__'$2\n";
299 } elsif ( $file =~ /Lib.pm/ && /^(\s*my \$useFHS\s*=\s*)\d;/ ) {
300 print OUT "${1}0;\n";
301 } elsif ( $file =~ /Lib.pm/ && /(.*Version *=> .*)'[\w\d\.]+',/ ) {
302 print OUT "$1'$Version',\n";
303 } elsif ( $file =~ /configure.pl/ && /__CONFIGURE_BIN_LIST__/ ) {
304 print OUT " ", join("\n ", grep(/^bin\//, @PerlSrc)), "\n";
305 } elsif ( $file =~ /configure.pl/ && /__CONFIGURE_LIB_LIST__/ ) {
306 print OUT " ", join("\n ", grep(/^lib\//, @PerlSrc)), "\n";
307 } elsif ( $file =~ /BackupPC_Admin/ && /(my *\$installDir *= *)'.*'/ ) {
308 print OUT "$1'__INSTALLDIR__/lib';\n";
325 open(C, "conf/config.pl") || die("can't open conf/config.pl");
327 my($str, $out, $getHdr, @conf);
332 if ( /^#########################/ ) {
335 $out .= "=back\n\n" if ( !$first );
336 $out .= "=head2 $str\n\n=over 4\n\n";
345 next if ( $str eq "" && /^$/ );
347 $str .= "\n" if ( $str =~ /examples?:\n$/i );
348 } elsif ( /^\$Conf{([^}]*)/ ) {
352 if ( !s/\[$/[ ... ];/ && !s/<<'EOF'/.../ ) {
353 s/([^;])\s*$/$1 .../;
356 my $text = "_conf_${var}_";
357 $text =~ s{[\W\s]}{_}g;
358 $ConfName{$var} = "item_$text";
360 if ( $str ne "" && @conf ) {
361 $out .= "=item " . join("\n\n=item ", @conf) . "\n\n";
363 $out .= "\n" if ( $str !~ /\n$/ );
369 if ( $str ne "" && @conf ) {
370 $out .= "=item " . join("\n\n=item ", @conf) . "\n\n";
372 $out .= "\n" if ( $str !~ /\n$/ );
374 $out .= "=back\n\n" if ( !$first );
378 sub CheckConfigParams
380 my($file, $vars, $check) = @_;
383 open(F, $file) || die("can't open $file\n");
387 s/\$(self|bpc)->{Conf}{([^}\$]+)}/if ( !defined($vars->{$2}) ) {
388 print("Unexpected Conf var $2 in $file\n");
393 s/\$[Cc]onf(?:->)?{([^}\$]+)}/if ( !defined($vars->{$1}) ) {
394 print("Unexpected Conf var $1 in $file\n");
399 s/UserCommandRun\("([^"]*)"/if ( !defined($vars->{$1}) ) {
400 print("Unexpected Conf var $1 in $file\n");
408 s/^[^#]*\$self->{Conf}{([^}]*)/$vars->{$1} = 1;/eg;
409 s/^[^#]*\$Conf{([^}]*)/$vars->{$1} = 1;/eg;
416 sub CheckMetaDataVsConfig
418 my($confVars, $file) = @_;
423 # Check that the meta file mentions all the config
426 open(F, $file) || die("can't open $file");
429 next if ( !/^\s{4}(\w+)\s+=>/ );
430 if ( $confVars->{$1} ) {
434 next if ( $1 eq "Hosts" );
435 print("$file has $1 but missing from conf/config.pl\n");
439 foreach my $v ( keys(%$confVars) ) {
440 next if ( $done->{$v} );
441 print("$file missing $v from conf/config.pl\n");
446 # Do extra checks that the CgiUserConfigEdit hash in the Meta
447 # file matches the config file
449 foreach my $p ( keys(%{$ConfigMeta{CgiUserConfigEdit}{child}}) ) {
450 if ( !defined($bpc->{Conf}{CgiUserConfigEdit}{$p}) ) {
451 print("lib/BackupPC/Config/Meta.pm has $p in CgiUserConfigEdit,"
452 . " but conf/config.pl CgiUserConfigEdit does not\n");
456 foreach my $p ( keys(%{$bpc->{Conf}{CgiUserConfigEdit}}) ) {
457 if ( !defined($ConfigMeta{CgiUserConfigEdit}{child}{$p}) ) {
458 print("conf/config.pl CgiUserConfigEdit has $p, but"
459 . " lib/BackupPC/Config/Meta.pm does not\n");
466 sub CheckEditorVsConfig
468 my($confVars, $file) = @_;
473 # Check that the config editor file mentions all the config
476 open(F, $file) || die("can't open $file");
479 next if ( !/name\s*=>\s*"(\w+)"/ );
480 if ( $confVars->{$1} ) {
484 next if ( $1 eq "Hosts" );
485 print("$file has $1 but missing from conf/config.pl\n");
489 foreach my $v ( keys(%$confVars) ) {
490 next if ( $done->{$v} );
491 print("$file missing $v from conf/config.pl\n");
498 # Make sure that every lang variable in cgi-bin/BackupPC_Admin matches
499 # the strings in each lib/BackupPC/Lang/*.pm file. This makes sure
500 # we didn't miss any translations in any of the languages.
508 qw(cgi-bin/BackupPC_Admin bin/BackupPC_sendEmail),
509 <lib/BackupPC/CGI/*pm>,
510 <lib/BackupPC/Lang/en.pm>,
512 open(F, $file) || die("can't open $file");
516 s/\$Lang->{([^}]*)}/$vars->{$1} = 1;/eg;
517 s/(text|comment)\s*=>\s*"(CfgEdit_.*)"/$vars->{$2} = 1;/eg;
522 foreach my $f ( <lib/BackupPC/Lang/*.pm> ) {
524 open(F, $f) || die("can't open $f\n");
530 next if ( $var =~ m{^(Reason_|Status_|backupType_|Disabled_)} );
531 next if ( $var eq "Documentation" );
532 if ( !defined($vars->{$var}) ) {
533 print("Unexpected Lang var $var in $f\n");
540 foreach my $v ( keys(%$vars) ) {
542 # skip "variables" with "$", since they are like expressions
544 next if ( $v =~ /\$/ );
545 if ( !defined($done->{$v}) ) {
546 print("Lang var $v missing from $f\n");
555 # Pedantically check that all the html tags in each language file
560 my($en, $enVars) = LangParse("lib/BackupPC/Lang/en.pm");
563 foreach my $lang ( qw(fr.pm de.pm es.pm it.pm nl.pm pt_br.pm zh_CN.pm) ) {
564 my($d, $dVars) = LangParse("lib/BackupPC/Lang/$lang");
565 foreach my $v1 ( @$en ) {
567 if ( $v1->{var} ne $v2->{var} ) {
568 print("Botch: got $lang var $v2->{var} vs en.pm $v1->{var}\n");
571 my $t1 = LangTextStrip($v1->{val});
572 my $t2 = LangTextStrip($v2->{val});
575 for ( $i = 0 ; $i < length($t1) ; $i++ ) {
576 last if ( substr($t1, 0, $i) ne substr($t2, 0, $i) );
578 print("$v1->{var}: ($i) got en.pm $t1\nvs $lang $t2\n\n");
590 $t = "" if ( $t !~ /<.*>/ );
592 $t =~ s/([}>])[^<]*</$1</g;
594 $t =~ s/(value=)"[^"]*"/$1""/sg;
595 $t =~ s/({h[12]\()"[^"]*"/$1""/g;
596 $t =~ s/ENG[\s\n]*//sg;
597 $t =~ s/^(<<EOF;\n)[^<]*/$1/g;
604 open(C, $file) || die("can't open $file");
606 my($out, @lang, $var);
611 if ( /^#/ && !defined($endLine) ) {
616 $allVars->{$var} = @lang if ( defined($var) );
626 } elsif ( /^\s*\$Lang\{([^}]*)/ ) {
628 if ( defined($var) ) {
629 $allVars->{$var} = @lang if ( defined($var) );
639 $endLine = $1 if ( /^\s*\$Lang\{[^}]*} *= *<<(.*);/ );
640 $endLine = $1 if ( /^\s*\$Lang\{[^}]*} *= *<<'(.*)';/ );
642 $endLine = undef if ( defined($endLine) && /^\Q$endLine[\n\r]*$/ );
647 $allVars->{$var} = @lang if ( defined($var) );
654 foreach my $v ( @lang ) {
655 if ( $v->{text} =~ /\$Lang{$v->{var}}\s*=\s*(.*)/s ) {
659 return (\@lang, $allVars);