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
|
#!/usr/bin/perl -plw
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(<CONST>)
{
chomp;
die "invalid constant name: \"$_\"" unless /^XCB[A-Za-z0-9_]*$/;
$::const{$_} = 1;
}
close(CONST);
}
sub convert($$)
{
local $_ = shift;
my ($fun) = @_;
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 /^[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/([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$/;
return "xcb" . $_;
}
s/([_A-Za-z][_A-Za-z0-9]*)([ \t]*\()?/convert($1, defined $2) . ($2 or "")/eg;
|