source: ProjectBuilder/devel/pb/lib/ProjectBuilder/common.pm@ 67

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

Add the -r option to support multiple version in parallel

  • Property svn:executable set to *
File size: 3.5 KB
RevLine 
[2]1#!/usr/bin/perl -w
2#
3# Creates common environment
4#
5# $Id$
6#
7
[18]8use strict;
[5]9use lib qw (lib);
[52]10use ProjectBuilder::pb qw (pb_init);
[2]11use File::Basename;
[9]12use File::Path;
[2]13use File::Temp qw /tempdir/;
[8]14use Data::Dumper;
[2]15
[49]16$ENV{'PBETC'} = "$ENV{'HOME'}/.pbrc";
[5]17
[9]18sub env_init {
[2]19
[5]20my $proj=shift;
21my $ver;
22my $tag;
[2]23
[8]24#
[5]25# Check project name
[49]26# Could be with env var PBPROJ
27# or option -p
28# if not define take the first in conf file
[8]29#
[5]30if ((defined $ENV{'PBPROJ'}) &&
31 (not (defined $proj))) {
32 $proj = $ENV{'PBPROJ'};
33}
[49]34#
[67]35# Use project configuration file if needed
[49]36#
[67]37if (not defined $ENV{'PBROOT'}) {
38 pb_init("$ENV{'PBETC'}");
[49]39
[67]40 if (not defined $proj) {
41 # Take the first as the default project
42 $proj = (keys %pbroot)[0];
[49]43 print $LOG "Using $proj as default project as none has been specified\n" if (($debug >= 0) and (defined $proj));
[67]44 }
45 die "No project defined - use env var PBPROJ or -p proj" if (not (defined $proj));
46
47 $ENV{'PBROOT'} = $pbroot{$proj};
48} else {
49 die "No project defined - use env var PBPROJ or -p proj" if (not (defined $proj));
[49]50}
[2]51
[8]52#
[49]53# Check pb conf compliance
[8]54#
[49]55$ENV{'PBCONF'} = "$ENV{'PBROOT'}/pbconf";
56die "Project $proj not Project-Builder compliant. Please populate $ENV{'PBCONF'}" if ( not -d "$ENV{'PBCONF'}");
[2]57
[49]58if (-f "$ENV{'PBCONF'}/$proj.pb") {
59 pb_conf_init("$ENV{'PBCONF'}/$proj.pb");
[38]60} else {
[49]61 die "Unable to open $ENV{'PBCONF'}/$proj.pb";
[38]62}
63
[8]64#
[5]65# Check content
[8]66#
[18]67if (defined $confparam{"cvsroot"}) {
68 $ENV{'CVSROOT'} = $confparam{"cvsroot"};
[17]69}
70
[13]71die "defpkgdir doesn't exist in $ENV{'PBETC'}/$proj.pb" if (not (defined %defpkgdir));
[5]72
[8]73#
[5]74# Set temp directory
[8]75#
[7]76if (not defined $ENV{'TMPDIR'}) {
[2]77 $ENV{'TMPDIR'}="/tmp";
78}
[5]79$ENV{'PBTMP'} = tempdir( "pb.XXXXXXXXXX", DIR => $ENV{'TMPDIR'}, CLEANUP => 1 );
[2]80
[8]81#
[5]82# Get global VERSION
[8]83#
[11]84open(VER, "$ENV{'PBCONF'}/VERSION") || die "Unable to open $ENV{'PBCONF'}/VERSION: $?";
[5]85$ver = <VER>;
86chomp($ver);
[8]87#print Dumper(%version);
88die "Invalid version name $ver in $ENV{'PBROOT'}/VERSION" if ($ver !~ /[0-9.]+/) && (not exists $version{$ver});
[5]89$ENV{'PBVER'}=$ver;
90close(VER);
91
[8]92#
[5]93#Get global TAG
[8]94#
[11]95open(TAG, "$ENV{'PBCONF'}/TAG") || die "Unable to open $ENV{'PBCONF'}/TAG: $?";
[5]96$tag = <TAG>;
97chomp($tag);
[8]98die "Invalid tag name $tag in $ENV{'PBROOT'}/TAG" if ($tag !~ /[0-9]+/);
[5]99$ENV{'PBTAG'}=$tag;
100close(TAG);
101
[8]102#
[5]103# Adapt to your needs
104# Set delivery directory
[8]105#
[25]106chdir "$ENV{'PBROOT'}/..";
107my $path = `pwd`;
108chomp($path);
109$ENV{'PBTOPDIR'}=$path."/delivery";
[9]110$ENV{'PBDESTDIR'}="$ENV{'PBTOPDIR'}/$ENV{'PBVER'}-$ENV{'PBTAG'}";
[25]111if (-d $ENV{'PBDESTDIR'}) {
112 opendir(DIR,$ENV{'PBDESTDIR'}) || die "Unable to open directory $ENV{'PBDESTDIR'}: $!";
113 foreach my $d (readdir(DIR)) {
114 next if ($d =~ /^\./);
115 pbrm_rf("$ENV{'PBDESTDIR'}/$d") if (-d "$ENV{'PBDESTDIR'}/$d");
116 }
117 closedir(DIR);
118}
119if (! -d "$ENV{'PBDESTDIR'}") {
120 pbmkdir_p($ENV{'PBDESTDIR'}) || die "Unable to recursively create $ENV{'PBDESTDIR'}";
121}
[5]122
[25]123#
124# Set build directory
125#
126$ENV{'PBBUILDDIR'}=$path."/build";
127pbrm_rf($ENV{'PBBUILDDIR'}) if (-d "$ENV{'PBBUILDDIR'}");
128pbmkdir_p($ENV{'PBBUILDDIR'}) || die "Unable to recursively create $ENV{'PBBUILDDIR'}";
129
[8]130umask 0022;
131return($proj);
[2]132}
[9]133
134sub pbmkdir_p {
[29]135my @dir = @_;
136my $ret = mkpath(@dir, 0, 0755);
137return($ret);
[9]138}
139
140sub pbrm_rf {
[29]141my @dir = @_;
142my $ret = rmtree(@dir, 0, 0);
143return($ret);
[9]144}
145
[29]146sub pbsystem {
147
148my $cmd=shift;
[30]149my $cmt=shift || $cmd;
[29]150
[30]151print $LOG "$cmt... ";
[29]152system("$cmd");
153if ($? == -1) {
154 print $LOG "failed to execute: $!\n" if ($debug >= 0);
155} elsif ($? & 127) {
156 printf $LOG "child died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'without' if ($debug >= 0);
157} else {
[30]158 print $LOG "OK\n" if ($debug >= 0);
[29]159}
[30]160}
[2]1611;
Note: See TracBrowser for help on using the repository browser.