Upgrade to Devel::PPPort 3.11_05
[p5sagit/p5-mst-13.2.git] / ext / Devel / PPPort / parts / apicheck.pl
1 #!/usr/bin/perl -w
2 ################################################################################
3 #
4 #  apicheck.pl -- generate C source for automated API check
5 #
6 ################################################################################
7 #
8 #  $Revision: 27 $
9 #  $Author: mhx $
10 #  $Date: 2007/08/19 19:41:03 +0200 $
11 #
12 ################################################################################
13 #
14 #  Version 3.x, Copyright (C) 2004-2007, Marcus Holland-Moritz.
15 #  Version 2.x, Copyright (C) 2001, Paul Marquess.
16 #  Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
17 #
18 #  This program is free software; you can redistribute it and/or
19 #  modify it under the same terms as Perl itself.
20 #
21 ################################################################################
22
23 use strict;
24 require 'parts/ppptools.pl';
25
26 if (@ARGV) {
27   my $file = pop @ARGV;
28   open OUT, ">$file" or die "$file: $!\n";
29 }
30 else {
31   *OUT = \*STDOUT;
32 }
33
34 my @f = parse_embed(qw( parts/embed.fnc parts/apidoc.fnc parts/ppport.fnc ));
35
36 my %todo = %{&parse_todo};
37
38 my %tmap = (
39   void => 'int',
40 );
41
42 my %amap = (
43   SP   => 'SP',
44   type => 'int',
45   cast => 'int',
46 );
47
48 my %void = (
49   void     => 1,
50   Free_t   => 1,
51   Signal_t => 1,
52 );
53
54 my %castvoid = (
55   map { ($_ => 1) } qw(
56     Nullav
57     Nullcv
58     Nullhv
59     Nullch
60     Nullsv
61     HEf_SVKEY
62     SP
63     MARK
64     SVt_PV
65     SVt_IV
66     SVt_NV
67     SVt_PVMG
68     SVt_PVAV
69     SVt_PVHV
70     SVt_PVCV
71     SvUOK
72     G_SCALAR
73     G_ARRAY
74     G_VOID
75     G_DISCARD
76     G_EVAL
77     G_NOARGS
78     XS_VERSION
79   ),
80 );
81
82 my %ignorerv = (
83   map { ($_ => 1) } qw(
84     newCONSTSUB
85   ),
86 );
87
88 my %stack = (
89   ORIGMARK       => ['dORIGMARK;'],
90   POPpx          => ['STRLEN n_a;'],
91   POPpbytex      => ['STRLEN n_a;'],
92   PUSHp          => ['dTARG;'],
93   PUSHn          => ['dTARG;'],
94   PUSHi          => ['dTARG;'],
95   PUSHu          => ['dTARG;'],
96   XPUSHp         => ['dTARG;'],
97   XPUSHn         => ['dTARG;'],
98   XPUSHi         => ['dTARG;'],
99   XPUSHu         => ['dTARG;'],
100   UNDERBAR       => ['dUNDERBAR;'],
101   XCPT_TRY_START => ['dXCPT;'],
102   XCPT_TRY_END   => ['dXCPT;'],
103   XCPT_CATCH     => ['dXCPT;'],
104   XCPT_RETHROW   => ['dXCPT;'],
105 );
106
107 my %ignore = (
108   map { ($_ => 1) } qw(
109     svtype
110     items
111     ix
112     dXSI32
113     XS
114     CLASS
115     THIS
116     RETVAL
117     StructCopy
118   ),
119 );
120
121 print OUT <<HEAD;
122 /*
123  * !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
124  * This file is built by $0.
125  * Any changes made here will be lost!
126  */
127
128 #include "EXTERN.h"
129 #include "perl.h"
130
131 #define NO_XSLOCKS
132 #include "XSUB.h"
133
134 #ifdef DPPP_APICHECK_NO_PPPORT_H
135
136 /* This is just to avoid too many baseline failures with perls < 5.6.0 */
137
138 #ifndef dTHX
139 #  define dTHX extern int Perl___notused
140 #endif
141
142 #else
143
144 #define NEED_PL_signals
145 #define NEED_eval_pv
146 #define NEED_grok_bin
147 #define NEED_grok_hex
148 #define NEED_grok_number
149 #define NEED_grok_numeric_radix
150 #define NEED_grok_oct
151 #define NEED_load_module
152 #define NEED_my_snprintf
153 #define NEED_my_strlcat
154 #define NEED_my_strlcpy
155 #define NEED_newCONSTSUB
156 #define NEED_newRV_noinc
157 #define NEED_newSVpvn_share
158 #define NEED_sv_2pv_flags
159 #define NEED_sv_2pvbyte
160 #define NEED_sv_catpvf_mg
161 #define NEED_sv_catpvf_mg_nocontext
162 #define NEED_sv_pvn_force_flags
163 #define NEED_sv_setpvf_mg
164 #define NEED_sv_setpvf_mg_nocontext
165 #define NEED_vload_module
166 #define NEED_vnewSVpvf
167 #define NEED_warner
168
169 #include "ppport.h"
170
171 #endif
172
173 static int    VARarg1;
174 static char  *VARarg2;
175 static double VARarg3;
176
177 HEAD
178
179 if (@ARGV) {
180   my %want = map { ($_ => 0) } @ARGV;
181   @f = grep { exists $want{$_->{name}} } @f;
182   for (@f) { $want{$_->{name}}++ }
183   for (keys %want) {
184     die "nothing found for '$_'\n" unless $want{$_};
185   }
186 }
187
188 my $f;
189 for $f (@f) {
190   $ignore{$f->{name}} and next;
191   $f->{flags}{A} or next;  # only public API members
192
193   $ignore{$f->{name}} = 1; # ignore duplicates
194
195   my $Perl_ = $f->{flags}{p} ? 'Perl_' : '';
196
197   my $stack = '';
198   my @arg;
199   my $aTHX = '';
200
201   my $i = 1;
202   my $ca;
203   my $varargs = 0;
204   for $ca (@{$f->{args}}) {
205     my $a = $ca->[0];
206     if ($a eq '...') {
207       $varargs = 1;
208       push @arg, qw(VARarg1 VARarg2 VARarg3);
209       last;
210     }
211     my($n, $p, $d) = $a =~ /^ (\w+(?:\s+\w+)*)\s*  # type name  => $n
212                               (\**)                # pointer    => $p
213                               (?:\s*const\s*)?     # const
214                               ((?:\[[^\]]*\])*)    # dimension  => $d
215                             $/x
216                      or die "$0 - cannot parse argument: [$a]\n";
217     if (exists $amap{$n}) {
218       push @arg, $amap{$n};
219       next;
220     }
221     $n = $tmap{$n} || $n;
222     if ($n eq 'const char' and $p eq '*' and !$f->{flags}{f}) {
223       push @arg, '"foo"';
224     }
225     else {
226       my $v = 'arg' . $i++;
227       push @arg, $v;
228       $stack .= "  static $n $p$v$d;\n";
229     }
230   }
231
232   unless ($f->{flags}{n} || $f->{flags}{'m'}) {
233     $stack = "  dTHX;\n$stack";
234     $aTHX = @arg ? 'aTHX_ ' : 'aTHX';
235   }
236
237   if ($stack{$f->{name}}) {
238     my $s = '';
239     for (@{$stack{$f->{name}}}) {
240       $s .= "  $_\n";
241     }
242     $stack = "$s$stack";
243   }
244
245   my $args = join ', ', @arg;
246   my $rvt = $f->{ret} || 'void';
247   my $ret;
248   if ($void{$rvt}) {
249     $ret = $castvoid{$f->{name}} ? '(void) ' : '';
250   }
251   else {
252     $stack .= "  $rvt rval;\n";
253     $ret = $ignorerv{$f->{name}} ? '(void) ' : "rval = ";
254   }
255   my $aTHX_args = "$aTHX$args";
256
257   unless ($f->{flags}{'m'} and @arg == 0) {
258     $args = "($args)";
259     $aTHX_args = "($aTHX_args)";
260   }
261
262   print OUT <<HEAD;
263 /******************************************************************************
264 *
265 *  $f->{name}
266 *
267 ******************************************************************************/
268
269 HEAD
270
271   if ($todo{$f->{name}}) {
272     my($ver,$sub) = $todo{$f->{name}} =~ /^5\.(\d{3})(\d{3})$/ or die;
273     for ($ver, $sub) {
274       s/^0+(\d)/$1/
275     }
276     if ($ver < 6 && $sub > 0) {
277       $sub =~ s/0$// or die;
278     }
279     print OUT "#if PERL_VERSION > $ver || (PERL_VERSION == $ver && PERL_SUBVERSION >= $sub) /* TODO */\n";
280   }
281
282   my $final = $varargs
283               ? "$Perl_$f->{name}$aTHX_args"
284               : "$f->{name}$args";
285
286   $f->{cond} and print OUT "#if $f->{cond}\n";
287
288   print OUT <<END;
289 void _DPPP_test_$f->{name} (void)
290 {
291   dXSARGS;
292 $stack
293   {
294 #ifdef $f->{name}
295     $ret$f->{name}$args;
296 #endif
297   }
298
299   {
300 #ifdef $f->{name}
301     $ret$final;
302 #else
303     $ret$Perl_$f->{name}$aTHX_args;
304 #endif
305   }
306 }
307 END
308
309   $f->{cond} and print OUT "#endif\n";
310   $todo{$f->{name}} and print OUT "#endif\n";
311
312   print OUT "\n";
313 }
314
315 @ARGV and close OUT;
316