summaryrefslogtreecommitdiff
path: root/APACHE_1_3_42/src/test/rename/apapi_compat.h.mk
blob: ac43e9d1a73af75a3b88fd93e6a5ea8af94c8621 (plain)
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
:
eval 'exec perl -S $0 ${1+"$@"}'
    if $running_under_some_shell;
##
##  apapi_compat.h.mk 
##

#   configuration
$config = "./rename.cf";
$header = "./apapi_compat.h";

#   read config file into hash
%PREFIX = ();
%SUBST = ();
open(CFG, "<$config") || die;
while (<CFG>) {
    s|\n$||;
    next if (m|^\s*#.*| or m|^\s*$|);
    if (($symbolic, $real) = m|^\s*(\S+)\s*=\s*(\S+)\s*$|) {
        $PREFIX{$symbolic} = $real;
    }
    elsif (($old, $new) = m|^\s*(\S+)\s+(\S+)\s*$|) {
        foreach $p (keys(%PREFIX)) {
            $new =~ s|^$p|$PREFIX{$p}|;
        }
        $SUBST{$old} = $new;
    }
}
close(CFG);

#   create the C header file
open(FP, ">$header") || die;
print FP <<'EOT';
/*
**  apapi_compat.h -- Apache API symbol space
**                    backward compatibility defines
**
**  INCLUDE THIS HEADER FILE ONLY IF YOU REALLY NEED
**  BACKWARD COMPATIBILITY FOR USED API SYMBOLS.
*/

#ifndef APAPI_COMPAT_H
#define APAPI_COMPAT_H

/* 
 *   Mapping of Apache 1.2 symbols to 
 *   official Apache 1.3 API symbols
 */

EOT
$apapiprefix = $PREFIX{'API_'};
foreach $s (sort(keys(%SUBST))) {
    $n = $SUBST{$s};
    next if ($n !~ m|^$apapiprefix|);
    printf(FP "#define %-30s %s\n", $s, $n);
}
print FP <<'EOT';

/* 
 *   Mapping of symbols which are private
 *   to Apache httpd and should not be considered 
 *   part of the public API
 */

#ifdef APAPI_STRICT

EOT
foreach $s (sort(keys(%SUBST))) {
    $n = $SUBST{$s};
    next if ($n =~ m|^$apapiprefix|);
    printf(FP "#define %-30s %s\n", $s, "DO_NOT_USE_$s");
}
print FP <<'EOT';

#else /* APAPI_STRICT */

EOT
foreach $s (sort(keys(%SUBST))) {
    $n = $SUBST{$s};
    next if ($n =~ m|^$apapiprefix|);
    printf(FP "#define %-30s %s\n", $s, $n);
}
print FP <<'EOT';

#endif /* APAPI_STRICT */

#endif /* APAPI_COMPAT_H */
EOT
close(FP);