1 |
< |
# BuildFile |
1 |
> |
#____________________________________________________________________ |
2 |
> |
# File: BuildFile.pm |
3 |
> |
#____________________________________________________________________ |
4 |
> |
# |
5 |
> |
# Author: Shaun Ashby <Shaun.Ashby@cern.ch> |
6 |
> |
# Copyright: 2003 (C) Shaun Ashby |
7 |
|
# |
8 |
< |
# Interface |
4 |
< |
# --------- |
5 |
< |
# new(toolbox) |
6 |
< |
# ParseBuildFile($base,$path,$file) |
7 |
< |
# ParseBuildFileExport(filename) |
8 |
< |
# BlockClassPath() : Return the class path |
9 |
< |
# ignore() : return 1 if directory should be ignored 0 otherwise |
10 |
< |
|
8 |
> |
#-------------------------------------------------------------------- |
9 |
|
package BuildSystem::BuildFile; |
12 |
– |
use Utilities::Verbose; |
13 |
– |
use ActiveDoc::SimpleDoc; |
14 |
– |
use BuildSystem::ToolBox; |
10 |
|
require 5.004; |
11 |
< |
@ISA=qw(Utilities::Verbose); |
12 |
< |
|
18 |
< |
BEGIN { |
19 |
< |
$buildfile="BuildFile"; |
20 |
< |
} |
21 |
< |
|
22 |
< |
sub new { |
23 |
< |
my $class=shift; |
24 |
< |
my $self={}; |
25 |
< |
bless $self, $class; |
26 |
< |
$self->{toolbox}=shift; |
27 |
< |
$self->{Arch}=1; |
28 |
< |
push @{$self->{ARCHBLOCK}}, $self->{Arch}; |
29 |
< |
return $self; |
30 |
< |
} |
31 |
< |
|
32 |
< |
sub ignore { |
33 |
< |
my $self=shift; |
34 |
< |
$self->verbose(">> ignore......<<"); |
35 |
< |
|
36 |
< |
return (defined $self->{ignore})?$self->{ignore}:0; |
37 |
< |
} |
38 |
< |
|
39 |
< |
sub _initswitcher { |
40 |
< |
my $self=shift; |
41 |
< |
my $switch=ActiveDoc::SimpleDoc->new(); |
42 |
< |
my $parse="makebuild"; |
43 |
< |
$self->verbose(">> _initswitcher: <<"); |
44 |
< |
$switch->newparse($parse); |
45 |
< |
$switch->addignoretags($parse); |
46 |
< |
$self->_commontags($switch,$parse); |
47 |
< |
$switch->addtag($parse,"Build", \&Build_start, $self); |
48 |
< |
$switch->addtag($parse,"none", |
49 |
< |
\&OutToMakefile,$self, |
50 |
< |
\&OutToMakefile, $self, |
51 |
< |
"", $self); |
52 |
< |
$switch->addtag($parse,"Bin", |
53 |
< |
\&Bin_start,$self, |
54 |
< |
\&OutToScreen, $self, |
55 |
< |
"", $self); |
56 |
< |
$switch->addtag($parse,"ProductStore", |
57 |
< |
\&Store_start,$self, |
58 |
< |
"", $self, |
59 |
< |
"", $self); |
60 |
< |
$switch->addtag($parse,"LibType", |
61 |
< |
\&LibType_Start,$self, |
62 |
< |
\&LibType_text, $self, |
63 |
< |
\&LibType_end,$self); |
64 |
< |
$switch->addtag($parse,"ConfigurationClass", |
65 |
< |
\&Class_StartTag,$self, |
66 |
< |
\&OutToMakefile, $self, |
67 |
< |
"", $self); |
68 |
< |
$switch->addtag($parse,"ClassPath", |
69 |
< |
\&setBlockClassPath,$self, |
70 |
< |
\&OutToMakefile, $self, |
71 |
< |
"", $self); |
72 |
< |
$switch->addtag($parse,"AssociateGroup", |
73 |
< |
"",$self, |
74 |
< |
\&AssociateGroup,$self, |
75 |
< |
"", $self); |
76 |
< |
$switch->addtag($parse,"Environment", |
77 |
< |
\&Environment_start,$self, |
78 |
< |
\&OutToMakefile, $self, |
79 |
< |
\&Environment_end,$self); |
80 |
< |
$switch->addtag($parse,"Export", |
81 |
< |
\&export_start,$self, |
82 |
< |
\&OutToMakefile, $self, |
83 |
< |
\&export_end,$self); |
84 |
< |
return $switch; |
85 |
< |
} |
86 |
< |
|
87 |
< |
sub _commontags { |
88 |
< |
my $self=shift; |
89 |
< |
my $switch=shift; |
90 |
< |
my $parse=shift; |
91 |
< |
|
92 |
< |
$self->verbose(">> _commontags: SW ".$switch." PARSE ".$parse." <<"); |
93 |
< |
|
94 |
< |
$switch->grouptag("Export",$parse); |
95 |
< |
$switch->addtag($parse,"Use",\&Use_start,$self, |
96 |
< |
\&OutToMakefile, $self, |
97 |
< |
"", $self); |
98 |
< |
$switch->addtag($parse,"Group",\&Group_start,$self, |
99 |
< |
\&OutToMakefile, $self, |
100 |
< |
"", $self); |
101 |
< |
$switch->grouptag("Group",$parse); |
102 |
< |
$switch->addtag($parse,"External", |
103 |
< |
\&External_StartTag,$self, |
104 |
< |
\&OutToMakefile, $self, |
105 |
< |
"", $self); |
106 |
< |
$switch->addtag($parse,"lib", |
107 |
< |
\&lib_start,$self, |
108 |
< |
\&OutToMakefile, $self, |
109 |
< |
"", $self); |
110 |
< |
$switch->addtag($parse,"Architecture", |
111 |
< |
\&Arch_Start,$self, |
112 |
< |
\&OutToMakefile, $self, |
113 |
< |
\&Arch_End,$self); |
114 |
< |
$switch->addtag($parse,"INCLUDE_PATH", |
115 |
< |
\&IncludePath_Start,$self, |
116 |
< |
\&OutToMakefile, $self, |
117 |
< |
"",$self); |
118 |
< |
return $switch; |
119 |
< |
} |
120 |
< |
|
121 |
< |
sub ParseBuildFile { |
122 |
< |
my $self=shift; |
123 |
< |
my $base=shift; |
124 |
< |
my $path=shift; |
125 |
< |
my $filename=shift @_; |
126 |
< |
my $fullfilename; |
127 |
< |
if ( $filename!~/^\// ) { |
128 |
< |
$fullfilename="$base/$path/$filename"; |
129 |
< |
} |
130 |
< |
else { |
131 |
< |
$fullfilename=$filename; |
132 |
< |
} |
133 |
< |
|
134 |
< |
$self->verbose(">> ParseBuildFile: FN ".$fullfilename." <<"); |
135 |
< |
|
136 |
< |
$self->{path}=$path; |
137 |
< |
$numbins=0; |
138 |
< |
$self->{envnum}=0; |
139 |
< |
$self->{envlevel}=0; |
140 |
< |
$self->{currentenv}="$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/". |
141 |
< |
"BuildFile.mk"; |
142 |
< |
$self->{switch}=$self->_initswitcher(); |
143 |
< |
$self->{switch}->filetoparse($fullfilename); |
144 |
< |
|
145 |
< |
# open a temporary gnumakefile to store output. |
146 |
< |
use Utilities::AddDir; |
147 |
< |
AddDir::adddir("$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}"); |
148 |
< |
my $fh=FileHandle->new(); |
149 |
< |
open ( $fh, ">$ENV{LOCALTOP}/$ENV{INTwork}/".$self->{path}."/BuildFile.mk" |
150 |
< |
) or die "Unable to open /$ENV{INTwork}/".$self->{path}."/BuildFile.mk $!\n"; |
151 |
< |
@{$self->{filehandlestack}}=($fh); |
152 |
< |
# make an alias |
153 |
< |
*GNUmakefile=$fh; |
154 |
< |
if ( -e $ENV{LatestBuildFile} ) { |
155 |
< |
print GNUmakefile "include $ENV{LatestBuildFile}\n"; |
156 |
< |
} |
157 |
< |
|
158 |
< |
$ENV{LatestBuildFile}="$ENV{LOCALTOP}/$ENV{INTwork}/".$self->{path}."/BuildFile.mk"; |
159 |
< |
$self->{switch}->parse("makebuild"); # sort out supported tags |
160 |
< |
if ( $numbins > 0 ) { |
161 |
< |
print GNUmakefile <<ENDTEXT; |
162 |
< |
ifndef BINMODE |
163 |
< |
help:: |
164 |
< |
\t\@echo Generic Binary targets |
165 |
< |
\t\@echo ---------------------- |
166 |
< |
endif |
167 |
< |
ENDTEXT |
168 |
< |
foreach $target ( keys %$targettypes ) { |
169 |
< |
print GNUmakefile <<ENDTEXT; |
170 |
< |
ifndef BINMODE |
171 |
< |
help:: |
172 |
< |
\t\@echo $target |
173 |
< |
endif |
174 |
< |
ENDTEXT |
175 |
< |
} |
176 |
< |
} |
177 |
< |
close GNUmakefile; |
178 |
< |
} |
179 |
< |
|
180 |
< |
sub ParseBuildFile_Export { |
181 |
< |
my $self=shift; |
182 |
< |
my $filename=shift; |
183 |
< |
|
184 |
< |
$self->verbose(">> ParseBuildFile_Export: FN ".$filename." <<"); |
185 |
< |
|
186 |
< |
my $bf=BuildSystem::BuildFile->new($self->{toolbox}); |
187 |
< |
if ( defined $self->{remoteproject} ) { |
188 |
< |
$bf->{remoteproject}=$self->{remoteproject}; |
189 |
< |
} |
190 |
< |
$bf->_parseexport($filename); |
191 |
< |
undef $bf; |
192 |
< |
} |
193 |
< |
|
194 |
< |
sub _location { |
195 |
< |
my $self=shift; |
196 |
< |
use File::Basename; |
197 |
< |
$self->verbose(">> _location: <<"); |
198 |
< |
return dirname($self->{switch}->filetoparse()); |
199 |
< |
} |
200 |
< |
|
201 |
< |
sub _parseexport { |
202 |
< |
my $self=shift; |
203 |
< |
my $filename=shift; |
204 |
< |
$self->verbose(">> _parseexport: FN ".$filename." <<"); |
205 |
< |
|
206 |
< |
my $switchex=ActiveDoc::SimpleDoc->new(); |
207 |
< |
$switchex->filetoparse($filename); |
208 |
< |
$switchex->newparse("export"); |
209 |
< |
$switchex->addignoretags("export"); |
210 |
< |
$switchex->addtag("export","Export", |
211 |
< |
\&export_start_export,$self, |
212 |
< |
\&OutToMakefile, $self, |
213 |
< |
\&export_end_export,$self); |
214 |
< |
$self->_commontags($switchex,"export"); |
215 |
< |
$switchex->allowgroup("__export","export"); |
216 |
< |
$self->{switch}=$switchex; |
217 |
< |
$switchex->parse("export"); # sort out supported tags |
218 |
< |
} |
219 |
< |
|
220 |
< |
sub _pushremoteproject { |
221 |
< |
my $self=shift; |
222 |
< |
my $path=shift; |
223 |
< |
|
224 |
< |
$self->verbose(">> _pushremoteproject: PATH ".$path." <<"); |
225 |
< |
|
226 |
< |
if ( defined $self->{remoteproject} ) { |
227 |
< |
push @{$self->{rpstack}}, $self->{remoteproject}; |
228 |
< |
} |
229 |
< |
$self->{remoteproject}=$path; |
230 |
< |
} |
231 |
< |
|
232 |
< |
sub _popremoteproject { |
233 |
< |
my $self=shift; |
234 |
< |
$self->verbose(">> _popremoteproject: <<"); |
235 |
< |
|
236 |
< |
if ( $#{$self->{rpstack}} >=0 ) { |
237 |
< |
$self->{remoteproject}=pop @{$self->{rpstack}}; |
238 |
< |
} |
239 |
< |
else { |
240 |
< |
undef $self->{remoteproject}; |
241 |
< |
} |
242 |
< |
} |
243 |
< |
|
244 |
< |
sub _toolmapper { |
245 |
< |
my $self=shift; |
246 |
< |
|
247 |
< |
if ( ! defined $self->{mapper} ) { |
248 |
< |
require BuildSystem::ToolMapper; |
249 |
< |
$self->{mapper}=BuildSystem::ToolMapper->new(); |
250 |
< |
} |
251 |
< |
$self->verbose(">> _toolmapper: TM ".$self->{mapper}."<<"); |
252 |
< |
return $self->{mapper}; |
253 |
< |
} |
254 |
< |
|
255 |
< |
|
256 |
< |
# ---- Tag routines |
257 |
< |
|
258 |
< |
#-- Override a class type with the <ConfigurationClass type=xxx> tag |
259 |
< |
# the type tag will pick up a pre-defined class type from project space. |
260 |
< |
|
261 |
< |
sub Class_StartTag { |
262 |
< |
my $self=shift; |
263 |
< |
my $name=shift; |
264 |
< |
my $hashref=shift; |
265 |
< |
|
266 |
< |
$self->verbose(">> Classs_StartTag: NM ".$name." <<"); |
267 |
< |
|
268 |
< |
if ( $self->{Arch} ) { |
269 |
< |
if ( defined $$hashref{'type'} ) { |
270 |
< |
$ClassName=$$hashref{'type'}; |
271 |
< |
} |
272 |
< |
} |
273 |
< |
} |
274 |
< |
|
275 |
< |
sub IncludePath_Start { |
276 |
< |
my $self=shift; |
277 |
< |
my $name=shift; |
278 |
< |
my $hashref=shift; |
279 |
< |
|
280 |
< |
$self->verbose(">> IncludePath_Start: NM ".$name." <<"); |
281 |
< |
|
282 |
< |
$self->{switch}->checktag( $name, $hashref, 'path'); |
283 |
< |
if ( $self->{Arch} ) { |
284 |
< |
print GNUmakefile "INCLUDE+=".$self->_location()."/". |
285 |
< |
$$hashref{'path'}."\n"; |
286 |
< |
} |
287 |
< |
} |
11 |
> |
use Exporter; |
12 |
> |
use ActiveDoc::SimpleDoc; |
13 |
|
|
14 |
+ |
@ISA=qw(Exporter); |
15 |
+ |
@EXPORT_OK=qw( ); |
16 |
|
# |
17 |
< |
# generic build tag |
18 |
< |
# |
19 |
< |
sub Build_start { |
20 |
< |
my $self=shift; |
21 |
< |
my $name=shift; |
22 |
< |
my $hashref=shift; |
23 |
< |
|
24 |
< |
$self->verbose(">> Build_start: NM ".$name." <<"); |
25 |
< |
|
26 |
< |
$self->{switch}->checktag($name,$hashref,'class'); |
27 |
< |
if ( $self->{Arch} ) { |
28 |
< |
|
29 |
< |
# -- determine the build products name |
30 |
< |
my $name; |
31 |
< |
if ( exists $$hashref{'name'} ) { |
32 |
< |
$name=$$hashref{'name'}; |
33 |
< |
} |
34 |
< |
else { |
35 |
< |
$self->{switch}->parseerror("No name specified for build product"); |
36 |
< |
} |
37 |
< |
|
311 |
< |
# -- check we have a lookup for the class type |
312 |
< |
my $mapper=$self->_toolmapper(); |
313 |
< |
if ( ! $mapper->exists($$hashref{'class'}) ) { |
314 |
< |
$self->{switch}->parseerror("Unknown class : ".$$hashref{'class'}); |
315 |
< |
} |
316 |
< |
else { |
317 |
< |
my @types=$self->_toolmapper()->types($$hashref{'class'}); |
318 |
< |
my @deftypes=$self->_toolmapper()->defaulttypes($$hashref{'class'}); |
319 |
< |
|
320 |
< |
my $fh=$self->{filehandlestack}[0]; |
321 |
< |
my @targets=(); |
322 |
< |
|
323 |
< |
# -- generate generic targets |
324 |
< |
print $fh "ifndef _BuildLink_\n"; |
325 |
< |
print $fh "# -- Generic targets\n"; |
326 |
< |
push @targets, $$hashref{'class'}; |
327 |
< |
foreach $dtype ( @deftypes ) { |
328 |
< |
print $fh $$hashref{'class'}."::".$$hashref{'class'}."_". |
329 |
< |
$dtype."\n"; |
330 |
< |
} |
331 |
< |
print $fh "\n"; |
332 |
< |
|
333 |
< |
# -- generate targets for each type |
334 |
< |
foreach $type ( @types ) { |
335 |
< |
|
336 |
< |
# -- generic name for each type |
337 |
< |
my $pattern=$$hashref{'class'}."_".$type; |
338 |
< |
my $dirname=$$hashref{'class'}."_".$type."_".$name; |
339 |
< |
print $fh "# ------ $pattern rules ---------------\n"; |
340 |
< |
print $fh $$hashref{'class'}."_".$type."::".$$hashref{'class'}. |
341 |
< |
"_".$type."_$name\n\n"; |
342 |
< |
|
343 |
< |
# -- create a new directory for each type |
344 |
< |
push @targets, $pattern; |
345 |
< |
my $dirname=$$hashref{'class'}."_".$type."_".$name; |
346 |
< |
my $here="$ENV{LOCALTOP}/$ENV{INTwork}/".$self->{path}."/".$dirname; |
347 |
< |
my $makefile=$here."/BuildFile.mk"; |
348 |
< |
|
349 |
< |
# -- create link targets to the directory |
350 |
< |
push @targets, $dirname; |
351 |
< |
print $fh "# -- Link Targets to $type directories\n"; |
352 |
< |
print $fh "$dirname: make_$dirname\n"; |
353 |
< |
print $fh "\t\@cd $here; \\\n"; |
354 |
< |
print $fh "\t\$(MAKE) LatestBuildFile=$makefile _BuildLink_=1". |
355 |
< |
" workdir=$here ". |
356 |
< |
" -f \$(TOOL_HOME)/basics.mk datestamp \$\@; \n\n"; |
357 |
< |
|
358 |
< |
# -- write target to make makefile for each directory |
359 |
< |
print $fh "# -- Build target directories\n"; |
360 |
< |
print $fh "make_$dirname:\n"; |
361 |
< |
print $fh "\tif [ ! -e \"$makefile\" ]; then \\\n"; |
362 |
< |
print $fh "\t if [ ! -d \"$here\" ]; then \\\n"; |
363 |
< |
print $fh "\t mkdir $here; \\\n"; |
364 |
< |
print $fh "\t fi;\\\n"; |
365 |
< |
print $fh "\t cd $dirname; \\\n"; |
366 |
< |
print $fh "\t echo include ".$self->{currentenv}." > ". |
367 |
< |
"$makefile; \\\n"; |
368 |
< |
print $fh "\t echo VPATH+=$ENV{LOCALTOP}/".$self->{path}. |
369 |
< |
" >> $makefile; \\\n"; |
370 |
< |
print $fh "\t echo buildname=$name >> $makefile;\\\n"; |
371 |
< |
print $fh "\t echo ".$dirname.":".$pattern." >> $makefile;\\\n"; |
372 |
< |
if ( defined (my @file=$mapper->rulesfile($$hashref{'class'})) ) { |
373 |
< |
foreach $f ( @file ) { |
374 |
< |
print $fh "\t echo -include $f >> $makefile; \\\n"; |
375 |
< |
} |
376 |
< |
} |
377 |
< |
print $fh "\tfi\n"; |
378 |
< |
print $fh "\n"; |
379 |
< |
|
380 |
< |
# -- cleaning targets |
381 |
< |
push @targets, "clean_$dirname"; |
382 |
< |
print $fh "# -- cleaning targets\n"; |
383 |
< |
print $fh "clean::clean_$dirname\n"; |
384 |
< |
print $fh "clean_".$dirname."::\n"; |
385 |
< |
print $fh "\t\@echo cleaning $dirname\n"; |
386 |
< |
print $fh "\t\@if [ -d $here ]; then \\\n"; |
387 |
< |
print $fh "\tcd $here; \\\n"; |
388 |
< |
print $fh "\t\$(MAKE) LatestBuildFile=$makefile workdir=". |
389 |
< |
$here." _BuildLink_=1 -f ". |
390 |
< |
"\$(TOOL_HOME)/basics.mk clean; \\\n"; |
391 |
< |
print $fh "\tfi\n\n"; |
392 |
< |
|
393 |
< |
|
394 |
< |
} |
395 |
< |
# -- help targets |
396 |
< |
print $fh "helpheader::\n"; |
397 |
< |
print $fh "\t\@echo Targets available:\n"; |
398 |
< |
print $fh "\t\@echo ------------------\n\n"; |
399 |
< |
print $fh "help::helpheader\n"; |
400 |
< |
foreach $target ( @targets ) { |
401 |
< |
print $fh "help::\n"; |
402 |
< |
print $fh "\t\@echo $target\n" |
403 |
< |
} |
404 |
< |
print $fh "endif\n"; |
405 |
< |
} # end else |
406 |
< |
} |
407 |
< |
} |
408 |
< |
|
409 |
< |
sub Bin_start { |
410 |
< |
my $self=shift; |
411 |
< |
my $name=shift; |
412 |
< |
my $hashref=shift; |
413 |
< |
|
414 |
< |
my $fileclass; |
415 |
< |
my @tools; |
416 |
< |
my $tool; |
417 |
< |
my $filename; |
418 |
< |
my $objectname; |
419 |
< |
|
420 |
< |
$self->verbose(">> <<"); |
421 |
< |
|
422 |
< |
$self->{switch}->checktag($name,$hashref,'file'); |
423 |
< |
if ( $self->{Arch} ) { |
424 |
< |
if ( ! defined $$hashref{name} ) { |
425 |
< |
($$hashref{name}=$$hashref{file})=~s/\..*//; |
426 |
< |
} |
427 |
< |
($filename=$$hashref{file})=~s/\..*//; |
428 |
< |
|
429 |
< |
# Create a new directory for each binary target |
430 |
< |
my $dirname="bin_".$$hashref{name}; |
431 |
< |
AddDir::adddir("$ENV{LOCALTOP}/$ENV{INTwork}/".$self->{path}."/$dirname"); |
432 |
< |
open (binGNUmakefile, |
433 |
< |
">$ENV{LOCALTOP}/$ENV{INTwork}/".$self->{path}."/$dirname/BuildFile.mk") or die "Unable to make $ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/$dirname/". |
434 |
< |
"BuildFile.mk $!\n"; |
435 |
< |
|
436 |
< |
# Create the link targets |
437 |
< |
$numbins++; |
438 |
< |
my $fh=$self->{filehandlestack}[0]; |
439 |
< |
print $fh <<ENDTEXT; |
440 |
< |
|
441 |
< |
# Link Targets to binary directories |
442 |
< |
ifdef BINMODE |
443 |
< |
# We dont want to build a library here |
444 |
< |
override files:= |
445 |
< |
endif |
446 |
< |
ifndef BINMODE |
447 |
< |
|
448 |
< |
define stepdown_$$hashref{'name'} |
449 |
< |
if [ -d "$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/$dirname" ]; then \\ |
450 |
< |
cd $ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/$dirname; \\ |
451 |
< |
\$(MAKE) BINMODE=true LatestBuildFile=$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/$dirname/BuildFile.mk workdir=\$(workdir)/$dirname -f \$(TOOL_HOME)/basics.mk datestamp \$\@; \\ |
452 |
< |
fi |
453 |
< |
endef |
454 |
< |
|
455 |
< |
define stepdown2_$$hashref{'name'} |
456 |
< |
if [ -d "$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/$dirname" ]; then \\ |
457 |
< |
cd $ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/$dirname; \\ |
458 |
< |
\$(MAKE) BINMODE=true LatestBuildFile=$ENV{LOCALTOP}/$ENV{INTwork}/$self{path}/$dirname/BuildFile.mk workdir=\$(workdir)/$dirname -f \$(TOOL_HOME)/basics.mk datestamp \$\*; \\ |
459 |
< |
fi |
460 |
< |
|
461 |
< |
endef |
462 |
< |
|
463 |
< |
bin_$$hashref{'name'}_%:: dummy |
464 |
< |
\@\$(stepdown2_$$hashref{'name'}) |
465 |
< |
|
466 |
< |
$$hashref{'name'}_%:: dummy |
467 |
< |
\@\$(stepdown_$$hashref{'name'}) |
468 |
< |
|
469 |
< |
help bin bin_debug bin_debug_local bin_insure bin_Insure clean $$hashref{'name'}:: dummy |
470 |
< |
\@\$(stepdown_$$hashref{'name'}) |
471 |
< |
|
472 |
< |
binfiles+=$$hashref{'file'} |
473 |
< |
locbinfiles+=$dirname/$$hashref{'file'} |
474 |
< |
endif |
475 |
< |
|
476 |
< |
|
477 |
< |
ENDTEXT |
478 |
< |
|
479 |
< |
|
480 |
< |
# the binary specifics makefile |
481 |
< |
print binGNUmakefile "include ".$self->{currentenv}."\n"; |
482 |
< |
print binGNUmakefile "VPATH+=$ENV{LOCALTOP}/$self{path}\n"; |
483 |
< |
|
484 |
< |
# alias for bin_Insure |
485 |
< |
print binGNUmakefile <<ENDTEXT; |
486 |
< |
|
487 |
< |
bin_insure:bin_Insure |
488 |
< |
ifdef MAKETARGET_bin_insure |
489 |
< |
MAKETARGET_$$hashref{name}_Insure=1 |
490 |
< |
endif |
491 |
< |
|
492 |
< |
# debuggging target |
493 |
< |
$$hashref{'name'}_echo_% :: echo_% |
494 |
< |
|
495 |
< |
# help targets |
496 |
< |
help:: |
497 |
< |
\t\@echo Targets For $$hashref{'name'} |
498 |
< |
\t\@echo ------------------------------------- |
499 |
< |
\t\@echo $$hashref{'name'} - default build |
500 |
< |
\t\@echo bin_$$hashref{'name'}_clean - executable specific cleaning |
501 |
< |
ENDTEXT |
502 |
< |
|
503 |
< |
# Make generic rules for each type |
504 |
< |
$targettypes={ |
505 |
< |
"bin" => 'o', |
506 |
< |
"bin_debug" => 'd', |
507 |
< |
"bin_debug_local" => 'l_d', |
508 |
< |
"bin_Insure" => 'Insure' |
509 |
< |
}; |
510 |
< |
# |
511 |
< |
foreach $target ( keys %$targettypes ) { |
512 |
< |
print binGNUmakefile <<ENDTEXT; |
513 |
< |
|
514 |
< |
# Type $target specifics |
515 |
< |
ifdef MAKETARGET_$target |
516 |
< |
MAKETARGET_$$hashref{name}_$$targettypes{$target}=1 |
517 |
< |
endif |
518 |
< |
$target ::$$hashref{name}_$$targettypes{$target} |
519 |
< |
|
520 |
< |
bintargets+=$$hashref{name}_$$targettypes{$target} |
521 |
< |
help:: |
522 |
< |
\t\@echo $$hashref{name}_$$targettypes{$target} |
523 |
< |
clean:: |
524 |
< |
\t\@if [ -f \$(binarystore)/$$hashref{name}_$$targettypes{$target} ]; then \\ |
525 |
< |
\techo Removing \$(binarystore)/$$hashref{name}; \\ |
526 |
< |
\trm \$(binarystore)/$$hashref{name}_$$targettypes{$target}; \\ |
527 |
< |
\tfi |
528 |
< |
|
529 |
< |
ENDTEXT |
530 |
< |
($objectname=$$hashref{file})=~s/\..*/_$$targettypes{$target}\.o/; |
531 |
< |
${"objectname_$$targettypes{$target}"}=$objectname; |
532 |
< |
print binGNUmakefile "$objectname:$$hashref{name}.dep\n"; |
533 |
< |
} # end loop |
534 |
< |
|
535 |
< |
print binGNUmakefile "$$hashref{name}_Insure.exe:.psrc\n"; |
536 |
< |
print binGNUmakefile "$$hashref{name}_d.exe:$objectname_d\n"; |
537 |
< |
print binGNUmakefile "\t\$(CClinkCmdDebug)\n"; |
538 |
< |
print binGNUmakefile "\t\@\$(SCRAMPERL) \$(SCRAM_HOME)/src/scramdatestamp \$\@\.ds \$\@ \$\^\n"; |
539 |
< |
print binGNUmakefile "$$hashref{name}_l_d.exe:$objectname_d\n"; |
540 |
< |
print binGNUmakefile "\t\$(CClinkCmdDebugLocal)\n"; |
541 |
< |
print binGNUmakefile "\t\@\$(SCRAMPERL) \$(SCRAM_HOME)/src/scramdatestamp \$\@\.ds \$\@ \$\^\n"; |
542 |
< |
print binGNUmakefile "$$hashref{name}_Insure.exe:$objectname_Insure\n"; |
543 |
< |
print binGNUmakefile "\t\$(CClinkCmdInsure)\n"; |
544 |
< |
print binGNUmakefile "\t\@\$(SCRAMPERL) \$(SCRAM_HOME)/src/scramdatestamp \$\@\.ds \$\@ \$\^\n"; |
545 |
< |
print binGNUmakefile "$$hashref{name}_o.exe:$objectname_o\n"; |
546 |
< |
print binGNUmakefile "\t\$(CClinkCmd)\n"; |
547 |
< |
print binGNUmakefile "\t\@\$(SCRAMPERL) \$(SCRAM_HOME)/src/scramdatestamp \$\@\.ds \$\@ \$\^\n"; |
548 |
< |
print binGNUmakefile "$$hashref{name}.dep:$$hashref{file}\n"; |
549 |
< |
print binGNUmakefile "-include $$hashref{name}.dep\n"; |
550 |
< |
print binGNUmakefile <<ENDTEXT; |
551 |
< |
clean:: |
552 |
< |
\t\@if [ -f \$(binarystore)/$$hashref{name} ]; then \\ |
553 |
< |
\techo Removing \$(binarystore)/$$hashref{name}; \\ |
554 |
< |
\trm \$(binarystore)/$$hashref{name}; \\ |
555 |
< |
\tfi |
556 |
< |
|
557 |
< |
$$hashref{name}_d.exe:\$(libslocal_d) |
558 |
< |
$$hashref{name}_o.exe:\$(libslocal) |
559 |
< |
ifdef MCCABE_DATA_DIR |
560 |
< |
$$hashref{name}_mccabe.exe: \$(libslocal_d) \$(MCCABE_DATA_DIR)/mccabeinstr/instplus.cpp |
561 |
< |
endif |
562 |
< |
$$hashref{name}_Insure.exe:\$(libslocal_I) |
563 |
< |
$$hashref{name}_d:$$hashref{name}_d.exe |
564 |
< |
\@cp $$hashref{name}_d.exe \$(binarystore)/$$hashref{name} |
565 |
< |
$$hashref{name}_l_d:$$hashref{name}_l_d.exe |
566 |
< |
\@cp $$hashref{name}_l_d.exe \$(binarystore)/$$hashref{name} |
567 |
< |
$$hashref{name}_Insure:$$hashref{name}_Insure.exe |
568 |
< |
\@cp $$hashref{name}_Insure.exe \$(binarystore)/$$hashref{name}_Insure |
569 |
< |
$$hashref{name}:$$hashref{name}_d.exe |
570 |
< |
\@mv $$hashref{name}_d.exe \$(binarystore)/$$hashref{name} |
571 |
< |
$$hashref{name}_o:$$hashref{name}_o.exe |
572 |
< |
\@mv $$hashref{name}_o.exe \$(binarystore)/$$hashref{name} |
573 |
< |
binfiles+=$$hashref{file} |
574 |
< |
ENDTEXT |
575 |
< |
} |
576 |
< |
close binGNUmakefile; |
577 |
< |
} |
578 |
< |
|
579 |
< |
sub External_StartTag { |
580 |
< |
my $self=shift; |
581 |
< |
my $name=shift; |
582 |
< |
my $hashref=shift; |
583 |
< |
|
584 |
< |
$self->verbose(">> External_StartTag: NM ".$name." <<"); |
585 |
< |
|
586 |
< |
my $tool; |
587 |
< |
if ( $self->{Arch} ) { |
588 |
< |
$self->{switch}->checktag($name,$hashref,'ref'); |
589 |
< |
|
590 |
< |
# -- oo toolbox stuff |
591 |
< |
# - get the appropriate tool object |
592 |
< |
$$hashref{'ref'}=~tr[A-Z][a-z]; |
593 |
< |
if ( ! exists $$hashref{'version'} ) { |
594 |
< |
$tool=$self->{toolbox}->gettool($$hashref{'ref'}); |
595 |
< |
} |
596 |
< |
else { |
597 |
< |
$tool=$self->{toolbox}->gettool($$hashref{'ref'},$$hashref{'version'}); |
598 |
< |
} |
599 |
< |
if ( ! defined $tool ) { |
600 |
< |
$self->{switch}->parseerror("Unknown Tool Specified (" |
601 |
< |
.$$hashref{'ref'}.")"); |
602 |
< |
} |
603 |
< |
|
604 |
< |
# -- old fashioned GNUmakefile stuff |
605 |
< |
print GNUmakefile $$hashref{'ref'}; |
606 |
< |
if ( defined $$hashref{'version'} ) { |
607 |
< |
print GNUmakefile "_V_".$$hashref{'version'}; |
608 |
< |
} |
609 |
< |
print GNUmakefile "=true\n"; |
610 |
< |
|
611 |
< |
# -- Sub system also specified? |
612 |
< |
if ( exists $$hashref{'use'} ) { |
613 |
< |
# -- look for a buildfile |
614 |
< |
my @paths=$tool->getfeature("INCLUDE"); |
615 |
< |
my $file=""; |
616 |
< |
my ($path,$testfile); |
617 |
< |
foreach $path ( @paths ) { |
618 |
< |
$testfile=$path."/".$$hashref{'use'}."/BuildFile" ; |
619 |
< |
if ( -f $testfile ) { |
620 |
< |
$file=$testfile; |
621 |
< |
$self->_pushremoteproject($path); |
622 |
< |
} |
623 |
< |
} |
624 |
< |
if ( $file eq "" ) { |
625 |
< |
$self->{switch}->parseerror("Unable to find SubSystem $testfile"); |
626 |
< |
} |
627 |
< |
$self->ParseBuildFile_Export($file); |
628 |
< |
$self->_popremoteproject(); |
629 |
< |
} |
630 |
< |
} |
631 |
< |
} |
17 |
> |
sub new() |
18 |
> |
############################################################### |
19 |
> |
# new # |
20 |
> |
############################################################### |
21 |
> |
# modified : Wed Dec 3 19:03:22 2003 / SFA # |
22 |
> |
# params : # |
23 |
> |
# : # |
24 |
> |
# function : # |
25 |
> |
# : # |
26 |
> |
############################################################### |
27 |
> |
{ |
28 |
> |
my $proto=shift; |
29 |
> |
my $class=ref($proto) || $proto; |
30 |
> |
$self={}; |
31 |
> |
bless $self,$class; |
32 |
> |
$self->{DEPENDENCIES} = {}; |
33 |
> |
$self->{content} = {}; |
34 |
> |
$self->{scramdoc}=ActiveDoc::SimpleDoc->new(); |
35 |
> |
$self->{scramdoc}->newparse("builder",__PACKAGE__,'Subs',shift); |
36 |
> |
return $self; |
37 |
> |
} |
38 |
|
|
39 |
< |
sub Group_start { |
40 |
< |
my $self=shift; |
41 |
< |
my $name=shift; |
42 |
< |
my $hashref=shift; |
43 |
< |
|
44 |
< |
$self->verbose(">> Group_start: NM ".$name." <<"); |
45 |
< |
|
46 |
< |
$self->{switch}->checktag($name, $hashref, 'name'); |
47 |
< |
if ( $self->{Arch} ) { |
48 |
< |
print GNUmakefile "GROUP_".$$hashref{'name'}; |
49 |
< |
if ( defined $$hashref{'version'} ) { |
50 |
< |
print GNUmakefile "_V_".$$hashref{'version'}; |
51 |
< |
} |
52 |
< |
print GNUmakefile "=true\n"; |
53 |
< |
} |
648 |
< |
} |
649 |
< |
|
650 |
< |
sub Use_start |
651 |
< |
{ |
652 |
< |
my $self=shift; |
653 |
< |
my $name=shift; |
654 |
< |
my $hashref=shift; |
655 |
< |
my $filename; |
656 |
< |
use Utilities::SCRAMUtils; |
39 |
> |
sub parse() |
40 |
> |
{ |
41 |
> |
my $self=shift; |
42 |
> |
my ($filename)=@_; |
43 |
> |
my $fhead='<?xml version="1.0" encoding="UTF-8" standalone="yes"?><doc type="BuildSystem::BuildFile" version="1.0">'; |
44 |
> |
my $ftail='</doc>'; |
45 |
> |
$self->{scramdoc}->filetoparse($filename); |
46 |
> |
$self->{archs}=[]; |
47 |
> |
$self->{archflag}=1; |
48 |
> |
$self->{scramdoc}->parse("builder",$fhead,$ftail); |
49 |
> |
# We're done with the SimpleDoc object so delete it: |
50 |
> |
delete $self->{scramdoc}; |
51 |
> |
delete $self->{archs}; |
52 |
> |
delete $self->{archflag}; |
53 |
> |
} |
54 |
|
|
55 |
< |
$self->verbose(">> Use_start: NM ".$name." <<"); |
56 |
< |
|
57 |
< |
$self->{switch}->checktag($name, $hashref, "name"); |
58 |
< |
if ( $self->{Arch} ) |
55 |
> |
sub classpath() |
56 |
> |
{ |
57 |
> |
my ($object,$name,%attributes)=@_; |
58 |
> |
# The getter part: |
59 |
> |
if (ref($object) eq __PACKAGE__) |
60 |
|
{ |
61 |
< |
if ( exists $$hashref{'group'} ) |
62 |
< |
{ |
63 |
< |
print GNUmakefile "GROUP_".$$hashref{'group'}."=true\n"; |
64 |
< |
} |
65 |
< |
if ( ! defined $self->{remoteproject} ) |
61 |
> |
return $self->{content}->{CLASSPATH}; |
62 |
> |
} |
63 |
> |
if (!$self->{archflag}){return;} |
64 |
> |
$self->{nested} == 1 ? push(@{$self->{tagcontent}->{CLASSPATH}}, $attributes{'path'}) |
65 |
> |
: push(@{$self->{content}->{CLASSPATH}}, $attributes{'path'}); |
66 |
> |
} |
67 |
> |
|
68 |
> |
sub productstore() |
69 |
> |
{ |
70 |
> |
my ($object,$name,%attributes)=@_; |
71 |
> |
# The getter part: |
72 |
> |
if (ref($object) eq __PACKAGE__) |
73 |
> |
{ |
74 |
> |
# Return an array of ProductStore hashes: |
75 |
> |
return $self->{content}->{PRODUCTSTORE}; |
76 |
> |
} |
77 |
> |
if (!$self->{archflag}){return;} |
78 |
> |
$self->{nested} == 1 ? push(@{$self->{tagcontent}->{PRODUCTSTORE}}, \%attributes) |
79 |
> |
: push(@{$self->{content}->{PRODUCTSTORE}}, \%attributes) ; |
80 |
> |
} |
81 |
> |
|
82 |
> |
sub include() |
83 |
> |
{ |
84 |
> |
my $self=shift; |
85 |
> |
# Return an array of required includes: |
86 |
> |
return $self->{content}->{INCLUDE}; |
87 |
> |
} |
88 |
> |
|
89 |
> |
sub include_path() |
90 |
> |
{ |
91 |
> |
my ($object,$name,%attributes)=@_; |
92 |
> |
if (!$self->{archflag}){return;} |
93 |
> |
$self->{nested} == 1 ? push(@{$self->{tagcontent}->{INCLUDE}}, $attributes{'path'}) |
94 |
> |
: push(@{$self->{content}->{INCLUDE}}, $attributes{'path'}); |
95 |
> |
} |
96 |
> |
|
97 |
> |
sub use() |
98 |
> |
{ |
99 |
> |
my $object=shift; |
100 |
> |
# The getter part: |
101 |
> |
if (ref($object) eq __PACKAGE__) |
102 |
> |
{ |
103 |
> |
# Add or return uses (package deps): |
104 |
> |
@_ ? push(@{$self->{content}->{USE}},@_) |
105 |
> |
: @{$self->{content}->{USE}}; |
106 |
> |
} |
107 |
> |
else |
108 |
> |
{ |
109 |
> |
if (!$self->{archflag}){return;} |
110 |
> |
my ($name,%attributes)=@_; |
111 |
> |
$self->{DEPENDENCIES}->{$attributes{'name'}} = 1; |
112 |
> |
$self->{nested} == 1 ? push(@{$self->{tagcontent}->{USE}}, $attributes{'name'}) |
113 |
> |
: push(@{$self->{content}->{USE}}, $attributes{'name'}); |
114 |
> |
} |
115 |
> |
} |
116 |
> |
|
117 |
> |
sub architecture() |
118 |
> |
{ |
119 |
> |
my ($object,$name,%attributes)=@_; |
120 |
> |
my $flag=$self->{archflag}; |
121 |
> |
push @{$self->{archs}},$flag; |
122 |
> |
my $arch=$attributes{name}; |
123 |
> |
if (($flag) && ($ENV{SCRAM_ARCH}!~/$arch/)){$self->{archflag}=0;} |
124 |
> |
} |
125 |
> |
|
126 |
> |
sub architecture_() |
127 |
> |
{ |
128 |
> |
my ($object,$name,%attributes)=@_; |
129 |
> |
$self->{archflag}=pop @{$self->{archs}}; |
130 |
> |
} |
131 |
> |
|
132 |
> |
sub export() |
133 |
> |
{ |
134 |
> |
my ($object,$name,%attributes)=@_; |
135 |
> |
if (!$self->{archflag}){return;} |
136 |
> |
$self->pushlevel(); # Set nested to 1; |
137 |
> |
} |
138 |
> |
|
139 |
> |
sub export_() |
140 |
> |
{ |
141 |
> |
my ($object,$name,%attributes)=@_; |
142 |
> |
if (!$self->{archflag}){return;} |
143 |
> |
$self->{content}->{EXPORT} = $self->{tagcontent}; |
144 |
> |
$self->poplevel(); |
145 |
> |
} |
146 |
> |
|
147 |
> |
sub lib() |
148 |
> |
{ |
149 |
> |
my ($object,$name,%attributes)=@_; |
150 |
> |
# The getter part: |
151 |
> |
if (ref($object) eq __PACKAGE__) |
152 |
> |
{ |
153 |
> |
# Return an array of required libs: |
154 |
> |
return $self->{content}->{LIB}; |
155 |
> |
} |
156 |
> |
if (!$self->{archflag}){return;} |
157 |
> |
my $libname = $attributes{'name'}; |
158 |
> |
# We have a libname, add it to the list: |
159 |
> |
$self->{nested} == 1 ? push(@{$self->{tagcontent}->{LIB}}, $libname) |
160 |
> |
: push(@{$self->{content}->{LIB}}, $libname); |
161 |
> |
} |
162 |
> |
|
163 |
> |
sub makefile() |
164 |
> |
{ |
165 |
> |
my ($object,$name,%attributes)=@_; |
166 |
> |
# The getter part: |
167 |
> |
if (ref($object) eq __PACKAGE__) |
168 |
> |
{ |
169 |
> |
return $self->{content}->{MAKEFILE}; |
170 |
> |
} |
171 |
> |
} |
172 |
> |
|
173 |
> |
sub makefile_() |
174 |
> |
{ |
175 |
> |
my ($object,$name,$cdata)=@_; |
176 |
> |
if (!$self->{archflag}){return;} |
177 |
> |
$self->{nested} == 1 ? push(@{$self->{tagcontent}->{MAKEFILE}}, join("\n",@$cdata)) |
178 |
> |
: push(@{$self->{content}->{MAKEFILE}}, join("\n",@$cdata)); |
179 |
> |
} |
180 |
> |
|
181 |
> |
sub flags() |
182 |
> |
{ |
183 |
> |
my ($object,$name,%attributes)=@_; |
184 |
> |
# The getter part: |
185 |
> |
if (ref($object) eq __PACKAGE__) |
186 |
> |
{ |
187 |
> |
# Return an array of ProductStore hashes: |
188 |
> |
return $self->{content}->{FLAGS}; |
189 |
> |
} |
190 |
> |
if (!$self->{archflag}){return;} |
191 |
> |
# Extract the flag name and its value: |
192 |
> |
my ($flagname,$flagvaluestring) = each %attributes; |
193 |
> |
$flagname =~ tr/[a-z]/[A-Z]/; # Keep flag name uppercase |
194 |
> |
chomp($flagvaluestring); |
195 |
> |
my @flagvalues = ( $flagvaluestring ); |
196 |
> |
# Is current tag within another tag block? |
197 |
> |
if ($self->{nested} == 1) |
198 |
> |
{ |
199 |
> |
# Check to see if the current flag name is already stored in the hash. If so, |
200 |
> |
# just add the new values to the array of flag values: |
201 |
> |
if (exists ($self->{tagcontent}->{FLAGS}->{$flagname})) |
202 |
|
{ |
203 |
< |
$filename=SCRAMUtils::checkfile("/$ENV{INTsrc}/$$hashref{name}/BuildFile"); |
203 |
> |
push(@{$self->{tagcontent}->{FLAGS}->{$flagname}},@flagvalues); |
204 |
|
} |
205 |
|
else |
206 |
|
{ |
207 |
< |
$filename=$self->{remoteproject}."/$$hashref{name}/BuildFile"; |
674 |
< |
print "Trying $filename\n"; |
675 |
< |
if ( ! -f $filename ) { $filename=""; }; |
207 |
> |
$self->{tagcontent}->{FLAGS}->{$flagname} = [ @flagvalues ]; |
208 |
|
} |
209 |
< |
if ( $filename ne "" ) |
209 |
> |
} |
210 |
> |
else |
211 |
> |
{ |
212 |
> |
if (exists ($self->{content}->{FLAGS}->{$flagname})) |
213 |
|
{ |
214 |
< |
$self->ParseBuildFile_Export( $filename ); |
214 |
> |
push(@{$self->{content}->{FLAGS}->{$flagname}},@flagvalues); |
215 |
|
} |
216 |
|
else |
217 |
|
{ |
218 |
< |
$self->{switch}->parseerror("Unable to detect Appropriate ". |
684 |
< |
"decription file for <$name name=".$$hashref{name}.">"); |
218 |
> |
$self->{content}->{FLAGS}->{$flagname} = [ @flagvalues ]; |
219 |
|
} |
220 |
|
} |
221 |
|
} |
222 |
|
|
223 |
< |
sub CheckBuildFile { |
224 |
< |
my $self=shift; |
225 |
< |
my $classdir=shift; |
226 |
< |
my $ClassName=""; |
227 |
< |
my $thisfile="$classdir/$buildfile"; |
228 |
< |
|
695 |
< |
if ( -e $ENV{LOCALTOP}."/".$thisfile ) { |
696 |
< |
$DefaultBuildfile="$ENV{LOCALTOP}/$thisfile"; |
697 |
< |
$self->ParseBuildFile($ENV{LOCALTOP}, $classdir, $buildfile); |
698 |
< |
} |
699 |
< |
elsif ( -e $ENV{RELEASETOP}."/".$thisfile ) { |
700 |
< |
$DefaultBuildfile="$ENV{RELEASETOP}/$thisfile"; |
701 |
< |
$self->ParseBuildFile($ENV{RELEASETOP}, $classdir, $buildfile); |
702 |
< |
} |
703 |
< |
$self->verbose(">> CheckBuildFile: FN ".$thisfile." CN ".$ClassName." <<"); |
704 |
< |
return $ClassName; |
705 |
< |
} |
706 |
< |
|
707 |
< |
# List association groups between <AssociateGroup> tags |
708 |
< |
# seperated by newlines or spaces |
709 |
< |
sub AssociateGroup { |
710 |
< |
my $self=shift; |
711 |
< |
my $name=shift; |
712 |
< |
my $string=shift; |
713 |
< |
my $word; |
714 |
< |
|
715 |
< |
$self->verbose(">> AssociateGroup: NM ".$name." ST ".$string." <<"); |
716 |
< |
|
717 |
< |
if ( $self->{Arch} ) { |
718 |
< |
foreach $word ( (split /\s/, $string) ){ |
719 |
< |
chomp $word; |
720 |
< |
next if /^#/; |
721 |
< |
if ( $word=~/none/ ) { |
722 |
< |
$self->{ignore}=1; |
723 |
< |
} |
724 |
< |
} |
725 |
< |
} |
726 |
< |
} |
727 |
< |
|
728 |
< |
sub Arch_Start { |
729 |
< |
my $self=shift; |
730 |
< |
my $name=shift; |
731 |
< |
my $hashref=shift; |
732 |
< |
|
733 |
< |
$self->verbose(">> Arch_Start: NM ".$name." <<"); |
734 |
< |
|
735 |
< |
$self->{switch}->checktag($name, $hashref,'name'); |
736 |
< |
( ($ENV{SCRAM_ARCH}=~/$$hashref{name}.*/) )? ($self->{Arch}=1) |
737 |
< |
: ($self->{Arch}=0); |
738 |
< |
push @{$self->{ARCHBLOCK}}, $self->{Arch}; |
739 |
< |
} |
740 |
< |
|
741 |
< |
sub Arch_End { |
742 |
< |
my $self=shift; |
743 |
< |
my $name=shift; |
744 |
< |
|
745 |
< |
$self->verbose(">> Arch_End: NM ".$name." <<"); |
746 |
< |
|
747 |
< |
pop @{$self->{ARCHBLOCK}}; |
748 |
< |
$self->{Arch}=$self->{ARCHBLOCK}[$#{$self->{ARCHBLOCK}}]; |
749 |
< |
} |
750 |
< |
|
751 |
< |
# Split up the Class Block String into a useable array |
752 |
< |
sub _CutBlock { |
753 |
< |
my $self=shift; |
754 |
< |
my $string= shift @_; |
755 |
< |
|
756 |
< |
$self->verbose(">> _CutBlock: ST ".$string." <<"); |
757 |
< |
|
758 |
< |
@BlockClassA = split /\//, $string; |
759 |
< |
} |
760 |
< |
|
761 |
< |
sub OutToMakefile { |
762 |
< |
my $self=shift; |
763 |
< |
my $name=shift; |
764 |
< |
my @vars=@_; |
765 |
< |
|
766 |
< |
$self->verbose(">> OutToMakefile: <<"); |
767 |
< |
|
768 |
< |
if ( $self->{Arch} ) { |
769 |
< |
$self->verbose(">> CONT: ".$vars[0]." <<"); |
770 |
< |
print GNUmakefile @vars; |
771 |
< |
} |
772 |
< |
} |
773 |
< |
|
774 |
< |
sub OutToScreen { |
775 |
< |
my $name=shift; |
776 |
< |
my @vars=@_; |
777 |
< |
|
778 |
< |
if ( $self->{Arch} ) { |
779 |
< |
print @vars; |
780 |
< |
} |
781 |
< |
} |
782 |
< |
sub setBlockClassPath { |
783 |
< |
my $self=shift; |
784 |
< |
my $name=shift; |
785 |
< |
my $hashref=shift; |
786 |
< |
|
787 |
< |
$self->verbose(">> setBlockClassPath: NM ".$name." <<"); |
788 |
< |
|
789 |
< |
$self->{switch}->checktag($name, $hashref, 'path'); |
790 |
< |
$self->{BlockClassPath}=$self->{BlockClassPath}.":".$$hashref{path}; |
791 |
< |
$self->_CutBlock($$hashref{path}); |
792 |
< |
} |
793 |
< |
|
794 |
< |
sub BlockClassPath { |
795 |
< |
my $self=shift; |
796 |
< |
|
797 |
< |
$self->verbose(">> BlockClassPath: <<"); |
798 |
< |
|
799 |
< |
return $self->{BlockClassPath}; |
800 |
< |
} |
801 |
< |
|
802 |
< |
sub export_start_export { |
803 |
< |
my $self=shift; |
804 |
< |
my $name=shift; |
805 |
< |
my $hashref=shift; |
806 |
< |
|
807 |
< |
$self->verbose(">> export_start_export: NM ".$name." <<"); |
808 |
< |
|
809 |
< |
$self->{switch}->opengroup("__export"); |
810 |
< |
} |
811 |
< |
|
812 |
< |
sub export_start { |
813 |
< |
my $self=shift; |
814 |
< |
my $name=shift; |
815 |
< |
my $hashref=shift; |
816 |
< |
|
817 |
< |
$self->verbose(">> export_start: NM ".$name." <<"); |
818 |
< |
|
819 |
< |
$self->{switch}->opengroup("__export"); |
820 |
< |
if ( exists $$hashref{autoexport} ) { |
821 |
< |
print GNUmakefile "scram_autoexport=".$$hashref{autoexport}."\n"; |
822 |
< |
if ( $$hashref{autoexport}=~/true/ ) { |
823 |
< |
$self->{switch}->allowgroup("__export","makebuild"); |
824 |
< |
} |
825 |
< |
else { |
826 |
< |
$self->{switch}->disallowgroup("__export","makebuild"); |
827 |
< |
} |
828 |
< |
} |
829 |
< |
# -- allow default setting from other makefiles |
830 |
< |
print GNUmakefile "ifeq (\$(scram_autoexport),true)\n"; |
831 |
< |
} |
832 |
< |
|
833 |
< |
sub export_end_export { |
834 |
< |
my $self=shift; |
835 |
< |
$self->verbose(">> export_end_export: <<"); |
836 |
< |
$self->{switch}->closegroup("__export"); |
837 |
< |
} |
838 |
< |
|
839 |
< |
sub export_end { |
840 |
< |
my $self=shift; |
841 |
< |
$self->verbose(">> export_end: <<"); |
842 |
< |
$self->{switch}->closegroup("__export"); |
843 |
< |
print GNUmakefile "endif\n"; |
844 |
< |
} |
223 |
> |
sub allflags() |
224 |
> |
{ |
225 |
> |
my $self=shift; |
226 |
> |
# Return hash data for flags: |
227 |
> |
return $self->{content}->{FLAGS}; |
228 |
> |
} |
229 |
|
|
230 |
< |
# |
231 |
< |
# Standard lib tag |
232 |
< |
# |
233 |
< |
sub lib_start { |
234 |
< |
my $self=shift; |
235 |
< |
my $name=shift; |
852 |
< |
my $hashref=shift; |
853 |
< |
|
854 |
< |
$self->verbose(">> lib_start: NM ".$name." <<"); |
855 |
< |
|
856 |
< |
$self->{switch}->checktag($name, $hashref, 'name'); |
857 |
< |
|
858 |
< |
if ( $self->{Arch} ) { |
859 |
< |
print GNUmakefile "lib+=$$hashref{name}\n"; |
860 |
< |
} |
861 |
< |
} |
230 |
> |
sub bin() |
231 |
> |
{ |
232 |
> |
my ($object,$name,%attributes) = @_; |
233 |
> |
if (!$self->{archflag}){return;} |
234 |
> |
$self->pushlevel(\%attributes);# Set nested to 1; |
235 |
> |
} |
236 |
|
|
237 |
< |
# |
238 |
< |
# libtype specification |
239 |
< |
# |
240 |
< |
sub LibType_Start { |
241 |
< |
my $self=shift; |
242 |
< |
my $name=shift; |
243 |
< |
my $hashref=shift; |
244 |
< |
|
245 |
< |
$self->verbose(">> LibType_Start: NM ".$name." <<"); |
246 |
< |
|
247 |
< |
if ( $self->{Arch} ) { |
248 |
< |
if ( defined $self->{libtype_conext} ) { |
249 |
< |
$self->{switch}->parseerror("<$name> tag cannot be specified". |
250 |
< |
" without a </$name> tag to close previous context"); |
251 |
< |
} |
252 |
< |
else { |
253 |
< |
$self->{libtype_conext}=1; |
254 |
< |
$self->{switch}->checktag($name, $hashref, 'type'); |
255 |
< |
|
256 |
< |
print GNUmakefile "# Specify Library Type\n"; |
257 |
< |
print GNUmakefile "DefaultLibsOff=yes\n"; |
258 |
< |
if ( $$hashref{'type'}=~/^archive/i ) { |
259 |
< |
print GNUmakefile "LibArchive=true\n"; |
260 |
< |
} |
261 |
< |
elsif ($$hashref{'type'}=~/debug_archive/i ) { |
262 |
< |
print GNUmakefile "LibDebugArchive=true\n"; |
263 |
< |
} |
264 |
< |
elsif ($$hashref{'type'}=~/debug_shared/i ) { |
265 |
< |
print GNUmakefile "LibDebugShared=true\n"; |
266 |
< |
} |
267 |
< |
elsif ($$hashref{'type'}=~/shared/i ) { |
268 |
< |
print GNUmakefile 'LibShared=true'."\n"; |
269 |
< |
} |
270 |
< |
print GNUmakefile "\n"; |
271 |
< |
} |
272 |
< |
} |
273 |
< |
} |
274 |
< |
|
275 |
< |
sub LibType_text { |
276 |
< |
my $self=shift; |
277 |
< |
my $name=shift; |
278 |
< |
my $string=shift; |
279 |
< |
$self->verbose(">> LibType_text: NM ".$name." <<"); |
280 |
< |
|
281 |
< |
if ( $self->{Arch} ) { |
282 |
< |
$string=~s/\n/ /g; |
283 |
< |
print GNUmakefile "libmsg::\n\t\@echo Library info: "; |
284 |
< |
print GNUmakefile $string; |
285 |
< |
print GNUmakefile "\n"; |
286 |
< |
} |
287 |
< |
} |
288 |
< |
|
289 |
< |
sub LibType_end { |
290 |
< |
my $self=shift; |
291 |
< |
my $name=shift; |
292 |
< |
|
293 |
< |
$self->verbose(">> LibType_end: NM ".$name." <<"); |
294 |
< |
|
295 |
< |
undef $self->{libtype_conext}; |
296 |
< |
} |
297 |
< |
|
298 |
< |
sub Environment_start { |
299 |
< |
my $self=shift; |
300 |
< |
my $name=shift; |
301 |
< |
my $hashref=shift; |
302 |
< |
|
303 |
< |
$self->verbose(">> Environment_start: NM ".$name." <<"); |
304 |
< |
|
305 |
< |
if ( $self->{Arch} ) { |
306 |
< |
$self->{envnum}++; |
307 |
< |
|
308 |
< |
# open a new Environment File |
309 |
< |
my $envfile="$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/Env_". |
310 |
< |
$self->{envnum}.".mk"; |
311 |
< |
use FileHandle; |
312 |
< |
my $fh=FileHandle->new(); |
313 |
< |
open ($fh,">$envfile") or die "Unable to open file $envfile \n$!\n"; |
314 |
< |
push @{$self->{filehandlestack}}, $fh; |
315 |
< |
*GNUmakefile=$fh; |
316 |
< |
|
317 |
< |
# include the approprate environment file |
318 |
< |
if ( $self->{envlevel} == 0 ) { |
319 |
< |
print GNUmakefile "include $ENV{LOCALTOP}/$ENV{INTwork}/". |
320 |
< |
$self->{path}."/BuildFile.mk\n"; |
321 |
< |
} |
322 |
< |
else { |
323 |
< |
print GNUmakefile "include $ENV{LOCALTOP}/$ENV{INTwork}/". |
324 |
< |
$self->{path}."/Env_".$self->{Envlevels}[$self->{envlevel}].".mk\n"; |
325 |
< |
} |
326 |
< |
$self->{envlevel}++; |
327 |
< |
$self->{Envlevels}[$self->{envlevel}]=$self->{envnum}; |
328 |
< |
$self->{currentenv}="$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/Env_$self->{envnum}.mk"; |
329 |
< |
} |
330 |
< |
} |
331 |
< |
|
332 |
< |
sub Environment_end { |
333 |
< |
my $self=shift; |
334 |
< |
my $fd; |
335 |
< |
|
336 |
< |
$self->verbose(">> Environment_end: NM ".$name." <<"); |
337 |
< |
|
338 |
< |
if ( $self->{Arch} ) { |
339 |
< |
$self->{envlevel}--; |
340 |
< |
if ( $self->{envlevel} < 0 ) { |
341 |
< |
print "Too many </Environent> Tags on $self->{switch}->line()\n"; |
342 |
< |
exit 1; |
343 |
< |
} |
344 |
< |
close GNUmakefile; |
345 |
< |
# restore the last filehandle |
346 |
< |
$fd=pop @{$self->{filehandlestack}}; |
347 |
< |
close $fd; |
348 |
< |
*GNUmakefile=$self->{filehandlestack}[$#{$self->{filehandlestack}}]; |
349 |
< |
if ( $self->{envlevel} < 1 ) { |
350 |
< |
$self->{currentenv}="$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/". |
351 |
< |
"BuildFile.mk"; |
352 |
< |
} |
353 |
< |
else { |
354 |
< |
$self->{currentenv}= |
355 |
< |
"$ENV{LOCALTOP}/$ENV{INTwork}/$self->{path}/Env_". |
356 |
< |
$self->{Envlevels}[$self->{envlevel}]; |
357 |
< |
} |
358 |
< |
} |
359 |
< |
} |
360 |
< |
|
361 |
< |
sub Store_start { |
362 |
< |
my $self=shift; |
363 |
< |
my $name=shift; |
364 |
< |
my $hashref=shift; |
365 |
< |
|
366 |
< |
$self->verbose(">> Store_start: NM ".$name." <<"); |
367 |
< |
|
368 |
< |
if ( $self->{Arch} ) { |
369 |
< |
$self->{switch}->checktag( $name, $hashref, 'name' ); |
370 |
< |
|
371 |
< |
# -- store creation |
372 |
< |
my $dir=$$hashref{'name'}; |
373 |
< |
AddDir::adddir($ENV{LOCALTOP}."/".$dir); |
374 |
< |
if ( exists $$hashref{'type'} ) { |
375 |
< |
# -- architecture specific store |
376 |
< |
if ( $$hashref{'type'}=~/^arch/i ) { |
377 |
< |
$dir=$dir."/".$ENV{SCRAM_ARCH}; |
378 |
< |
AddDir::adddir($ENV{LOCALTOP}."/".$dir); |
379 |
< |
} |
380 |
< |
else { |
381 |
< |
$self->parseerror("Unknown type in <$name> tag"); |
382 |
< |
} |
383 |
< |
} |
384 |
< |
|
385 |
< |
# -- set make variables for the store |
386 |
< |
print GNUmakefile "SCRAMSTORENAME_".$$hashref{'name'}.":=".$dir."\n"; |
387 |
< |
print GNUmakefile "SCRAMSTORE_".$$hashref{'name'}.":=". |
388 |
< |
$ENV{LOCALTOP}."/".$dir."\n"; |
389 |
< |
print GNUmakefile "VPATH+=".$ENV{LOCALTOP} |
390 |
< |
."/".$dir.":".$ENV{RELEASETOP}."/".$dir."\n"; |
391 |
< |
} |
392 |
< |
} |
237 |
> |
sub bin_() |
238 |
> |
{ |
239 |
> |
my ($object,$name,%attributes) = @_; |
240 |
> |
if (!$self->{archflag}){return;} |
241 |
> |
# Need unique name for the binary (always use name of product). Either use "name" |
242 |
> |
# given, or use "file" value minus the ending: |
243 |
> |
if (exists ($self->{id}->{'name'})) |
244 |
> |
{ |
245 |
> |
$name = $self->{id}->{'name'}; |
246 |
> |
} |
247 |
> |
else |
248 |
> |
{ |
249 |
> |
($name) = ($self->{id}->{'file'} =~ /(.*)?\..*$/); |
250 |
> |
} |
251 |
> |
|
252 |
> |
# Store the data: |
253 |
> |
$self->productcollector($name,'bin','BIN'); |
254 |
> |
$self->poplevel(); |
255 |
> |
} |
256 |
> |
|
257 |
> |
sub library() |
258 |
> |
{ |
259 |
> |
my ($object,$name,%attributes) = @_; |
260 |
> |
if (!$self->{archflag}){return;} |
261 |
> |
$self->pushlevel(\%attributes);# Set nested to 1; |
262 |
> |
} |
263 |
> |
|
264 |
> |
sub library_() |
265 |
> |
{ |
266 |
> |
my ($object,$name,%attributes) = @_; |
267 |
> |
if (!$self->{archflag}){return;} |
268 |
> |
# Need unique name for the library (always use name of product). Either use "name" |
269 |
> |
# given, or use "file" value minus the ending: |
270 |
> |
if (exists ($self->{id}->{'name'})) |
271 |
> |
{ |
272 |
> |
$name = $self->{id}->{'name'}; |
273 |
> |
} |
274 |
> |
else |
275 |
> |
{ |
276 |
> |
($name) = ($self->{id}->{'file'} =~ /(.*)?\..*$/); |
277 |
> |
} |
278 |
> |
|
279 |
> |
# Store the data: |
280 |
> |
$self->productcollector($name,'lib','LIBRARY'); |
281 |
> |
$self->poplevel(); |
282 |
> |
} |
283 |
> |
|
284 |
> |
sub productcollector() |
285 |
> |
{ |
286 |
> |
my $self=shift; |
287 |
> |
my ($name,$typeshort,$typefull)=@_; |
288 |
> |
# Create a new Product object for storage of data: |
289 |
> |
use BuildSystem::Product; |
290 |
> |
my $product = BuildSystem::Product->new(); |
291 |
> |
# Store the name: |
292 |
> |
$product->name($name); |
293 |
> |
$product->type($typeshort); |
294 |
> |
# Store the files. Take the BuildFile path as the initial path for |
295 |
> |
# expanding source file globs: |
296 |
> |
$product->_files($self->{id}->{'file'},[ $self->{scramdoc}->filetoparse() ]); |
297 |
> |
# Store the data content: |
298 |
> |
$product->_data($self->{tagcontent}); |
299 |
> |
# And store in a hash (all build products in same place): |
300 |
> |
$self->{content}->{BUILDPRODUCTS}->{$typefull}->{$name} = $product; |
301 |
> |
} |
302 |
> |
|
303 |
> |
sub pushlevel |
304 |
> |
{ |
305 |
> |
my $self = shift; |
306 |
> |
my ($info)=@_; |
307 |
> |
|
308 |
> |
$self->{id} = $info if (defined $info); |
309 |
> |
$self->{nested} = 1; |
310 |
> |
$self->{tagcontent}={}; |
311 |
> |
} |
312 |
> |
|
313 |
> |
sub poplevel |
314 |
> |
{ |
315 |
> |
my $self = shift; |
316 |
> |
delete $self->{id}; |
317 |
> |
delete $self->{nested}; |
318 |
> |
delete $self->{tagcontent}; |
319 |
> |
} |
320 |
> |
|
321 |
> |
sub dependencies() |
322 |
> |
{ |
323 |
> |
my $self=shift; |
324 |
> |
# Make a copy of the variable so that |
325 |
> |
# we don't have a DEPENDENCIES entry in RAWDATA: |
326 |
> |
my %DEPS=%{$self->{DEPENDENCIES}}; |
327 |
> |
delete $self->{DEPENDENCIES}; |
328 |
> |
return \%DEPS; |
329 |
> |
} |
330 |
> |
|
331 |
> |
sub skippeddirs() |
332 |
> |
{ |
333 |
> |
my $self=shift; |
334 |
> |
my ($here)=@_; |
335 |
> |
my $skipped; |
336 |
> |
|
337 |
> |
if ($self->{content}->{SKIPPEDDIRS}->[0] == 1) |
338 |
> |
{ |
339 |
> |
$skipped = [ @{$self->{content}->{SKIPPEDDIRS}} ]; |
340 |
> |
delete $self->{content}->{SKIPPEDDIRS}; |
341 |
> |
} |
342 |
> |
|
343 |
> |
delete $self->{content}->{SKIPPEDDIRS}; |
344 |
> |
return $skipped; |
345 |
> |
} |
346 |
> |
|
347 |
> |
sub hasexport() |
348 |
> |
{ |
349 |
> |
my $self=shift; |
350 |
> |
# Check to see if there is a valid export block: |
351 |
> |
my $nkeys = $self->exporteddatatypes(); |
352 |
> |
$nkeys > 0 ? return 1 : return 0; |
353 |
> |
} |
354 |
> |
|
355 |
> |
sub has() |
356 |
> |
{ |
357 |
> |
my $self=shift; |
358 |
> |
my ($datatype)=@_; |
359 |
> |
(exists ($self->{content}->{$datatype})) ? return 1 : return 0; |
360 |
> |
} |
361 |
> |
|
362 |
> |
sub exported() |
363 |
> |
{ |
364 |
> |
my $self=shift; |
365 |
> |
# Return a hash. Keys are type of data provided: |
366 |
> |
return ($self->{content}->{EXPORT}); |
367 |
> |
} |
368 |
> |
|
369 |
> |
sub exporteddatatypes() |
370 |
> |
{ |
371 |
> |
my $self=shift; |
372 |
> |
# Return exported data types: |
373 |
> |
return keys %{$self->{content}->{EXPORT}}; |
374 |
> |
} |
375 |
> |
|
376 |
> |
sub buildproducts() |
377 |
> |
{ |
378 |
> |
my $self=shift; |
379 |
> |
# Returns hash of build products and their data: |
380 |
> |
return $self->{content}->{BUILDPRODUCTS}; |
381 |
> |
} |
382 |
> |
|
383 |
> |
sub values() |
384 |
> |
{ |
385 |
> |
my $self=shift; |
386 |
> |
my ($type)=@_; |
387 |
> |
# Get a list of values from known types |
388 |
> |
return $self->{content}->{BUILDPRODUCTS}->{$type}; |
389 |
> |
} |
390 |
> |
|
391 |
> |
sub basic_tags() |
392 |
> |
{ |
393 |
> |
my $self=shift; |
394 |
> |
my $datatags=[]; |
395 |
> |
my $buildtags=[ qw(BIN LIBRARY BUILDPRODUCTS) ]; |
396 |
> |
my $skiptags=[ qw(ARCH EXPORT USE CLASSPATH) ]; |
397 |
> |
my $otherskiptags=[ qw( SKIPPEDDIRS ) ]; |
398 |
> |
my @all_skip_tags; |
399 |
> |
|
400 |
> |
push(@all_skip_tags,@$skiptags,@$buildtags,@$otherskiptags); |
401 |
> |
|
402 |
> |
foreach my $t (keys %{$self->{content}}) |
403 |
> |
{ |
404 |
> |
push(@$datatags,$t),if (! grep($t eq $_, @all_skip_tags)); |
405 |
> |
} |
406 |
> |
return @{$datatags}; |
407 |
> |
} |
408 |
> |
|
409 |
> |
sub clean() |
410 |
> |
{ |
411 |
> |
my $self=shift; |
412 |
> |
my (@tags) = @_; |
413 |
> |
|
414 |
> |
# Delete some useless entries: |
415 |
> |
delete $self->{simpledoc}; |
416 |
> |
delete $self->{id}; |
417 |
> |
delete $self->{tagcontent}; |
418 |
> |
delete $self->{nested}; |
419 |
> |
|
420 |
> |
delete $self->{DEPENDENCIES}; |
421 |
> |
|
422 |
> |
map |
423 |
> |
{ |
424 |
> |
delete $self->{content}->{$_} if (exists($self->{content}->{$_})); |
425 |
> |
} @tags; |
426 |
> |
|
427 |
> |
return $self; |
428 |
> |
} |
429 |
> |
|
430 |
> |
sub AUTOLOAD() |
431 |
> |
{ |
432 |
> |
my ($xmlparser,$name,%attributes)=@_; |
433 |
> |
return if $AUTOLOAD =~ /::DESTROY$/; |
434 |
> |
my $name=$AUTOLOAD; |
435 |
> |
$name =~ s/.*://; |
436 |
> |
} |
437 |
> |
|
438 |
> |
1; |