forked from ArcBees/gwtquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extractInterface.pl
85 lines (77 loc) · 2.42 KB
/
extractInterface.pl
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
#!/usr/bin/perl
## Just a perl script to extract an interface from a class.
## It extract all public methods and copies the javadoc.
## - With the option --lazy it does the work for Lazy classes
## and generates the file with the 'Lazy' prefix
## - Without --lazy it generates a file with the 'I' prefix
my ($i, $o, $lazy);
foreach (@ARGV) {
if (/^--input=(.*)$/) {
$o = $i = $1;
} elsif (/^--lazy$/) {
$lazy = 1;
}
}
my $iclass = $1 if ($i =~ /^.*\/([^\.]+)\.java$/);
my $oclass = ($lazy ? "Lazy" : "I") . $iclass;
$o =~ s/$iclass/$oclass/;
my $c = 0;
open(F, $i) || die $!;
my ($in, $com, $ingq, $inclass, $inh, $head, $body, $inmeth, $meth, $dep) = (0, "", 0, 0, 1, "", "", 0, "", 0);
my ($a, $b) = (0,0);
while(<F>) {
s/\r+//g;
s/^\s+//g;
s/^(\*.*)$/ $1/g;
$inh = 0 if (/^\/\*\*/);
$head .= $_ if ($inh);
$inclass=1 if (!$in && $ingq && m/(^|\s+|\()(class|enum|new) /);
if ($ingq && !$inclass) {
$in = 1 if (/^\/\**\s*$/);
$com = "" if (/^\/\**\s*$/);
$dep = 1 if (/^\s*\@Deprecated/);
next if /static/;
next if /$iclass\s*\(/;
$inmeth = 1 if (!$inmeth && !$in && /(public .*?\(.*)\s*$/);
$dep = $inmeth = 0 if ($dep && $inmeth);
$dep = $in = 0 if ($dep && $in);
$meth .= $_ if ($inmeth);
if ($inmeth && /\{/) {
$meth =~ s/final\s+//g;
$meth =~ s/public\s+//g;
$meth =~ s/\{\s*//g;
$meth =~ s/\s+$//g;
if (!/$oclass/) {
$meth =~ s/([^\(]*?)$iclass(\s+.*\()/$1$oclass<T>$2/g if ($lazy);
$meth =~ s/\n/ /g;
$meth =~ s/ +/ /g;
$body .= "$com" if (!$in);
$body .= " " .$meth . ";\n\n";
}
$com = "";
$meth = "";
$inmeth = 0;
}
$com .= " " . $_ if ($in);
$in = 0 if (/^\s+\*\/\s*$/);
}
if ($inclass) {
my $l = $_;
$a ++ while($l =~ /(\{)/g);
$b ++ while($l =~ /(\})/g);
$inclass = $a = $b = 0 if ($a == $b);
}
$ingq = 1 if (!$ingq && m/(^|\s+)class /);
#$body .= "$c $ingq $inclass $a $b\n";
$c ++;
}
close(F);
my $class = "/**\n * $oclass.\n * \@param <T>\n */\npublic interface $oclass";
if ($lazy) {
$class .= "<T> extends LazyBase<T>" if ($lazy);
$head .= "import com.google.gwt.query.client.GQuery.*;\n";
$head .= "import com.google.gwt.query.client.LazyBase;\n\n";
}
open(F, ">$o") || die $!;
print F $head . $class . "{\n\n" . $body . "}\n";
close(F);