18 |
|
# areatoolbox(ConfigArea) : return the toolbox of the specified area |
19 |
|
# setuptoolsinarea($area[,$toolname[,$toolversion[,toolfile]) : setup |
20 |
|
# arch() : get/set the architecture string |
21 |
+ |
# scramobjectinterface(Class) : print out the interface of a scram class |
22 |
+ |
# webget(area,url) : get the url into the cache of the specified area |
23 |
+ |
# getversion() : return the current scram version |
24 |
+ |
# spawnversion(version,@args) : spawn the scram version with the given args |
25 |
+ |
# classverbose(classstring,setting) : Set the class verbosity level |
26 |
+ |
# toolruntime(ConfigArea): Get a runtime object withthe settings from |
27 |
+ |
# the specified toolbox |
28 |
|
|
29 |
|
package Scram::ScramFunctions; |
30 |
|
use URL::URLcache; |
33 |
|
|
34 |
|
@ISA=qw(Utilities::Verbose); |
35 |
|
|
36 |
< |
sub new { |
36 |
> |
sub new |
37 |
> |
{ |
38 |
> |
my $class=shift; |
39 |
> |
$self={}; |
40 |
> |
bless $self, $class; |
41 |
> |
# -- default settings |
42 |
> |
$self->{cachedir}=$ENV{HOME}."/.scramrc/globalcache"; |
43 |
> |
$self->{scramprojectsdbdir}=$ENV{SCRAM_LOOKUPDB}; |
44 |
> |
($self->{scram_top})=( $ENV{SCRAM_HOME}=~/(.*)\//) ; |
45 |
> |
|
46 |
> |
return $self; |
47 |
> |
} |
48 |
> |
|
49 |
> |
sub classverbose { |
50 |
> |
my $self=shift; |
51 |
|
my $class=shift; |
52 |
< |
$self={}; |
53 |
< |
bless $self, $class; |
54 |
< |
# -- default settings |
34 |
< |
$self->{cachedir}=$ENV{HOME}."/.SCRAM/globalcache"; |
35 |
< |
$self->{scramprojectsdbdir}=$ENV{SCRAM_LOOKUPDB}; |
36 |
< |
return $self; |
52 |
> |
my $val=shift; |
53 |
> |
|
54 |
> |
$ENV{"VERBOSE_".$class}=$val; |
55 |
|
} |
56 |
|
|
57 |
|
sub project { |
86 |
|
my $self=shift; |
87 |
|
my $area=shift; |
88 |
|
|
89 |
< |
# -- initialise |
89 |
> |
# -- initialise |
90 |
> |
print "Initialising setup procedure......","\n"; |
91 |
|
$self->_allprojectinitsearcher(); |
92 |
|
|
93 |
|
# -- create a new toolbox object |
94 |
|
my $toolbox=$self->areatoolbox($area); |
95 |
< |
$toolbox->searcher($self->_projsearcher()); |
95 |
> |
$toolbox->searcher($self->_allprojectinitsearcher()); |
96 |
|
|
97 |
|
if ( @_ ) { |
98 |
|
# -- specific tool specified |
161 |
|
return $area; |
162 |
|
} |
163 |
|
|
164 |
+ |
sub toolruntime { |
165 |
+ |
my $self=shift; |
166 |
+ |
my $area=shift; |
167 |
+ |
|
168 |
+ |
my $name=$area->location(); |
169 |
+ |
if ( ! defined $self->{toolruntime}{$name} ) { |
170 |
+ |
require Runtime; |
171 |
+ |
my $toolbox=$self->areatoolbox($area); |
172 |
+ |
$self->{toolruntime}{$name}=Runtime->new(); |
173 |
+ |
|
174 |
+ |
# -- add scram area specific runtimes |
175 |
+ |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH", |
176 |
+ |
$area->location()."/lib/".$self->arch(),"path"); |
177 |
+ |
$self->{toolruntime}{$name}->addvar("PATH", |
178 |
+ |
$area->location()."/bin/".$self->arch(),"path"); |
179 |
+ |
if ( defined $area->linkarea() ) { |
180 |
+ |
my $reltop=$area->linkarea()->location(); |
181 |
+ |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH", |
182 |
+ |
$reltop."/lib/".$self->arch(),"path"); |
183 |
+ |
$self->{toolruntime}{$name}->addvar("PATH", |
184 |
+ |
$reltop."/bin/".$self->arch(),"path"); |
185 |
+ |
} |
186 |
+ |
|
187 |
+ |
# -- get the runtime environment from all the tools |
188 |
+ |
my $tool; |
189 |
+ |
foreach $toolname ( $toolbox->tools() ) { |
190 |
+ |
$tool=$toolbox->gettool($toolname); |
191 |
+ |
if ( defined $tool ) { |
192 |
+ |
# -- get runtime paths |
193 |
+ |
foreach $f ( $tool->listtype("runtime_path")) { |
194 |
+ |
foreach $val ( $tool->getfeature($f) ) { |
195 |
+ |
$self->{toolruntime}{$name}->addvar($f,$val,"path"); |
196 |
+ |
} |
197 |
+ |
} |
198 |
+ |
# -- get runtime vars |
199 |
+ |
foreach $f ( $tool->listtype("runtime")) { |
200 |
+ |
foreach $val ( $tool->getfeature($f) ) { |
201 |
+ |
$self->{toolruntime}{$name}->addvar($f,$val); |
202 |
+ |
} |
203 |
+ |
} |
204 |
+ |
} |
205 |
+ |
} |
206 |
+ |
|
207 |
+ |
# -- Get the project level environment |
208 |
+ |
my $runtimefile=$area->location()."/".$area->configurationdir() |
209 |
+ |
."/Runtime"; |
210 |
+ |
if ( -f $runtimefile ) { |
211 |
+ |
$self->{toolruntime}{$name}->file($runtimefile); |
212 |
+ |
} |
213 |
+ |
} |
214 |
+ |
return $self->{toolruntime}{$name}; |
215 |
+ |
} |
216 |
+ |
|
217 |
+ |
sub webget { |
218 |
+ |
my $self=shift; |
219 |
+ |
my $area=shift; |
220 |
+ |
my $url=shift; |
221 |
+ |
|
222 |
+ |
require URL::URLhandler; |
223 |
+ |
my $handler=URL::URLhandler->new($area->cache()); |
224 |
+ |
return ($handler->download($url)); |
225 |
+ |
} |
226 |
+ |
|
227 |
|
sub addareatoDB { |
228 |
|
my $self=shift; |
229 |
|
my $area=shift; |
242 |
|
$self->scramprojectdb()->addarea($tagname,$version,$area); |
243 |
|
} |
244 |
|
|
245 |
+ |
|
246 |
+ |
sub removeareafromDB |
247 |
+ |
{ |
248 |
+ |
############################################################### |
249 |
+ |
# removearefromDB() # |
250 |
+ |
############################################################### |
251 |
+ |
# modified : Thu Jun 14 10:46:22 2001 / SFA # |
252 |
+ |
# params : projectname, projectversion # |
253 |
+ |
# : # |
254 |
+ |
# : # |
255 |
+ |
# : # |
256 |
+ |
# function : Remove project <projectname> from DB file. # |
257 |
+ |
# : # |
258 |
+ |
# : # |
259 |
+ |
############################################################### |
260 |
+ |
my $self=shift; |
261 |
+ |
my $projname=shift; |
262 |
+ |
my $version=shift; |
263 |
+ |
|
264 |
+ |
# -- Remove from the DB: |
265 |
+ |
$self->scramprojectdb()->removearea($projname,$version); |
266 |
+ |
} |
267 |
+ |
|
268 |
+ |
|
269 |
+ |
sub spawnversion |
270 |
+ |
{ |
271 |
+ |
############################################################### |
272 |
+ |
# spawnversion # |
273 |
+ |
############################################################### |
274 |
+ |
# modified : Fri Aug 10 15:42:08 2001 / SFA # |
275 |
+ |
# params : # |
276 |
+ |
# : # |
277 |
+ |
# : # |
278 |
+ |
# : # |
279 |
+ |
# function : Check for version of scram to run, and run it. # |
280 |
+ |
# : # |
281 |
+ |
# : # |
282 |
+ |
############################################################### |
283 |
+ |
|
284 |
+ |
my $self=shift; |
285 |
+ |
my $version=shift; |
286 |
+ |
my $rv=0; |
287 |
+ |
|
288 |
+ |
my $thisversion=$self->getversion(); |
289 |
+ |
|
290 |
+ |
if ( defined $version ) |
291 |
+ |
{ |
292 |
+ |
if ( $version ne $thisversion ) |
293 |
+ |
{ |
294 |
+ |
# first try to use the correct version |
295 |
+ |
if ( -d $self->{scram_top}."/".$version ) |
296 |
+ |
{ |
297 |
+ |
$ENV{SCRAM_HOME}=$self->{scram_top}."/".$version; |
298 |
+ |
$ENV{TOOL_HOME}="$ENV{SCRAM_HOME}/src"; |
299 |
+ |
$self->verbose("Spawning SCRAM version $version"); |
300 |
+ |
my $rv=system("scram", @_)/256; |
301 |
+ |
exit $rv; |
302 |
+ |
} |
303 |
+ |
else |
304 |
+ |
{ # if not then simply warn |
305 |
+ |
print "******* Warning : scram version inconsistent ********\n"; |
306 |
+ |
print "This version: $thisversion; Required version: $version\n"; |
307 |
+ |
print "*****************************************************\n"; |
308 |
+ |
print "\n"; |
309 |
+ |
} |
310 |
+ |
} |
311 |
+ |
} |
312 |
+ |
else |
313 |
+ |
{ |
314 |
+ |
$self->error("Undefined value for version requested"); |
315 |
+ |
$rv=1; |
316 |
+ |
} |
317 |
+ |
return $rv; |
318 |
+ |
} |
319 |
+ |
|
320 |
|
sub globalcache { |
321 |
|
my $self=shift; |
322 |
|
if ( @_ ) { |
342 |
|
} |
343 |
|
return $self->{scramprojectsdb}; |
344 |
|
} |
345 |
+ |
|
346 |
+ |
sub getversion { |
347 |
+ |
my $self=shift; |
348 |
+ |
|
349 |
+ |
my $thisversion; |
350 |
+ |
($thisversion=$ENV{SCRAM_HOME})=~s/(.*)\///; |
351 |
+ |
my $scram_top=$1; |
352 |
+ |
my $scram_version=$thisversion; |
353 |
+ |
# deal with links |
354 |
+ |
my $version=readlink $ENV{SCRAM_HOME}; |
355 |
+ |
if ( defined $version) { |
356 |
+ |
$scram_version=$version; |
357 |
+ |
} |
358 |
+ |
return $scram_version; |
359 |
+ |
} |
360 |
|
|
361 |
|
sub areatoolbox { |
362 |
|
my $self=shift; |
366 |
|
if ( ! defined $self->{toolboxes}{$name} ) { |
367 |
|
# -- create a new toolbox object |
368 |
|
require BuildSystem::ToolBox; |
369 |
< |
$self->{toolboxes}{$name}=BuildSystem::ToolBox->new($area); |
369 |
> |
$self->{toolboxes}{$name}=BuildSystem::ToolBox->new($area, |
370 |
> |
$self->arch()); |
371 |
|
$self->{toolboxes}{$name}->verbosity($self->verbosity()); |
372 |
|
} |
373 |
|
return $self->{toolboxes}{$name}; |
406 |
|
:$self->{arch}; |
407 |
|
} |
408 |
|
|
409 |
+ |
sub scramobjectinterface { |
410 |
+ |
my $self=shift; |
411 |
+ |
my $class=shift; |
412 |
+ |
|
413 |
+ |
my $file; |
414 |
+ |
($file=$class."\.pm")=~s/::/\//g; |
415 |
+ |
$file=$ENV{TOOL_HOME}."/".$file; |
416 |
+ |
|
417 |
+ |
if ( ! -f $file ) { |
418 |
+ |
$self->error("Unable to find $class in ".$ENV{TOOL_HOME}); |
419 |
+ |
} |
420 |
+ |
print "--------------------- $class ------------------\n"; |
421 |
+ |
my $fh=FileHandle->new(); |
422 |
+ |
$fh->open("<$file"); |
423 |
+ |
while ( <$fh> ) { |
424 |
+ |
if ( $_=~/#\s*Interface/g ) { |
425 |
+ |
$intregion=1; |
426 |
+ |
next; |
427 |
+ |
} |
428 |
+ |
if ( $intregion ) { # if we are in the interface documentation |
429 |
+ |
if ( ( $_!~/^#/ ) || ( $_=~/^#\s?-{40}/ ) ) { #moving out of Int doc |
430 |
+ |
$intregion=0; |
431 |
+ |
next; |
432 |
+ |
} |
433 |
+ |
print $_; |
434 |
+ |
if ( $_=~/^#\s*(.*)\((.*)\)?:(.*)/ ) { |
435 |
+ |
$interface=$1; |
436 |
+ |
$args=$2; |
437 |
+ |
$rest=$3; |
438 |
+ |
next if ($interface eq ""); |
439 |
+ |
push @interfaces,$interface; |
440 |
+ |
$interfaceargs{$interface}=$args; |
441 |
+ |
} |
442 |
+ |
} |
443 |
+ |
} |
444 |
+ |
print "\n"; |
445 |
+ |
undef $fh; |
446 |
+ |
} |
447 |
+ |
|
448 |
|
# -------------- Support Routines ------------------------------ |
449 |
|
|
450 |
|
|
455 |
|
$search->addproject($$proj[0],$$proj[1]); |
456 |
|
} |
457 |
|
} |
458 |
+ |
return $self->{projsearcher}; |
459 |
|
} |
460 |
|
|
461 |
|
sub _projsearcher { |