ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/SCRAM/src/BuildFile.pm
Revision: 1.14
Committed: Thu Apr 1 08:27:33 1999 UTC (26 years, 1 month ago) by williamc
Content type: text/plain
Branch: MAIN
Changes since 1.13: +3 -1 lines
Log Message:
Fix Insure++ exe target

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 williamc 1.8 'Bin' => 'none',
33 williamc 1.1 '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 williamc 1.12 my $filename;
106     my $objectname;
107 williamc 1.1
108     $hashref=$switch->SetupValueHash(\@vars);
109     $switch->checkparam($hashref, $name, 'file');
110     if ( ! defined $$hashref{name} ) {
111     ($$hashref{name}=$$hashref{file})=~s/\..*//;
112     }
113 williamc 1.4 # This stuff for later
114     #$fileclass=$toolbox->getclass($file);
115     #$toolbox->maketargets("exe",$fileclass, $$hashref{name}, $file );
116 williamc 1.12 ($filename=$$hashref{file})=~s/\..*//;
117     ($objectname=$$hashref{file})=~s/\..*/\.o/;
118     ($objectname_d=$$hashref{file})=~s/\..*/_d\.o/;
119 williamc 1.14 ($objectname_Insure=$$hashref{file})=~s/\..*/_Insure\.o/;
120 williamc 1.9 print GNUmakefile "bin:$$hashref{name}\n";
121 williamc 1.10 print GNUmakefile "bin_debug:$$hashref{name}_d\n";
122 williamc 1.13 print GNUmakefile "bin_insure:$$hashref{name}_Insure\n";
123 williamc 1.12 print GNUmakefile ".INTERMEDIATE::$$hashref{name}_d.exe\n";
124 williamc 1.13 print GNUmakefile ".INTERMEDIATE::$$hashref{name}_Insure.exe\n";
125 williamc 1.12 print GNUmakefile ".INTERMEDIATE::$$hashref{name}.exe\n";
126 williamc 1.14 print GNUmakefile "$$hashref{name}_Insure:.psrc\n";
127 williamc 1.12 print GNUmakefile "$$hashref{name}_d.exe:$objectname_d\n";
128 williamc 1.13 print GNUmakefile "$$hashref{name}_Insure.exe:$objectname_Insure\n";
129 williamc 1.12 print GNUmakefile "$$hashref{name}.exe:$objectname\n";
130 williamc 1.10 # print GNUmakefile "$$hashref{name}:$$hashref{file}\n";
131     print GNUmakefile "$$hashref{name}_d:$$hashref{name}_d.exe\n";
132     print GNUmakefile "\t\@mv $$hashref{name}_d.exe \$(binarystore)/".
133 williamc 1.13 "$$hashref{name}\n";
134     print GNUmakefile "$$hashref{name}_Insure:$$hashref{name}_Insure.exe\n";
135     print GNUmakefile "\t\@mv $$hashref{name}_Insure.exe \$(binarystore)/".
136 williamc 1.14 "$$hashref{name}_Insure\n";
137 williamc 1.10 print GNUmakefile "$$hashref{name}:$$hashref{name}.exe\n";
138     print GNUmakefile "\t\@mv $$hashref{name}.exe \$(binarystore)/".
139     "$$hashref{name}\n";
140 williamc 1.12 print GNUmakefile "binfiles+=$filename\n";
141     print GNUmakefile "bintargets+=$$hashref{name} $$hashref{name}_d\n";
142     print GNUmakefile "files+=$$hashref{file}\n";
143 williamc 1.10
144 williamc 1.1 }
145    
146     sub External_StartTag {
147     my $name=shift;
148     my @vars=@_;
149     my $hashref;
150    
151     $hashref=$switch->SetupValueHash(\@vars);
152 williamc 1.6 $$hashref{'ref'}=~tr[A-Z][a-z];
153 williamc 1.1 print GNUmakefile $$hashref{'ref'};
154     if ( defined $$hashref{'version'} ) {
155     print GNUmakefile "_V_".$$hashref{'version'};
156     }
157     print GNUmakefile "=true\n";
158    
159     }
160    
161     sub Group_start {
162     my $name=shift;
163     my @vars=@_;
164     my $hashref;
165    
166     $hashref=$switch->SetupValueHash(\@vars);
167     $switch->checkparam($hashref, $name, 'name');
168     print GNUmakefile "GROUP_".$$hashref{'name'};
169     if ( defined $$hashref{'version'} ) {
170     print GNUmakefile "_V_".$$hashref{'version'};
171     }
172     print GNUmakefile "=true\n";
173     }
174    
175     sub External {
176     my $name=shift;
177     my @vars=@_;
178     # Will simply collect string into a seperate buffer for processind
179     # at the tag closure - used for specifying product defaults
180     # --- Oh oh all of string already in external buffer @!
181     }
182    
183     sub External_EndTag {
184     my $name=shift;
185     my @vars=@_;
186    
187     # process buffer and check consistency with product dtd
188     }
189    
190     sub Use_start {
191     my $name=shift;
192     my @vars=@_;
193     my $hashref;
194     my $filename;
195 williamc 1.2 use Utilities::SCRAMUtils;
196 williamc 1.1
197     $hashref=$switch->SetupValueHash(\@vars);
198     $switch->checkparam($hashref, $name, "name");
199     if ( $filename=checkfile("$ENV{INTsrc}/$$hashref{name}/BuildFile")
200     ne "" ) {
201     print GNUmakefile "ReqDependencies += $filename\n";
202     }
203     print GNUmakefile "local__$$hashref{name}=true\n";
204     }
205    
206 williamc 1.5 sub CheckBuildFile {
207 williamc 1.1 my $classdir=shift;
208     $ClassName="";
209     $thisfile="$classdir/$buildfile";
210    
211     if ( -e $ENV{LOCALTOP}."/".$thisfile ) {
212     $DefaultBuildfile="$ENV{LOCALTOP}/$thisfile";
213     ParseBuildFile($ENV{LOCALTOP}, $classdir, $buildfile);
214     }
215     elsif ( -e $ENV{RELEASETOP}."/".$thisfile ) {
216     $DefaultBuildfile="$ENV{RELEASETOP}/$thisfile";
217     ParseBuildFile($ENV{RELEASETOP}, $classdir, $buildfile);
218     }
219     return $ClassName;
220     }
221    
222     # List association groups between <AssociateGroup> tags
223     # seperated by newlines or spaces
224     sub AssociateGroup {
225     my $name=shift;
226     my @vars=@_;
227     my $word;
228    
229     foreach $word ( @vars ){
230     chomp $word;
231     next if /^#/;
232     push @groups, $word;
233     }
234     }
235    
236     # Split up the Class Block String into a useable array
237 williamc 1.5 sub _CutBlock {
238 williamc 1.1 my $string= shift @_;
239     @BlockClassA = split /\//, $string;
240     }
241    
242     sub OutToMakefile {
243     my $name=shift;
244     my @vars=@_;
245    
246     print GNUmakefile @vars;
247     }
248     sub setBlockClassPath {
249     my $name=shift;
250     my @vars=@_;
251     my $hashref;
252    
253     $hashref=$switch->SetupValueHash(\@vars);
254     $switch->checkparam($hashref, $name, 'path');
255     $BlockClassPath=$BlockClassPath.":".$$hashref{path};
256     _CutBlock($$hashref{path});
257     }