source: ProjectBuilder/devel/pb/bin/pb@ 149

Last change on this file since 149 was 149, checked in by Bruno Cornec, 17 years ago

Adds support for non-rpm distro

  • Property svn:executable set to *
File size: 25.6 KB
Line 
1#!/usr/bin/perl -w
2#
3# Project Builder main application
4#
5# $Id$
6#
7# Copyright B. Cornec 2007
8# Provided under the GPL v2
9
10# Syntax: see at end
11
12use strict 'vars';
13use Getopt::Std;
14use Data::Dumper;
15use English;
16use AppConfig qw(:argcount :expand);
17use File::Basename;
18use File::Copy;
19use Time::localtime qw(localtime);
20use POSIX qw(strftime);
21
22# Global variables
23use lib qw (lib);
24use ProjectBuilder::Distribution qw (pb_distro_init);
25use ProjectBuilder::Changelog qw (pb_changelog);
26use ProjectBuilder::Version qw (pb_version_init);
27use ProjectBuilder::Base qw (pb_conf_read pb_conf_get pb_cms_init pb_mkdir_p pb_system pb_rm_rf pb_get_filters pb_filter_file pb_filter_file_pb pb_cms_export pb_cms_log);
28
29my %opts; # CLI Options
30my $action; # action to realize
31my $test = "FALSE";
32my $option = "";
33my @pkgs;
34my $pbtag; # Global Tag variable
35my $pbver; # Global Version variable
36my $pbscript; # Name of the script
37my %pbver; # per package
38my %pbtag; # per package
39my $pbrev; # Global REVISION variable
40my @date=(localtime->sec(), localtime->min(), localtime->hour(), localtime->mday(), localtime->mon(), localtime->year(), localtime->wday(), localtime->yday(), localtime->isdst());
41my $pbdate = strftime("%Y-%m-%d", @date);
42my $pbdatecvs = strftime("%Y-%m-%d %H:%M:%S", @date);
43my $debug = 0;
44my $LOG = \*STDOUT;
45
46getopts('hl:m:p:qr:s:tv',\%opts);
47
48my ($projectbuilderver,$projectbuilderrev) = pb_version_init();
49if (defined $opts{'h'}) {
50 pb_syntax();
51 exit(0);
52}
53if (defined $opts{'v'}) {
54 $debug++;
55}
56if (defined $opts{'q'}) {
57 $debug=-1;
58}
59if (defined $opts{'l'}) {
60 open(LOG,"> $opts{'l'}") || die "Unable to log to $opts{'l'}: $!";
61 $LOG = *LOG;
62 $debug = 0 if ($debug == -1);
63 }
64# Handles test option
65if (defined $opts{'t'}) {
66 $test = "TRUE";
67 # Works only for SVN
68 $option = "-r BASE";
69}
70
71# Handle root of the project if defined
72if (defined $opts{'r'}) {
73 $ENV{'PBROOT'} = $opts{'r'};
74}
75# Handle virtual machines if any
76if (defined $opts{'m'}) {
77 $ENV{'PBVM'} = $opts{'m'};
78}
79if (defined $opts{'s'}) {
80 $pbscript = $opts{'s'};
81}
82
83# Get Action
84$action = shift @ARGV;
85die pb_syntax() if (not defined $action);
86
87my ($pbrc, $filteredfiles, $defpkgdir, $extpkgdir);
88
89# Handles project name if any
90# And get global params
91if (defined $opts{'p'}) {
92 ($ENV{'PBPROJ'},$debug,$LOG, $pbrc, $filteredfiles, $defpkgdir, $extpkgdir)
93 = pb_env_init($opts{'p'});
94} else {
95 ($ENV{'PBPROJ'},$debug,$LOG, $pbrc, $filteredfiles, $defpkgdir, $extpkgdir)
96 = pb_env_init();
97}
98
99print $LOG "Project: $ENV{'PBPROJ'}\n" if ($debug >= 0);
100print $LOG "Action: $action\n" if ($debug >= 0);
101
102# Keep those project values to store them at the end each time
103my $pbprojtag = $ENV{'PBTAG'};
104my $pbprojver = $ENV{'PBVER'};
105
106# Act depending on action
107if ($action =~ /^cms2build$/) {
108 pb_cms2build();
109} elsif ($action =~ /^build2pkg$/) {
110 pb_build2pkg();
111} elsif ($action =~ /^cms2pkg$/) {
112 pb_cms2build();
113 pb_build2pkg();
114} elsif ($action =~ /^build2ssh$/) {
115 pb_build2ssh();
116} elsif ($action =~ /^pkg2ssh$/) {
117 pb_pkg2ssh();
118} elsif ($action =~ /^build2vm$/) {
119 pb_build2vm();
120} elsif ($action =~ /^cms2vm$/) {
121 pb_cms2build();
122 pb_build2vm();
123} elsif ($action =~ /^launchvm$/) {
124 pb_launchvm($ENV{'PBVM'});
125} elsif ($action =~ /^script2vm$/) {
126 pb_script2vm($pbscript);
127} elsif ($action =~ /^clean$/) {
128} else {
129 print $LOG "'$action' is not available\n";
130 pb_syntax();
131}
132
133sub pb_cms2build {
134
135 my $ptr = pb_get_pkg($defpkgdir,$extpkgdir);
136 @pkgs = @$ptr;
137 my $cms=pb_cms_init($ENV{'PBPROJ'});
138
139 my ($pkgv, $pkgt) = pb_conf_read("$ENV{'PBCONF'}/$ENV{'PBPROJ'}.pb","pkgver","pkgtag");
140 foreach my $pbpkg (@pkgs) {
141 $ENV{'PBPKG'} = $pbpkg;
142 if ((defined $pkgv) && (defined $pkgv->{$pbpkg})) {
143 $pbver = $pkgv->{$pbpkg};
144 $ENV{'PBVER'} = $pbver;
145 } else {
146 $pbver = $ENV{'PBVER'};
147 }
148 if ((defined $pkgt) && (defined $pkgt->{$pbpkg})) {
149 $pbtag = $pkgt->{$pbpkg};
150 $ENV{'PBTAG'} = $pbtag;
151 } else {
152 $pbtag = $ENV{'PBTAG'};
153 }
154
155 $pbrev = $ENV{'PBREVISION'};
156 print $LOG "\n";
157 print $LOG "Management of $pbpkg $pbver-$pbtag (rev $pbrev)\n";
158 die "Unable to get env var PBDESTDIR" if (not defined $ENV{'PBDESTDIR'});
159 # Clean up dest if necessary. The export will recreate it
160 my $dest = "$ENV{'PBDESTDIR'}/$pbpkg-$pbver";
161 pb_rm_rf($dest) if (-d $dest);
162
163 # Export CMS tree for the concerned package to dest
164 # And generate some additional files
165 $OUTPUT_AUTOFLUSH=1;
166
167 # computes in which dir we have to work
168 my $dir = $defpkgdir->{$pbpkg};
169 $dir = $extpkgdir->{$pbpkg} if (not defined $dir);
170 print "def:".Dumper($defpkgdir)." ext: ".Dumper($extpkgdir)." \n" if ($debug >= 1);
171 pb_cms_export($cms,$pbdatecvs,"$ENV{'PBROOT'}/$dir",$dest);
172
173 # Extract cms log history and store it
174 pb_cms_log($cms,"$ENV{'PBROOT'}/$dir","$dest/$ENV{'PBCMSLOGFILE'}");
175
176 my %build;
177
178 my ($ptr) = pb_conf_get("vmlist");
179 foreach my $d (split(/,/,$ptr->{$ENV{'PBPROJ'}})) {
180 my ($name,$ver) = split(/_/,$d);
181 chomp($ver);
182 my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init($name,$ver);
183 print $LOG "DEBUG: distro tuple: ".Dumper($ddir, $dver, $dfam, $dtype, $pbsuf)."\n" if ($debug >= 1);
184 print $LOG "DEBUG Filtering PBDATE => $pbdate, PBTAG => $pbtag, PBVER => $pbver\n" if ($debug >= 1);
185
186 # Filter build files from the less precise up to the most with overloading
187 # Filter all files found, keeping the name, and generating in dest
188
189 # Find all build files first relatively to PBROOT
190 my %bfiles;
191 print $LOG "DEBUG dir: $ENV{'PBCONF'}/$pbpkg\n" if ($debug >= 1);
192 $build{"$ddir-$dver"} = "yes";
193 if (-d "$ENV{'PBCONF'}/$pbpkg/$dtype") {
194 opendir(BDIR,"$ENV{'PBCONF'}/$pbpkg/$dtype") || die "Unable to open dir $ENV{'PBCONF'}/$pbpkg/$dtype: $!";
195 foreach my $f (readdir(BDIR)) {
196 next if ($f =~ /^\./);
197 $bfiles{$f} = "$ENV{'PBCONF'}/$pbpkg/$dtype/$f";
198 $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
199 }
200 closedir(BDIR);
201 } elsif (-d "$ENV{'PBCONF'}/$pbpkg/$dfam") {
202 opendir(BDIR,"$ENV{'PBCONF'}/$pbpkg/$dfam") || die "Unable to open dir $ENV{'PBCONF'}/$pbpkg/$dfam: $!";
203 foreach my $f (readdir(BDIR)) {
204 next if ($f =~ /^\./);
205 $bfiles{$f} = "$ENV{'PBCONF'}/$pbpkg/$dfam/$f";
206 $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
207 }
208 closedir(BDIR);
209 } elsif (-d "$ENV{'PBCONF'}/$pbpkg/$ddir") {
210 opendir(BDIR,"$ENV{'PBCONF'}/$pbpkg/$ddir") || die "Unable to open dir $ENV{'PBCONF'}/$pbpkg/$ddir: $!";
211 foreach my $f (readdir(BDIR)) {
212 next if ($f =~ /^\./);
213 $bfiles{$f} = "$ENV{'PBCONF'}/$pbpkg/$ddir/$f";
214 $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
215 }
216 closedir(BDIR);
217 } elsif (-d "$ENV{'PBCONF'}/$pbpkg/$ddir-$dver") {
218 opendir(BDIR,"$ENV{'PBCONF'}/$pbpkg/$ddir-$dver") || die "Unable to open dir $ENV{'PBCONF'}/$pbpkg/$ddir-$dver: $!";
219 foreach my $f (readdir(BDIR)) {
220 next if ($f =~ /^\./);
221 $bfiles{$f} = "$ENV{'PBCONF'}/$pbpkg/$ddir-$dver/$f";
222 $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
223 }
224 closedir(BDIR);
225 } else {
226 $build{"$ddir-$dver"} = "no";
227 next;
228 }
229 print $LOG "DEBUG bfiles: ".Dumper(\%bfiles)."\n" if ($debug >= 1);
230
231 # Get all filters to apply
232 my $ptr = pb_get_filters($pbpkg, $dtype, $dfam, $ddir, $dver);
233
234 # Apply now all the filters on all the files concerned
235 # destination dir depends on the type of file
236 if (defined $ptr) {
237 foreach my $f (values %bfiles) {
238 pb_filter_file_pb("$ENV{'PBROOT'}/$f",$ptr,"$dest/pbconf/$ddir-$dver/".basename($f),$dtype,$pbsuf,$pbpkg,$pbver,$pbtag,$pbrev,$pbdate,$defpkgdir,$extpkgdir);
239 }
240 if (defined $filteredfiles->{$pbpkg}) {
241 foreach my $f (split(/,/,$filteredfiles->{$pbpkg})) {
242 pb_filter_file("$ENV{'PBROOT'}/$dir/$f",$ptr,"$dest/$f",$pbsuf,$pbpkg,$pbver,$pbtag,$pbrev,$pbdate);
243 }
244 }
245 }
246 }
247 if ($debug >= 0) {
248 my @found;
249 my @notfound;
250 foreach my $b (keys %build) {
251 push @found,$b if ($build{$b} =~ /yes/);
252 push @notfound,$b if ($build{$b} =~ /no/);
253 }
254 print $LOG "Build files generated for ".join(',',@found)."\n";
255 print $LOG "No Build files found for ".join(',',@notfound)."\n";
256 }
257 # Prepare the dest directory for archive
258 if (-x "$ENV{'PBCONF'}/$pbpkg/pbinit") {
259 #pb_system("cd $dest ; $ENV{'PBCONF'}/$pbpkg/pbinit","Executing init script $ENV{'PBCONF'}/$pbpkg/pbinit");
260 print $LOG "Executing init script $ENV{'PBCONF'}/$pbpkg/pbinit\n";
261 system("cd $dest ; $ENV{'PBCONF'}/$pbpkg/pbinit");
262 }
263
264 # Archive dest dir
265 chdir "$ENV{'PBDESTDIR'}" || die "Unable to change dir to $ENV{'PBDESTDIR'}";
266 # Possibility to look at PBSRC to guess more the filename
267 pb_system("tar cfz $pbpkg-$pbver.tar.gz $pbpkg-$pbver","Creating $pbpkg tar files compressed");
268 print $LOG "Under $ENV{'PBDESTDIR'}/$pbpkg-$pbver.tar.gz\n" if ($debug >= 0);
269
270 # Keep track of what is generated for default
271 open(LAST,"> $pbrc->{$ENV{'PBPROJ'}}") || die "Unable to create $pbrc->{$ENV{'PBPROJ'}}";
272 print LAST "pbroot $pbprojver-$pbprojtag = $ENV{'PBROOT'}\n";
273 close(LAST);
274
275 # Keep track of per package version
276 if (! -f "$ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb") {
277 open(PKG,">$ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb") || die "Unable to create $ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb";
278 print PKG "# Empty\n";
279 close(PKG);
280 }
281 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb","pbpkg");
282 $pkg = { } if (not defined $pkg);
283 if ((not defined $pkg->{$pbpkg}) || ($pkg->{$pbpkg} ne "$pbver-$pbtag")) {
284 $pkg->{$pbpkg} = "$pbver-$pbtag";
285 }
286
287 print $LOG "DEBUG pkg: ".Dumper($pkg)."\n" if ($debug >= 1);
288 open(PKG,"> $ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb") || die "Unable to create $ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb";
289 foreach my $p (keys %$pkg) {
290 print PKG "pbpkg $p = $pkg->{$p}\n";
291 }
292 close(PKG);
293 }
294}
295
296sub pb_build2pkg {
297
298 # Get list of packages to build
299 my $ptr = pb_get_pkg($defpkgdir,$extpkgdir);
300 @pkgs = @$ptr;
301
302 # Get the running distro to build on
303 my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init();
304 print $LOG "DEBUG: distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf))."\n" if ($debug >= 1);
305
306 # Get content saved in cms2build
307 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb","pbpkg");
308 $pkg = { } if (not defined $pkg);
309
310 chdir "$ENV{'PBBUILDDIR'}";
311 my $made = ""; # pkgs made during build
312 foreach my $pbpkg (@pkgs) {
313 my $vertag = $pkg->{$pbpkg};
314 # get the version of the current package - maybe different
315 ($pbver,$pbtag) = split(/-/,$vertag);
316
317 my $src="$ENV{'PBDESTDIR'}/$pbpkg-$pbver.tar.gz";
318 print $LOG "Source file: $src\n" if ($debug >= 0);
319
320 print $LOG "Working directory: $ENV{'PBBUILDDIR'}\n" if ($debug >= 0);
321 if ($dtype eq "rpm") {
322 foreach my $d ('RPMS','SRPMS','SPECS','SOURCES','BUILD') {
323 if (! -d "$ENV{'PBBUILDDIR'}/$d") {
324 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$d") || die "Please ensure that you can write into $ENV{'PBBUILDDIR'} to create $d\nchown the $ENV{'PBBUILDDIR'} directory to your uid";
325 }
326 }
327
328 # We need to first extract the spec file
329 symlink "$src","$ENV{'PBBUILDDIR'}/SOURCES/".basename($src) || die "Unable to symlink $src in $ENV{'PBBUILDDIR'}/SOURCES";
330 my @specfile;
331 @specfile = pb_extract_build_files($src,"$pbpkg-$pbver/pbconf/$ddir-$dver/","$ENV{'PBBUILDDIR'}/SPECS");
332
333 print $LOG "specfile: ".Dumper(\@specfile)."\n" if ($debug >= 1);
334 # set LANGUAGE to check for correct log messages
335 $ENV{'LANGUAGE'}="C";
336 #system("ls -R $ENV{'PBBUILDDIR'}") if ($debug >= 1);
337 foreach my $f (@specfile) {
338 if ($f =~ /\.spec$/) {
339 pb_system("rpmbuild --define \"_topdir $ENV{'PBBUILDDIR'}\" -ba $f","Building package with $f under $ENV{'PBBUILDDIR'}");
340 last;
341 }
342 }
343 $made="$made RPMS/*/$pbpkg-$pbver-$pbtag$pbsuf.*.rpm SRPMS/$pbpkg-$pbver-$pbtag$pbsuf.src.rpm";
344 if (-f "/usr/bin/rpmlint") {
345 pb_system("rpmlint $made","Checking validity of rpms with rpmlint");
346 } elsif ($dtype eq "deb") {
347 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
348 pb_system("tar xfz $src","Extracting sources");
349
350 chdir "$pbpkg-$pbver" || die "Unable to chdir to $pbpkg-$pbver";
351 symlink "pbconf/$ddir-$dver","debian" || die "Unable to symlink to pbconf/$ddir-$dver";
352 pb_system("dpkg-buildpackage -us -uc -rfakeroot","Building package");
353 $made="$made $pbpkg"."_*.deb $pbpkg"."_*.dsc $pbpkg"."_*.tar.gz";
354 } elsif ($dtype eq "ebuild") {
355 my @ebuildfile;
356 # For gentoo we need to take pb as subsystem name
357 pb_mkdir_p("$ENV{'PBBUILDDIR'}/portage/pb/$pbpkg") if (! -d "$ENV{'PBBUILDDIR'}/portage/pb/$pbpkg");
358
359 # We need to first extract the ebuild file
360 @ebuildfile = pb_extract_build_files($src,"$pbpkg-$pbver/pbconf/$ddir-$dver/","$ENV{'PBBUILDDIR'}/portage/pb/$pbpkg");
361
362 # Prepare the build env for gentoo
363 my $found = 0;
364 my $pbbd = $ENV{'PBBUILDDIR'};
365 $pbbd =~ /|/|\\/|g;
366 open(MAKE,"/etc/make.conf") || die "Unable to open /etc/make.conf";
367 while (<MAKE>) {
368 $found = 1 if (/$pbbd\/portage/);
369 }
370 close(MAKE);
371 if ($found == 0) {
372 pb_system("sudo \'echo \"$ENV{'PBBUILDDIR'}/portage\" >> /etc/make.conf\'");
373 }
374 $found = 0;
375 open(KEYW,"/etc/portage/package.keywords") || die "Unable to open /etc/portage/package.keywords";
376 while (<KEYW>) {
377 $found = 1 if (/portage\/pb/);
378 }
379 close(KEYW);
380 if ($found == 0) {
381 pb_system("sudo \'echo \"portage/pb\" >> /etc/portage/package.keywords\'");
382 }
383
384 # Build
385 foreach my $f (@ebuildfile) {
386 if ($f =~ /\.ebuild$/) {
387 pb_system("ebuild $f digest ; ebuild $f package");
388 }
389 }
390 print $LOG "ebuild file: ".Dumper(\@ebuildfile)."\n" if ($debug >= 1);
391
392 $made="$made portage/pb/$pbpkg/$pbpkg-$pbver.ebuild";
393 } elsif ($dtype eq "slackware") {
394 $made="$made build-$pbpkg/$pbpkg-$pbver-*-$pbtag.tgz";
395 pb_mkdir_p("$ENV{'PBBUILDDIR'}/install") if (! -d "$ENV{'PBBUILDDIR'}/install");
396 } else {
397 die "Unknown dtype format $dtype";
398 }
399 }
400 # Keep track of what is generated so that we can get them back from VMs
401 open(KEEP,"> $ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag") || die "Unable to create $ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag";
402 print KEEP "$made\n";
403 close(KEEP);
404}
405
406sub pb_build2ssh {
407 pb_send2ssh("Sources");
408}
409
410sub pb_pkg2ssh {
411 pb_send2ssh("Packages");
412}
413
414# By default deliver to the the public site hosting the
415# ftp structure (or whatever) or a VM
416sub pb_send2ssh {
417
418 my $cmt = shift;
419 my $vm = shift || undef;
420 my $vmexist = shift || 0; # 0 is FALSE
421 my $host = shift || "sshhost";
422 my $login = shift || "sshlogin";
423 my $dir = shift || "sshdir";
424 my $port = shift || "sshport";
425
426 # Get list of packages to build
427 my $ptr = pb_get_pkg($defpkgdir,$extpkgdir);
428 @pkgs = @$ptr;
429
430 # Get the running distro to consider
431 my ($odir,$over) = (undef, undef);
432 if (defined $vm) {
433 ($odir,$over) = split(/_/,$vm);
434 }
435 my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init($odir,$over);
436 print $LOG "DEBUG: distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf))."\n" if ($debug >= 1);
437
438 # Get content saved in cms2build
439 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb","pbpkg");
440 $pkg = { } if (not defined $pkg);
441
442 my $src = "";
443 chdir "$ENV{'PBBUILDDIR'}";
444 foreach my $pbpkg (@pkgs) {
445 my $vertag = $pkg->{$pbpkg};
446 # get the version of the current package - maybe different
447 ($pbver,$pbtag) = split(/-/,$vertag);
448
449 if (($cmt eq "Sources") || ($cmt eq "VMs")) {
450 $src="$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver.tar.gz";
451 }
452 }
453 if ($cmt eq "VMs") {
454 $src="$src $ENV{'PBDESTDIR'}/pbscript $ENV{'PBCONF'}/$ENV{'PBPROJ'}.pb $ENV{'PBDESTDIR'}/$pbprojver-$pbprojtag.pb $ENV{'PBETC'}";
455 } elsif ($cmt eq "Script") {
456 $src="$src $ENV{'PBDESTDIR'}/pbscript";
457 } elsif ($cmt eq "Packages") {
458 # Get package list from file made during build2pkg
459 open(KEEP,"$ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag") || die "Unable to read $ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag";
460 $src = <KEEP>;
461 chomp($src);
462 close(KEEP);
463 if ($dtype eq "rpm") {
464 # Also make a pbscript to generate yum/urpmi bases
465 # $src = "$src $ENV{'PBDESTDIR'}/pbscript"
466 } elsif ($dtype eq "deb") {
467 # Also make a pbscript to generate apt bases
468 # $src = "$src $ENV{'PBDESTDIR'}/pbscript"
469 }
470 }
471 # Remove potential leading spaces (cause pb with basename)
472 $src =~ s/^ *//;
473 my $basesrc = "";
474 foreach my $i (split(/ +/,$src)) {
475 $basesrc .= " ".basename($i);
476 }
477
478 print $LOG "Sources handled ($cmt): $src\n" if ($debug >= 0);
479 my ($sshhost,$sshlogin,$sshdir,$sshport) = pb_conf_get($host,$login,$dir,$port);
480 my $mac = "$sshlogin->{$ENV{'PBPROJ'}}\@$sshhost->{$ENV{'PBPROJ'}}";
481 my $tdir;
482 my $bdir;
483 if (($cmt eq "Sources") || ($cmt eq "Script")) {
484 $tdir = "$sshdir->{$ENV{'PBPROJ'}}/src";
485 } elsif ($cmt eq "VMs") {
486 $tdir = dirname("$sshdir->{$ENV{'PBPROJ'}}")."/delivery";
487 $bdir = dirname("$sshdir->{$ENV{'PBPROJ'}}")."/build";
488 # Remove a potential $ENV{'HOME'} as bdir should be relative to pb's home
489 $bdir =~ s|\$ENV.+\}/||;
490 } elsif ($cmt eq "Packages") {
491 $tdir = "$sshdir->{$ENV{'PBPROJ'}}/$ddir/$dver";
492 } else {
493 return;
494 }
495 # Remove a potential $ENV{'HOME'} as tdir should be relative to pb's home
496 $tdir =~ s|\$ENV.+\}/||;
497
498 $port = $sshport->{$ENV{'PBPROJ'}};
499 pb_system("ssh -q -p $port $mac \"mkdir -p $tdir ; cd $tdir ; echo \'for i in $basesrc; do if [ -f \$i ]; then rm -f \$i; fi; done\' | bash\"","Preparing $tdir on $mac");
500 pb_system("cd $ENV{'PBBUILDDIR'} ; scp -p -P $port $src $mac:$tdir 2> /dev/null","$cmt delivery in $tdir on $mac");
501 pb_system("ssh -q -p $port $mac \"echo \'cd $tdir ; if [ -f pbscript ]; then ./pbscript; fi\' | bash\"","Executing pbscript on $mac if needed");
502 if ($cmt eq "VMs") {
503 # Get back info on pkg produced, compute their name and get them from the VM
504 pb_system("scp -p -P $port $mac:$bdir/pbgen-$pbprojver-$pbprojtag $ENV{'PBBUILDDIR'} 2> /dev/null","Get package names in $tdir on $mac");
505 open(KEEP,"$ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag") || die "Unable to read $ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag";
506 my $src = <KEEP>;
507 chomp($src);
508 close(KEEP);
509 $src =~ s/^ *//;
510 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$odir/$over");
511 # Change pgben to make the next send2ssh happy
512 my $made = "";
513 open(KEEP,"> $ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag") || die "Unable to write $ENV{'PBBUILDDIR'}/pbgen-$pbprojver-$pbprojtag";
514 foreach my $p (split(/ +/,$src)) {
515 my $j = basename($p);
516 pb_system("scp -p -P $port $mac:\'$bdir/$p\' $ENV{'PBBUILDDIR'}/$odir/$over 2> /dev/null","Package recovery of $j in $tdir from $mac");
517 $made="$made $odir/$over/$j" if (($dtype ne "rpm") || ($j !~ /.src.rpm$/));
518 }
519 print KEEP "$made\n";
520 close(KEEP);
521 pb_system("ssh -q -p $port $mac \"rm -rf $tdir\"","VM cleanup on $mac");
522 if (! $vmexist) {
523 pb_system("ssh -q -p $port $mac \"sudo /usr/bin/poweroff \"; sleep 120 ; echo \'if [ -d /proc/$vmexist ]; then kill $vmexist; fi \' | bash ; sleep 10","VM halt on $mac");
524 }
525 pb_send2ssh("Packages","$odir"."_"."$over");
526 pb_rm_rf("$ENV{'PBBUILDDIR'}/$odir");
527 }
528}
529
530sub pb_script2vm {
531 my $pbscript=shift;
532
533 # Prepare the script to be executed on the VM
534 # in $ENV{'PBDESTDIR'}/pbscript
535 if ((defined $pbscript ) && ($pbscript ne "$ENV{'PBDESTDIR'}/pbscript")) {
536 copy($pbscript,"$ENV{'PBDESTDIR'}/pbscript") || die "Unable to create $ENV{'PBDESTDIR'}/pbscript";
537 chmod 0755,"$ENV{'PBDESTDIR'}/pbscript";
538 }
539
540 my ($vm,$all) = pb_get_vm();
541
542 foreach my $v (@$vm) {
543 # Launch the VM
544 my $vmexist = pb_launchvm($v);
545 if (! $vmexist) {
546 pb_system("sleep 300","Waiting for it to come up");
547 }
548
549 # Gather all required files to send them to the VM
550 # and launch the build thourgh pbscript
551 pb_send2ssh("Script","$v",$vmexist,"vmhost","vmlogin","pbrc","vmport");
552 }
553}
554
555sub pb_launchvm {
556 my $vm = shift;
557
558 die "No VM defined, unable to launch" if (not defined $vm);
559 # Keep only the first VM in case many were given
560 $vm =~ s/,.*//;
561
562 # Launch the VMs
563 my ($ptr,$vmopt,$vmport,$vmpath) = pb_conf_get("vmtype","vmopt","vmport","vmpath");
564 my $vmtype = $ptr->{$ENV{'PBPROJ'}};
565 if (defined $vmopt->{$ENV{'PBPROJ'}}) {
566 $ENV{'PBVMOPT'} = $vmopt->{$ENV{'PBPROJ'}};
567 } else {
568 $ENV{'PBVMOPT'} = "";
569 }
570
571 my $cmd;
572 my $vmcmd; # has to be used for pb_check_ps
573 my $vmm; # has to be used for pb_check_ps
574 if ($vmtype eq "qemu") {
575 my $arch = `uname -m`;
576 chomp($arch);
577 my $qemucmd32;
578 my $qemucmd64;
579 if ($arch eq "x86_64") {
580 $qemucmd32 = "/usr/bin/qemu-system-i386";
581 $qemucmd64 = "/usr/bin/qemu";
582 } else {
583 $qemucmd32 = "/usr/bin/qemu";
584 $qemucmd64 = "/usr/bin/qemu-system-x86_64";
585 }
586 if ($vm =~ /_64/) {
587 $vmcmd = "$qemucmd64 -no-kqemu";
588 } else {
589 $vmcmd = "$qemucmd32";
590 }
591 $vmm = "$vmpath->{$ENV{'PBPROJ'}}/$vm.qemu";
592 if (! -f "$vmm") {
593 print "Unable to find VM $vmm";
594 return;
595 }
596 $cmd = "$vmcmd $ENV{'PBVMOPT'} -redir tcp:$vmport->{$ENV{'PBPROJ'}}:10.0.2.15:22 $vmm"
597 } elsif ($vmtype eq "xen") {
598 } elsif ($vmtype eq "vmware") {
599 } else {
600 die "VM of type $vmtype not supported. Report to the dev team";
601 }
602 my $vmexist = pb_check_ps($vmcmd,$vmm);
603 if (! $vmexist) {
604 pb_system("$cmd &","Launching the VM");
605 }
606 return($vmexist);
607}
608
609sub pb_build2vm {
610 # Prepare the script to be executed on the VM
611 # in $ENV{'PBDESTDIR'}/pbscript
612 open(SCRIPT,"> $ENV{'PBDESTDIR'}/pbscript") || die "Unable to create $ENV{'PBDESTDIR'}/pbscript";
613 print SCRIPT "#!/bin/bash\n";
614 print SCRIPT "echo ... Execution needed\n";
615 print SCRIPT "# This is in directory delivery\n";
616 print SCRIPT "# Setup the variables required for building\n";
617 print SCRIPT "export PBPROJ=$ENV{'PBPROJ'}\n";
618 print SCRIPT "# Preparation for pb\n";
619 print SCRIPT "mkdir -p ../pbconf\n";
620 print SCRIPT "mv $ENV{'PBPROJ'}.pb ../pbconf\n";
621 print SCRIPT "mv .pbrc \$HOME\n";
622 print SCRIPT "cd ..\n";
623 print SCRIPT "export PBROOT=\`pwd\`\n";
624 print SCRIPT "# Build\n";
625 my $p = "";
626 $p = $ARGV[0] if (defined $ARGV[0]);
627 print SCRIPT "echo Building packages on VM...\n";
628 print SCRIPT "pb build2pkg $p\n";
629 close(SCRIPT);
630 chmod 0755,"$ENV{'PBDESTDIR'}/pbscript";
631
632 my ($vm,$all) = pb_get_vm();
633
634 # Send tar files when we do a global generation
635 pb_build2ssh() if ($all == 1);
636
637 foreach my $v (@$vm) {
638 # Launch the VM
639 my $vmexist = pb_launchvm($v);
640 if (! $vmexist) {
641 pb_system("sleep 300","Waiting for it to come up");
642 }
643
644 # Gather all required files to send them to the VM
645 # and launch the build thourgh pbscript
646 pb_send2ssh("VMs","$v",$vmexist,"vmhost","vmlogin","pbrc","vmport");
647 }
648}
649
650sub pb_get_pkg {
651
652my @pkgs;
653my $defpkgdir = shift;
654my $extpkgdir = shift;
655
656# Get packages list
657if (not defined $ARGV[0]) {
658 @pkgs = keys %$defpkgdir;
659} elsif ($ARGV[0] =~ /^all$/) {
660 @pkgs = keys %$defpkgdir;
661 push(@pkgs, keys %$extpkgdir);
662} else {
663 @pkgs = @ARGV;
664}
665print $LOG "Packages: ".join(',',@pkgs)."\n" if ($debug >= 0);
666return(\@pkgs);
667}
668
669#
670# Return the list of VMs we are working on
671# $all is a flag to know if we return all of them
672# or only some (if all we publish also tar files in addition to pkgs
673#
674sub pb_get_vm {
675
676my @vm;
677my $all = 0;
678
679# Get VM list
680if ((not defined $ENV{'PBVM'}) || ($ENV{'PBVM'} =~ /^all$/)) {
681 my ($ptr) = pb_conf_get("vmlist");
682 $ENV{'PBVM'} = $ptr->{$ENV{'PBPROJ'}};
683 $all = 1;
684}
685@vm = split(/,/,$ENV{'PBVM'});
686print $LOG "VMs: ".join(',',@vm)."\n";
687return(\@vm,$all);
688}
689
690# Returns the pid of a running VM command using a specific VM file
691sub pb_check_ps {
692 my $vmcmd = shift;
693 my $vmm = shift;
694 my $vmexist = 0; # FALSE by default
695
696 open(PS, "ps auxhww|") || die "Unable to call ps";
697 while (<PS>) {
698 next if (! /$vmcmd/);
699 next if (! /$vmm/);
700 my ($void1, $void2);
701 ($void1, $vmexist, $void2) = split(/ +/);
702 last;
703 }
704 return($vmexist);
705}
706
707
708sub pb_extract_build_files {
709
710my $src=shift;
711my $dir=shift;
712my $ddir=shift;
713my @files;
714
715pb_system("tar xfpz $src $dir","Extracting build files");
716opendir(DIR,"$dir") || die "Unable to open directory $dir";
717foreach my $f (readdir(DIR)) {
718 next if ($f =~ /^\./);
719 move("$dir/$f","$ddir") || die "Unable to move $dir/$f to $ddir";
720 print $LOG "mv $dir/$f $ddir\n" if ($debug >= 1);
721 push @files,"$ddir/$f";
722}
723closedir(DIR);
724# Not enough but still a first cleanup
725pb_rm_rf("$dir");
726return(@files);
727}
728
729sub pb_syntax {
730
731 print "pb (aka project-builder) Version $projectbuilderver-$projectbuilderrev\n";
732 print "\n";
733 print "Syntax: pb [-vhqt][-r pbroot][-p project][[-s script] -m \"mach-1[,...]\"] <action> [<pkg1>...]\n";
734 print "\n";
735 print "-h : This help file\n";
736 print "-q : Quiet mode\n";
737 print "-t : Test mode (not done yet)\n";
738 print "-v : Verbose mode\n";
739 print "\n";
740 print "-m machine : Name of the Virtual Machines (VM) you want\n";
741 print " to build on (coma separated). All if none precised\n";
742 print " (or use the env variable PBVM) \n";
743 print "\n";
744 print "-s script : Name of the script you want\n";
745 print " to execute on the related VMs.\n";
746 print "\n";
747 print "-p project : Name of the project you're working on\n";
748 print " (or use the env variable PBPROJ) \n";
749 print "\n";
750 print "-r pbroot : Path Name of project under the CMS \n";
751 print " (or use the env variable PBROOT) \n";
752 print "\n";
753 print "<action> can be:\n";
754 print "\n";
755 print "\tcms2build: Create tar files for the project under your CMS\n";
756 print "\t CMS supported are SVN and CVS\n";
757 print "\t parameters are packages to build\n";
758 print "\t if not using default list\n";
759 print "\n";
760 print "\tbuild2pkg: Create packages for your running distribution \n";
761 print "\n";
762 print "\tbuild2ssh: Send the tar files to a SSH host \n";
763 print "\n";
764 print "\tpkg2ssh: Send the packages built to a SSH host \n";
765 print "\n";
766 print "\tcms2pkg: cms2build + build2pkg\n";
767 print "\n";
768 print "\tbuild2vm: Create packages in VMs, launching them if needed\n";
769 print "\t and send those packages to a SSH host once built\n";
770 print "\t VM type supported are QEMU \n";
771 print "\n";
772 print "\tlaunchvm: Launch one virtual machine\n";
773 print "\n";
774 print "\tscript2vm: Launch one virtual machine if needed \n";
775 print "\t and executes a script on it \n";
776 print "\n";
777 print "\tcms2vm: cms2build + build2vm\n";
778 print "\n";
779}
Note: See TracBrowser for help on using the repository browser.