1 # Make prototypes from .c files
17 my $private_func_re = "^_";
24 getopts
('x:m:o:p:dqE:R:P:') || die "foo";
42 $private_func_re = $opt_R;
45 'multiline-proto' => 1,
47 'function-blocking' => 0,
48 'gnuc-attribute' => 1,
52 foreach $i (split(/,/, $opt_m)) {
54 $flags{"multiline-proto"} = 0;
56 $flags{"function-blocking"} = 0;
57 $flags{"gnuc-attribute"} = 0;
60 if(substr($i, 0, 3) eq "no-") {
61 $flags{substr($i, 3)} = 0;
72 open(EXP
, '<', $opt_x) || die "open ${opt_x}";
73 my $obj = JSON
->new->utf8->decode(<EXP
>);
76 foreach my $x (keys %$obj) {
77 if (defined $obj->{$x}->{"export"}) {
78 $exported{$x} = $obj->{$x};
80 if (defined $obj->{$x}->{"deprecated"}) {
81 $deprecated{$x} = $obj->{$x}->{"deprecated"};
87 print $brace, " ", $_ if($debug);
92 if ( s@
/\
*\
*(.*)@@
) { $comment = 1; $doxygen = 1; $funcdoc = $1;
93 } elsif ( s@
/\
*.*@@
) { $comment = 1;
94 } elsif ($comment && s@
.*\
*/@@
) { $comment = 0; $doxygen = 0;
95 } elsif ($doxygen) { $funcdoc .= $_; next;
96 } elsif ($comment) { next; }
98 # Handle CPP #define's
99 $define = 1 if /^\s*\#\s*define/;
101 $define = 0 if ! /\\$/;
108 if($if_0 && /^\#endif/) {
131 if(!/^static/ && !/^PRIVATE/){
133 if(m/(.*)(__attribute__\s?\(.*\))/) {
137 if(m/(.*)\s(\w+DEPRECATED_FUNCTION)\s?(\(.*\))(.*)/) {
138 $depfunction{$2} = 1;
142 if(m/(.*)\s(\w+DEPRECATED)(.*)/) {
146 if(m/(.*)\s(HEIMDAL_\w+_ATTRIBUTE)\s?(\(.*\))?(.*)/) {
154 while(s/\(([^()]*),(.*)\)/($1\$$2)/g){}
155 s/\<\s*void\s*\>/<>/;
156 # remove parameter names
157 if($opt_P eq "remove") {
158 s/(\s*)([a-zA-Z0-9_]+)([,>])/$3/g;
160 s/\(\*(\s*)([a-zA-Z0-9_]+)\)/(*)/g;
161 } elsif($opt_P eq "comment") {
162 s/([a-zA-Z0-9_]+)([,>])/\/\
*$1\
*\
/$2/g;
163 s/\(\*([a-zA-Z0-9_]+)\)/(*\/\
*$1\
*\
/)/g;
166 # add newlines before parameters
167 if($flags{"multiline-proto"}) {
174 # match function name
175 /([a-zA-Z0-9_]+)\s*\</;
184 # only add newline if more than one parameter
185 if($flags{"multiline-proto"} && /,/){
191 # insert newline before function name
192 if($flags{"multiline-proto"}) {
193 s/(.*)\s([a-zA-Z0-9_]+ \Q$LP\E)/$1\n$2/;
199 $documentation{$f} = $funcdoc;
202 if ($apple && exists $exported{$f}) {
203 $ios = $exported{$f}{ios
};
204 $ios = "NA" if (!defined $ios);
205 $mac = $exported{$f}{macos
};
206 $mac = "NA" if (!defined $mac);
207 die "$f neither" if ($mac eq "NA" and $ios eq "NA");
208 $_ = $_ . " __OSX_AVAILABLE_STARTING(__MAC_${mac}, __IPHONE_${ios})";
210 if (exists $deprecated{$f}) {
211 $_ = $_ . " GSSAPI_DEPRECATED_FUNCTION(\"$deprecated{$f}\")";
212 $depfunction{GSSAPI_DEPRECATED_FUNCTION
} = 1;
227 $line = $line . " " . $_;
231 die "reached end of code and still in doxygen comment" if ($doxygen);
232 die "reached end of code and still in comment" if ($comment);
244 open(OUT
, ">${opt_o}.new");
245 $block = &foo
($opt_o);
247 $block = "__public_h__";
251 open(PRIV
, ">${opt_p}.new");
252 $private = &foo
($opt_p);
254 $private = "__private_h__";
260 $public_h_header .= "/* This is a generated file */
267 $public_h_header .= "#ifdef __STDC__
280 $public_h_header .= "#include <stdarg.h>
284 $public_h_trailer = "";
286 $private_h_header = "/* This is a generated file */
292 $private_h_header .= "#ifdef __STDC__
305 $private_h_header .= "#include <stdarg.h>
309 $private_h_trailer = "";
312 foreach(sort keys %funcs){
313 if(/^(DllMain|main)$/) { next }
314 if ($funcs{$_} =~ /\^/) {
315 $beginblock = "#ifdef __BLOCKS__\n";
316 $endblock = "#endif /* __BLOCKS__ */\n";
318 $beginblock = $endblock = "";
320 # if we have an export table and doesn't have content, or matches private RE
321 if((scalar(keys(%exported)) ne 0 && !exists $exported{$_} ) || /$private_func_re/) {
322 $private_h .= $beginblock;
323 # if ($apple and not /$private_func_re/) {
324 # $private_h .= "#define $_ __ApplePrivate_${_}\n";
326 $private_h .= $funcs{$_} . "\n" ;
327 $private_h .= $endblock . "\n";
328 if($funcs{$_} =~ /__attribute__/) {
329 $private_attribute_seen = 1;
332 if($documentation{$_}) {
333 $public_h .= "/**\n";
334 $public_h .= "$documentation{$_}";
335 $public_h .= " */\n\n";
337 if($flags{"function-blocking"}) {
339 if($exported{$_} =~ /proto/) {
340 $public_h .= "#if !defined(HAVE_$fupper) || defined(NEED_${fupper}_PROTO)\n";
342 $public_h .= "#ifndef HAVE_$fupper\n";
345 $public_h .= $beginblock . $funcs{$_} . "\n" . $endblock;
346 if($funcs{$_} =~ /__attribute__/) {
347 $public_attribute_seen = 1;
349 if($flags{"function-blocking"}) {
350 $public_h .= "#endif\n";
356 if($flags{"gnuc-attribute"}) {
357 if ($public_attribute_seen) {
358 $public_h_header .= "#if !defined(__GNUC__) && !defined(__attribute__)
359 #define __attribute__(x)
365 if ($private_attribute_seen) {
366 $private_h_header .= "#if !defined(__GNUC__) && !defined(__attribute__)
367 #define __attribute__(x)
376 foreach (keys %depfunction) {
377 $depstr .= "#ifndef $_
378 #ifndef __has_extension
379 #define __has_extension(x) 0
380 #define ${_}has_extension 1
382 #if __has_extension(attribute_deprecated_with_message)
383 #define $_(x) __attribute__((__deprecated__(x)))
384 #elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1 )))
385 #define $_(X) __attribute__((__deprecated__))
389 #ifdef ${_}has_extension
390 #undef __has_extension
391 #undef ${_}has_extension
397 $public_h_trailer .= "#undef $_
400 $private_h_trailer .= "#undef $_
406 $public_h_header .= $depstr;
407 $private_h_header .= $depstr;
411 $public_h_header .= "#ifdef __cplusplus
416 $public_h_trailer = "#ifdef __cplusplus
420 " . $public_h_trailer;
424 $public_h_header .= "#ifndef $opt_E
425 #ifndef ${opt_E}_FUNCTION
427 #define ${opt_E}_FUNCTION __declspec(dllimport)
429 #define ${opt_E}_FUNCTION
432 #ifndef ${opt_E}_NORETURN_FUNCTION
434 #define ${opt_E}_NORETURN_FUNCTION __declspec(dllimport noreturn)
436 #define ${opt_E}_NORETURN_FUNCTION
439 #ifndef ${opt_E}_CALL
441 #define ${opt_E}_CALL __stdcall
443 #define ${opt_E}_CALL
446 #ifndef ${opt_E}_VARIABLE
448 #define ${opt_E}_VARIABLE __declspec(dllimport)
450 #define ${opt_E}_VARIABLE
456 $private_h_header .= "#ifndef $opt_E
457 #ifndef ${opt_E}_FUNCTION
459 #define ${opt_E}_FUNCTION __declspec(dllimport)
461 #define ${opt_E}_FUNCTION
464 #ifndef ${opt_E}_NORETURN_FUNCTION
466 #define ${opt_E}_NORETURN_FUNCTION __declspec(dllimport noreturn)
468 #define ${opt_E}_NORETURN_FUNCTION
471 #ifndef ${opt_E}_CALL
473 #define ${opt_E}_CALL __stdcall
475 #define ${opt_E}_CALL
478 #ifndef ${opt_E}_VARIABLE
480 #define ${opt_E}_VARIABLE __declspec(dllimport)
482 #define ${opt_E}_VARIABLE
489 $public_h_trailer .= $undepstr;
490 $private_h_trailer .= $undepstr;
492 if ($public_h ne "" && $flags{"header"}) {
493 $public_h = $public_h_header . $public_h .
494 $public_h_trailer . "#endif /* DOXY */\n#endif /* $block */\n";
496 if ($private_h ne "" && $flags{"header"}) {
497 $private_h = $private_h_header . $private_h .
498 $private_h_trailer . "#endif /* $private */\n";
505 print PRIV
$private_h;
513 if (compare
("${opt_o}.new", ${opt_o
}) != 0) {
514 printf("updating ${opt_o}\n");
515 rename("${opt_o}.new", ${opt_o
});
517 unlink("${opt_o}.new");
522 if (compare
("${opt_p}.new", ${opt_p
}) != 0) {
523 printf("updating ${opt_p}\n");
524 rename("${opt_p}.new", ${opt_p
});
526 unlink("${opt_p}.new");