ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/BuildFile.pm
Revision: 1.6
Committed: Thu Mar 18 12:53:57 1999 UTC (26 years, 1 month ago) by williamc
Content type: text/plain
Branch: MAIN
Changes since 1.5: +1 -0 lines
Log Message:
Mods to allow external in tools files propogate

File Contents

# User Rev Content
1 williamc 1.1 package BuildFile;
2 williamc 1.2 require 5.001;
3 williamc 1.1 require Exporter;
4     @ISA = qw(Exporter);
5     @EXPORT = qw(CheckBuildFile ParseBuildFile @BlockClassA $DefaultBuildFile);
6    
7     BEGIN {
8     use ToolBox;
9     $buildfile="BuildFile";
10 williamc 1.4 $toolbox=ToolBox->new();
11 williamc 1.1 }
12    
13     #Parse the BuildFile
14     sub ParseBuildFile {
15     my $base=shift;
16     my $path=shift;
17     my $filename=shift @_;
18     my $fullfilename="$base/$path/$filename";
19     #print "Processing $fullfilename\n";
20     # This hash defines which Document Elements we can use
21     my $SupportedTags={
22     'Use' => \&OutToMakefile,
23     'Use_StartTag' => \&Use_start,
24     'Group' => \&OutToMakefile,
25     'Group_StartTag' => \&Group_start,
26     'External' => \&OutToMakefile,
27     'External_StartTag' => \&External_StartTag,
28     'ConfigurationClass_StartTag' => \&Class_StartTag,
29     'ConfigurationClass' => \&OutToMakefile,
30     'AssociateGroup' => \&AssociateGroup,
31     'none' => \&OutToMakefile,
32     'Bin' => \&OutToMakefile,
33     'Bin_StartTag' => \&Bin_start,
34     'ClassPath' => \&OutToMakefile,
35     'ClassPath_StartTag' => \&setBlockClassPath
36     };
37 williamc 1.2 use Utilities::Switcher;
38 williamc 1.1 $switch=Switcher->new($SupportedTags, $fullfilename);
39     $switch->{Strict_no_cr}='no';
40     #open a temporary gnumakefile to store output.
41 williamc 1.2 use Utilities::AddDir;
42 williamc 1.3 AddDir::adddir("$ENV{LOCALTOP}/$ENV{INTwork}/${path}");
43 williamc 1.1 open ( GNUmakefile, ">$ENV{LOCALTOP}/$ENV{INTwork}/${path}/BuildFile.mk") or die 'Unable to open /$ENV{INTwork}/${path}/BuildFile.mk $!\n';
44     if ( -e $ENV{LatestBuildFile} ) {
45     print GNUmakefile "include $ENV{LatestBuildFile}\n";
46     }
47     # print "writing to :\n".
48     # "$ENV{LOCALTOP}/$ENV{INTwork}/${path}/BuildFile.mk\n";
49     $ENV{LatestBuildFile}="$ENV{LOCALTOP}/$ENV{INTwork}/${path}/BuildFile.mk";
50     $switch->parse(); # sort out supported tags
51     close GNUmakefile;
52     }
53    
54     sub initialterms() {
55     my $name=shift;
56     my @string=@_;
57    
58     $_=join "", @string;
59     chomp;
60     SWITCH: {
61     last SWITCH if /^#/;
62     if ( /^.*BlockClassPath.*/i ) {
63     s/^.*BlockClassPath *= *//;
64     _CutBlock($_);
65     last SWITCH;
66     }
67     } # end SWITCH
68     }
69    
70     # Tag routines - called by the Switcher when tag found
71    
72    
73    
74     #-- Override a class type with the <ConfigurationClass type=xxx> tag
75     # the type tag will pick up a pre-defined class type from project space.
76    
77     sub Class_StartTag {
78     my $name=shift;
79     my $hashref;
80     my @vars=@_;
81    
82     $hashref=$switch->SetupValueHash(\@vars);
83     if ( defined $$hashref{'type'} ) {
84     $ClassName=$$hashref{'type'};
85     }
86     }
87    
88     sub ClassPath_StartTag {
89     my $name=shift;
90     my @vars=@_;
91     my $hashref;
92    
93     $hashref=$switch->SetupValueHash(\@vars);
94     if ( defined $$hashref{'defaultpath'} ) {
95     }
96     }
97    
98     sub Bin_start {
99     my $name=shift;
100     my @vars=@_;
101     my $hashref;
102     my $fileclass;
103     my @tools;
104     my $tool;
105    
106     $hashref=$switch->SetupValueHash(\@vars);
107     $switch->checkparam($hashref, $name, 'file');
108     if ( ! defined $$hashref{name} ) {
109     ($$hashref{name}=$$hashref{file})=~s/\..*//;
110     }
111 williamc 1.4 # This stuff for later
112     #$fileclass=$toolbox->getclass($file);
113     #$toolbox->maketargets("exe",$fileclass, $$hashref{name}, $file );
114     print GNUmakefile "bin::$$hashref{name}\n";
115     print GNUmakefile "$$hashref{name}::$$hashref{file}\n";
116 williamc 1.1 }
117    
118     sub External_StartTag {
119     my $name=shift;
120     my @vars=@_;
121     my $hashref;
122    
123     $hashref=$switch->SetupValueHash(\@vars);
124 williamc 1.6 $$hashref{'ref'}=~tr[A-Z][a-z];
125 williamc 1.1 print GNUmakefile $$hashref{'ref'};
126     if ( defined $$hashref{'version'} ) {
127     print GNUmakefile "_V_".$$hashref{'version'};
128     }
129     print GNUmakefile "=true\n";
130    
131     }
132    
133     sub Group_start {
134     my $name=shift;
135     my @vars=@_;
136     my $hashref;
137    
138     $hashref=$switch->SetupValueHash(\@vars);
139     $switch->checkparam($hashref, $name, 'name');
140     print GNUmakefile "GROUP_".$$hashref{'name'};
141     if ( defined $$hashref{'version'} ) {
142     print GNUmakefile "_V_".$$hashref{'version'};
143     }
144     print GNUmakefile "=true\n";
145     }
146    
147     sub External {
148     my $name=shift;
149     my @vars=@_;
150     # Will simply collect string into a seperate buffer for processind
151     # at the tag closure - used for specifying product defaults
152     # --- Oh oh all of string already in external buffer @!
153     }
154    
155     sub External_EndTag {
156     my $name=shift;
157     my @vars=@_;
158    
159     # process buffer and check consistency with product dtd
160     }
161    
162     sub Use_start {
163     my $name=shift;
164     my @vars=@_;
165     my $hashref;
166     my $filename;
167 williamc 1.2 use Utilities::SCRAMUtils;
168 williamc 1.1
169     $hashref=$switch->SetupValueHash(\@vars);
170     $switch->checkparam($hashref, $name, "name");
171     if ( $filename=checkfile("$ENV{INTsrc}/$$hashref{name}/BuildFile")
172     ne "" ) {
173     print GNUmakefile "ReqDependencies += $filename\n";
174     }
175     print GNUmakefile "local__$$hashref{name}=true\n";
176     }
177    
178 williamc 1.5 sub CheckBuildFile {
179 williamc 1.1 my $classdir=shift;
180     $ClassName="";
181     $thisfile="$classdir/$buildfile";
182    
183     if ( -e $ENV{LOCALTOP}."/".$thisfile ) {
184     $DefaultBuildfile="$ENV{LOCALTOP}/$thisfile";
185     ParseBuildFile($ENV{LOCALTOP}, $classdir, $buildfile);
186     }
187     elsif ( -e $ENV{RELEASETOP}."/".$thisfile ) {
188     $DefaultBuildfile="$ENV{RELEASETOP}/$thisfile";
189     ParseBuildFile($ENV{RELEASETOP}, $classdir, $buildfile);
190     }
191     return $ClassName;
192     }
193    
194     # List association groups between <AssociateGroup> tags
195     # seperated by newlines or spaces
196     sub AssociateGroup {
197     my $name=shift;
198     my @vars=@_;
199     my $word;
200    
201     foreach $word ( @vars ){
202     chomp $word;
203     next if /^#/;
204     push @groups, $word;
205     }
206     }
207    
208     # Split up the Class Block String into a useable array
209 williamc 1.5 sub _CutBlock {
210 williamc 1.1 my $string= shift @_;
211     @BlockClassA = split /\//, $string;
212     }
213    
214     sub OutToMakefile {
215     my $name=shift;
216     my @vars=@_;
217    
218     print GNUmakefile @vars;
219     }
220     sub setBlockClassPath {
221     my $name=shift;
222     my @vars=@_;
223     my $hashref;
224    
225     $hashref=$switch->SetupValueHash(\@vars);
226     $switch->checkparam($hashref, $name, 'path');
227     $BlockClassPath=$BlockClassPath.":".$$hashref{path};
228     _CutBlock($$hashref{path});
229     }