-
Notifications
You must be signed in to change notification settings - Fork 15
/
rjsmin.c
718 lines (618 loc) · 24.8 KB
/
rjsmin.c
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
/*
* Copyright 2011 - 2024
* Andr\xe9 Malo or his licensors, as applicable
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "cext.h"
EXT_INIT_FUNC;
#define RJSMIN_DULL_BIT (1 << 0)
#define RJSMIN_PRE_REGEX_BIT (1 << 1)
#define RJSMIN_REGEX_DULL_BIT (1 << 2)
#define RJSMIN_REGEX_CC_DULL_BIT (1 << 3)
#define RJSMIN_ID_LIT_BIT (1 << 4)
#define RJSMIN_ID_LIT_O_BIT (1 << 5)
#define RJSMIN_ID_LIT_C_BIT (1 << 6)
#define RJSMIN_STRING_DULL_BIT (1 << 7)
#define RJSMIN_SPACE_BIT (1 << 8)
#define RJSMIN_POST_REGEX_OFF_BIT (1 << 9)
#define RJSMIN_A_Z_BIT (1 << 10)
typedef unsigned char rchar;
#ifdef U
#undef U
#endif
#define U(c) ((rchar)(c))
#define RJSMIN_IS_DULL(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_DULL_BIT))
#define RJSMIN_IS_REGEX_DULL(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_REGEX_DULL_BIT))
#define RJSMIN_IS_REGEX_CC_DULL(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_REGEX_CC_DULL_BIT))
#define RJSMIN_IS_STRING_DULL(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_STRING_DULL_BIT))
#define RJSMIN_IS_ID_LITERAL(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_ID_LIT_BIT))
#define RJSMIN_IS_ID_LITERAL_OPEN(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_ID_LIT_O_BIT))
#define RJSMIN_IS_ID_LITERAL_CLOSE(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_ID_LIT_C_BIT))
#define RJSMIN_IS_POST_REGEX_OFF(c) ((U(c) > 127) || \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_POST_REGEX_OFF_BIT))
#define RJSMIN_IS_SPACE(c) ((U(c) <= 127) && \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_SPACE_BIT))
#define RJSMIN_IS_PRE_REGEX_1(c) ((U(c) <= 127) && \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_PRE_REGEX_BIT))
#define RJSMIN_IS_A_Z(c) ((U(c) <= 127) && \
(rjsmin_charmask[U(c) & 0x7F] & RJSMIN_A_Z_BIT))
static const unsigned short rjsmin_charmask[128] = {
396, 396, 396, 396, 396, 396, 396, 396,
396, 396, 2, 396, 396, 2, 396, 396,
396, 396, 396, 396, 396, 396, 396, 396,
396, 396, 396, 396, 396, 396, 396, 396,
396, 687, 588, 653, 765, 653, 143, 588,
687, 205, 655, 239, 143, 239, 141, 648,
765, 765, 765, 765, 765, 765, 765, 765,
765, 765, 143, 143, 653, 143, 653, 143,
653, 765, 765, 765, 765, 765, 765, 765,
765, 765, 765, 765, 765, 765, 765, 765,
765, 765, 765, 765, 765, 765, 765, 765,
765, 765, 765, 683, 513, 197, 653, 765,
588, 1789, 1789, 1789, 1789, 1789, 1789, 1789,
1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789,
1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789,
1789, 1789, 1789, 687, 143, 207, 653, 765
};
static Py_ssize_t
rjsmin(const rchar *source, rchar *target, Py_ssize_t length,
int keep_bang_comments)
{
const rchar
*sentinel = source + length, /* never hit this pointer (source buf) */
*reset, /* reset pointer (source buf) */
*pcreset = NULL, /* pre-comment reset pointer (source buf) */
*pctoken = NULL, /* pre-comment token pointer (target buf)
* Pointing to before the last kept comment, if any */
*rsreset = NULL, /* regex-with-method reset pointer (source buf) */
*xtarget; /* pre-regex-2 target pointer */
rchar *tstart = target, /* Target start pointer for reference */
*rtreset = NULL; /* regex-with-method reset pointer (target buf) */
int rsdot, /* seen dot after regex-with-method pattern? */
post_regex = 0;
rchar c, quote,
spaced = U(' '); /* the last seen kind of space (nl taking prio),
* init with ' ' */
/* main loop */
while (source < sentinel) {
c = *source++;
if (RJSMIN_IS_DULL(c)) {
if (post_regex) post_regex = 0;
if (pctoken) pctoken = NULL;
if (spaced == U('\n')) spaced = U(' ');
if (rsreset) {
/* both a-z and . are covered by "dull" */
if (!rsdot) {
if (c != U('.')) {
/* reset regex-with-method to the starting slash */
source = rsreset;
target = rtreset;
rsreset = NULL;
continue; /* main loop */
}
/* Found a dot after possible regex, looking for a-z now */
rsdot = 1;
}
else if (!RJSMIN_IS_A_Z(c)) {
/* reset regex-with-method to the starting slash */
source = rsreset;
target = rtreset;
rsreset = NULL;
continue; /* main loop */
}
else {
/* Successfull finish the regex-with-method match */
rsreset = NULL;
}
}
*target++ = c;
continue; /* main loop */
}
switch (c) {
/* String */
case U('\''): case U('"'): case U('`'):
if (post_regex) post_regex = 0;
if (pctoken) pctoken = NULL;
if (spaced == U('\n')) spaced = U(' ');
if (rsreset) {
/* reset regex-with-method to the starting slash */
source = rsreset;
target = rtreset;
rsreset = NULL;
continue; /* main loop */
}
reset = source;
*target++ = quote = c;
/* string loop */
while (source < sentinel) {
c = *source++;
*target++ = c;
if (RJSMIN_IS_STRING_DULL(c))
continue; /* string loop */
switch (c) {
case U('\''): case U('"'): case U('`'):
if (c == quote)
goto cont; /* main loop */
continue; /* string loop */
case U('\\'):
if (source < sentinel) {
c = *source++;
*target++ = c;
if (c == U('\r') && source < sentinel
&& *source == U('\n'))
*target++ = *source++;
}
continue; /* string loop */
case U('\r'): case U('\n'):
if (quote != U('`'))
break; /* string reset */
continue; /* string loop */
}
break; /* string reset */
}
/* string reset */
target -= source - reset;
source = reset;
continue; /* main loop */
/* Comment or Regex or something else entirely */
case U('/'):
if (!(source < sentinel)) {
if (post_regex) post_regex = 0;
if (pctoken) pctoken = NULL;
if (spaced == U('\n')) spaced = U(' ');
if (rsreset) {
/* reset regex-with-method to the starting slash */
source = rsreset;
target = rtreset;
rsreset = NULL;
continue; /* main loop */
}
*target++ = c;
}
else {
switch (*source) {
/* Comment */
case U('*'): case U('/'):
goto skip_or_copy_ws;
/* Regex or slash */
default:
if (rsreset) {
/* reset regex-with-method to the starting slash */
if (post_regex) post_regex = 0;
if (pctoken) pctoken = NULL;
if (spaced == U('\n')) spaced = U(' ');
source = rsreset;
target = rtreset;
rsreset = NULL;
continue; /* main loop */
}
xtarget = NULL;
if ( target == tstart
|| RJSMIN_IS_PRE_REGEX_1(*((pctoken ? pctoken : target)
- 1))
|| (
(xtarget = pctoken ? pctoken : target)
&& (xtarget - tstart >= 6)
&& *(xtarget - 1) == U('n')
&& *(xtarget - 2) == U('r')
&& *(xtarget - 3) == U('u')
&& *(xtarget - 4) == U('t')
&& *(xtarget - 5) == U('e')
&& *(xtarget - 6) == U('r')
&& (
xtarget - tstart == 6
|| !RJSMIN_IS_ID_LITERAL(*(xtarget - 7))
)
)) {
/* nothing to do here, continuing down below
* We could unset rsreset here, but we know it already
* is. */
;
}
else if (*((pctoken ? pctoken : target) - 1) == U(')')) {
xtarget = NULL;
rsreset = source;
rtreset = target + 1;
rsdot = 0;
}
else {
/* Just a slash */
if (post_regex) post_regex = 0;
if (pctoken) pctoken = NULL;
if (spaced == U('\n')) spaced = U(' ');
*target++ = c;
continue; /* main loop */
}
if (post_regex) post_regex = 0;
if (pctoken) pctoken = NULL;
reset = source;
if (spaced == U('\n')) {
spaced = U(' ');
if (xtarget)
*target++ = U('\n');
}
*target++ = U('/');
/* regex loop */
while (source < sentinel) {
c = *source++;
*target++ = c;
if (RJSMIN_IS_REGEX_DULL(c))
continue; /* regex loop */
switch (c) {
case U('/'):
while (source < sentinel
&& RJSMIN_IS_A_Z(*source))
*target++ = *source++;
post_regex = !rsreset;
/* This check is supposed to make it faster.
* It doesn't. It slows it down. I wonder why...
*/
/*
* if (!post_regex
* && source < sentinel - 1
* && *source == U('.')
* && RJSMIN_IS_A_Z(*(source + 1)))
* rsreset = NULL;
*/
goto cont; /* main loop */
case U('\\'):
if (source < sentinel) {
c = *source++;
*target++ = c;
if (c == U('\r') || c == U('\n'))
break; /* regex reset */
}
continue; /* regex loop */
case U('['):
/* regex CC loop */
while (source < sentinel) {
c = *source++;
*target++ = c;
if (RJSMIN_IS_REGEX_CC_DULL(c))
continue; /* regex CC loop */
switch (c) {
case U('\\'):
if (source < sentinel) {
c = *source++;
*target++ = c;
if (c == U('\r') || c == U('\n'))
break; /* regex reset */
}
continue; /* regex CC loop */
case U(']'):
goto cont_regex; /* regex loop */
}
}
break; /* regex reset */
}
break; /* regex reset */
cont_regex:
continue; /* regex loop */
}
/* regex reset */
target -= source - reset;
source = reset;
rsreset = NULL;
continue; /* main loop */
}
}
continue; /* main loop */ /* LCOV_EXCL_LINE */
/* Whitespace */
default:
skip_or_copy_ws:
/* remember if we've seen a newline, start with: no */
quote = U(' ');
--source;
/* space loop */
while (source < sentinel) {
c = *source++;
if (RJSMIN_IS_SPACE(c))
continue; /* space loop */
switch (c) {
case U('\r'): case U('\n'):
quote = U('\n');
continue; /* space loop */
/* Can only be a comment at this point
* (or ending prematurely) */
case U('/'):
if (source < sentinel) {
switch (*source) {
/* multiline comment */
case U('*'):
reset = source++;
/* copy bang comment, if requested */
if ( keep_bang_comments && source < sentinel
&& *source == U('!')) {
if (!pctoken) {
/* Backtracking if ending prematurely */
pctoken = target;
pcreset = reset;
}
*target++ = U('/');
*target++ = U('*');
*target++ = *source++;
/* comment loop */
while (source < sentinel) {
c = *source++;
*target++ = c;
if (c == U('*') && source < sentinel
&& *source == U('/')) {
*target++ = *source++;
reset = NULL;
break; /* continue space loop */
}
}
if (!reset)
continue; /* space loop */
/* comment reset */
target -= source - reset;
source = reset;
if (pcreset == reset) {
pctoken = NULL;
pcreset = NULL;
}
}
/* strip regular comment */
else {
while (source < sentinel) {
c = *source++;
if (c == U('*') && source < sentinel
&& *source == U('/')) {
++source;
reset = NULL;
break; /* continue space loop */
}
}
if (!reset)
continue; /* space loop */
/* comment reset: fallback to slash */
source = reset;
*target++ = U('/');
}
goto cont; /* main loop */
/* single line comment */
case U('/'):
++source;
/* single line comment loop */
while (source < sentinel) {
c = *source++;
switch (c) {
case U('\n'):
break; /* continue space loop */
case U('\r'):
if (source < sentinel
&& *source == U('\n'))
++source;
break; /* continue space loop */
default:
continue; /* single line comment loop */
}
break; /* continue space loop */
}
quote = U('\n');
continue; /* space loop */
}
}
}
/* No more spacy character found */
--source;
break; /* end space loop */
}
/* Copy a space if needed */
if ((tstart < (pctoken ? pctoken : target) && source < sentinel)
&& ((quote == U('\n')
&& ((RJSMIN_IS_ID_LITERAL_CLOSE(*((pctoken ?
pctoken : target) - 1))
&& RJSMIN_IS_ID_LITERAL_OPEN(*source))
|| (post_regex
&& RJSMIN_IS_POST_REGEX_OFF(*source)
&& !(post_regex = 0))))
||
(quote == U(' ') && !pctoken
&& ((RJSMIN_IS_ID_LITERAL(*(target - 1))
&& RJSMIN_IS_ID_LITERAL(*source))
|| (source < sentinel
&& ((*(target - 1) == U('+')
&& *source == U('+'))
|| (*(target - 1) == U('-')
&& *source == U('-')))))))) {
*target++ = quote;
}
pcreset = NULL;
spaced = quote;
}
cont:
continue; /* main loop */
}
return (Py_ssize_t)(target - tstart);
}
PyDoc_STRVAR(rjsmin_jsmin__doc__,
"jsmin(script, keep_bang_comments=False)\n\
\n\
Minify javascript based on `jsmin.c by Douglas Crockford`_\\.\n\
\n\
Instead of parsing the stream char by char, it uses a regular\n\
expression approach which minifies the whole script with one big\n\
substitution regex.\n\
\n\
.. _jsmin.c by Douglas Crockford:\n\
http://www.crockford.com/javascript/jsmin.c\n\
\n\
:Note: This is a hand crafted C implementation built on the regex\n\
semantics.\n\
\n\
Parameters:\n\
script (str):\n\
Script to minify\n\
\n\
keep_bang_comments (bool):\n\
Keep comments starting with an exclamation mark? (``/*!...*/``)\n\
\n\
Returns:\n\
str: Minified script");
static PyObject *
rjsmin_jsmin(PyObject *self, PyObject *args, PyObject *kwds)
{
PyObject *script, *keep_bang_comments_ = NULL, *result;
static char *kwlist[] = {"script", "keep_bang_comments", NULL};
Py_ssize_t slength, length;
int keep_bang_comments;
#ifdef EXT2
int uni;
#endif
#ifdef EXT3
int bytes;
rchar *bytescript;
#endif
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|O", kwlist,
&script, &keep_bang_comments_))
LCOV_EXCL_LINE_RETURN(NULL);
if (!keep_bang_comments_)
keep_bang_comments = 0;
else {
keep_bang_comments = PyObject_IsTrue(keep_bang_comments_);
if (keep_bang_comments == -1)
return NULL;
}
#ifdef EXT2
if (PyUnicode_Check(script)) {
if (!(script = PyUnicode_AsUTF8String(script)))
LCOV_EXCL_LINE_RETURN(NULL);
uni = 1;
}
else if (!PyString_Check(script)) {
PyErr_SetString(PyExc_TypeError, "Unexpected type");
return NULL;
}
else {
if (!(script = PyObject_Str(script)))
LCOV_EXCL_LINE_RETURN(NULL);
uni = 0;
}
slength = PyString_GET_SIZE(script);
if (!(result = PyString_FromStringAndSize(NULL, slength))) {
LCOV_EXCL_START
Py_DECREF(script);
return NULL;
LCOV_EXCL_STOP
}
Py_BEGIN_ALLOW_THREADS
length = rjsmin((rchar *)PyString_AS_STRING(script),
(rchar *)PyString_AS_STRING(result),
slength, keep_bang_comments);
Py_END_ALLOW_THREADS
Py_DECREF(script);
if (length < 0) {
LCOV_EXCL_START
Py_DECREF(result);
return NULL;
LCOV_EXCL_STOP
}
if (length != slength && _PyString_Resize(&result, length) == -1)
LCOV_EXCL_LINE_RETURN(NULL);
if (uni) {
script = PyUnicode_DecodeUTF8(PyString_AS_STRING(result),
PyString_GET_SIZE(result), "strict");
Py_DECREF(result);
return script;
}
return result;
#else /* EXT3 */
if (PyUnicode_Check(script)) {
bytes = 0;
script = PyUnicode_AsUTF8String(script);
bytescript = (rchar *)PyBytes_AS_STRING(script);
slength = PyBytes_GET_SIZE(script);
}
else if (PyBytes_Check(script)) {
bytes = 1;
Py_INCREF(script);
bytescript = (rchar *)PyBytes_AS_STRING(script);
slength = PyBytes_GET_SIZE(script);
}
else if (PyByteArray_Check(script)) {
bytes = 2;
Py_INCREF(script);
bytescript = (rchar *)PyByteArray_AS_STRING(script);
slength = PyByteArray_GET_SIZE(script);
}
else {
PyErr_SetString(PyExc_TypeError, "Unexpected type");
return NULL;
}
if (!(result = PyBytes_FromStringAndSize(NULL, slength))) {
LCOV_EXCL_START
Py_DECREF(script);
return NULL;
LCOV_EXCL_STOP
}
Py_BEGIN_ALLOW_THREADS
length = rjsmin(bytescript, (rchar *)PyBytes_AS_STRING(result),
slength, keep_bang_comments);
Py_END_ALLOW_THREADS
Py_DECREF(script);
if (length < 0) {
LCOV_EXCL_START
Py_DECREF(result);
return NULL;
LCOV_EXCL_STOP
}
if (!bytes) {
script = PyUnicode_DecodeUTF8(PyBytes_AS_STRING(result), length,
"strict");
Py_DECREF(result);
return script;
}
if (bytes == 1) {
if (length != slength) {
_PyBytes_Resize(&result, length);
}
return result;
}
/* bytes == 2: bytearray */
script = PyByteArray_FromStringAndSize(PyBytes_AS_STRING(result), length);
Py_DECREF(result);
return script;
#endif
}
/* ------------------------ BEGIN MODULE DEFINITION ------------------------ */
EXT_METHODS = {
{"jsmin",
EXT_CFUNC(rjsmin_jsmin), METH_VARARGS | METH_KEYWORDS,
rjsmin_jsmin__doc__},
{NULL} /* Sentinel */
};
PyDoc_STRVAR(EXT_DOCS_VAR,
"C implementation of rjsmin\n\
==========================\n\
\n\
C implementation of rjsmin.");
EXT_DEFINE(EXT_MODULE_NAME, EXT_METHODS_VAR, EXT_DOCS_VAR);
EXT_INIT_FUNC {
PyObject *m;
/* Create the module and populate stuff */
if (!(m = EXT_CREATE(&EXT_DEFINE_VAR)))
EXT_INIT_ERROR(LCOV_EXCL_LINE(NULL));
EXT_ADD_UNICODE(m, "__author__", "Andr\xe9 Malo", "latin-1");
EXT_ADD_STRING(m, "__version__", STRINGIFY(EXT_VERSION));
EXT_INIT_RETURN(m);
}
/* ------------------------- END MODULE DEFINITION ------------------------- */