-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbuildscript.pl
More file actions
executable file
·572 lines (419 loc) · 10.1 KB
/
Copy pathbuildscript.pl
File metadata and controls
executable file
·572 lines (419 loc) · 10.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
#!/usr/bin/env perl
# Copyright 2007-2025 United States Government as represented by the
# Administrator of The National Aeronautics and Space Administration.
# No copyright is claimed in the United States under Title 17, U.S. Code.
# All Rights Reserved.
######################################################################
# Build Script
# This script will read the values from files and build an include
# file which will include a unique build number and other debugging
# information.
#
# This program should be called with the following command (probably
# in a make file):
# > buildscript.pl
#
######################################################################
use strict;
eval
{
my $cxx_file = 'framework/include/gmsec_version.h';
my $java_file = 'java/gov/nasa/gsfc/gmsec/api5/ApiVersion.java';
my $bolt_file = 'wrapper/bolt/java/bolt/Version.java';
if ( ($#ARGV == 0) && ($ARGV[0] eq "clean") )
{
unlink($cxx_file);
unlink($java_file);
unlink($bolt_file);
}
else
{
my %info;
getTimestamp(\%info);
# getBuild(\%info);
getGMSEC(\%info);
getOS(\%info);
getCxx(\%info);
getJava(\%info);
getNodeJS(\%info);
getPerl(\%info);
getPython3(\%info);
getRuby(\%info);
getMono(\%info);
writeCxx($cxx_file, \%info);
writeJava($java_file, "gmsec.api5", \%info);
writeBolt($bolt_file, "bolt", \%info);
updateDoxygen(\%info, glob('doxygen/*.md'));
}
print "done\n";
};
if ($@) {
print "exception: $@\n";
return 1;
}
exit 0;
# End of Script
##############################################################
#
# Beginning of Subroutines.
#
##############################################################
# Get the build number and increment it in the file
sub slurp
{
my ($path) = @_;
open(FH, $path)
or die("unable to open $path [$!]");
my @lines = <FH>;
chomp(@lines);
close(FH);
return @lines;
}
sub getTimestamp
{
my ($ref) = @_;
my ($sec,$min,$hour,$day,$mon,$year,$wday,$yday,$isdst) = localtime(time);
++$mon;
$year += 1900;
my $datestamp = sprintf('%02d/%02d/%d', $mon, $day, $year);
my $timestamp = sprintf('%02d:%02d:%02d', $hour, $min, $sec);
$ref->{DATESTAMP} = $datestamp;
$ref->{TIMESTAMP} = $timestamp;
}
sub getBuild
{
my ($ref) = @_;
my @in = slurp('lastbuild.inf');
my $build = $in[0];
$build++;
$ref->{BUILD} = $build;
# Write updated info back to file
open(FH,">lastbuild.inf") or die "Unable to clobber lastbuild.inf";
print FH "$build";
close FH;
} # getBuild
sub getGMSEC
{
my ($ref) = @_;
my @in = slurp('version.inf');
my $version = $in[0];
$version =~ s/^\s*(.*?)\s*$/$1/g;
my @t = split(/\./, $version);
my $x = @t;
my $api_version = "0x";
for (my $i=0; $i < $x; $i++) {
$api_version .= sprintf("%02X", @t[$i]);
}
if ($x == 2) {
$api_version .= "00";
}
$ref->{API} = $version;
$ref->{API_VERSION} = $api_version;
} # getGMSEC
##############################################################
# Get the NodeJS version number
sub getNodeJS {
use Config;
my ($ref) = @_;
my $path = 'nodejs.ver';
open(STDOUT, '>' . $path);
system("node --version");
my @in = slurp($path);
my $node = $in[0];
$ref->{NODEJS} = $node;
unlink($path);
} # getNodeJS
##############################################################
# Get the Perl version number
sub getPerl {
use Config;
my ($ref) = @_;
my $version = sprintf('%vd', $^V);
my $compiler = $Config{ccname} || $Config{cc};
$compiler .= " $Config{ccversion}" if $Config{ccversion};
my $details = "Perl v$version, $compiler, $Config{archname}";
$ref->{PERL} = $details;
} # getPerl
##############################################################
# Get the Python3 version number
sub getPython3 {
use Config;
my ($ref) = @_;
my $path = 'python3.ver';
open(STDOUT, '>' . $path);
my $c_env = "$ENV{CXX}";
if ($c_env ne "")
{
system("python3 --version");
}
else
{
system("python --version");
}
my @in = slurp($path);
my $py3 = $in[0];
$py3 =~ s/\"/$1/g;
$py3 =~ s/^\s*(.*?)\s*$/$1/g;
$ref->{PYTHON3} = $py3;
unlink($path);
} # getPython3
##############################################################
# Get the Ruby version number
sub getRuby {
use Config;
my ($ref) = @_;
my $path = 'ruby.ver';
open(STDOUT, '>' . $path);
system("ruby --version");
my @in = slurp($path);
my $ruby = $in[0];
$ruby =~ s/\"/$1/g;
$ruby =~ s/^\s*(.*?)\s*$/$1/g;
$ref->{RUBY} = $ruby;
unlink($path);
} # getRuby
##############################################################
# Get the Mono version number (if available)
sub getMono {
use Config;
my ($ref) = @_;
my $c_env = "$ENV{CXX}";
if ($c_env ne "")
{
my $path = 'mono.ver';
open(STDOUT, '>' . $path);
system("mono --version");
my @in = slurp($path);
my $mono = $in[0];
$mono =~ s/\"/$1/g;
$mono =~ s/^\s*(.*?)\s*$/$1/g;
if ($mono ne "")
{
$ref->{MONO} = $mono;
}
else
{
$ref->{MONO} = "[not available]";
}
unlink($path);
}
else
{
$ref->{MONO} = "[not available]";
}
} # getMono
##############################################################
# Get the java version number
sub getJava {
my ($ref) = @_;
my $path = 'java.ver';
open(STDERR, '>' . $path);
system("java -version");
my @in = slurp($path);
my $java = $in[0];
$java =~ s/\"/$1/g;
$java =~ s/^\s*(.*?)\s*$/$1/g;
$ref->{JAVA} = $java;
unlink($path);
} # getJava
##############################################################
# Get the C++ version number
sub getCxx
{
my ($ref) = @_;
my $cxx = '';
my $c_env = "$ENV{CXX}";
my $path = 'c.ver';
if ($c_env ne "")
{
open(STDERR, '>' . $path);
system("$c_env -v");
my @in = slurp($path);
foreach my $tmp (@in) {
if ($tmp =~ /version ([\d\.]+)/) {
$cxx = $tmp;
}
}
if (not $cxx) {
$cxx = $in[0];
}
unlink($path);
}
else
{ # Means they are using windows.
# try running cl.exe
my $tmpfile = 'msc.tmp';
unlink($tmpfile);
if (system("cl.exe 2> $tmpfile")) {
print "unable to determine cl.exe version- using default\n";
}
elsif (-f $tmpfile) {
my @in = slurp($tmpfile);
foreach (@in) {
if (/Version (\S+)/i) {
$cxx = "Microsoft C/C++ $1";
}
}
}
unlink($tmpfile);
if (not $cxx) {
# use manually created msc.ver
my @in = slurp('msc.ver');
foreach (@in) {
# Take the string if the word 'version' is in it...
if (/version/g) {
$cxx = $_;
}
} # while(<FH>)
$cxx =~ s/\"/$1/g;
$cxx =~ s/^\s*(.*?)\s*$/$1/g;
}
}
$ref->{CXX} = $cxx;
} # getCxx
##############################################################
# Get the OS version number
sub getOS
{
my ($ref) = @_;
my $path = 'os.ver';
my $c_env = "$ENV{CXX}";
if ($c_env ne "")
{
system("uname -s -r -m > $path");
}
else
{ # Means they are using windows.
system("ver > $path");
}
# Read File in
my @in = slurp($path);
my $os = '';
foreach (@in) {
$os = $_;
}
$os =~ s/\"/$1/g;
$os =~ s/^\s*(.*?)\s*$/$1/g;
$ref->{OS} = $os;
unlink($path);
} # getOS
sub writeCxx
{
my ($path, $ref) = @_;
open(FH, '>' . $path)
or die("unable to open $path [$!]");
print FH qq(
/*
gmsec_version.h autogenerated on:
$ref->{DATESTAMP} $ref->{TIMESTAMP}
*/
#ifndef GMSEC_VERSION_H
#define GMSEC_VERSION_H
#define GMSEC_VERSION "GMSEC API v$ref->{API} [$ref->{DATESTAMP}]"
#define GMSEC_VERSION_NUMBER "$ref->{API}"
#define GMSEC_API_VERSION $ref->{API_VERSION}
#define GMSEC_OS "$ref->{OS}"
#define GMSEC_CXX "$ref->{CXX}"
#define GMSEC_JAVA "$ref->{JAVA}"
#define GMSEC_NODEJS "$ref->{NODEJS}"
#define GMSEC_PERL "$ref->{PERL}"
#define GMSEC_PYTHON3 "$ref->{PYTHON3}"
#define GMSEC_RUBY "$ref->{RUBY}"
);
my $c_env = "$ENV{CXX}";
if ($c_env ne "")
{
print FH qq(
#define GMSEC_MONO "$ref->{MONO}"
);
}
print FH qq(
#endif
);
close(FH);
} # end of writeCxx
sub writeJava
{
my ($path, $pkgname, $ref) = @_;
open(FH, '>' . $path)
or die("unable to open $path [$!]");
print FH qq(
/**
* \@file ApiVersion.java
*/
package gov.nasa.gsfc.$pkgname;
/**
* This is a generated file.
* It contains information regarding the version of the GMSEC API, and of the tools used to build the Java binding.
*/
public class ApiVersion {
/**
* GMSEC API version number and date when built.
*/
public final static String GMSEC_VERSION = "$ref->{API} [$ref->{DATESTAMP}]";
/**
* GMSEC API version number as a string."
*/
public final static String GMSEC_VERSION_NUMBER = "$ref->{API}";
/**
* GMSEC API version number in hex format."
*/
public final static int GMSEC_API_VERSION = $ref->{API_VERSION};
/**
* The OS on which the Java binding of the GMSEC API was built."
*/
public final static String GMSEC_OS = "$ref->{OS}";
/**
* The version of the C++ compiler tool which was used to build the core GMSEC API."
*/
public final static String GMSEC_CXX = "$ref->{CXX}";
/**
* The version of OpenJDK which was used to build the GMSEC API's Java binding."
*/
public final static String GMSEC_JAVA = "$ref->{JAVA}";
}
);
close(FH);
} # end of writeJava
sub writeBolt
{
my ($path, $pkgname, $ref) = @_;
open(FH, '>' . $path)
or die("unable to open $path [$!]");
print FH qq(
package $pkgname;
public class Version {
public final static String GMSEC_VERSION = "$ref->{API} [$ref->{DATESTAMP}]";
public final static String JAVA_VERSION = "$ref->{JAVA}";
public final static String GMSEC_BOLT_VERSION = "Bolt v$ref->{API} [$ref->{DATESTAMP}]";
public final static String GMSEC_OS = "$ref->{OS}";
public final static String GMSEC_JAVA = "$ref->{JAVA}";
}
);
close(FH);
} # end of writeBolt
sub updateDoxygen
{
my ($ref, @files) = @_;
my $reRelease = qr(Release ([0-9.]+));
foreach my $file (@files) {
my $update = 0;
my @lines = slurp($file);
foreach my $line (@lines) {
if ($line =~ $reRelease) {
if ($1 ne $ref->{API}) {
++$update;
my @a = split('-', $ref->{API});
$line =~ s/$reRelease/Release $a[0]/g;
print "updateDoxygen: $line\n";
}
}
}
if ($update) {
open(FH, ">$file")
or die("unable to rewrite $file [$!]");
map { print FH "$_\n" } @lines;
close(FH);
}
}
}