| 1 | #!/usr/bin/perl -w |
|---|
| 2 | # |
|---|
| 3 | # Base subroutines for the Project-Builder project |
|---|
| 4 | # |
|---|
| 5 | # $Id$ |
|---|
| 6 | # |
|---|
| 7 | |
|---|
| 8 | use strict; |
|---|
| 9 | use lib qw (lib); |
|---|
| 10 | use File::Basename; |
|---|
| 11 | use File::Path; |
|---|
| 12 | use File::Temp qw /tempdir/; |
|---|
| 13 | use AppConfig qw(ARGCOUNT_HASH); |
|---|
| 14 | use Data::Dumper; |
|---|
| 15 | |
|---|
| 16 | $ENV{'PBETC'} = "$ENV{'HOME'}/.pbrc"; |
|---|
| 17 | |
|---|
| 18 | sub pb_env_init { |
|---|
| 19 | |
|---|
| 20 | my $proj=shift; |
|---|
| 21 | my $ver; |
|---|
| 22 | my $tag; |
|---|
| 23 | |
|---|
| 24 | # For the moment not dynamic |
|---|
| 25 | my $debug = 0; # Debug level |
|---|
| 26 | my $LOG = *STDOUT; # Where to log |
|---|
| 27 | |
|---|
| 28 | # |
|---|
| 29 | # Check project name |
|---|
| 30 | # Could be with env var PBPROJ |
|---|
| 31 | # or option -p |
|---|
| 32 | # if not define take the first in conf file |
|---|
| 33 | # |
|---|
| 34 | if ((defined $ENV{'PBPROJ'}) && |
|---|
| 35 | (not (defined $proj))) { |
|---|
| 36 | $proj = $ENV{'PBPROJ'}; |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | # |
|---|
| 40 | # We get the pbrc file for that project |
|---|
| 41 | # and use its content |
|---|
| 42 | # |
|---|
| 43 | my ($pbrc) = pb_conf_read("$ENV{'PBETC'}","pbrc"); |
|---|
| 44 | print "DEBUG pbrc: ".Dumper($pbrc)."\n" if ($debug >= 1); |
|---|
| 45 | |
|---|
| 46 | my %pbrc = %$pbrc; |
|---|
| 47 | if (not defined $proj) { |
|---|
| 48 | # Take the first as the default project |
|---|
| 49 | $proj = (keys %pbrc)[0]; |
|---|
| 50 | print $LOG "Using $proj as default project as none has been specified\n" if (($debug >= 0) and (defined $proj)); |
|---|
| 51 | } |
|---|
| 52 | die "No project defined - use env var PBPROJ or -p proj" if (not (defined $proj)); |
|---|
| 53 | |
|---|
| 54 | # |
|---|
| 55 | # Set delivery directory |
|---|
| 56 | # |
|---|
| 57 | my $topdir=dirname($pbrc{$proj}); |
|---|
| 58 | # Expand potential env variable in it |
|---|
| 59 | eval { $topdir =~ s/(\$ENV.+\})/$1/eeg }; |
|---|
| 60 | chdir $topdir || die "Unable to change directory to $topdir"; |
|---|
| 61 | $pbrc{$proj} = $topdir."/pbrc"; |
|---|
| 62 | $ENV{'PBDESTDIR'}=$topdir."/delivery"; |
|---|
| 63 | |
|---|
| 64 | # |
|---|
| 65 | # Use project configuration file if needed |
|---|
| 66 | # |
|---|
| 67 | if (not defined $ENV{'PBROOT'}) { |
|---|
| 68 | if (-f $pbrc{$proj}) { |
|---|
| 69 | my ($pbroot) = pb_conf_read($pbrc{$proj},"pbroot"); |
|---|
| 70 | my %pbroot = %$pbroot; |
|---|
| 71 | # All lines should point to the same pbroot so take the first |
|---|
| 72 | $ENV{'PBROOT'} = (values %$pbroot)[0] if (defined $pbroot); |
|---|
| 73 | print $LOG "Using $ENV{'PBROOT'} as default pbroot from $pbrc{$proj}\n" if (($debug >= 0) and (defined $ENV{'PBROOT'})); |
|---|
| 74 | } |
|---|
| 75 | die "No pbroot defined - use env var PBROOT or -r pbroot " if (not defined $ENV{'PBROOT'}); |
|---|
| 76 | } |
|---|
| 77 | |
|---|
| 78 | # |
|---|
| 79 | # Check pb conf compliance |
|---|
| 80 | # |
|---|
| 81 | $ENV{'PBCONF'} = "$ENV{'PBROOT'}/pbconf"; |
|---|
| 82 | die "Project $proj not Project-Builder compliant. Please populate $ENV{'PBCONF'}" if ( not -d "$ENV{'PBCONF'}"); |
|---|
| 83 | |
|---|
| 84 | my %version = (); |
|---|
| 85 | my %defpkgdir = (); |
|---|
| 86 | my %extpkgdir = (); |
|---|
| 87 | my %filteredfiles = (); |
|---|
| 88 | |
|---|
| 89 | if (-f "$ENV{'PBCONF'}/$proj.pb") { |
|---|
| 90 | # List of pkg to build by default (mandatory) |
|---|
| 91 | # List of additional pkg to build when all is called (optional) |
|---|
| 92 | # Valid version names (optional) |
|---|
| 93 | # List of files to filter (optional) |
|---|
| 94 | my ($defpkgdir, $extpkgdir, $version, $filteredfiles, $pkgv, $pkgt) = pb_conf_read("$ENV{'PBCONF'}/$proj.pb","defpkgdir","extpkgdir","version","filteredfiles","projver","projtag"); |
|---|
| 95 | print "DEBUG: defpkgdir: ".Dumper($defpkgdir)."\n" if ($debug >= 1); |
|---|
| 96 | print "DEBUG: extpkgdir: ".Dumper($extpkgdir)."\n" if ($debug >= 1); |
|---|
| 97 | print "DEBUG: version: ".Dumper($version)."\n" if ($debug >= 1); |
|---|
| 98 | print "DEBUG: filteredfiles: ".Dumper($filteredfiles)."\n" if ($debug >= 1); |
|---|
| 99 | die "Unable to find defpkgdir in $ENV{'PBCONF'}/$proj.pb" if (not defined $defpkgdir); |
|---|
| 100 | # Global |
|---|
| 101 | %defpkgdir = %$defpkgdir; |
|---|
| 102 | # Global |
|---|
| 103 | %extpkgdir = %$extpkgdir if (defined $extpkgdir); |
|---|
| 104 | %version = %$version if (defined $version); |
|---|
| 105 | # Global |
|---|
| 106 | %filteredfiles = %$filteredfiles if (defined $filteredfiles); |
|---|
| 107 | # |
|---|
| 108 | # Get global Version/Tag |
|---|
| 109 | # |
|---|
| 110 | |
|---|
| 111 | if (not defined $ENV{'PBVER'}) { |
|---|
| 112 | if ((defined $pkgv) && (defined $pkgv->{$proj})) { |
|---|
| 113 | $ENV{'PBVER'}=$pkgv->{$proj}; |
|---|
| 114 | } else { |
|---|
| 115 | die "No projver found in $ENV{'PBCONF'}/$proj.pb"; |
|---|
| 116 | } |
|---|
| 117 | } |
|---|
| 118 | die "Invalid version name $ENV{'PBVER'} in $ENV{'PBCONF'}/$proj.pb" if (($ENV{'PBVER'} !~ /[0-9.]+/) && (not exists $version{$ENV{'PBVER'}})); |
|---|
| 119 | |
|---|
| 120 | if (not defined $ENV{'PBTAG'}) { |
|---|
| 121 | if ((defined $pkgt) && (defined $pkgt->{$proj})) { |
|---|
| 122 | $ENV{'PBTAG'}=$pkgt->{$proj}; |
|---|
| 123 | } else { |
|---|
| 124 | die "No projtag found in $ENV{'PBCONF'}/$proj.pb"; |
|---|
| 125 | } |
|---|
| 126 | } |
|---|
| 127 | die "Invalid tag name $ENV{'PBTAG'} in $ENV{'PBCONF'}/$proj.pb" if ($ENV{'PBTAG'} !~ /[0-9.]+/); |
|---|
| 128 | } else { |
|---|
| 129 | die "Unable to open $ENV{'PBCONF'}/$proj.pb"; |
|---|
| 130 | } |
|---|
| 131 | |
|---|
| 132 | # |
|---|
| 133 | # Set temp directory |
|---|
| 134 | # |
|---|
| 135 | if (not defined $ENV{'TMPDIR'}) { |
|---|
| 136 | $ENV{'TMPDIR'}="/tmp"; |
|---|
| 137 | } |
|---|
| 138 | $ENV{'PBTMP'} = tempdir( "pb.XXXXXXXXXX", DIR => $ENV{'TMPDIR'}, CLEANUP => 1 ); |
|---|
| 139 | |
|---|
| 140 | # |
|---|
| 141 | # Removes all directory existing below the delivery dir |
|---|
| 142 | # as they are temp dir only |
|---|
| 143 | # Files stay and have to be cleaned up manually |
|---|
| 144 | # |
|---|
| 145 | if (-d $ENV{'PBDESTDIR'}) { |
|---|
| 146 | opendir(DIR,$ENV{'PBDESTDIR'}) || die "Unable to open directory $ENV{'PBDESTDIR'}: $!"; |
|---|
| 147 | foreach my $d (readdir(DIR)) { |
|---|
| 148 | next if ($d =~ /^\./); |
|---|
| 149 | next if (-f "$ENV{'PBDESTDIR'}/$d"); |
|---|
| 150 | pb_rm_rf("$ENV{'PBDESTDIR'}/$d") if (-d "$ENV{'PBDESTDIR'}/$d"); |
|---|
| 151 | } |
|---|
| 152 | closedir(DIR); |
|---|
| 153 | } |
|---|
| 154 | if (! -d "$ENV{'PBDESTDIR'}") { |
|---|
| 155 | pb_mkdir_p($ENV{'PBDESTDIR'}) || die "Unable to recursively create $ENV{'PBDESTDIR'}"; |
|---|
| 156 | } |
|---|
| 157 | |
|---|
| 158 | # |
|---|
| 159 | # Set build directory |
|---|
| 160 | # |
|---|
| 161 | $ENV{'PBBUILDDIR'}=$topdir."/build"; |
|---|
| 162 | if (! -d "$ENV{'PBBUILDDIR'}") { |
|---|
| 163 | pb_mkdir_p($ENV{'PBBUILDDIR'}) || die "Unable to recursively create $ENV{'PBBUILDDIR'}"; |
|---|
| 164 | } |
|---|
| 165 | |
|---|
| 166 | umask 0022; |
|---|
| 167 | return($proj,$debug,$LOG,\%pbrc, \%filteredfiles, \%defpkgdir, \%extpkgdir); |
|---|
| 168 | } |
|---|
| 169 | |
|---|
| 170 | # Internal mkdir -p function |
|---|
| 171 | sub pb_mkdir_p { |
|---|
| 172 | my @dir = @_; |
|---|
| 173 | my $ret = mkpath(@dir, 0, 0755); |
|---|
| 174 | return($ret); |
|---|
| 175 | } |
|---|
| 176 | |
|---|
| 177 | # Internal rm -rf function |
|---|
| 178 | sub pb_rm_rf { |
|---|
| 179 | my @dir = @_; |
|---|
| 180 | my $ret = rmtree(@dir, 0, 0); |
|---|
| 181 | return($ret); |
|---|
| 182 | } |
|---|
| 183 | |
|---|
| 184 | # Internal system function |
|---|
| 185 | sub pb_system { |
|---|
| 186 | |
|---|
| 187 | my $cmd=shift; |
|---|
| 188 | my $cmt=shift || $cmd; |
|---|
| 189 | |
|---|
| 190 | print "$cmt... "; |
|---|
| 191 | #system("$cmd 2>&1 > $ENV{'PBTMP'}/system.log"); |
|---|
| 192 | system("$cmd"); |
|---|
| 193 | if ($? == -1) { |
|---|
| 194 | print "failed to execute ($cmd) : $!\n"; |
|---|
| 195 | pb_display_file("$ENV{'PBTMP'}/system.log"); |
|---|
| 196 | } elsif ($? & 127) { |
|---|
| 197 | printf "child ($cmd) died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'without'; |
|---|
| 198 | pb_display_file("$ENV{'PBTMP'}/system.log"); |
|---|
| 199 | } elsif ($? == 0) { |
|---|
| 200 | print "OK\n"; |
|---|
| 201 | } else { |
|---|
| 202 | printf "child ($cmd) exited with value %d\n", $? >> 8; |
|---|
| 203 | pb_display_file("$ENV{'PBTMP'}/system.log"); |
|---|
| 204 | } |
|---|
| 205 | } |
|---|
| 206 | |
|---|
| 207 | sub pb_display_file { |
|---|
| 208 | |
|---|
| 209 | my $file=shift; |
|---|
| 210 | |
|---|
| 211 | return if (not -f $file); |
|---|
| 212 | open(FILE,"$file"); |
|---|
| 213 | while (<FILE>) { |
|---|
| 214 | print $_; |
|---|
| 215 | } |
|---|
| 216 | close(FILE); |
|---|
| 217 | } |
|---|
| 218 | |
|---|
| 219 | # Function which returns a pointer on a hash |
|---|
| 220 | # corresponding to a declaration (arg2) in the main conf file |
|---|
| 221 | # and test the returned vaue as they need to exist in that case |
|---|
| 222 | sub pb_conf_get { |
|---|
| 223 | |
|---|
| 224 | my @param = @_; |
|---|
| 225 | |
|---|
| 226 | my @ptr = pb_conf_read("$ENV{'PBETC'}", @param); |
|---|
| 227 | |
|---|
| 228 | foreach my $i (0..$#param) { |
|---|
| 229 | die "No $param[$i] defined for $ENV{'PBPROJ'}" if (not defined $ptr[$i]); |
|---|
| 230 | my $p = $ptr[$i]; |
|---|
| 231 | $p->{$ENV{'PBPROJ'}} = $p->{'default'} if (not defined $p->{$ENV{'PBPROJ'}}); |
|---|
| 232 | die "No $param[$i] defined for $ENV{'PBPROJ'}" if (not defined $p->{$ENV{'PBPROJ'}}); |
|---|
| 233 | } |
|---|
| 234 | #print "DEBUG: param: ".Dumper(@ptr)."\n" if ($debug >= 1); |
|---|
| 235 | return(@ptr); |
|---|
| 236 | } |
|---|
| 237 | |
|---|
| 238 | # Function which returns a pointer on a hash |
|---|
| 239 | # corresponding to a declaration (arg2) in a conf file (arg1) |
|---|
| 240 | sub pb_conf_read { |
|---|
| 241 | |
|---|
| 242 | my $conffile = shift; |
|---|
| 243 | my @param = @_; |
|---|
| 244 | my $trace; |
|---|
| 245 | my @ptr; |
|---|
| 246 | |
|---|
| 247 | my $debug = 0; |
|---|
| 248 | |
|---|
| 249 | if ($debug > 0) { |
|---|
| 250 | $trace = 1; |
|---|
| 251 | } else { |
|---|
| 252 | $trace = 0; |
|---|
| 253 | } |
|---|
| 254 | |
|---|
| 255 | |
|---|
| 256 | my $config = AppConfig->new({ |
|---|
| 257 | # Auto Create variables mentioned in Conf file |
|---|
| 258 | CREATE => 1, |
|---|
| 259 | DEBUG => $trace, |
|---|
| 260 | GLOBAL => { |
|---|
| 261 | # Each conf item is a hash |
|---|
| 262 | ARGCOUNT => ARGCOUNT_HASH, |
|---|
| 263 | }, |
|---|
| 264 | }); |
|---|
| 265 | $config->file($conffile); |
|---|
| 266 | for my $param (@param) { |
|---|
| 267 | push @ptr,$config->get($param); |
|---|
| 268 | } |
|---|
| 269 | print "DEBUG: params: ".Dumper(@param)." ".Dumper(@ptr)."\n" if ($debug >= 1); |
|---|
| 270 | return(@ptr); |
|---|
| 271 | } |
|---|
| 272 | |
|---|
| 273 | # Setup environment for CMS system |
|---|
| 274 | sub pb_cms_init { |
|---|
| 275 | |
|---|
| 276 | my $proj = shift || undef; |
|---|
| 277 | my $ret; |
|---|
| 278 | |
|---|
| 279 | my ($cms) = pb_conf_get("cms"); |
|---|
| 280 | # This one is optional |
|---|
| 281 | my ($cvsroot,$cvsrsh) = pb_conf_read($ENV{'PBETC'},"cvsroot","cvsrsh"); |
|---|
| 282 | |
|---|
| 283 | if ($cms->{$proj} eq "svn") { |
|---|
| 284 | $ENV{'PBREVISION'}=`(cd "$ENV{'PBROOT'}" ; svnversion .)`; |
|---|
| 285 | chomp($ENV{'PBREVISION'}); |
|---|
| 286 | $ENV{'PBCMSLOG'}="svn log"; |
|---|
| 287 | $ENV{'PBCMSLOGFILE'}="svn.log"; |
|---|
| 288 | } elsif ($cms->{$proj} eq "cvs") { |
|---|
| 289 | # Way too slow |
|---|
| 290 | #$ENV{'PBREVISION'}=`(cd "$ENV{'PBROOT'}" ; cvs rannotate -f . 2>&1 | awk '{print \$1}' | grep -E '^[0-9]' | cut -d. -f2 |sort -nu | tail -1)`; |
|---|
| 291 | #chomp($ENV{'PBREVISION'}); |
|---|
| 292 | $ENV{'PBREVISION'}="CVS"; |
|---|
| 293 | $ENV{'PBCMSLOG'}="cvs log"; |
|---|
| 294 | $ENV{'PBCMSLOGFILE'}="cvs.log"; |
|---|
| 295 | # |
|---|
| 296 | # Export content if needed |
|---|
| 297 | # |
|---|
| 298 | $ENV{'CVSROOT'} = $cvsroot->{$proj} if (defined $cvsroot->{$proj}); |
|---|
| 299 | $ENV{'CVSRSH'} = $cvsrsh->{$proj} if (defined $cvsrsh->{$proj}); |
|---|
| 300 | } else { |
|---|
| 301 | die "cms $cms->{$proj} unknown"; |
|---|
| 302 | } |
|---|
| 303 | return($cms); |
|---|
| 304 | } |
|---|
| 305 | |
|---|
| 306 | sub pb_cms_export { |
|---|
| 307 | my $cms = shift; |
|---|
| 308 | my $pbdate = shift || undef; |
|---|
| 309 | my $source = shift; |
|---|
| 310 | my $destdir = shift; |
|---|
| 311 | my $tmp; |
|---|
| 312 | my $tmp1; |
|---|
| 313 | |
|---|
| 314 | if ($cms->{$ENV{'PBPROJ'}} eq "svn") { |
|---|
| 315 | if (-d $source) { |
|---|
| 316 | $tmp = $destdir; |
|---|
| 317 | } else { |
|---|
| 318 | $tmp = $destdir."/".basename($source); |
|---|
| 319 | } |
|---|
| 320 | pb_system("svn export $source $tmp","Exporting $source from SVN to $tmp"); |
|---|
| 321 | } elsif ($cms->{$ENV{'PBPROJ'}} eq "cvs") { |
|---|
| 322 | my $dir=dirname($destdir); |
|---|
| 323 | my $base=basename($destdir); |
|---|
| 324 | if (-d $source) { |
|---|
| 325 | $tmp1 = $source; |
|---|
| 326 | $tmp1 =~ s|$ENV{'PBROOT'}/||; |
|---|
| 327 | } else { |
|---|
| 328 | $tmp1 = dirname($source); |
|---|
| 329 | $tmp1 =~ s|$ENV{'PBROOT'}/||; |
|---|
| 330 | $tmp1 = $tmp1."/".basename($source); |
|---|
| 331 | } |
|---|
| 332 | # CVS needs a relative path ! |
|---|
| 333 | pb_system("cd $dir ; cvs export -D \"$pbdate\" -d $base $tmp1","Exporting $source from CVS to $destdir"); |
|---|
| 334 | } else { |
|---|
| 335 | die "cms $cms->{$ENV{'PBPROJ'}} unknown"; |
|---|
| 336 | } |
|---|
| 337 | } |
|---|
| 338 | |
|---|
| 339 | sub pb_cms_log { |
|---|
| 340 | my $cms = shift; |
|---|
| 341 | my $pkgdir = shift; |
|---|
| 342 | my $destfile = shift; |
|---|
| 343 | |
|---|
| 344 | if ($cms->{$ENV{'PBPROJ'}} eq "svn") { |
|---|
| 345 | pb_system("svn log -v $pkgdir > $destfile","Extracting log info from SVN"); |
|---|
| 346 | } elsif ($cms->{$ENV{'PBPROJ'}} eq "cvs") { |
|---|
| 347 | my $tmp=basename($pkgdir); |
|---|
| 348 | # CVS needs a relative path ! |
|---|
| 349 | pb_system("cvs log $tmp > $destfile","Extracting log info from CVS"); |
|---|
| 350 | } else { |
|---|
| 351 | die "cms $cms->{$ENV{'PBPROJ'}} unknown"; |
|---|
| 352 | } |
|---|
| 353 | } |
|---|
| 354 | |
|---|
| 355 | |
|---|
| 356 | |
|---|
| 357 | # Get all filters to apply |
|---|
| 358 | # They're cumulative from less specific to most specific |
|---|
| 359 | # suffix is .pbf |
|---|
| 360 | |
|---|
| 361 | sub pb_get_filters { |
|---|
| 362 | |
|---|
| 363 | # For the moment not dynamic |
|---|
| 364 | my $debug = 0; # Debug level |
|---|
| 365 | my $LOG = *STDOUT; # Where to log |
|---|
| 366 | |
|---|
| 367 | my @ffiles; |
|---|
| 368 | my ($ffile0, $ffile1, $ffile2, $ffile3); |
|---|
| 369 | my ($mfile0, $mfile1, $mfile2, $mfile3); |
|---|
| 370 | my $pbpkg = shift || die "No package specified"; |
|---|
| 371 | my $dtype = shift || die "No dtype specified"; |
|---|
| 372 | my $dfam = shift || die "No dfam specified"; |
|---|
| 373 | my $ddir = shift || die "No ddir specified"; |
|---|
| 374 | my $dver = shift || die "No dver specified"; |
|---|
| 375 | my $ptr; # returned value pointer on the hash of filters |
|---|
| 376 | my %ptr; |
|---|
| 377 | |
|---|
| 378 | # Global filter files first, then package specificities |
|---|
| 379 | if (-d "$ENV{'PBCONF'}/pbfilter") { |
|---|
| 380 | $mfile0 = "$ENV{'PBCONF'}/pbfilter/$dtype.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/$dtype.pbf"); |
|---|
| 381 | $mfile1 = "$ENV{'PBCONF'}/pbfilter/$dfam.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/$dfam.pbf"); |
|---|
| 382 | $mfile2 = "$ENV{'PBCONF'}/pbfilter/$ddir.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/$ddir.pbf"); |
|---|
| 383 | $mfile3 = "$ENV{'PBCONF'}/pbfilter/$ddir-$dver.pbf" if (-f "$ENV{'PBCONF'}/pbfilter/$ddir-$dver.pbf"); |
|---|
| 384 | |
|---|
| 385 | push @ffiles,$mfile0 if (defined $mfile0); |
|---|
| 386 | push @ffiles,$mfile1 if (defined $mfile1); |
|---|
| 387 | push @ffiles,$mfile2 if (defined $mfile2); |
|---|
| 388 | push @ffiles,$mfile3 if (defined $mfile3); |
|---|
| 389 | } |
|---|
| 390 | |
|---|
| 391 | if (-d "$ENV{'PBCONF'}/$pbpkg/pbfilter") { |
|---|
| 392 | $ffile0 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dtype.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dtype.pbf"); |
|---|
| 393 | $ffile1 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dfam.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/$dfam.pbf"); |
|---|
| 394 | $ffile2 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/$ddir.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/$ddir.pbf"); |
|---|
| 395 | $ffile3 = "$ENV{'PBCONF'}/$pbpkg/pbfilter/$ddir-$dver.pbf" if (-f "$ENV{'PBCONF'}/$pbpkg/pbfilter/$ddir-$dver.pbf"); |
|---|
| 396 | |
|---|
| 397 | push @ffiles,$ffile0 if (defined $ffile0); |
|---|
| 398 | push @ffiles,$ffile1 if (defined $ffile1); |
|---|
| 399 | push @ffiles,$ffile2 if (defined $ffile2); |
|---|
| 400 | push @ffiles,$ffile3 if (defined $ffile3); |
|---|
| 401 | } |
|---|
| 402 | if (@ffiles) { |
|---|
| 403 | print $LOG "DEBUG ffiles: ".Dumper(\@ffiles)."\n" if ($debug >= 1); |
|---|
| 404 | |
|---|
| 405 | my $config = AppConfig->new({ |
|---|
| 406 | # Auto Create variables mentioned in Conf file |
|---|
| 407 | CREATE => 1, |
|---|
| 408 | DEBUG => 0, |
|---|
| 409 | GLOBAL => { |
|---|
| 410 | # Each conf item is a hash |
|---|
| 411 | ARGCOUNT => AppConfig::ARGCOUNT_HASH |
|---|
| 412 | } |
|---|
| 413 | }); |
|---|
| 414 | |
|---|
| 415 | $config->file(@ffiles); |
|---|
| 416 | $ptr = $config->get("filter"); |
|---|
| 417 | print $LOG "DEBUG f:".Dumper($ptr)."\n" if ($debug >= 1); |
|---|
| 418 | } else { |
|---|
| 419 | $ptr = { }; |
|---|
| 420 | } |
|---|
| 421 | %ptr = %$ptr; |
|---|
| 422 | return(\%ptr); |
|---|
| 423 | } |
|---|
| 424 | |
|---|
| 425 | # Function which applies filter on files (only for pb) |
|---|
| 426 | sub pb_filter_file_pb { |
|---|
| 427 | |
|---|
| 428 | my $f=shift; |
|---|
| 429 | my $ptr=shift; |
|---|
| 430 | my %filter=%$ptr; |
|---|
| 431 | my $destfile=shift; |
|---|
| 432 | my $dtype=shift; |
|---|
| 433 | my $pbsuf=shift; |
|---|
| 434 | my $pbpkg=shift; |
|---|
| 435 | my $pbver=shift; |
|---|
| 436 | my $pbtag=shift; |
|---|
| 437 | my $pbrev=shift; |
|---|
| 438 | my $pbdate=shift; |
|---|
| 439 | my $defpkgdir = shift; |
|---|
| 440 | my $extpkgdir = shift; |
|---|
| 441 | |
|---|
| 442 | # For the moment not dynamic |
|---|
| 443 | my $debug = 0; # Debug level |
|---|
| 444 | my $LOG = *STDOUT; # Where to log |
|---|
| 445 | |
|---|
| 446 | print $LOG "DEBUG: From $f to $destfile\n" if ($debug >= 1); |
|---|
| 447 | pb_mkdir_p(dirname($destfile)) if (! -d dirname($destfile)); |
|---|
| 448 | open(DEST,"> $destfile") || die "Unable to create $destfile"; |
|---|
| 449 | open(FILE,"$f") || die "Unable to open $f: $!"; |
|---|
| 450 | while (<FILE>) { |
|---|
| 451 | my $line = $_; |
|---|
| 452 | foreach my $s (keys %filter) { |
|---|
| 453 | # Process single variables |
|---|
| 454 | print $LOG "DEBUG filter{$s}: $filter{$s}\n" if ($debug >= 1); |
|---|
| 455 | my $tmp = $filter{$s}; |
|---|
| 456 | next if (not defined $tmp); |
|---|
| 457 | # Expand variables if any single one found |
|---|
| 458 | print $LOG "DEBUG tmp: $tmp\n" if ($debug >= 1); |
|---|
| 459 | if ($tmp =~ /\$/) { |
|---|
| 460 | eval { $tmp =~ s/(\$\w+)/$1/eeg }; |
|---|
| 461 | # special case for ChangeLog only for pb |
|---|
| 462 | } elsif (($tmp =~ /^yes$/) && ($s =~ /^PBLOG$/) && ($line =~ /^PBLOG$/)) { |
|---|
| 463 | $tmp = ""; |
|---|
| 464 | my $p = $defpkgdir->{$pbpkg}; |
|---|
| 465 | $p = $extpkgdir->{$pbpkg} if (not defined $p); |
|---|
| 466 | pb_changelog($dtype, $pbpkg, $pbtag, $pbsuf, $p, \*DEST); |
|---|
| 467 | } |
|---|
| 468 | $line =~ s|$s|$tmp|; |
|---|
| 469 | } |
|---|
| 470 | print DEST $line; |
|---|
| 471 | } |
|---|
| 472 | close(FILE); |
|---|
| 473 | close(DEST); |
|---|
| 474 | } |
|---|
| 475 | |
|---|
| 476 | # Function which applies filter on files (external call) |
|---|
| 477 | sub pb_filter_file { |
|---|
| 478 | |
|---|
| 479 | my $f=shift; |
|---|
| 480 | my $ptr=shift; |
|---|
| 481 | my %filter=%$ptr; |
|---|
| 482 | my $destfile=shift; |
|---|
| 483 | my $pbsuf=shift; |
|---|
| 484 | my $pbpkg=shift; |
|---|
| 485 | my $pbver=shift; |
|---|
| 486 | my $pbtag=shift; |
|---|
| 487 | my $pbrev=shift; |
|---|
| 488 | my $pbdate=shift; |
|---|
| 489 | |
|---|
| 490 | # For the moment not dynamic |
|---|
| 491 | my $debug = 0; # Debug level |
|---|
| 492 | my $LOG = *STDOUT; # Where to log |
|---|
| 493 | |
|---|
| 494 | print $LOG "DEBUG: From $f to $destfile\n" if ($debug >= 1); |
|---|
| 495 | pb_mkdir_p(dirname($destfile)) if (! -d dirname($destfile)); |
|---|
| 496 | open(DEST,"> $destfile") || die "Unable to create $destfile"; |
|---|
| 497 | open(FILE,"$f") || die "Unable to open $f: $!"; |
|---|
| 498 | while (<FILE>) { |
|---|
| 499 | my $line = $_; |
|---|
| 500 | foreach my $s (keys %filter) { |
|---|
| 501 | # Process single variables |
|---|
| 502 | print $LOG "DEBUG filter{$s}: $filter{$s}\n" if ($debug > 1); |
|---|
| 503 | my $tmp = $filter{$s}; |
|---|
| 504 | next if (not defined $tmp); |
|---|
| 505 | # Expand variables if any single one found |
|---|
| 506 | if ($tmp =~ /\$/) { |
|---|
| 507 | eval { $tmp =~ s/(\$\w+)/$1/eeg }; |
|---|
| 508 | } |
|---|
| 509 | $line =~ s|$s|$tmp|; |
|---|
| 510 | } |
|---|
| 511 | print DEST $line; |
|---|
| 512 | } |
|---|
| 513 | close(FILE); |
|---|
| 514 | close(DEST); |
|---|
| 515 | } |
|---|
| 516 | |
|---|
| 517 | |
|---|
| 518 | 1; |
|---|