-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompress.js.pl
executable file
·48 lines (40 loc) · 1.19 KB
/
compress.js.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
%jswNamesMap = '';
$jswNamesCount = 0;
%privNamesMap = '';
$privNamesCount = 0;
$tmpOut = '';
$out = '';
open (LOG, ">/tmp/jscompress.log") || warn "Could not open /tmp/jscompress.log file for logging!";
while (<>) {
# Record _GLOB_ global variables and map them to _jw_0, _jw_1, ...
while (/(_GLOB_\w+)/isg) {
if (!$jswNamesMap{$1}) {
$jswNamesMap{$1} = "_jw_".$jswNamesCount;
$jswNamesCount++;
}
}
while (/(_PRIV_\w+)/isg) {
if (!$privNamesMap{$1}) {
$privNamesMap{$1} = "_v".$privNamesCount;
$privNamesCount++;
}
}
# Last thing to do ... Record if non-empty
if ($_) {
$tmpOut .= $_;
}
}
$out = $tmpOut;
# Replace all global long GLOB_ names with short _jw_ variables
for $k (keys %jswNamesMap) {
print LOG "REPLACING '$k' with '".$jswNamesMap{$k}."'\n";
$out =~ s/([^\w_])$k([^\w\d_])/$1$jswNamesMap{$k}$2/isg;
}
# Replace all private _PRIV_ names with short _v variables
for $k (keys %privNamesMap) {
print LOG "REPLACING '$k' with '".$privNamesMap{$k}."'\n";
$out =~ s/([^\w_])$k([^\w\d_])/$1$privNamesMap{$k}$2/isg;
}
# Output the compressed JS
print $out;
close LOG;