29 |
|
package Scram::ScramFunctions; |
30 |
|
use URL::URLcache; |
31 |
|
use Utilities::Verbose; |
32 |
+ |
use Utilities::IndexedFileStore; |
33 |
+ |
|
34 |
|
require 5.004; |
35 |
|
|
36 |
|
@ISA=qw(Utilities::Verbose); |
77 |
|
|
78 |
|
# -- download all tool description files |
79 |
|
my $req=$self->arearequirements($area); |
80 |
+ |
$area->toolboxversion($req->{configversion}); |
81 |
+ |
|
82 |
|
if ( defined $req ) { |
83 |
|
$req->download($self->areatoolbox($area)); |
84 |
|
} |
86 |
|
return $area; |
87 |
|
} |
88 |
|
|
89 |
< |
sub setuptoolsinarea { |
90 |
< |
my $self=shift; |
91 |
< |
my $area=shift; |
89 |
> |
sub setuptoolsinarea |
90 |
> |
{ |
91 |
> |
my $self=shift; |
92 |
> |
my $area=shift; |
93 |
> |
|
94 |
> |
# -- initialise |
95 |
> |
print "Initialising setup procedure......","\n"; |
96 |
> |
$self->_allprojectinitsearcher(); |
97 |
> |
|
98 |
> |
# -- create a new toolbox object |
99 |
> |
my $toolbox=$self->areatoolbox($area); |
100 |
> |
$toolbox->searcher($self->_allprojectinitsearcher()); |
101 |
> |
|
102 |
> |
if ( @_ ) |
103 |
> |
{ |
104 |
> |
# -- specific tool specified |
105 |
> |
if ( my $rv=$toolbox->toolsetup(@_) ) |
106 |
> |
{ |
107 |
> |
if ( $rv eq 1 ) |
108 |
> |
{ |
109 |
> |
print "Unknown tool $toolname @ARGV\n"; |
110 |
> |
exit 1; |
111 |
> |
} |
112 |
> |
} |
113 |
> |
} |
114 |
> |
else |
115 |
> |
{ |
116 |
> |
# -- setup all tools specified in the requirements doc |
117 |
> |
print "Going to set up all tools....","\n\n"; |
118 |
> |
my $reqs=$self->arearequirements($area); |
119 |
> |
$self->verbose("Setup ToolBox from Requirements doc ($reqs)"); |
120 |
> |
# reqs is a BuildSystem::Requirements object: |
121 |
> |
$reqs->setup($toolbox); |
122 |
> |
} |
123 |
> |
} |
124 |
|
|
125 |
< |
# -- initialise |
126 |
< |
$self->_allprojectinitsearcher(); |
125 |
> |
sub updatetoolsinarea |
126 |
> |
{ |
127 |
> |
my $self=shift; |
128 |
> |
my $area=shift; |
129 |
|
|
130 |
< |
# -- create a new toolbox object |
131 |
< |
my $toolbox=$self->areatoolbox($area); |
94 |
< |
$toolbox->searcher($self->_allprojectinitsearcher()); |
130 |
> |
|
131 |
> |
my $toolbox=$self->areatoolbox($area); |
132 |
|
|
133 |
< |
if ( @_ ) { |
134 |
< |
# -- specific tool specified |
135 |
< |
if ( my $rv=$toolbox->toolsetup(@_) ) { |
136 |
< |
if ( $rv eq 1 ) { |
137 |
< |
print "Unknown tool $toolname @ARGV\n"; |
138 |
< |
exit 1; |
139 |
< |
} |
140 |
< |
} |
141 |
< |
} |
142 |
< |
else { |
143 |
< |
# -- setup all tools specified in the requirements doc |
144 |
< |
my $reqs=$self->arearequirements($area); |
145 |
< |
$self->verbose("Setup ToolBox from Requirements doc ($reqs)"); |
146 |
< |
$reqs->setup($toolbox); |
147 |
< |
} |
148 |
< |
} |
133 |
> |
print "Going to refresh the setup of tools....","\n\n"; |
134 |
> |
my $currenttag = $area->toolboxversion(); |
135 |
> |
|
136 |
> |
# Get rid of the current cache: |
137 |
> |
my $cachename = $area->cache()->location(); |
138 |
> |
system("mv","$cachename","$cachename".".$currenttag"); |
139 |
> |
# Create a new one: |
140 |
> |
$area->_newcache(); |
141 |
> |
my $reqs=$self->arearequirements($area); |
142 |
> |
$reqs->download(); |
143 |
> |
$reqs->setup($toolbox); |
144 |
> |
print "Previous configuration tag : ",$currenttag,"\n"; |
145 |
> |
$area->toolboxversion($reqs->{configversion}); |
146 |
> |
print "Current configuration tag : ",$area->toolboxversion(),"\n\n"; |
147 |
> |
$area->save(); |
148 |
> |
} |
149 |
|
|
150 |
< |
sub satellite { |
151 |
< |
my $self=shift; |
152 |
< |
my $name=shift; |
153 |
< |
my $version=shift; |
154 |
< |
my $installarea=shift; |
150 |
> |
sub satellite |
151 |
> |
{ |
152 |
> |
# |
153 |
> |
# Modified to suit new structure |
154 |
> |
# |
155 |
> |
my $self=shift; |
156 |
> |
my $name=shift; |
157 |
> |
my $version=shift; |
158 |
> |
my $installarea=shift; # Where to install (-dir option in project cmd); |
159 |
> |
my $areaname=undef; # Name of the area (comes from -name option in project cmd); |
160 |
|
|
161 |
< |
my $areaname=undef; |
120 |
< |
if ( @_ ) { |
121 |
< |
$areaname=shift; |
122 |
< |
} |
161 |
> |
use Utilities::AddDir; |
162 |
|
|
163 |
< |
# -- look up scram database for location |
164 |
< |
my $relarea=$self->_lookupareaindb($name,$version); |
165 |
< |
if ( ! defined $relarea ) { |
166 |
< |
$self->error("Unable to Find Project $name $version"); |
128 |
< |
} |
163 |
> |
if ( @_ ) |
164 |
> |
{ |
165 |
> |
$areaname=shift; |
166 |
> |
} |
167 |
|
|
168 |
< |
# -- fix for old broken areas |
169 |
< |
if ( (! defined $relarea->version()) || ($relarea->version() eq "") ) { |
132 |
< |
$relarea->version($version); |
133 |
< |
} |
168 |
> |
# Get location from SCRAMDB: |
169 |
> |
my $relarea=$self->_lookupareaindb($name,$version); |
170 |
|
|
171 |
< |
# -- create satellite |
172 |
< |
my $area=$relarea->satellite($installarea,$areaname); |
173 |
< |
$area->archname($self->arch()); |
171 |
> |
if ( ! defined $relarea ) |
172 |
> |
{ |
173 |
> |
$self->error("Unable to Find Project $name $version"); |
174 |
> |
} |
175 |
> |
|
176 |
> |
# Create a satellite area: |
177 |
> |
my $area=$relarea->satellite($installarea,$areaname); |
178 |
> |
$area->archname($self->arch()); |
179 |
> |
|
180 |
> |
# Copy the admin dir (and with it, the ToolCache): |
181 |
> |
$relarea->copywithskip($area->location(),'ProjectCache.db'); |
182 |
> |
|
183 |
> |
# Also, we need to copy .SCRAM/cache from the release area. This eliminates the need |
184 |
> |
# to download tools again from CVS: |
185 |
> |
$relarea->copyurlcache($area->location()); |
186 |
> |
|
187 |
> |
# Copy configuration directory contents: |
188 |
> |
if ( ! -d $area->location()."/".$area->configurationdir() ) |
189 |
> |
{ |
190 |
> |
AddDir::copydir($relarea->location()."/".$relarea->configurationdir(), |
191 |
> |
$area->location()."/".$area->configurationdir() ); |
192 |
> |
} |
193 |
|
|
194 |
< |
# -- copy setup info - deprecated by toolbox copy method |
195 |
< |
#$relarea->copysetup($area->location()); |
194 |
> |
# Make sourcecode dir: |
195 |
> |
if ( ! -d $area->location()."/".$area->sourcedir() ) |
196 |
> |
{ |
197 |
> |
AddDir::adddir($area->location()."/".$area->sourcedir()); |
198 |
> |
} |
199 |
|
|
200 |
< |
# -- copy toolbox |
201 |
< |
my $rtb=$self->areatoolbox($relarea); |
202 |
< |
my $tb=$self->areatoolbox($area); |
203 |
< |
$rtb->copytools($tb); |
204 |
< |
|
205 |
< |
# -- copy configuration directory |
148 |
< |
if ( ! -d $area->location()."/".$area->configurationdir() ) { |
149 |
< |
use Utilities::AddDir; |
150 |
< |
AddDir::copydir($relarea->location()."/".$relarea->configurationdir(), |
151 |
< |
$area->location()."/".$area->configurationdir() ); |
152 |
< |
} |
153 |
< |
|
154 |
< |
# -- copy RequirementsDoc |
155 |
< |
if ( ! -f $area->requirementsdoc() ) { |
156 |
< |
use File::Copy; |
157 |
< |
copy( $relarea->requirementsdoc() , $area->requirementsdoc()); |
158 |
< |
} |
200 |
> |
# Copy RequirementsDoc: |
201 |
> |
if ( ! -f $area->requirementsdoc() ) |
202 |
> |
{ |
203 |
> |
use File::Copy; |
204 |
> |
copy( $relarea->requirementsdoc() , $area->requirementsdoc()); |
205 |
> |
} |
206 |
|
|
207 |
< |
return $area; |
208 |
< |
} |
207 |
> |
return $area; |
208 |
> |
} |
209 |
|
|
210 |
|
sub toolruntime { |
211 |
|
my $self=shift; |
212 |
|
my $area=shift; |
213 |
+ |
my $ld_lib_path=""; |
214 |
+ |
my $bin_path=""; |
215 |
|
|
216 |
|
my $name=$area->location(); |
217 |
< |
if ( ! defined $self->{toolruntime}{$name} ) { |
218 |
< |
require Runtime; |
219 |
< |
my $toolbox=$self->areatoolbox($area); |
220 |
< |
$self->{toolruntime}{$name}=Runtime->new(); |
221 |
< |
|
222 |
< |
# -- add scram area specific runtimes |
223 |
< |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH", |
224 |
< |
$area->location()."/lib/".$self->arch(),"path"); |
225 |
< |
$self->{toolruntime}{$name}->addvar("PATH", |
226 |
< |
$area->location()."/bin/".$self->arch(),"path"); |
227 |
< |
if ( defined $area->linkarea() ) { |
228 |
< |
my $reltop=$area->linkarea()->location(); |
229 |
< |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH", |
230 |
< |
$reltop."/lib/".$self->arch(),"path"); |
231 |
< |
$self->{toolruntime}{$name}->addvar("PATH", |
232 |
< |
$reltop."/bin/".$self->arch(),"path"); |
233 |
< |
} |
234 |
< |
|
235 |
< |
# -- get the runtime environment from all the tools |
236 |
< |
my $tool; |
237 |
< |
foreach $toolname ( $toolbox->tools() ) { |
238 |
< |
$tool=$toolbox->gettool($toolname); |
239 |
< |
if ( defined $tool ) { |
240 |
< |
# -- get runtime paths |
241 |
< |
foreach $f ( $tool->listtype("runtime_path")) { |
242 |
< |
foreach $val ( $tool->getfeature($f) ) { |
243 |
< |
$self->{toolruntime}{$name}->addvar($f,$val,"path"); |
244 |
< |
} |
245 |
< |
} |
246 |
< |
# -- get runtime vars |
247 |
< |
foreach $f ( $tool->listtype("runtime")) { |
248 |
< |
foreach $val ( $tool->getfeature($f) ) { |
249 |
< |
$self->{toolruntime}{$name}->addvar($f,$val); |
250 |
< |
} |
251 |
< |
} |
252 |
< |
} |
253 |
< |
} |
254 |
< |
|
255 |
< |
# -- Get the project level environment |
256 |
< |
my $runtimefile=$area->location()."/".$area->configurationdir() |
257 |
< |
."/Runtime"; |
258 |
< |
if ( -f $runtimefile ) { |
259 |
< |
$self->{toolruntime}{$name}->file($runtimefile); |
260 |
< |
} |
261 |
< |
} |
217 |
> |
|
218 |
> |
if ( ! defined $self->{toolruntime}{$name} ) |
219 |
> |
{ |
220 |
> |
require Runtime; |
221 |
> |
my $toolbox=$self->areatoolbox($area); |
222 |
> |
$self->{toolruntime}{$name}=Runtime->new(); |
223 |
> |
|
224 |
> |
# Test for SCRAM_ARCH/lib order: |
225 |
> |
if ( -d $area->location()."/".$self->arch()) |
226 |
> |
{ |
227 |
> |
$ld_lib_path = $area->location()."/".$self->arch()."/lib" |
228 |
> |
unless ( ! -d $area->location()."/".$self->arch()."/lib"); |
229 |
> |
$bin_path = $area->location()."/".$self->arch()."/bin" |
230 |
> |
unless ( ! -d $area->location()."/".$self->arch()."/bin"); |
231 |
> |
} |
232 |
> |
# Other way around: |
233 |
> |
elsif ( -d $area->location()."/lib/".$self->arch()) |
234 |
> |
{ |
235 |
> |
$ld_lib_path = $area->location()."/lib/".$self->arch() |
236 |
> |
unless ( ! -d $area->location()."/lib/".$self->arch()); |
237 |
> |
$bin_path = $area->location()."/bin/".$self->arch() |
238 |
> |
unless ( ! -d $area->location()."/bin/".$self->arch()); |
239 |
> |
} |
240 |
> |
else |
241 |
> |
# Assume no arch so just use lib and bin: |
242 |
> |
{ |
243 |
> |
$ld_lib_path = $area->location()."/lib"; |
244 |
> |
$bin_path = $area->location()."/bin"; |
245 |
> |
} |
246 |
> |
|
247 |
> |
# -- Now set the scram area specific runtimes accordingly: |
248 |
> |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH",$ld_lib_path,"path"); |
249 |
> |
$self->{toolruntime}{$name}->addvar("PATH",$bin_path,"path"); |
250 |
> |
|
251 |
> |
# Check for a linked area: |
252 |
> |
if ( defined $area->linkarea() ) |
253 |
> |
{ |
254 |
> |
my $relarea=$area->linkarea(); |
255 |
> |
# Now do the checks for the release area: |
256 |
> |
if ( -d $relarea->location()."/".$self->arch()) |
257 |
> |
{ |
258 |
> |
$ld_lib_path = $relarea->location()."/".$self->arch()."/lib" |
259 |
> |
unless ( ! -d $relarea->location()."/".$self->arch()."/lib"); |
260 |
> |
$bin_path = $relarea->location()."/".$self->arch()."/bin" |
261 |
> |
unless ( ! -d $relarea->location()."/".$self->arch()."/bin"); |
262 |
> |
} |
263 |
> |
# Other way around: |
264 |
> |
elsif ( -d $relarea->location()."/lib/".$self->arch()) |
265 |
> |
{ |
266 |
> |
$ld_lib_path = $relarea->location()."/lib/".$self->arch() |
267 |
> |
unless ( ! -d $relarea->location()."/lib/".$self->arch()); |
268 |
> |
$bin_path = $relarea->location()."/bin/".$self->arch() |
269 |
> |
unless ( ! -d $relarea->location()."/bin/".$self->arch()); |
270 |
> |
} |
271 |
> |
else |
272 |
> |
# Assume no arch so just use lib and bin: |
273 |
> |
{ |
274 |
> |
$ld_lib_path = $relarea->location()."/lib"; |
275 |
> |
$bin_path = $relarea->location()."/bin"; |
276 |
> |
} |
277 |
> |
# Add the release paths: |
278 |
> |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH",$ld_lib_path,"path"); |
279 |
> |
$self->{toolruntime}{$name}->addvar("PATH",$bin_path,"path"); |
280 |
> |
} |
281 |
> |
|
282 |
> |
# -- get the runtime environment from all the tools |
283 |
> |
my $tool; |
284 |
> |
foreach $toolname ( $toolbox->tools() ) |
285 |
> |
{ |
286 |
> |
$tool=$toolbox->gettool($toolname); |
287 |
> |
if ( defined $tool ) |
288 |
> |
{ |
289 |
> |
# -- get runtime paths |
290 |
> |
foreach $f ( $tool->listtype("runtime_path")) |
291 |
> |
{ |
292 |
> |
foreach $val ( $tool->getfeature($f) ) |
293 |
> |
{ |
294 |
> |
$self->{toolruntime}{$name}->addvar($f,$val,"path"); |
295 |
> |
} |
296 |
> |
} |
297 |
> |
# -- get runtime vars |
298 |
> |
foreach $f ( $tool->listtype("runtime")) |
299 |
> |
{ |
300 |
> |
foreach $val ( $tool->getfeature($f) ) |
301 |
> |
{ |
302 |
> |
$self->{toolruntime}{$name}->addvar($f,$val); |
303 |
> |
} |
304 |
> |
} |
305 |
> |
} |
306 |
> |
} |
307 |
> |
|
308 |
> |
# -- Get the project level environment |
309 |
> |
my $runtimefile=$area->location()."/".$area->configurationdir()."/Runtime"; |
310 |
> |
|
311 |
> |
if ( -f $runtimefile ) |
312 |
> |
{ |
313 |
> |
$self->{toolruntime}{$name}->file($runtimefile); |
314 |
> |
} |
315 |
> |
} |
316 |
|
return $self->{toolruntime}{$name}; |
317 |
< |
} |
317 |
> |
} |
318 |
|
|
319 |
|
sub webget { |
320 |
|
my $self=shift; |
328 |
|
|
329 |
|
sub addareatoDB { |
330 |
|
my $self=shift; |
331 |
+ |
my $flag=shift; |
332 |
|
my $area=shift; |
333 |
|
my $tagname=shift; |
334 |
|
my $version=shift; |
340 |
|
if ( (! defined $tagname) || ( $tagname eq "") ) { |
341 |
|
$tagname=$area->name(); |
342 |
|
} |
239 |
– |
|
343 |
|
# -- Add to the DB |
344 |
< |
$self->scramprojectdb()->addarea($tagname,$version,$area); |
344 |
> |
$self->scramprojectdb()->addarea($flag,$tagname,$version,$area); |
345 |
|
} |
346 |
|
|
347 |
|
|
360 |
|
# : # |
361 |
|
############################################################### |
362 |
|
my $self=shift; |
363 |
+ |
my $flag=shift; |
364 |
|
my $projname=shift; |
365 |
|
my $version=shift; |
366 |
|
|
367 |
|
# -- Remove from the DB: |
368 |
< |
$self->scramprojectdb()->removearea($projname,$version); |
368 |
> |
$self->scramprojectdb()->removearea($flag,$projname,$version); |
369 |
|
} |
370 |
|
|
371 |
|
|
372 |
|
sub spawnversion |
373 |
|
{ |
374 |
+ |
############################################################### |
375 |
+ |
# spawnversion # |
376 |
+ |
############################################################### |
377 |
+ |
# modified : Fri Aug 10 15:42:08 2001 / SFA # |
378 |
+ |
# params : # |
379 |
+ |
# : # |
380 |
+ |
# : # |
381 |
+ |
# : # |
382 |
+ |
# function : Check for version of scram to run, and run it. # |
383 |
+ |
# : # |
384 |
+ |
# : # |
385 |
+ |
############################################################### |
386 |
+ |
|
387 |
|
my $self=shift; |
388 |
|
my $version=shift; |
389 |
|
my $rv=0; |
398 |
|
if ( -d $self->{scram_top}."/".$version ) |
399 |
|
{ |
400 |
|
$ENV{SCRAM_HOME}=$self->{scram_top}."/".$version; |
401 |
< |
$ENV{TOOL_HOME}="$ENV{SCRAM_HOME}/src"; |
401 |
> |
$ENV{SCRAM_TOOL_HOME}="$ENV{SCRAM_HOME}/src"; |
402 |
|
$self->verbose("Spawning SCRAM version $version"); |
403 |
< |
my $rv=system("scram", @_)/256; |
403 |
> |
my $rv=system($ENV{SCRAM_HOME}."/src/main/scram.pl", @_)/256; |
404 |
|
exit $rv; |
405 |
|
} |
406 |
|
else |
407 |
< |
{ # if not then simply warn |
408 |
< |
print "******* Warning : scram version inconsistent ********\n"; |
409 |
< |
print "This version: $thisversion; Required version: $version\n"; |
410 |
< |
print "*****************************************************\n"; |
411 |
< |
print "\n"; |
407 |
> |
{ |
408 |
> |
# if not then simply warn. Send output to STDERR: |
409 |
> |
if ( -t STDERR ) |
410 |
> |
{ |
411 |
> |
print STDERR "******* Warning : scram version inconsistent ********\n"; |
412 |
> |
print STDERR "This version: $thisversion; Required version: $version\n"; |
413 |
> |
print STDERR "*****************************************************\n"; |
414 |
> |
print STDERR "\n"; |
415 |
> |
} |
416 |
|
} |
417 |
|
} |
418 |
|
} |
480 |
|
return $self->{toolboxes}{$name}; |
481 |
|
} |
482 |
|
|
483 |
+ |
sub areatoolmanager |
484 |
+ |
{ |
485 |
+ |
my $self=shift; |
486 |
+ |
my $area=shift; |
487 |
+ |
|
488 |
+ |
my $name=$area->location(); |
489 |
+ |
|
490 |
+ |
if ( ! defined $self->{toolmanagers}{$name} ) |
491 |
+ |
{ |
492 |
+ |
use BuildSystem::ToolManager; |
493 |
+ |
$self->{toolmanagers}{$name}=ToolManager->new($area,$self->arch()); |
494 |
+ |
} |
495 |
+ |
|
496 |
+ |
return $self->{toolmanagers}{$name}; |
497 |
+ |
} |
498 |
+ |
|
499 |
|
sub arearequirements { |
500 |
|
my $self=shift; |
501 |
|
my $area=shift; |
535 |
|
|
536 |
|
my $file; |
537 |
|
($file=$class."\.pm")=~s/::/\//g; |
538 |
< |
$file=$ENV{TOOL_HOME}."/".$file; |
538 |
> |
$file=$ENV{SCRAM_TOOL_HOME}."/".$file; |
539 |
|
|
540 |
|
if ( ! -f $file ) { |
541 |
< |
$self->error("Unable to find $class in ".$ENV{TOOL_HOME}); |
541 |
> |
$self->error("Unable to find $class in ".$ENV{SCRAM_TOOL_HOME}); |
542 |
|
} |
543 |
|
print "--------------------- $class ------------------\n"; |
544 |
|
my $fh=FileHandle->new(); |