-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJavascriptMinifier.phpclass
executable file
·206 lines (163 loc) · 6.54 KB
/
JavascriptMinifier.phpclass
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?php
/**************************************************************************************************************
NAME
JavascriptMinifier.phpclass
DESCRIPTION
Minifier for javascript sources.
AUTHOR
Christian Vigh, 10/2015.
HISTORY
[Version : 1.0] [Date : 2015/10/16] [Author : CV]
Initial version.
[Version : 1.0.1] [Date : 2016/09/01] [Author : CV]
. Regular expression recognition is conditioned by the character immediately before the starting slash
(not counting spaces). The ':' character did not belong to this list, so it gave strange results in
such constructs defining objects :
{ field : /some regex/ }
especially if the regex contains Unicode characters.
**************************************************************************************************************/
require_once ( dirname ( __FILE__ ) . "/Minifier.phpclass" ) ;
/*==============================================================================================================
JavascriptMinifier class -
Minifier for javascript sources.
==============================================================================================================*/
class JavascriptMinifier extends Minifier
{
// Token type for regular expressions
const TOKEN_REGEX = 100 ;
// Expected characters before a regular expression - Note that '' corresponds to type TOKEN_NONE
// It appears as the last element since it needs to be tested only once
private static $SymbolsBeforeRegex = [ '(', '=', ';', '!', '>', '<', ':', '' ] ;
// List of symbols for which it is safer to prepend a newline
private static $ForceNewlineBefore = [] ;
/*--------------------------------------------------------------------------------------------------------------
Constructor -
Initializes the parent minifier class.
*-------------------------------------------------------------------------------------------------------------*/
public function __construct ( )
{
static $single_comments = [ '//' ] ;
static $multi_comments =
[
[
'start' => '/*',
'end' => '*/',
'nested' => false
]
] ;
static $quoted_strings =
[
[
'quote' => '"',
'escape' => '\\',
'continuation' => "\\\n"
],
[
'quote' => "'",
'escape' => '\\',
'continuation' => "\\\n"
]
] ;
static $tokens =
[
'===', '==', '=', '!==', '!=', '<=', '>=', '<', '>', '(', ')', '{', '}', '[', ']',
'++', '--', '+=', '-=', '*=', '/=', '%=', '+', '-', '*', '/', '%', '~', '!',
'.', ',', ';', '||', '&&', ':'
] ;
$this -> SetComments ( $single_comments, $multi_comments ) ;
$this -> SetQuotedStrings ( $quoted_strings ) ;
$this -> SetContinuation ( "\\" ) ;
$this -> SetIdentifierRegex ( '[a-z_\$][a-z0-9_\$]*' ) ;
$this -> SetTokens ( $tokens ) ;
parent::__construct ( ) ;
}
/*--------------------------------------------------------------------------------------------------------------
MinifyData -
Process the input stream.
*-------------------------------------------------------------------------------------------------------------*/
protected function MinifyData ( )
{
$data = '' ;
$offset = 0 ;
$token = null ;
$token_type = self::TOKEN_NONE ;
$last_token = '' ;
$last_token_type = self::TOKEN_NONE ;
$last_real_token = '' ;
// Process every token of the input stream
while ( $this -> GetNextToken ( $offset, $token, $token_type ) )
{
// Check if we need to prepend a newline
if ( in_array ( $token, self::$ForceNewlineBefore ) )
$token = "\n$token" ;
switch ( $token )
{
// Ignore newlines
case "\n" :
break ;
// Other token types
default :
// Append a space after each identifier
if ( $token_type == self::TOKEN_IDENTIFIER )
{
$token .= ' ' ;
if ( $last_token == '}' || $last_token == ']' || $last_token == ')')
$data .= "\n" ;
}
// Detect regular expressions
else if ( $token == '/' &&
( in_array ( $last_token, self::$SymbolsBeforeRegex ) ||
$last_token == 'return' ) )
{
$this -> ProcessRegex ( $this -> Content, $offset, $token, '/' ) ;
$token_type = self::TOKEN_REGEX ;
}
// '+' followed by '++' (or '++' followed by '+') : we need to keep a space between both
else if ( ( $last_token == '+' && $token == '++' ) ||
( $last_token == '++' && $token == '+' ) ||
( $last_token == '-' && $token == '--' ) ||
( $last_token == '--' && $token == '-' ) )
{
$data .= ' ' ;
}
// Remove any previous trailing space if the current element is not numeric
else if ( $token_type == self::TOKEN_ELEMENT && ! is_numeric ( $token ) )
$data = rtrim ( $data ) ;
if ( $last_real_token == "\n" && $last_token != '}' && $last_token != ';' )
$data .= "\n" ;
$data .= $token ;
}
// Remember last non-space token
if ( $token_type != self::TOKEN_SPACE && $token_type != self::TOKEN_NEWLINE )
{
$last_token = trim ( $token ) ;
$last_token_type = $token_type ;
}
$last_real_token = $token ;
}
return ( $data ) ;
}
/*--------------------------------------------------------------------------------------------------------------
ProcessRegex -
Captures a whole regular expression.
*-------------------------------------------------------------------------------------------------------------*/
protected function ProcessRegex ( $content, &$offset, &$token, $stop_char )
{
while ( isset ( $content [ $offset ] ) && $content [ $offset ] != $stop_char )
{
if ( $content [ $offset ] == '\\' )
{
if ( ! isset ( $content [ ++ $offset ] ) )
throw ( new MinifierException ( "Unterminated escape in regular expression at line #{$this -> CurrentLine}." ) ) ;
$token .= '\\' ;
}
$token .= $content [ $offset ] ;
$offset ++ ;
}
if ( ! isset ( $content [ $offset ] ) )
throw ( new MinifierException ( "Unterminated regular expression at line #{$this -> CurrentLine}." ) ) ;
$this -> CurrentLine += substr_count ( $token, "\n" ) ;
$token .= $stop_char ;
$offset ++ ;
}
}