X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tools%2Fapi_conv.pl;h=60d40dfc9f632ad5a532faaf57b31d7fc9d59e23;hb=4168ddc13dff7bf2479c2229f42b114d75098112;hp=a780ac3adbaee542b2c493d62d417be684a5faf0;hpb=b08ca2b4b451a94ece20207766cd5262fd55179b;p=free-sw%2Fxcb%2Flibxcb diff --git a/tools/api_conv.pl b/tools/api_conv.pl index a780ac3..60d40df 100755 --- a/tools/api_conv.pl +++ b/tools/api_conv.pl @@ -3,12 +3,22 @@ use strict; BEGIN { %::const = map { $_ => 1 } ( + # constants in xcb.h "XCBNone", "XCBCopyFromParent", "XCBCurrentTime", "XCBNoSymbol", "XCBError", "XCBReply", + # renamed constants + "XCBButtonAny", + "XCBButton1", + "XCBButton2", + "XCBButton3", + "XCBButton4", + "XCBButton5", + "XCBHostInsert", + "XCBHostDelete", ); open(CONST, shift) or die "failed to open constants list: $!"; while() @@ -28,18 +38,21 @@ sub convert($$) return "uint$1_t" if /^CARD(8|16|32)$/; return "int$1_t" if /^INT(8|16|32)$/; return "uint8_t" if $_ eq 'BOOL' or $_ eq 'BYTE'; - return $_ if /_/ or !/^XCB(.+)/; + return $_ if /^[A-Z]*_[A-Z_]*$/ or !/^XCB(.+)/; my $const = defined $::const{$_}; $_ = $1; + s/^(GX|RandR|XFixes|XP|XvMC)(.)/uc($1) . "_" . $2/e; + my %abbr = ( "Iter" => "iterator", "Req" => "request", "Rep" => "reply", ); - s/[A-Z](?:[A-Z0-9]*|[a-z0-9]*)(?=[A-Z]|$)/"_" . ($abbr{$&} or lc($&))/eg; + s/([0-9]+|[A-Z](?:[A-Z]*|[a-z]*))_?(?=[0-9A-Z]|$)/"_" . ($abbr{$1} or lc($1))/eg; + $_ = "_family_decnet" if $_ eq "_family_de_cnet"; return "XCB" . uc($_) if $const; $_ .= "_t" unless $fun or /_id$/;