-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathlint
executable file
·124 lines (99 loc) · 2.91 KB
/
lint
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/usr/bin/env perl
use 5.30.0;
use strict;
use warnings;
use open ':std', ':utf8', ':encoding(UTF-8)';
# no feature qw(indirect);
use feature qw(signatures);
no warnings qw(experimental::signatures);
use Getopt::Long;
use DBI;
# my $dbh = DBI->connect('DBI:SQLite:jass.db');
my $dbPath = "jass.db";
my $help = 0;
GetOptions(
"db=s" => \$dbPath,
help => \$help
) or die pod2usage( -verbose => 1 );
pod2usage( -verbose => 2 ) if $help;
pod2usage( -verbose => 1 ) unless @ARGV;
my @files = @ARGV;
my $dbh = DBI->connect("DBI:SQLite:$dbPath");
my $stm = $dbh->prepare('SELECT 1 from annotations where fnname == ? limit 1');
sub check_name {
my $name = shift;
$stm->execute($name);
print "Missing $name\n" unless $stm->fetchrow_array;
}
for my $file (@files) {
say "Linting $file";
open( my $fh, "<", $file ) or die;
my $fn = "";
my $start = 0;
my $end = 0;
my @state = ("nothing");
while ( my $line = <$fh> ) {
if ( $state[0] eq "nothing"
&& $line =~ /^(?:constant\s+)?function\s+(\w+)/ )
{
unshift @state, "function";
$fn = $1;
check_name $fn;
}
elsif ( $state[0] eq "function" && $line =~ /^endfunction/ ) {
shift @state;
}
elsif ($line =~ /^(?:constant\s+)?native\s+(\w+)/
&& $state[0] eq "nothing" )
{
$fn = $1;
check_name $fn;
}
elsif ( $state[0] eq "nothing" && $line =~ m/^\s*globals/ ) {
unshift @state, "globals";
}
elsif ( $line =~ m/^\/\*\*/ ) {
unshift @state, "docstring";
}
elsif ( $state[0] eq "docstring" && $line =~ m(^\*/) ) {
shift @state;
}
elsif ( $state[0] eq "docstring" ) {
# do nothing
}
elsif ( $state[0] eq "globals" && $line =~ m/^\s*endglobals/ ) {
shift @state;
}
elsif ($state[0] eq "nothing"
&& $line =~ m/^type\s+(\w+)\s+extends\s+.+/ )
{
my $type = $1;
check_name $type;
}
elsif ( $state[0] eq "globals" ) {
my $name;
if ( $line =~ /^\s*constant\s+\w+\s+(\w+)\s*=.+$/ ) {
$name = $1;
}
elsif ( $line =~ /^\s*\w+\s+array\s+(\w+)/ ) {
$name = $1;
}
elsif ( $line =~ /^\s*\w+\s+(\w+)/ ) {
$name = $1;
}
check_name $name if $name;
}
}
}
__END__
=head1 NAME
lint - Checks jass files for missing DB entries
=head1 SYNOPSIS
lint [options] [FILES]
Options:
--db Path to jass.db. Default: jass.db
--help Prints this help message
=head1 DESCRIPTION
B<This program> checks for each jass file provided if any top-level definition
has no entry in the database. This can be used see if a new common.j for
example has any new natives/types/globals.