ec76351bcae10068f74263471edba8a0b50773a1
[openssl.git] / util / mkstack.pl
1 #!/usr/local/bin/perl -w
2
3 # This is a utility that searches out "DECLARE_STACK_OF()"
4 # declarations in .h and .c files, and updates/creates/replaces
5 # the corresponding macro declarations in crypto/stack/safestack.h.
6 # As it's not generally possible to have macros that generate macros,
7 # we need to control this from the "outside", here in this script.
8 #
9 # Geoff Thorpe, June, 2000 (with massive Perl-hacking
10 #                           help from Steve Robb)
11
12 my $safestack = "crypto/stack/safestack";
13
14 my $do_write;
15 while (@ARGV) {
16         my $arg = $ARGV[0];
17         if($arg eq "-write") {
18                 $do_write = 1;
19         }
20         shift @ARGV;
21 }
22
23
24 @source = (<crypto/*.[ch]>, <crypto/*/*.[ch]>, <rsaref/*.[ch]>, <ssl/*.[ch]>);
25 foreach $file (@source) {
26         next if -l $file;
27
28         # Open the .c/.h file for reading
29         open(IN, "< $file") || die "Can't open $file for reading: $!";
30
31         while(<IN>) {
32                 if (/^DECLARE_STACK_OF\(([^)]+)\)/) {
33                         push @stacklst, $1;
34                 }
35         }
36         close(IN);
37 }
38
39
40 my $old_stackfile = "";
41 my $new_stackfile = "";
42 my $inside_block = 0;
43 my $type_thing;
44
45 open(IN, "< $safestack.h") || die "Can't open input file: $!";
46 while(<IN>) {
47         $old_stackfile .= $_;
48
49         if (m|^/\* This block of defines is updated by util/mkstack.pl, please do not touch! \*/|) {
50                 $inside_block = 1;
51         }
52         if (m|^/\* End of util/mkstack.pl block, you may now edit :-\) \*/|) {
53                 $inside_block = 0;
54         } elsif ($inside_block == 0) {
55                 $new_stackfile .= $_;
56         }
57         next if($inside_block != 1);
58         $new_stackfile .= "/* This block of defines is updated by util/mkstack.pl, please do not touch! */";
59                 
60         foreach $type_thing (@stacklst) {
61                 $new_stackfile .= <<EOF;
62
63 #define sk_${type_thing}_new(st) SKM_sk_new($type_thing, (st))
64 #define sk_${type_thing}_new_null() SKM_sk_new_null($type_thing)
65 #define sk_${type_thing}_free(st) SKM_sk_free($type_thing, (st))
66 #define sk_${type_thing}_num(st) SKM_sk_num($type_thing, (st))
67 #define sk_${type_thing}_value(st, i) SKM_sk_value($type_thing, (st), (i))
68 #define sk_${type_thing}_set(st, i, val) SKM_sk_set($type_thing, (st), (i), (val))
69 #define sk_${type_thing}_zero(st) SKM_sk_zero($type_thing, (st))
70 #define sk_${type_thing}_push(st, val) SKM_sk_push($type_thing, (st), (val))
71 #define sk_${type_thing}_unshift(st, val) SKM_sk_unshift($type_thing, (st), (val))
72 #define sk_${type_thing}_find(st, val) SKM_sk_find($type_thing, (st), (val))
73 #define sk_${type_thing}_delete(st, i) SKM_sk_delete($type_thing, (st), (i))
74 #define sk_${type_thing}_delete_ptr(st, ptr) SKM_sk_delete_ptr($type_thing, (st), (ptr))
75 #define sk_${type_thing}_insert(st, val, i) SKM_sk_insert($type_thing, (st), (val), (i))
76 #define sk_${type_thing}_set_cmp_func(st, cmp) SKM_sk_set_cmp_func($type_thing, (st), (cmp))
77 #define sk_${type_thing}_dup(st) SKM_sk_dup($type_thing, st)
78 #define sk_${type_thing}_pop_free(st, free_func) SKM_sk_pop_free($type_thing, (st), (free_func))
79 #define sk_${type_thing}_shift(st) SKM_sk_shift($type_thing, (st))
80 #define sk_${type_thing}_pop(st) SKM_sk_pop($type_thing, (st))
81 #define sk_${type_thing}_sort(st) SKM_sk_sort($type_thing, (st))
82 EOF
83         }
84         $new_stackfile .= "/* End of util/mkstack.pl block, you may now edit :-) */\n";
85         $inside_block = 2;
86 }
87
88
89 if ($new_stackfile eq $old_stackfile) {
90         print "No changes to $safestack.h.\n";
91         exit 0; # avoid unnecessary rebuild
92 }
93
94 if ($do_write) {
95         print "Writing new $safestack.h.\n";
96         open OUT, ">$safestack.h" || die "Can't open output file";
97         print OUT $new_stackfile;
98         close OUT;
99 }