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 |
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={}; |
36 |
< |
bless $self, $class; |
37 |
< |
# -- default settings |
38 |
< |
$self->{cachedir}=$ENV{HOME}."/.scramrc/globalcache"; |
39 |
< |
$self->{scramprojectsdbdir}=$ENV{SCRAM_LOOKUPDB}; |
40 |
< |
($self->{scram_top})=( $ENV{SCRAM_HOME}=~/(.*)\//) ; |
52 |
> |
my $val=shift; |
53 |
|
|
54 |
< |
return $self; |
54 |
> |
$ENV{"VERBOSE_".$class}=$val; |
55 |
|
} |
56 |
|
|
57 |
|
sub project { |
91 |
|
|
92 |
|
# -- create a new toolbox object |
93 |
|
my $toolbox=$self->areatoolbox($area); |
94 |
< |
$toolbox->searcher($self->_projsearcher()); |
94 |
> |
$toolbox->searcher($self->_allprojectinitsearcher()); |
95 |
|
|
96 |
|
if ( @_ ) { |
97 |
|
# -- specific tool specified |
160 |
|
return $area; |
161 |
|
} |
162 |
|
|
163 |
< |
sub webget { |
163 |
> |
sub toolruntime { |
164 |
|
my $self=shift; |
165 |
|
my $area=shift; |
154 |
– |
my $url=shift; |
166 |
|
|
167 |
< |
my $handler=URL::URLhandler->new($area->cache()); |
168 |
< |
return ($handler->get($url)); |
167 |
> |
my $name=$area->location(); |
168 |
> |
if ( ! defined $self->{toolruntime}{$name} ) { |
169 |
> |
require Runtime; |
170 |
> |
my $toolbox=$self->areatoolbox($area); |
171 |
> |
$self->{toolruntime}{$name}=Runtime->new(); |
172 |
> |
|
173 |
> |
# -- add scram area specific runtimes |
174 |
> |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH", |
175 |
> |
$area->location()."/lib/".$self->arch(),"path"); |
176 |
> |
$self->{toolruntime}{$name}->addvar("PATH", |
177 |
> |
$area->location()."/bin/".$self->arch(),"path"); |
178 |
> |
if ( defined $area->linkarea() ) { |
179 |
> |
my $reltop=$area->linkarea()->location(); |
180 |
> |
$self->{toolruntime}{$name}->addvar("LD_LIBRARY_PATH", |
181 |
> |
$reltop."/lib/".$self->arch(),"path"); |
182 |
> |
$self->{toolruntime}{$name}->addvar("PATH", |
183 |
> |
$reltop."/bin/".$self->arch(),"path"); |
184 |
> |
} |
185 |
> |
|
186 |
> |
# -- get the runtime environment from all the tools |
187 |
> |
my $tool; |
188 |
> |
foreach $toolname ( $toolbox->tools() ) { |
189 |
> |
$tool=$toolbox->gettool($toolname); |
190 |
> |
if ( defined $tool ) { |
191 |
> |
# -- get runtime paths |
192 |
> |
foreach $f ( $tool->listtype("runtime_path")) { |
193 |
> |
foreach $val ( $tool->getfeature($f) ) { |
194 |
> |
$self->{toolruntime}{$name}->addvar($f,$val,"path"); |
195 |
> |
} |
196 |
> |
} |
197 |
> |
# -- get runtime vars |
198 |
> |
foreach $f ( $tool->listtype("runtime")) { |
199 |
> |
foreach $val ( $tool->getfeature($f) ) { |
200 |
> |
$self->{toolruntime}{$name}->addvar($f,$val); |
201 |
> |
} |
202 |
> |
} |
203 |
> |
} |
204 |
> |
} |
205 |
> |
|
206 |
> |
# -- Get the project level environment |
207 |
> |
my $runtimefile=$area->location()."/".$area->configurationdir() |
208 |
> |
."/Runtime"; |
209 |
> |
if ( -f $runtimefile ) { |
210 |
> |
$self->{toolruntime}{$name}->file($runtimefile); |
211 |
> |
} |
212 |
> |
} |
213 |
> |
return $self->{toolruntime}{$name}; |
214 |
> |
} |
215 |
> |
|
216 |
> |
sub webget { |
217 |
> |
my $self=shift; |
218 |
> |
my $area=shift; |
219 |
> |
my $url=shift; |
220 |
> |
|
221 |
> |
require URL::URLhandler; |
222 |
> |
my $handler=URL::URLhandler->new($area->cache()); |
223 |
> |
return ($handler->download($url)); |
224 |
|
} |
225 |
|
|
226 |
|
sub addareatoDB { |
362 |
|
} |
363 |
|
|
364 |
|
sub scramobjectinterface { |
365 |
< |
my $self=shift; |
366 |
< |
my $class=shift; |
365 |
> |
my $self=shift; |
366 |
> |
my $class=shift; |
367 |
|
|
368 |
< |
my $file; |
369 |
< |
($file=$class."\.pm")=~s/::/\//g; |
370 |
< |
$file=$ENV{TOOL_HOME}."/".$file; |
368 |
> |
my $file; |
369 |
> |
($file=$class."\.pm")=~s/::/\//g; |
370 |
> |
$file=$ENV{TOOL_HOME}."/".$file; |
371 |
|
|
372 |
< |
if ( ! -f $file ) { |
373 |
< |
$self->error("Unable to find $class in ".$ENV{TOOL_HOME}); |
374 |
< |
} |
375 |
< |
print "--------------------- $class ------------------\n"; |
376 |
< |
my $fh=FileHandle->new(); |
372 |
> |
if ( ! -f $file ) { |
373 |
> |
$self->error("Unable to find $class in ".$ENV{TOOL_HOME}); |
374 |
> |
} |
375 |
> |
print "--------------------- $class ------------------\n"; |
376 |
> |
my $fh=FileHandle->new(); |
377 |
|
$fh->open("<$file"); |
378 |
|
while ( <$fh> ) { |
379 |
|
if ( $_=~/#\s*Interface/g ) { |
397 |
|
} |
398 |
|
} |
399 |
|
print "\n"; |
400 |
< |
undef $fh; |
400 |
> |
undef $fh; |
401 |
|
} |
402 |
|
|
403 |
|
# -------------- Support Routines ------------------------------ |
410 |
|
$search->addproject($$proj[0],$$proj[1]); |
411 |
|
} |
412 |
|
} |
413 |
+ |
return $self->{projsearcher}; |
414 |
|
} |
415 |
|
|
416 |
|
sub _projsearcher { |