ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/BuildSystem/BuildSetup.pm
Revision: 1.1.2.7.2.2.2.1
Committed: Thu Sep 21 12:43:07 2000 UTC (24 years, 7 months ago) by williamc
Content type: text/plain
Branch: V0_15branch
CVS Tags: V0_16_0, V0_15_1, V0_15_0, V0_15_0beta
Branch point for: V0_16branch
Changes since 1.1.2.7.2.2: +2 -1 lines
Log Message:
Adapt to new ToolBox interface

File Contents

# Content
1 #
2 #
3 # Interface
4 # ---------
5 # new(toolbox) : A new BuildSetup
6 # BuildSetup(directory,targets) : prepare the ground for a build and build
7 # getclass(directory) : return (Class, ClassDir, BuildFileobject)
8 # associated with directory
9 #
10
11 package BuildSystem::BuildSetup;
12 require 5.004;
13 use Utilities::Verbose;
14 use Utilities::SCRAMUtils;
15 use BuildSystem::BuildFile;
16 use Utilities::AddDir;
17 @ISA=qw(Utilities::Verbose);
18
19 sub new {
20 my $class=shift;
21 my $self={};
22 bless $self,$class;
23 $self->{toolbox}=shift;
24 #$self->init();
25 return $self;
26 }
27
28 sub init {
29 my $self=shift;
30 $self->{toolbox}=BuildSystem::ToolBox->new($ENV{LOCALTOP},
31 $ENV{SCRAM_ARCH});
32 }
33
34 sub _generateexternals {
35 my $self=shift;
36 my $outfile=shift;
37
38 # -- specifiy these files for dependency information
39 my $depfile=$ENV{projconfigdir}."/External_Dependencies";
40
41 # -- get list of dependent files
42 my $datadir=$ENV{LOCALTOP}."/.SCRAM/".$ENV{SCRAM_ARCH};
43 $fdir=FileHandle->new();
44 opendir $fdir, $datadir;
45 my @depfiles=grep !/^\.\.?$/, readdir $fdir;
46 undef $fdir;
47 for (my $i=0; $i<=$#depfiles; $i++ ) {
48 $depfiles[$i]=$datadir."/".$depfiles[$i];
49 }
50
51 # -- do we need to rebuild?
52 if ( SCRAMUtils::dated($outfile,@depfiles) ) {
53 print "Configuring Local Area\n";
54 # -- open output file
55 my $fout=FileHandle->new();
56 $fout->open(">".$outfile) or die "Unable to open $outfile for output".
57 $!."\n";
58
59 # -- print out tool/ version info
60 my ($tool,$toolobj,$f,$val,$version);
61 foreach $tool ( $self->{toolbox}->tools() ) {
62 $version=$self->{toolbox}->defaultversion($tool);
63 # default versions
64 print $fout "ifdef $tool\n".$tool."_V_".$version."=true\nendif\n";
65 # -- set up the different version -- externals
66 foreach $version ( $self->{toolbox}->versions($tool) ) {
67 $toolobj=$self->{toolbox}->gettool($tool,$version);
68 @deps=$toolobj->getfeature("_externals");
69 foreach $d ( @deps ) {
70 $d=~tr[A-Z][a-z];
71 print $fout "ifdef ".$tool."_V_".$version."\n $d=true\nendif\n";
72 }
73 # -- tool info
74 print $fout "ifdef ".$tool."_V_".$version."\n";
75 foreach $f ( $toolobj->features() ) {
76 foreach $val ( $toolobj->getfeature($f) ) {
77 print $fout "\t".$f." += ".$val."\n";
78 }
79 }
80 print $fout "endif\n";
81 }
82 }
83 # some addittional processing of specific vars
84 print $fout 'INCLUDEPATH+=$(addprefix -I,$(INCLUDE))'."\n";
85 print $fout 'LDFLAGS+=$(addprefix -L,$(LIBDIR))'."\n";
86 print $fout 'CPPFLAGS+=$(addprefix -D,$(CPPDEFINES))'."\n";
87 print $fout 'lib+=$(extralib)'."\n";
88 print $fout 'LDLIBS+=$(addprefix -l,$(lib))'."\n";
89 print $fout 'LDLIBS+=$(addprefix -l,$(REQUIRES))'."\n";
90
91 undef $fout;
92 }
93 }
94
95 sub BuildSetup {
96 my $self=shift;
97 my $THISDIR=shift;
98 my @Targets=@_;
99 my $DefaultBuildFile="";
100 my $Class="";
101
102 # -- Create working directory
103 chdir $ENV{LOCALTOP};
104 AddDir::adddir($ENV{INTwork}."/".$THISDIR);
105
106 my ($Class, $ClassDir, $bf)=$self->getclass($THISDIR);
107 $self->verbose("Class = $Class");
108 $self->verbose("ClassDir = $ClassDir");
109
110 if ( $bf->ignore() ) {
111 print "Nothing to be done - empty group\n";
112 exit;
113 }
114 shift;
115 $self->_generateexternals($ENV{LOCALTOP}."/".$ENV{INTwork}."/clientmakefile");
116
117 # set up the workdir variable
118 $ENV{workdir}=$ENV{INTwork}."/".$ClassDir;
119 my $fullworkdir=$ENV{LOCALTOP}."/".$ENV{workdir};
120
121 # set up projdeps variable
122 my $projectfile=$ENV{projconfigdir}."/External_Dependencies";
123 if ( -e $ENV{LOCALTOP}."/".$projectfile ) {
124 $ENV{projdeps}=$ENV{LOCALTOP}."/".$projectfile;
125 }
126 elsif ( -e $ENV{RELEASETOP}."/".$projectfile ) {
127 $ENV{projectfile}=$ENV{RELEASETOP}."/".$projectfile;
128 }
129 if ( $DefaultBuildFile eq "" ) {
130 # Map Relevant makefile classmakefile directory
131 my $classmakefile=$ENV{projconfigdir}."/".$Class."_makefile.mk";
132 if ( -e $ENV{LOCALTOP}."/".$classmakefile ) {
133 $ENV{classmakefile}=$ENV{LOCALTOP}."/".$classmakefile;
134 }
135 elsif ( -e $ENV{RELEASETOP}."/".$classmakefile ) {
136 $ENV{classmakefile}=$ENV{RELEASETOP}."/".$classmakefile;
137 }
138 else {
139 print "\nUnable to locate $classmakefile\n";
140 print " Not in $ENV{LOCALTOP}\n";
141 print " Not in $ENV{RELEASETOP}\n";
142 exit 1;
143 }
144 $DefaultBuildFile=$ENV{classmakefile}; # TODO - only for override
145 }
146
147 $ENV{ClassDir}=$ClassDir;
148 $ENV{Class}=$Class;
149 $ENV{DefaultBuildFile}=$DefaultBuildFile;
150
151 chdir $fullworkdir || die "Unable to enter working directory $!";
152
153 # Set up some other useful variables fo the Build
154 # list of directories available
155 opendir IDR, "$ENV{LOCALTOP}/$THISDIR";
156 @allfiles= grep !/^\.\.?$/, readdir IDR;
157 foreach $file ( @allfiles ) {
158 if ( -d "$ENV{LOCALTOP}/$THISDIR/$file" ) { # only add if its a directory
159 $ENV{SCRAM_AVAILDIRS}=$ENV{SCRAM_AVAILDIRS}." ".$file;
160 }
161 else {
162 $ENV{SCRAM_AVAILFILES}=$ENV{SCRAM_AVAILFILES}." ".$file;
163 }
164 }
165 $targetnumber=$#Targets;
166 foreach $word ( @Targets ) {
167 if ( $word=~/.*=.*/ ) { # if we have an assignment it cant be a target
168 $targetnumber--;
169 }
170 else {
171 $ENV{"MAKETARGET_".$word}=$word;
172 }
173 }
174
175 # If not specified default to the class name target
176 if ( $targetnumber == -1 ) {
177 push @Targets,$Class;
178 }
179
180 $ENV{DefaultMakefile}="$ENV{TOOL_HOME}/basics.mk";
181
182 $SCRAM_GROUPSDIR=$ENV{LOCALTOP}."/".$ENV{projconfigdir}."/groups.mk";
183 if ( -f $SCRAM_GROUPSDIR ) {
184 $ENV{SCRAM_GROUPSDIR}=$SCRAM_GROUPSDIR;
185 }
186
187 # Do a datestamp check so that make will build files that have changed
188 # rather than just those which are older than their dependencies
189 # The main build here
190 $rv=system("gmake","--no-print-directory","-r","-k","-f","$ENV{DefaultMakefile}","-I$ENV{TOOL_HOME}",datestamp_config);
191 $rv=system("gmake","--no-print-directory","-r","-k","-f","$ENV{DefaultMakefile}","-I$ENV{TOOL_HOME}",datestamp, @Targets);
192 return $rv/256; # return the exit status of gmake
193 }
194
195 sub getclass {
196 my $self=shift;
197 my $dirname = shift;
198 my $Class="DEFAULT";
199 my $ClassDir="";
200
201 #return if $dirname eq "";
202 @DIRA=split /\//, $dirname;
203
204 $thispath=".";
205 # bootstrap from project buildfile if it exists
206 my $bf=BuildSystem::BuildFile->new($self->{toolbox});
207 $bf->CheckBuildFile($ENV{projconfigdir});
208
209 my @ClassPaths=split /:/, $bf->BlockClassPath();
210 foreach $BClassPath ( @ClassPaths ) {
211 next if ( $BClassPath eq "");
212 push @LoBCA, [ split /\//, $BClassPath ];
213 }
214 for ( $i=0; $i<=$#DIRA; $i++ ) {
215 $thispath=$thispath."/".$DIRA[$i];
216 if ( ($ClassName=$bf->CheckBuildFile($thispath)) ne "" ) {
217 $Class=$ClassName;
218 $ClassDir=$thispath;
219 }
220 # TODO --- Must test against position of last new BlockCaseA
221 # Need to reset array LoBCA to the New BlockPath
222 # - merge and replace options
223 #
224 else {
225 foreach $BlockClassA ( @LoBCA ) {
226 if ( $$BlockClassA[0]=~/^$DIRA[$i]\+/ ) {
227 $$BlockClassA[0]=~s/^$DIRA[$i]//;
228 }
229 if ( $$BlockClassA[0]=~/^\+/ ) {
230 ($Class=$$BlockClassA[0])=~s/^\+//;
231 $ClassDir=$thispath;
232 shift @$BlockClassA;
233 }
234 else {
235 @$BlockClassA=();
236 }
237 }
238 }
239 }
240 $ClassDir=~s/^\.\///;
241 return ( $Class, $ClassDir, $bf);
242 }