26 |
#include <string.h> |
#include <string.h> |
27 |
|
|
28 |
#include <jsapi.h> |
#include <jsapi.h> |
29 |
|
#include <jsarena.h> |
30 |
#include <jsatom.h> |
#include <jsatom.h> |
31 |
|
#include <jsemit.h> |
32 |
|
#include <jsexn.h> |
33 |
#include <jsfun.h> |
#include <jsfun.h> |
34 |
#include <jsinterp.h> |
#include <jsinterp.h> |
35 |
|
#include <jsiter.h> |
36 |
#include <jsparse.h> |
#include <jsparse.h> |
37 |
#include <jsregexp.h> |
#include <jsregexp.h> |
38 |
#include <jsscope.h> |
#include <jsscope.h> |
39 |
#include <jsstr.h> |
#include <jsstr.h> |
40 |
|
|
41 |
#include "encoding.h" |
#include "encoding.h" |
42 |
|
#include "global.h" |
43 |
|
#include "highlight.h" |
44 |
#include "resource-manager.h" |
#include "resource-manager.h" |
45 |
#include "util.h" |
#include "util.h" |
46 |
|
|
47 |
|
struct IfDirective { |
48 |
|
const jschar * condition_start; |
49 |
|
const jschar * condition_end; |
50 |
|
uint16_t start_line; |
51 |
|
uint16_t end_line; |
52 |
|
struct IfDirective * next; |
53 |
|
}; |
54 |
|
|
55 |
|
bool jscoverage_mozilla = false; |
56 |
|
|
57 |
|
static bool * exclusive_directives = NULL; |
58 |
|
|
59 |
static JSRuntime * runtime = NULL; |
static JSRuntime * runtime = NULL; |
60 |
static JSContext * context = NULL; |
static JSContext * context = NULL; |
61 |
static JSObject * global = NULL; |
static JSObject * global = NULL; |
62 |
|
static JSVersion js_version = JSVERSION_ECMA_3; |
63 |
|
|
64 |
/* |
/* |
65 |
JSParseNode objects store line numbers starting from 1. |
JSParseNode objects store line numbers starting from 1. |
67 |
*/ |
*/ |
68 |
static const char * file_id = NULL; |
static const char * file_id = NULL; |
69 |
static char * lines = NULL; |
static char * lines = NULL; |
70 |
|
static uint16_t num_lines = 0; |
71 |
|
|
72 |
|
void jscoverage_set_js_version(const char * version) { |
73 |
|
js_version = JS_StringToVersion(version); |
74 |
|
if (js_version != JSVERSION_UNKNOWN) { |
75 |
|
return; |
76 |
|
} |
77 |
|
|
78 |
|
char * end; |
79 |
|
js_version = (JSVersion) strtol(version, &end, 10); |
80 |
|
if ((size_t) (end - version) != strlen(version)) { |
81 |
|
fatal("invalid version: %s", version); |
82 |
|
} |
83 |
|
} |
84 |
|
|
85 |
void jscoverage_init(void) { |
void jscoverage_init(void) { |
86 |
runtime = JS_NewRuntime(8L * 1024L * 1024L); |
runtime = JS_NewRuntime(8L * 1024L * 1024L); |
93 |
fatal("cannot create context"); |
fatal("cannot create context"); |
94 |
} |
} |
95 |
|
|
96 |
|
JS_SetVersion(context, js_version); |
97 |
|
|
98 |
global = JS_NewObject(context, NULL, NULL, NULL); |
global = JS_NewObject(context, NULL, NULL, NULL); |
99 |
if (global == NULL) { |
if (global == NULL) { |
100 |
fatal("cannot create global object"); |
fatal("cannot create global object"); |
110 |
JS_DestroyRuntime(runtime); |
JS_DestroyRuntime(runtime); |
111 |
} |
} |
112 |
|
|
113 |
|
static void print_javascript(const jschar * characters, size_t num_characters, Stream * f) { |
114 |
|
for (size_t i = 0; i < num_characters; i++) { |
115 |
|
jschar c = characters[i]; |
116 |
|
/* |
117 |
|
XXX does not handle no-break space, other unicode "space separator" |
118 |
|
*/ |
119 |
|
switch (c) { |
120 |
|
case 0x9: |
121 |
|
case 0xB: |
122 |
|
case 0xC: |
123 |
|
Stream_write_char(f, c); |
124 |
|
break; |
125 |
|
default: |
126 |
|
if (32 <= c && c <= 126) { |
127 |
|
Stream_write_char(f, c); |
128 |
|
} |
129 |
|
else { |
130 |
|
Stream_printf(f, "\\u%04x", c); |
131 |
|
} |
132 |
|
break; |
133 |
|
} |
134 |
|
} |
135 |
|
} |
136 |
|
|
137 |
static void print_string(JSString * s, Stream * f) { |
static void print_string(JSString * s, Stream * f) { |
138 |
size_t length = JSSTRING_LENGTH(s); |
size_t length = JSSTRING_LENGTH(s); |
139 |
jschar * characters = JSSTRING_CHARS(s); |
jschar * characters = JSSTRING_CHARS(s); |
168 |
case 0xa: |
case 0xa: |
169 |
Stream_write_string(f, "\\n"); |
Stream_write_string(f, "\\n"); |
170 |
break; |
break; |
171 |
|
/* IE doesn't support this */ |
172 |
|
/* |
173 |
case 0xb: |
case 0xb: |
174 |
Stream_write_string(f, "\\v"); |
Stream_write_string(f, "\\v"); |
175 |
break; |
break; |
176 |
|
*/ |
177 |
case 0xc: |
case 0xc: |
178 |
Stream_write_string(f, "\\f"); |
Stream_write_string(f, "\\f"); |
179 |
break; |
break; |
220 |
|
|
221 |
static const char * get_op(uint8 op) { |
static const char * get_op(uint8 op) { |
222 |
switch(op) { |
switch(op) { |
223 |
|
case JSOP_OR: |
224 |
|
return "||"; |
225 |
|
case JSOP_AND: |
226 |
|
return "&&"; |
227 |
case JSOP_BITOR: |
case JSOP_BITOR: |
228 |
return "|"; |
return "|"; |
229 |
case JSOP_BITXOR: |
case JSOP_BITXOR: |
234 |
return "=="; |
return "=="; |
235 |
case JSOP_NE: |
case JSOP_NE: |
236 |
return "!="; |
return "!="; |
237 |
case JSOP_NEW_EQ: |
case JSOP_STRICTEQ: |
238 |
return "==="; |
return "==="; |
239 |
case JSOP_NEW_NE: |
case JSOP_STRICTNE: |
240 |
return "!=="; |
return "!=="; |
241 |
case JSOP_LT: |
case JSOP_LT: |
242 |
return "<"; |
return "<"; |
268 |
} |
} |
269 |
|
|
270 |
static void instrument_expression(JSParseNode * node, Stream * f); |
static void instrument_expression(JSParseNode * node, Stream * f); |
271 |
static void instrument_statement(JSParseNode * node, Stream * f, int indent); |
static void instrument_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if); |
272 |
|
static void output_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if); |
273 |
|
|
274 |
enum FunctionType { |
enum FunctionType { |
275 |
FUNCTION_NORMAL, |
FUNCTION_NORMAL, |
276 |
FUNCTION_GETTER_OR_SETTER |
FUNCTION_GETTER_OR_SETTER |
277 |
}; |
}; |
278 |
|
|
279 |
|
static void output_for_in(JSParseNode * node, Stream * f) { |
280 |
|
assert(node->pn_type == TOK_FOR); |
281 |
|
assert(node->pn_arity == PN_BINARY); |
282 |
|
Stream_write_string(f, "for "); |
283 |
|
if (node->pn_iflags & JSITER_FOREACH) { |
284 |
|
Stream_write_string(f, "each "); |
285 |
|
} |
286 |
|
Stream_write_char(f, '('); |
287 |
|
instrument_expression(node->pn_left, f); |
288 |
|
Stream_write_char(f, ')'); |
289 |
|
} |
290 |
|
|
291 |
|
static void output_array_comprehension_or_generator_expression(JSParseNode * node, Stream * f) { |
292 |
|
assert(node->pn_type == TOK_LEXICALSCOPE); |
293 |
|
assert(node->pn_arity == PN_NAME); |
294 |
|
JSParseNode * for_node = node->pn_expr; |
295 |
|
assert(for_node->pn_type == TOK_FOR); |
296 |
|
assert(for_node->pn_arity == PN_BINARY); |
297 |
|
JSParseNode * p = for_node; |
298 |
|
while (p->pn_type == TOK_FOR) { |
299 |
|
p = p->pn_right; |
300 |
|
} |
301 |
|
JSParseNode * if_node = NULL; |
302 |
|
if (p->pn_type == TOK_IF) { |
303 |
|
if_node = p; |
304 |
|
assert(if_node->pn_arity == PN_TERNARY); |
305 |
|
p = if_node->pn_kid2; |
306 |
|
} |
307 |
|
assert(p->pn_arity == PN_UNARY); |
308 |
|
p = p->pn_kid; |
309 |
|
if (p->pn_type == TOK_YIELD) { |
310 |
|
/* for generator expressions */ |
311 |
|
p = p->pn_kid; |
312 |
|
} |
313 |
|
|
314 |
|
instrument_expression(p, f); |
315 |
|
p = for_node; |
316 |
|
while (p->pn_type == TOK_FOR) { |
317 |
|
Stream_write_char(f, ' '); |
318 |
|
output_for_in(p, f); |
319 |
|
p = p->pn_right; |
320 |
|
} |
321 |
|
if (if_node) { |
322 |
|
Stream_write_string(f, " if ("); |
323 |
|
instrument_expression(if_node->pn_kid1, f); |
324 |
|
Stream_write_char(f, ')'); |
325 |
|
} |
326 |
|
} |
327 |
|
|
328 |
static void instrument_function(JSParseNode * node, Stream * f, int indent, enum FunctionType type) { |
static void instrument_function(JSParseNode * node, Stream * f, int indent, enum FunctionType type) { |
329 |
|
assert(node->pn_type == TOK_FUNCTION); |
330 |
assert(node->pn_arity == PN_FUNC); |
assert(node->pn_arity == PN_FUNC); |
331 |
assert(ATOM_IS_OBJECT(node->pn_funAtom)); |
JSObject * object = node->pn_funpob->object; |
|
JSObject * object = ATOM_TO_OBJECT(node->pn_funAtom); |
|
332 |
assert(JS_ObjectIsFunction(context, object)); |
assert(JS_ObjectIsFunction(context, object)); |
333 |
JSFunction * function = (JSFunction *) JS_GetPrivate(context, object); |
JSFunction * function = (JSFunction *) JS_GetPrivate(context, object); |
334 |
assert(function); |
assert(function); |
335 |
assert(object == function->object); |
assert(object == &function->object); |
336 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
337 |
if (type == FUNCTION_NORMAL) { |
if (type == FUNCTION_NORMAL) { |
338 |
Stream_write_string(f, "function"); |
Stream_write_string(f, "function "); |
339 |
} |
} |
340 |
|
|
341 |
/* function name */ |
/* function name */ |
342 |
if (function->atom) { |
if (function->atom) { |
|
Stream_write_char(f, ' '); |
|
343 |
print_string_atom(function->atom, f); |
print_string_atom(function->atom, f); |
344 |
} |
} |
345 |
|
|
346 |
/* function parameters */ |
/* |
347 |
Stream_write_string(f, "("); |
function parameters - see JS_DecompileFunction in jsapi.cpp, which calls |
348 |
JSAtom ** params = xnew(JSAtom *, function->nargs); |
js_DecompileFunction in jsopcode.cpp |
349 |
for (int i = 0; i < function->nargs; i++) { |
*/ |
350 |
/* initialize to NULL for sanity check */ |
Stream_write_char(f, '('); |
351 |
params[i] = NULL; |
JSArenaPool pool; |
352 |
} |
JS_INIT_ARENA_POOL(&pool, "instrument_function", 256, 1, &context->scriptStackQuota); |
353 |
JSScope * scope = OBJ_SCOPE(object); |
jsuword * local_names = NULL; |
354 |
for (JSScopeProperty * scope_property = SCOPE_LAST_PROP(scope); scope_property != NULL; scope_property = scope_property->parent) { |
if (JS_GET_LOCAL_NAME_COUNT(function)) { |
355 |
if (scope_property->getter != js_GetArgument) { |
local_names = js_GetLocalNameArray(context, function, &pool); |
356 |
continue; |
if (local_names == NULL) { |
357 |
|
fatal("out of memory"); |
358 |
} |
} |
|
assert(scope_property->flags & SPROP_HAS_SHORTID); |
|
|
assert((uint16) scope_property->shortid < function->nargs); |
|
|
assert(JSID_IS_ATOM(scope_property->id)); |
|
|
params[(uint16) scope_property->shortid] = JSID_TO_ATOM(scope_property->id); |
|
359 |
} |
} |
360 |
for (int i = 0; i < function->nargs; i++) { |
for (int i = 0; i < function->nargs; i++) { |
|
assert(params[i] != NULL); |
|
361 |
if (i > 0) { |
if (i > 0) { |
362 |
Stream_write_string(f, ", "); |
Stream_write_string(f, ", "); |
363 |
} |
} |
364 |
if (ATOM_IS_STRING(params[i])) { |
JSAtom * param = JS_LOCAL_NAME_TO_ATOM(local_names[i]); |
365 |
print_string_atom(params[i], f); |
if (param == NULL) { |
366 |
|
fatal_source(file_id, node->pn_pos.begin.lineno, "unsupported parameter type for function"); |
367 |
} |
} |
368 |
|
print_string_atom(param, f); |
369 |
} |
} |
370 |
|
JS_FinishArenaPool(&pool); |
371 |
Stream_write_string(f, ") {\n"); |
Stream_write_string(f, ") {\n"); |
|
free(params); |
|
372 |
|
|
373 |
/* function body */ |
/* function body */ |
374 |
instrument_statement(node->pn_body, f, indent + 2); |
if (function->flags & JSFUN_EXPR_CLOSURE) { |
375 |
|
/* expression closure */ |
376 |
|
output_statement(node->pn_body, f, indent + 2, false); |
377 |
|
} |
378 |
|
else { |
379 |
|
instrument_statement(node->pn_body, f, indent + 2, false); |
380 |
|
} |
381 |
|
|
382 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
383 |
} |
} |
384 |
|
|
385 |
static void instrument_function_call(JSParseNode * node, Stream * f) { |
static void instrument_function_call(JSParseNode * node, Stream * f) { |
386 |
instrument_expression(node->pn_head, f); |
JSParseNode * function_node = node->pn_head; |
387 |
|
if (function_node->pn_type == TOK_FUNCTION) { |
388 |
|
JSObject * object = function_node->pn_funpob->object; |
389 |
|
assert(JS_ObjectIsFunction(context, object)); |
390 |
|
JSFunction * function = (JSFunction *) JS_GetPrivate(context, object); |
391 |
|
assert(function); |
392 |
|
assert(object == &function->object); |
393 |
|
|
394 |
|
if (function_node->pn_flags & TCF_GENEXP_LAMBDA) { |
395 |
|
/* it's a generator expression */ |
396 |
|
Stream_write_char(f, '('); |
397 |
|
output_array_comprehension_or_generator_expression(function_node->pn_body, f); |
398 |
|
Stream_write_char(f, ')'); |
399 |
|
return; |
400 |
|
} |
401 |
|
else { |
402 |
|
Stream_write_char(f, '('); |
403 |
|
instrument_expression(function_node, f); |
404 |
|
Stream_write_char(f, ')'); |
405 |
|
} |
406 |
|
} |
407 |
|
else { |
408 |
|
instrument_expression(function_node, f); |
409 |
|
} |
410 |
Stream_write_char(f, '('); |
Stream_write_char(f, '('); |
411 |
for (struct JSParseNode * p = node->pn_head->pn_next; p != NULL; p = p->pn_next) { |
for (struct JSParseNode * p = function_node->pn_next; p != NULL; p = p->pn_next) { |
412 |
if (p != node->pn_head->pn_next) { |
if (p != node->pn_head->pn_next) { |
413 |
Stream_write_string(f, ", "); |
Stream_write_string(f, ", "); |
414 |
} |
} |
417 |
Stream_write_char(f, ')'); |
Stream_write_char(f, ')'); |
418 |
} |
} |
419 |
|
|
420 |
|
static void instrument_declarations(JSParseNode * list, Stream * f) { |
421 |
|
assert(list->pn_arity == PN_LIST); |
422 |
|
for (JSParseNode * p = list->pn_head; p != NULL; p = p->pn_next) { |
423 |
|
switch (p->pn_type) { |
424 |
|
case TOK_NAME: |
425 |
|
assert(p->pn_arity == PN_NAME); |
426 |
|
if (p != list->pn_head) { |
427 |
|
Stream_write_string(f, ", "); |
428 |
|
} |
429 |
|
print_string_atom(p->pn_atom, f); |
430 |
|
if (p->pn_expr != NULL) { |
431 |
|
Stream_write_string(f, " = "); |
432 |
|
instrument_expression(p->pn_expr, f); |
433 |
|
} |
434 |
|
break; |
435 |
|
case TOK_ASSIGN: |
436 |
|
case TOK_RB: |
437 |
|
case TOK_RC: |
438 |
|
/* destructuring */ |
439 |
|
instrument_expression(p, f); |
440 |
|
break; |
441 |
|
default: |
442 |
|
abort(); |
443 |
|
break; |
444 |
|
} |
445 |
|
} |
446 |
|
} |
447 |
|
|
448 |
/* |
/* |
449 |
See <Expressions> in jsparse.h. |
See <Expressions> in jsparse.h. |
450 |
TOK_FUNCTION is handled as a statement and as an expression. |
TOK_FUNCTION is handled as a statement and as an expression. |
503 |
instrument_expression(node->pn_kid3, f); |
instrument_expression(node->pn_kid3, f); |
504 |
break; |
break; |
505 |
case TOK_OR: |
case TOK_OR: |
|
instrument_expression(node->pn_left, f); |
|
|
Stream_write_string(f, " || "); |
|
|
instrument_expression(node->pn_right, f); |
|
|
break; |
|
506 |
case TOK_AND: |
case TOK_AND: |
|
instrument_expression(node->pn_left, f); |
|
|
Stream_write_string(f, " && "); |
|
|
instrument_expression(node->pn_right, f); |
|
|
break; |
|
507 |
case TOK_BITOR: |
case TOK_BITOR: |
508 |
case TOK_BITXOR: |
case TOK_BITXOR: |
509 |
case TOK_BITAND: |
case TOK_BITAND: |
559 |
instrument_expression(node->pn_kid, f); |
instrument_expression(node->pn_kid, f); |
560 |
break; |
break; |
561 |
default: |
default: |
562 |
abort(); |
fatal_source(file_id, node->pn_pos.begin.lineno, "unknown operator (%d)", node->pn_op); |
563 |
break; |
break; |
564 |
} |
} |
565 |
break; |
break; |
616 |
assert(ATOM_IS_STRING(node->pn_atom)); |
assert(ATOM_IS_STRING(node->pn_atom)); |
617 |
{ |
{ |
618 |
JSString * s = ATOM_TO_STRING(node->pn_atom); |
JSString * s = ATOM_TO_STRING(node->pn_atom); |
619 |
/* XXX - semantics changed in 1.7 */ |
bool must_quote; |
620 |
if (! ATOM_KEYWORD(node->pn_atom) && js_IsIdentifier(s)) { |
if (JSSTRING_LENGTH(s) == 0) { |
621 |
Stream_write_char(f, '.'); |
must_quote = true; |
622 |
print_string_atom(node->pn_atom, f); |
} |
623 |
|
else if (js_CheckKeyword(JSSTRING_CHARS(s), JSSTRING_LENGTH(s)) != TOK_EOF) { |
624 |
|
must_quote = true; |
625 |
|
} |
626 |
|
else if (! js_IsIdentifier(s)) { |
627 |
|
must_quote = true; |
628 |
} |
} |
629 |
else { |
else { |
630 |
|
must_quote = false; |
631 |
|
} |
632 |
|
if (must_quote) { |
633 |
Stream_write_char(f, '['); |
Stream_write_char(f, '['); |
634 |
print_quoted_string_atom(node->pn_atom, f); |
print_quoted_string_atom(node->pn_atom, f); |
635 |
Stream_write_char(f, ']'); |
Stream_write_char(f, ']'); |
636 |
} |
} |
637 |
|
else { |
638 |
|
Stream_write_char(f, '.'); |
639 |
|
print_string_atom(node->pn_atom, f); |
640 |
|
} |
641 |
} |
} |
642 |
break; |
break; |
643 |
case TOK_LB: |
case TOK_LB: |
668 |
case TOK_RC: |
case TOK_RC: |
669 |
Stream_write_char(f, '{'); |
Stream_write_char(f, '{'); |
670 |
for (struct JSParseNode * p = node->pn_head; p != NULL; p = p->pn_next) { |
for (struct JSParseNode * p = node->pn_head; p != NULL; p = p->pn_next) { |
671 |
assert(p->pn_type == TOK_COLON); |
if (p->pn_type != TOK_COLON) { |
672 |
|
fatal_source(file_id, p->pn_pos.begin.lineno, "unsupported node type (%d)", p->pn_type); |
673 |
|
} |
674 |
if (p != node->pn_head) { |
if (p != node->pn_head) { |
675 |
Stream_write_string(f, ", "); |
Stream_write_string(f, ", "); |
676 |
} |
} |
678 |
/* check whether this is a getter or setter */ |
/* check whether this is a getter or setter */ |
679 |
switch (p->pn_op) { |
switch (p->pn_op) { |
680 |
case JSOP_GETTER: |
case JSOP_GETTER: |
|
Stream_write_string(f, "get "); |
|
|
instrument_expression(p->pn_left, f); |
|
|
instrument_function(p->pn_right, f, 0, FUNCTION_GETTER_OR_SETTER); |
|
|
break; |
|
681 |
case JSOP_SETTER: |
case JSOP_SETTER: |
682 |
Stream_write_string(f, "set "); |
if (p->pn_op == JSOP_GETTER) { |
683 |
|
Stream_write_string(f, "get "); |
684 |
|
} |
685 |
|
else { |
686 |
|
Stream_write_string(f, "set "); |
687 |
|
} |
688 |
instrument_expression(p->pn_left, f); |
instrument_expression(p->pn_left, f); |
689 |
|
if (p->pn_right->pn_type != TOK_FUNCTION) { |
690 |
|
fatal_source(file_id, p->pn_pos.begin.lineno, "expected function"); |
691 |
|
} |
692 |
instrument_function(p->pn_right, f, 0, FUNCTION_GETTER_OR_SETTER); |
instrument_function(p->pn_right, f, 0, FUNCTION_GETTER_OR_SETTER); |
693 |
break; |
break; |
694 |
default: |
default: |
711 |
case TOK_STRING: |
case TOK_STRING: |
712 |
print_quoted_string_atom(node->pn_atom, f); |
print_quoted_string_atom(node->pn_atom, f); |
713 |
break; |
break; |
714 |
case TOK_OBJECT: |
case TOK_REGEXP: |
715 |
switch (node->pn_op) { |
assert(node->pn_op == JSOP_REGEXP); |
716 |
case JSOP_OBJECT: |
{ |
717 |
/* I assume this is JSOP_REGEXP */ |
JSObject * object = node->pn_pob->object; |
718 |
abort(); |
jsval result; |
719 |
break; |
js_regexp_toString(context, object, &result); |
720 |
case JSOP_REGEXP: |
print_regex(result, f); |
|
assert(ATOM_IS_OBJECT(node->pn_atom)); |
|
|
{ |
|
|
JSObject * object = ATOM_TO_OBJECT(node->pn_atom); |
|
|
jsval result; |
|
|
js_regexp_toString(context, object, 0, NULL, &result); |
|
|
print_regex(result, f); |
|
|
} |
|
|
break; |
|
|
default: |
|
|
abort(); |
|
|
break; |
|
721 |
} |
} |
722 |
break; |
break; |
723 |
case TOK_NUMBER: |
case TOK_NUMBER: |
763 |
Stream_write_string(f, " in "); |
Stream_write_string(f, " in "); |
764 |
instrument_expression(node->pn_right, f); |
instrument_expression(node->pn_right, f); |
765 |
break; |
break; |
766 |
default: |
case TOK_LEXICALSCOPE: |
767 |
fatal("unsupported node type in file %s: %d", file_id, node->pn_type); |
assert(node->pn_arity == PN_NAME); |
768 |
} |
assert(node->pn_expr->pn_type == TOK_LET); |
769 |
} |
assert(node->pn_expr->pn_arity == PN_BINARY); |
770 |
|
Stream_write_string(f, "let("); |
771 |
static void instrument_var_statement(JSParseNode * node, Stream * f, int indent) { |
assert(node->pn_expr->pn_left->pn_type == TOK_LP); |
772 |
assert(node->pn_arity == PN_LIST); |
assert(node->pn_expr->pn_left->pn_arity == PN_LIST); |
773 |
Stream_printf(f, "%*s", indent, ""); |
instrument_declarations(node->pn_expr->pn_left, f); |
774 |
Stream_write_string(f, "var "); |
Stream_write_string(f, ") "); |
775 |
for (struct JSParseNode * p = node->pn_u.list.head; p != NULL; p = p->pn_next) { |
instrument_expression(node->pn_expr->pn_right, f); |
776 |
assert(p->pn_type == TOK_NAME); |
break; |
777 |
assert(p->pn_arity == PN_NAME); |
case TOK_YIELD: |
778 |
if (p != node->pn_head) { |
assert(node->pn_arity == PN_UNARY); |
779 |
Stream_write_string(f, ", "); |
Stream_write_string(f, "yield"); |
780 |
|
if (node->pn_kid != NULL) { |
781 |
|
Stream_write_char(f, ' '); |
782 |
|
instrument_expression(node->pn_kid, f); |
783 |
} |
} |
784 |
print_string_atom(p->pn_atom, f); |
break; |
785 |
if (p->pn_expr != NULL) { |
case TOK_ARRAYCOMP: |
786 |
Stream_write_string(f, " = "); |
assert(node->pn_arity == PN_LIST); |
787 |
instrument_expression(p->pn_expr, f); |
{ |
788 |
|
JSParseNode * block_node; |
789 |
|
switch (node->pn_count) { |
790 |
|
case 1: |
791 |
|
block_node = node->pn_head; |
792 |
|
break; |
793 |
|
case 2: |
794 |
|
block_node = node->pn_head->pn_next; |
795 |
|
break; |
796 |
|
default: |
797 |
|
abort(); |
798 |
|
break; |
799 |
|
} |
800 |
|
Stream_write_char(f, '['); |
801 |
|
output_array_comprehension_or_generator_expression(block_node, f); |
802 |
|
Stream_write_char(f, ']'); |
803 |
} |
} |
804 |
|
break; |
805 |
|
case TOK_VAR: |
806 |
|
assert(node->pn_arity == PN_LIST); |
807 |
|
Stream_write_string(f, "var "); |
808 |
|
instrument_declarations(node, f); |
809 |
|
break; |
810 |
|
case TOK_LET: |
811 |
|
assert(node->pn_arity == PN_LIST); |
812 |
|
Stream_write_string(f, "let "); |
813 |
|
instrument_declarations(node, f); |
814 |
|
break; |
815 |
|
default: |
816 |
|
fatal_source(file_id, node->pn_pos.begin.lineno, "unsupported node type (%d)", node->pn_type); |
817 |
} |
} |
818 |
} |
} |
819 |
|
|
820 |
static void output_statement(JSParseNode * node, Stream * f, int indent) { |
static void output_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if) { |
821 |
switch (node->pn_type) { |
switch (node->pn_type) { |
822 |
case TOK_FUNCTION: |
case TOK_FUNCTION: |
823 |
instrument_function(node, f, indent, FUNCTION_NORMAL); |
instrument_function(node, f, indent, FUNCTION_NORMAL); |
828 |
Stream_write_string(f, "{\n"); |
Stream_write_string(f, "{\n"); |
829 |
*/ |
*/ |
830 |
for (struct JSParseNode * p = node->pn_u.list.head; p != NULL; p = p->pn_next) { |
for (struct JSParseNode * p = node->pn_u.list.head; p != NULL; p = p->pn_next) { |
831 |
instrument_statement(p, f, indent); |
instrument_statement(p, f, indent, false); |
832 |
} |
} |
833 |
/* |
/* |
834 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
836 |
*/ |
*/ |
837 |
break; |
break; |
838 |
case TOK_IF: |
case TOK_IF: |
839 |
|
{ |
840 |
assert(node->pn_arity == PN_TERNARY); |
assert(node->pn_arity == PN_TERNARY); |
841 |
|
|
842 |
|
uint16_t line = node->pn_pos.begin.lineno; |
843 |
|
if (! is_jscoverage_if) { |
844 |
|
if (line > num_lines) { |
845 |
|
fatal("file %s contains more than 65,535 lines", file_id); |
846 |
|
} |
847 |
|
if (line >= 2 && exclusive_directives[line - 2]) { |
848 |
|
is_jscoverage_if = true; |
849 |
|
} |
850 |
|
} |
851 |
|
|
852 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
853 |
Stream_write_string(f, "if ("); |
Stream_write_string(f, "if ("); |
854 |
instrument_expression(node->pn_kid1, f); |
instrument_expression(node->pn_kid1, f); |
855 |
Stream_write_string(f, ") {\n"); |
Stream_write_string(f, ") {\n"); |
856 |
instrument_statement(node->pn_kid2, f, indent + 2); |
if (is_jscoverage_if && node->pn_kid3) { |
857 |
|
uint16_t else_start = node->pn_kid3->pn_pos.begin.lineno; |
858 |
|
uint16_t else_end = node->pn_kid3->pn_pos.end.lineno + 1; |
859 |
|
Stream_printf(f, "%*s", indent + 2, ""); |
860 |
|
Stream_printf(f, "_$jscoverage['%s'].conditionals[%d] = %d;\n", file_id, else_start, else_end); |
861 |
|
} |
862 |
|
instrument_statement(node->pn_kid2, f, indent + 2, false); |
863 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
864 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
865 |
if (node->pn_kid3) { |
|
866 |
|
if (node->pn_kid3 || is_jscoverage_if) { |
867 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
868 |
Stream_write_string(f, "else {\n"); |
Stream_write_string(f, "else {\n"); |
869 |
instrument_statement(node->pn_kid3, f, indent + 2); |
|
870 |
|
if (is_jscoverage_if) { |
871 |
|
uint16_t if_start = node->pn_kid2->pn_pos.begin.lineno + 1; |
872 |
|
uint16_t if_end = node->pn_kid2->pn_pos.end.lineno + 1; |
873 |
|
Stream_printf(f, "%*s", indent + 2, ""); |
874 |
|
Stream_printf(f, "_$jscoverage['%s'].conditionals[%d] = %d;\n", file_id, if_start, if_end); |
875 |
|
} |
876 |
|
|
877 |
|
if (node->pn_kid3) { |
878 |
|
instrument_statement(node->pn_kid3, f, indent + 2, is_jscoverage_if); |
879 |
|
} |
880 |
|
|
881 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
882 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
883 |
} |
} |
884 |
|
|
885 |
break; |
break; |
886 |
|
} |
887 |
case TOK_SWITCH: |
case TOK_SWITCH: |
888 |
assert(node->pn_arity == PN_BINARY); |
assert(node->pn_arity == PN_BINARY); |
889 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
890 |
Stream_write_string(f, "switch ("); |
Stream_write_string(f, "switch ("); |
891 |
instrument_expression(node->pn_left, f); |
instrument_expression(node->pn_left, f); |
892 |
Stream_write_string(f, ") {\n"); |
Stream_write_string(f, ") {\n"); |
893 |
for (struct JSParseNode * p = node->pn_right->pn_head; p != NULL; p = p->pn_next) { |
{ |
894 |
Stream_printf(f, "%*s", indent, ""); |
JSParseNode * list = node->pn_right; |
895 |
switch (p->pn_type) { |
if (list->pn_type == TOK_LEXICALSCOPE) { |
896 |
case TOK_CASE: |
list = list->pn_expr; |
897 |
Stream_write_string(f, "case "); |
} |
898 |
instrument_expression(p->pn_left, f); |
for (struct JSParseNode * p = list->pn_head; p != NULL; p = p->pn_next) { |
899 |
Stream_write_string(f, ":\n"); |
Stream_printf(f, "%*s", indent, ""); |
900 |
break; |
switch (p->pn_type) { |
901 |
case TOK_DEFAULT: |
case TOK_CASE: |
902 |
Stream_write_string(f, "default:\n"); |
Stream_write_string(f, "case "); |
903 |
break; |
instrument_expression(p->pn_left, f); |
904 |
default: |
Stream_write_string(f, ":\n"); |
905 |
abort(); |
break; |
906 |
break; |
case TOK_DEFAULT: |
907 |
|
Stream_write_string(f, "default:\n"); |
908 |
|
break; |
909 |
|
default: |
910 |
|
abort(); |
911 |
|
break; |
912 |
|
} |
913 |
|
instrument_statement(p->pn_right, f, indent + 2, false); |
914 |
} |
} |
|
instrument_statement(p->pn_right, f, indent + 2); |
|
915 |
} |
} |
916 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
917 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
926 |
Stream_write_string(f, "while ("); |
Stream_write_string(f, "while ("); |
927 |
instrument_expression(node->pn_left, f); |
instrument_expression(node->pn_left, f); |
928 |
Stream_write_string(f, ") {\n"); |
Stream_write_string(f, ") {\n"); |
929 |
instrument_statement(node->pn_right, f, indent + 2); |
instrument_statement(node->pn_right, f, indent + 2, false); |
930 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
931 |
break; |
break; |
932 |
case TOK_DO: |
case TOK_DO: |
933 |
assert(node->pn_arity == PN_BINARY); |
assert(node->pn_arity == PN_BINARY); |
934 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
935 |
Stream_write_string(f, "do {\n"); |
Stream_write_string(f, "do {\n"); |
936 |
instrument_statement(node->pn_left, f, indent + 2); |
instrument_statement(node->pn_left, f, indent + 2, false); |
937 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
938 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
939 |
Stream_write_string(f, "while ("); |
Stream_write_string(f, "while ("); |
943 |
case TOK_FOR: |
case TOK_FOR: |
944 |
assert(node->pn_arity == PN_BINARY); |
assert(node->pn_arity == PN_BINARY); |
945 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
|
Stream_write_string(f, "for ("); |
|
946 |
switch (node->pn_left->pn_type) { |
switch (node->pn_left->pn_type) { |
947 |
case TOK_IN: |
case TOK_IN: |
948 |
/* for/in */ |
/* for/in */ |
949 |
assert(node->pn_left->pn_arity == PN_BINARY); |
assert(node->pn_left->pn_arity == PN_BINARY); |
950 |
switch (node->pn_left->pn_left->pn_type) { |
output_for_in(node, f); |
|
case TOK_VAR: |
|
|
instrument_var_statement(node->pn_left->pn_left, f, 0); |
|
|
break; |
|
|
case TOK_NAME: |
|
|
instrument_expression(node->pn_left->pn_left, f); |
|
|
break; |
|
|
default: |
|
|
/* this is undocumented: for (x.value in y) */ |
|
|
instrument_expression(node->pn_left->pn_left, f); |
|
|
break; |
|
|
/* |
|
|
default: |
|
|
fprintf(stderr, "unexpected node type: %d\n", node->pn_left->pn_left->pn_type); |
|
|
abort(); |
|
|
break; |
|
|
*/ |
|
|
} |
|
|
Stream_write_string(f, " in "); |
|
|
instrument_expression(node->pn_left->pn_right, f); |
|
951 |
break; |
break; |
952 |
case TOK_RESERVED: |
case TOK_RESERVED: |
953 |
/* for (;;) */ |
/* for (;;) */ |
954 |
assert(node->pn_left->pn_arity == PN_TERNARY); |
assert(node->pn_left->pn_arity == PN_TERNARY); |
955 |
|
Stream_write_string(f, "for ("); |
956 |
if (node->pn_left->pn_kid1) { |
if (node->pn_left->pn_kid1) { |
957 |
if (node->pn_left->pn_kid1->pn_type == TOK_VAR) { |
instrument_expression(node->pn_left->pn_kid1, f); |
|
instrument_var_statement(node->pn_left->pn_kid1, f, 0); |
|
|
} |
|
|
else { |
|
|
instrument_expression(node->pn_left->pn_kid1, f); |
|
|
} |
|
958 |
} |
} |
959 |
Stream_write_string(f, ";"); |
Stream_write_string(f, ";"); |
960 |
if (node->pn_left->pn_kid2) { |
if (node->pn_left->pn_kid2) { |
966 |
Stream_write_char(f, ' '); |
Stream_write_char(f, ' '); |
967 |
instrument_expression(node->pn_left->pn_kid3, f); |
instrument_expression(node->pn_left->pn_kid3, f); |
968 |
} |
} |
969 |
|
Stream_write_char(f, ')'); |
970 |
break; |
break; |
971 |
default: |
default: |
972 |
abort(); |
abort(); |
973 |
break; |
break; |
974 |
} |
} |
975 |
Stream_write_string(f, ") {\n"); |
Stream_write_string(f, " {\n"); |
976 |
instrument_statement(node->pn_right, f, indent + 2); |
instrument_statement(node->pn_right, f, indent + 2, false); |
977 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
978 |
break; |
break; |
979 |
case TOK_THROW: |
case TOK_THROW: |
986 |
case TOK_TRY: |
case TOK_TRY: |
987 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
988 |
Stream_write_string(f, "try {\n"); |
Stream_write_string(f, "try {\n"); |
989 |
instrument_statement(node->pn_kid1, f, indent + 2); |
instrument_statement(node->pn_kid1, f, indent + 2, false); |
990 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
991 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
992 |
{ |
if (node->pn_kid2) { |
993 |
for (JSParseNode * catch = node->pn_kid2; catch != NULL; catch = catch->pn_kid2) { |
assert(node->pn_kid2->pn_type == TOK_RESERVED); |
994 |
|
for (JSParseNode * scope = node->pn_kid2->pn_head; scope != NULL; scope = scope->pn_next) { |
995 |
|
assert(scope->pn_type == TOK_LEXICALSCOPE); |
996 |
|
JSParseNode * catch = scope->pn_expr; |
997 |
assert(catch->pn_type == TOK_CATCH); |
assert(catch->pn_type == TOK_CATCH); |
998 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
999 |
Stream_write_string(f, "catch ("); |
Stream_write_string(f, "catch ("); |
1000 |
|
/* this may not be a name - destructuring assignment */ |
1001 |
|
/* |
1002 |
assert(catch->pn_kid1->pn_arity == PN_NAME); |
assert(catch->pn_kid1->pn_arity == PN_NAME); |
1003 |
print_string_atom(catch->pn_kid1->pn_atom, f); |
print_string_atom(catch->pn_kid1->pn_atom, f); |
1004 |
if (catch->pn_kid1->pn_expr) { |
*/ |
1005 |
|
instrument_expression(catch->pn_kid1, f); |
1006 |
|
if (catch->pn_kid2) { |
1007 |
Stream_write_string(f, " if "); |
Stream_write_string(f, " if "); |
1008 |
instrument_expression(catch->pn_kid1->pn_expr, f); |
instrument_expression(catch->pn_kid2, f); |
1009 |
} |
} |
1010 |
Stream_write_string(f, ") {\n"); |
Stream_write_string(f, ") {\n"); |
1011 |
instrument_statement(catch->pn_kid3, f, indent + 2); |
instrument_statement(catch->pn_kid3, f, indent + 2, false); |
1012 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
1013 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
1014 |
} |
} |
1016 |
if (node->pn_kid3) { |
if (node->pn_kid3) { |
1017 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
1018 |
Stream_write_string(f, "finally {\n"); |
Stream_write_string(f, "finally {\n"); |
1019 |
instrument_statement(node->pn_kid3, f, indent + 2); |
instrument_statement(node->pn_kid3, f, indent + 2, false); |
1020 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
1021 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
1022 |
} |
} |
1042 |
Stream_write_string(f, "with ("); |
Stream_write_string(f, "with ("); |
1043 |
instrument_expression(node->pn_left, f); |
instrument_expression(node->pn_left, f); |
1044 |
Stream_write_string(f, ") {\n"); |
Stream_write_string(f, ") {\n"); |
1045 |
instrument_statement(node->pn_right, f, indent + 2); |
instrument_statement(node->pn_right, f, indent + 2, false); |
1046 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
1047 |
Stream_write_string(f, "}\n"); |
Stream_write_string(f, "}\n"); |
1048 |
break; |
break; |
1049 |
case TOK_VAR: |
case TOK_VAR: |
1050 |
instrument_var_statement(node, f, indent); |
Stream_printf(f, "%*s", indent, ""); |
1051 |
|
instrument_expression(node, f); |
1052 |
Stream_write_string(f, ";\n"); |
Stream_write_string(f, ";\n"); |
1053 |
break; |
break; |
1054 |
case TOK_RETURN: |
case TOK_RETURN: |
1081 |
/* |
/* |
1082 |
... use output_statement instead of instrument_statement. |
... use output_statement instead of instrument_statement. |
1083 |
*/ |
*/ |
1084 |
output_statement(node->pn_expr, f, indent); |
output_statement(node->pn_expr, f, indent, false); |
1085 |
|
break; |
1086 |
|
case TOK_LEXICALSCOPE: |
1087 |
|
/* let statement */ |
1088 |
|
assert(node->pn_arity == PN_NAME); |
1089 |
|
switch (node->pn_expr->pn_type) { |
1090 |
|
case TOK_LET: |
1091 |
|
/* let statement */ |
1092 |
|
assert(node->pn_expr->pn_arity == PN_BINARY); |
1093 |
|
instrument_statement(node->pn_expr, f, indent, false); |
1094 |
|
break; |
1095 |
|
case TOK_LC: |
1096 |
|
/* block */ |
1097 |
|
Stream_printf(f, "%*s", indent, ""); |
1098 |
|
Stream_write_string(f, "{\n"); |
1099 |
|
instrument_statement(node->pn_expr, f, indent + 2, false); |
1100 |
|
Stream_printf(f, "%*s", indent, ""); |
1101 |
|
Stream_write_string(f, "}\n"); |
1102 |
|
break; |
1103 |
|
case TOK_FOR: |
1104 |
|
instrument_statement(node->pn_expr, f, indent, false); |
1105 |
|
break; |
1106 |
|
default: |
1107 |
|
abort(); |
1108 |
|
break; |
1109 |
|
} |
1110 |
|
break; |
1111 |
|
case TOK_LET: |
1112 |
|
switch (node->pn_arity) { |
1113 |
|
case PN_BINARY: |
1114 |
|
/* let statement */ |
1115 |
|
Stream_printf(f, "%*s", indent, ""); |
1116 |
|
Stream_write_string(f, "let ("); |
1117 |
|
assert(node->pn_left->pn_type == TOK_LP); |
1118 |
|
assert(node->pn_left->pn_arity == PN_LIST); |
1119 |
|
instrument_declarations(node->pn_left, f); |
1120 |
|
Stream_write_string(f, ") {\n"); |
1121 |
|
instrument_statement(node->pn_right, f, indent + 2, false); |
1122 |
|
Stream_printf(f, "%*s", indent, ""); |
1123 |
|
Stream_write_string(f, "}\n"); |
1124 |
|
break; |
1125 |
|
case PN_LIST: |
1126 |
|
/* let definition */ |
1127 |
|
Stream_printf(f, "%*s", indent, ""); |
1128 |
|
instrument_expression(node, f); |
1129 |
|
Stream_write_string(f, ";\n"); |
1130 |
|
break; |
1131 |
|
default: |
1132 |
|
abort(); |
1133 |
|
break; |
1134 |
|
} |
1135 |
|
break; |
1136 |
|
case TOK_DEBUGGER: |
1137 |
|
Stream_printf(f, "%*s", indent, ""); |
1138 |
|
Stream_write_string(f, "debugger;\n"); |
1139 |
break; |
break; |
1140 |
default: |
default: |
1141 |
fatal("unsupported node type in file %s: %d", file_id, node->pn_type); |
fatal_source(file_id, node->pn_pos.begin.lineno, "unsupported node type (%d)", node->pn_type); |
1142 |
} |
} |
1143 |
} |
} |
1144 |
|
|
1147 |
TOK_FUNCTION is handled as a statement and as an expression. |
TOK_FUNCTION is handled as a statement and as an expression. |
1148 |
TOK_EXPORT, TOK_IMPORT are not handled. |
TOK_EXPORT, TOK_IMPORT are not handled. |
1149 |
*/ |
*/ |
1150 |
static void instrument_statement(JSParseNode * node, Stream * f, int indent) { |
static void instrument_statement(JSParseNode * node, Stream * f, int indent, bool is_jscoverage_if) { |
1151 |
if (node->pn_type != TOK_LC) { |
if (node->pn_type != TOK_LC && node->pn_type != TOK_LEXICALSCOPE) { |
1152 |
int line = node->pn_pos.begin.lineno; |
uint16_t line = node->pn_pos.begin.lineno; |
1153 |
|
if (line > num_lines) { |
1154 |
|
fatal("file %s contains more than 65,535 lines", file_id); |
1155 |
|
} |
1156 |
|
|
1157 |
/* the root node has line number 0 */ |
/* the root node has line number 0 */ |
1158 |
if (line != 0) { |
if (line != 0) { |
1159 |
Stream_printf(f, "%*s", indent, ""); |
Stream_printf(f, "%*s", indent, ""); |
1161 |
lines[line - 1] = 1; |
lines[line - 1] = 1; |
1162 |
} |
} |
1163 |
} |
} |
1164 |
output_statement(node, f, indent); |
output_statement(node, f, indent, is_jscoverage_if); |
1165 |
} |
} |
1166 |
|
|
1167 |
void jscoverage_instrument_js(const char * id, const char * encoding, Stream * input, Stream * output) { |
static bool characters_start_with(const jschar * characters, size_t line_start, size_t line_end, const char * prefix) { |
1168 |
file_id = id; |
const jschar * characters_end = characters + line_end; |
1169 |
|
const jschar * cp = characters + line_start; |
1170 |
|
const char * bp = prefix; |
1171 |
|
for (;;) { |
1172 |
|
if (*bp == '\0') { |
1173 |
|
return true; |
1174 |
|
} |
1175 |
|
else if (cp == characters_end) { |
1176 |
|
return false; |
1177 |
|
} |
1178 |
|
else if (*cp != *bp) { |
1179 |
|
return false; |
1180 |
|
} |
1181 |
|
bp++; |
1182 |
|
cp++; |
1183 |
|
} |
1184 |
|
} |
1185 |
|
|
1186 |
/* scan the javascript */ |
static bool characters_are_white_space(const jschar * characters, size_t line_start, size_t line_end) { |
1187 |
size_t input_length = input->length; |
/* XXX - other Unicode space */ |
1188 |
jschar * base = NULL; |
const jschar * end = characters + line_end; |
1189 |
int result = jscoverage_bytes_to_characters(encoding, input->data, input->length, &base, &input_length); |
for (const jschar * p = characters + line_start; p < end; p++) { |
1190 |
if (result == JSCOVERAGE_ERROR_ENCODING_NOT_SUPPORTED) { |
jschar c = *p; |
1191 |
fatal("encoding %s not supported in file %s", encoding, id); |
if (c == 0x9 || c == 0xB || c == 0xC || c == 0x20 || c == 0xA0) { |
1192 |
} |
continue; |
1193 |
else if (result == JSCOVERAGE_ERROR_INVALID_BYTE_SEQUENCE) { |
} |
1194 |
fatal("error decoding %s in file %s", encoding, id); |
else { |
1195 |
} |
return false; |
1196 |
JSTokenStream * token_stream = js_NewTokenStream(context, base, input_length, NULL, 1, NULL); |
} |
|
if (token_stream == NULL) { |
|
|
fatal("cannot create token stream from file: %s", file_id); |
|
1197 |
} |
} |
1198 |
|
return true; |
1199 |
|
} |
1200 |
|
|
1201 |
|
static void error_reporter(JSContext * context, const char * message, JSErrorReport * report) { |
1202 |
|
fatal_source(file_id, report->lineno, message); |
1203 |
|
} |
1204 |
|
|
1205 |
|
void jscoverage_instrument_js(const char * id, const uint16_t * characters, size_t num_characters, Stream * output) { |
1206 |
|
file_id = id; |
1207 |
|
|
1208 |
/* parse the javascript */ |
/* parse the javascript */ |
1209 |
JSParseNode * node = js_ParseTokenStream(context, global, token_stream); |
JSParseContext parse_context; |
1210 |
|
if (! js_InitParseContext(context, &parse_context, NULL, NULL, characters, num_characters, NULL, NULL, 1)) { |
1211 |
|
fatal("cannot create token stream from file %s", file_id); |
1212 |
|
} |
1213 |
|
JSErrorReporter old_error_reporter = JS_SetErrorReporter(context, error_reporter); |
1214 |
|
JSParseNode * node = js_ParseScript(context, global, &parse_context); |
1215 |
if (node == NULL) { |
if (node == NULL) { |
1216 |
fatal("parse error in file: %s", file_id); |
js_ReportUncaughtException(context); |
1217 |
|
fatal("parse error in file %s", file_id); |
1218 |
} |
} |
1219 |
int num_lines = node->pn_pos.end.lineno; |
JS_SetErrorReporter(context, old_error_reporter); |
1220 |
|
num_lines = node->pn_pos.end.lineno; |
1221 |
lines = xmalloc(num_lines); |
lines = xmalloc(num_lines); |
1222 |
for (int i = 0; i < num_lines; i++) { |
for (unsigned int i = 0; i < num_lines; i++) { |
1223 |
lines[i] = 0; |
lines[i] = 0; |
1224 |
} |
} |
1225 |
|
|
1226 |
|
/* search code for conditionals */ |
1227 |
|
exclusive_directives = xnew(bool, num_lines); |
1228 |
|
for (unsigned int i = 0; i < num_lines; i++) { |
1229 |
|
exclusive_directives[i] = false; |
1230 |
|
} |
1231 |
|
|
1232 |
|
bool has_conditionals = false; |
1233 |
|
struct IfDirective * if_directives = NULL; |
1234 |
|
size_t line_number = 0; |
1235 |
|
size_t i = 0; |
1236 |
|
while (i < num_characters) { |
1237 |
|
if (line_number == UINT16_MAX) { |
1238 |
|
fatal("file %s contains more than 65,535 lines", file_id); |
1239 |
|
} |
1240 |
|
line_number++; |
1241 |
|
size_t line_start = i; |
1242 |
|
jschar c; |
1243 |
|
bool done = false; |
1244 |
|
while (! done && i < num_characters) { |
1245 |
|
c = characters[i]; |
1246 |
|
switch (c) { |
1247 |
|
case '\r': |
1248 |
|
case '\n': |
1249 |
|
case 0x2028: |
1250 |
|
case 0x2029: |
1251 |
|
done = true; |
1252 |
|
break; |
1253 |
|
default: |
1254 |
|
i++; |
1255 |
|
} |
1256 |
|
} |
1257 |
|
size_t line_end = i; |
1258 |
|
if (i < num_characters) { |
1259 |
|
i++; |
1260 |
|
if (c == '\r' && i < num_characters && characters[i] == '\n') { |
1261 |
|
i++; |
1262 |
|
} |
1263 |
|
} |
1264 |
|
|
1265 |
|
if (characters_start_with(characters, line_start, line_end, "//#JSCOVERAGE_IF")) { |
1266 |
|
has_conditionals = true; |
1267 |
|
|
1268 |
|
if (characters_are_white_space(characters, line_start + 16, line_end)) { |
1269 |
|
exclusive_directives[line_number - 1] = true; |
1270 |
|
} |
1271 |
|
else { |
1272 |
|
struct IfDirective * if_directive = xnew(struct IfDirective, 1); |
1273 |
|
if_directive->condition_start = characters + line_start + 16; |
1274 |
|
if_directive->condition_end = characters + line_end; |
1275 |
|
if_directive->start_line = line_number; |
1276 |
|
if_directive->end_line = 0; |
1277 |
|
if_directive->next = if_directives; |
1278 |
|
if_directives = if_directive; |
1279 |
|
} |
1280 |
|
} |
1281 |
|
else if (characters_start_with(characters, line_start, line_end, "//#JSCOVERAGE_ENDIF")) { |
1282 |
|
for (struct IfDirective * p = if_directives; p != NULL; p = p->next) { |
1283 |
|
if (p->end_line == 0) { |
1284 |
|
p->end_line = line_number; |
1285 |
|
break; |
1286 |
|
} |
1287 |
|
} |
1288 |
|
} |
1289 |
|
} |
1290 |
|
|
1291 |
/* |
/* |
1292 |
An instrumented JavaScript file has 3 sections: |
An instrumented JavaScript file has 4 sections: |
1293 |
1. initialization |
1. initialization |
1294 |
2. instrumented source code |
2. instrumented source code |
1295 |
3. original source code |
3. conditionals |
1296 |
|
4. original source code |
1297 |
*/ |
*/ |
1298 |
|
|
1299 |
Stream * instrumented = Stream_new(0); |
Stream * instrumented = Stream_new(0); |
1300 |
instrument_statement(node, instrumented, 0); |
instrument_statement(node, instrumented, 0, false); |
1301 |
|
js_FinishParseContext(context, &parse_context); |
1302 |
|
|
1303 |
/* write line number info to the output */ |
/* write line number info to the output */ |
1304 |
Stream_write_string(output, "/* automatically generated by JSCoverage - do not edit */\n"); |
Stream_write_string(output, "/* automatically generated by JSCoverage - do not edit */\n"); |
1305 |
Stream_write_string(output, "if (! top._$jscoverage) {\n top._$jscoverage = {};\n}\n"); |
if (jscoverage_mozilla) { |
1306 |
Stream_write_string(output, "var _$jscoverage = top._$jscoverage;\n"); |
Stream_write_string(output, "try {\n"); |
1307 |
|
Stream_write_string(output, " Components.utils.import('resource://gre/modules/jscoverage.jsm');\n"); |
1308 |
|
Stream_printf(output, " dump('%s: successfully imported jscoverage module\\n');\n", id); |
1309 |
|
Stream_write_string(output, "}\n"); |
1310 |
|
Stream_write_string(output, "catch (e) {\n"); |
1311 |
|
Stream_write_string(output, " _$jscoverage = {};\n"); |
1312 |
|
Stream_printf(output, " dump('%s: failed to import jscoverage module - coverage not available for this file\\n');\n", id); |
1313 |
|
Stream_write_string(output, "}\n"); |
1314 |
|
} |
1315 |
|
else { |
1316 |
|
Stream_write_string(output, "if (! top._$jscoverage) {\n top._$jscoverage = {};\n}\n"); |
1317 |
|
Stream_write_string(output, "var _$jscoverage = top._$jscoverage;\n"); |
1318 |
|
} |
1319 |
Stream_printf(output, "if (! _$jscoverage['%s']) {\n", file_id); |
Stream_printf(output, "if (! _$jscoverage['%s']) {\n", file_id); |
1320 |
Stream_printf(output, " _$jscoverage['%s'] = [];\n", file_id); |
Stream_printf(output, " _$jscoverage['%s'] = [];\n", file_id); |
1321 |
for (int i = 0; i < num_lines; i++) { |
for (int i = 0; i < num_lines; i++) { |
1326 |
Stream_write_string(output, "}\n"); |
Stream_write_string(output, "}\n"); |
1327 |
free(lines); |
free(lines); |
1328 |
lines = NULL; |
lines = NULL; |
1329 |
|
free(exclusive_directives); |
1330 |
|
exclusive_directives = NULL; |
1331 |
|
|
1332 |
|
/* conditionals */ |
1333 |
|
if (has_conditionals) { |
1334 |
|
Stream_printf(output, "_$jscoverage['%s'].conditionals = [];\n", file_id); |
1335 |
|
} |
1336 |
|
|
1337 |
/* copy the instrumented source code to the output */ |
/* copy the instrumented source code to the output */ |
1338 |
Stream_write(output, instrumented->data, instrumented->length); |
Stream_write(output, instrumented->data, instrumented->length); |
|
Stream_write_char(output, '\n'); |
|
1339 |
|
|
1340 |
/* conditionals */ |
/* conditionals */ |
1341 |
bool has_conditionals = false; |
for (struct IfDirective * if_directive = if_directives; if_directive != NULL; if_directive = if_directive->next) { |
1342 |
size_t line_number = 0; |
Stream_write_string(output, "if (!("); |
1343 |
size_t i = 0; |
print_javascript(if_directive->condition_start, if_directive->condition_end - if_directive->condition_start, output); |
1344 |
while (i < input_length) { |
Stream_write_string(output, ")) {\n"); |
1345 |
line_number++; |
Stream_printf(output, " _$jscoverage['%s'].conditionals[%d] = %d;\n", file_id, if_directive->start_line, if_directive->end_line); |
1346 |
size_t line_start = i; |
Stream_write_string(output, "}\n"); |
1347 |
while (i < input_length && base[i] != '\r' && base[i] != '\n') { |
} |
1348 |
i++; |
|
1349 |
} |
/* free */ |
1350 |
size_t line_end = i; |
while (if_directives != NULL) { |
1351 |
if (i < input_length) { |
struct IfDirective * if_directive = if_directives; |
1352 |
if (base[i] == '\r') { |
if_directives = if_directives->next; |
1353 |
line_end = i; |
free(if_directive); |
|
i++; |
|
|
if (i < input_length && base[i] == '\n') { |
|
|
i++; |
|
|
} |
|
|
} |
|
|
else if (base[i] == '\n') { |
|
|
line_end = i; |
|
|
i++; |
|
|
} |
|
|
else { |
|
|
abort(); |
|
|
} |
|
|
} |
|
|
char * line = js_DeflateString(context, base + line_start, line_end - line_start); |
|
|
if (str_starts_with(line, "//#JSCOVERAGE_IF")) { |
|
|
if (! has_conditionals) { |
|
|
has_conditionals = true; |
|
|
Stream_printf(output, "_$jscoverage['%s'].conditionals = [];\n", file_id); |
|
|
} |
|
|
Stream_printf(output, "if (!%s) {\n", line + 16); |
|
|
Stream_printf(output, " _$jscoverage['%s'].conditionals[%d] = ", file_id, line_number); |
|
|
} |
|
|
else if (str_starts_with(line, "//#JSCOVERAGE_ENDIF")) { |
|
|
Stream_printf(output, "%d;\n", line_number); |
|
|
Stream_printf(output, "}\n"); |
|
|
} |
|
|
JS_free(context, line); |
|
1354 |
} |
} |
1355 |
|
|
1356 |
/* copy the original source to the output */ |
/* copy the original source to the output */ |
1357 |
i = 0; |
Stream_printf(output, "_$jscoverage['%s'].source = ", file_id); |
1358 |
while (i < input_length) { |
jscoverage_write_source(id, characters, num_characters, output); |
1359 |
Stream_write_string(output, "// "); |
Stream_printf(output, ";\n"); |
|
size_t line_start = i; |
|
|
while (i < input_length && base[i] != '\r' && base[i] != '\n') { |
|
|
i++; |
|
|
} |
|
1360 |
|
|
1361 |
size_t line_end = i; |
Stream_delete(instrumented); |
1362 |
if (i < input_length) { |
|
1363 |
if (base[i] == '\r') { |
file_id = NULL; |
1364 |
line_end = i; |
} |
1365 |
|
|
1366 |
|
void jscoverage_write_source(const char * id, const jschar * characters, size_t num_characters, Stream * output) { |
1367 |
|
Stream_write_string(output, "["); |
1368 |
|
if (jscoverage_highlight) { |
1369 |
|
Stream * highlighted_stream = Stream_new(num_characters); |
1370 |
|
jscoverage_highlight_js(context, id, characters, num_characters, highlighted_stream); |
1371 |
|
size_t i = 0; |
1372 |
|
while (i < highlighted_stream->length) { |
1373 |
|
if (i > 0) { |
1374 |
|
Stream_write_char(output, ','); |
1375 |
|
} |
1376 |
|
|
1377 |
|
Stream_write_char(output, '"'); |
1378 |
|
bool done = false; |
1379 |
|
while (! done) { |
1380 |
|
char c = highlighted_stream->data[i]; |
1381 |
|
switch (c) { |
1382 |
|
case 0x8: |
1383 |
|
/* backspace */ |
1384 |
|
Stream_write_string(output, "\\b"); |
1385 |
|
break; |
1386 |
|
case 0x9: |
1387 |
|
/* horizontal tab */ |
1388 |
|
Stream_write_string(output, "\\t"); |
1389 |
|
break; |
1390 |
|
case 0xa: |
1391 |
|
/* line feed (new line) */ |
1392 |
|
done = true; |
1393 |
|
break; |
1394 |
|
/* IE doesn't support this */ |
1395 |
|
/* |
1396 |
|
case 0xb: |
1397 |
|
Stream_write_string(output, "\\v"); |
1398 |
|
break; |
1399 |
|
*/ |
1400 |
|
case 0xc: |
1401 |
|
/* form feed */ |
1402 |
|
Stream_write_string(output, "\\f"); |
1403 |
|
break; |
1404 |
|
case 0xd: |
1405 |
|
/* carriage return */ |
1406 |
|
done = true; |
1407 |
|
if (i + 1 < highlighted_stream->length && highlighted_stream->data[i + 1] == '\n') { |
1408 |
|
i++; |
1409 |
|
} |
1410 |
|
break; |
1411 |
|
case '"': |
1412 |
|
Stream_write_string(output, "\\\""); |
1413 |
|
break; |
1414 |
|
case '\\': |
1415 |
|
Stream_write_string(output, "\\\\"); |
1416 |
|
break; |
1417 |
|
default: |
1418 |
|
Stream_write_char(output, c); |
1419 |
|
break; |
1420 |
|
} |
1421 |
i++; |
i++; |
1422 |
if (i < input_length && base[i] == '\n') { |
if (i >= highlighted_stream->length) { |
1423 |
i++; |
done = true; |
1424 |
} |
} |
1425 |
} |
} |
1426 |
else if (base[i] == '\n') { |
Stream_write_char(output, '"'); |
1427 |
line_end = i; |
} |
1428 |
|
Stream_delete(highlighted_stream); |
1429 |
|
} |
1430 |
|
else { |
1431 |
|
size_t i = 0; |
1432 |
|
while (i < num_characters) { |
1433 |
|
if (i > 0) { |
1434 |
|
Stream_write_char(output, ','); |
1435 |
|
} |
1436 |
|
|
1437 |
|
Stream_write_char(output, '"'); |
1438 |
|
bool done = false; |
1439 |
|
while (! done) { |
1440 |
|
jschar c = characters[i]; |
1441 |
|
switch (c) { |
1442 |
|
case 0x8: |
1443 |
|
/* backspace */ |
1444 |
|
Stream_write_string(output, "\\b"); |
1445 |
|
break; |
1446 |
|
case 0x9: |
1447 |
|
/* horizontal tab */ |
1448 |
|
Stream_write_string(output, "\\t"); |
1449 |
|
break; |
1450 |
|
case 0xa: |
1451 |
|
/* line feed (new line) */ |
1452 |
|
done = true; |
1453 |
|
break; |
1454 |
|
/* IE doesn't support this */ |
1455 |
|
/* |
1456 |
|
case 0xb: |
1457 |
|
Stream_write_string(output, "\\v"); |
1458 |
|
break; |
1459 |
|
*/ |
1460 |
|
case 0xc: |
1461 |
|
/* form feed */ |
1462 |
|
Stream_write_string(output, "\\f"); |
1463 |
|
break; |
1464 |
|
case 0xd: |
1465 |
|
/* carriage return */ |
1466 |
|
done = true; |
1467 |
|
if (i + 1 < num_characters && characters[i + 1] == '\n') { |
1468 |
|
i++; |
1469 |
|
} |
1470 |
|
break; |
1471 |
|
case '"': |
1472 |
|
Stream_write_string(output, "\\\""); |
1473 |
|
break; |
1474 |
|
case '\\': |
1475 |
|
Stream_write_string(output, "\\\\"); |
1476 |
|
break; |
1477 |
|
case '&': |
1478 |
|
Stream_write_string(output, "&"); |
1479 |
|
break; |
1480 |
|
case '<': |
1481 |
|
Stream_write_string(output, "<"); |
1482 |
|
break; |
1483 |
|
case '>': |
1484 |
|
Stream_write_string(output, ">"); |
1485 |
|
break; |
1486 |
|
case 0x2028: |
1487 |
|
case 0x2029: |
1488 |
|
done = true; |
1489 |
|
break; |
1490 |
|
default: |
1491 |
|
if (32 <= c && c <= 126) { |
1492 |
|
Stream_write_char(output, c); |
1493 |
|
} |
1494 |
|
else { |
1495 |
|
Stream_printf(output, "&#%d;", c); |
1496 |
|
} |
1497 |
|
break; |
1498 |
|
} |
1499 |
i++; |
i++; |
1500 |
|
if (i >= num_characters) { |
1501 |
|
done = true; |
1502 |
|
} |
1503 |
} |
} |
1504 |
else { |
Stream_write_char(output, '"'); |
|
abort(); |
|
|
} |
|
1505 |
} |
} |
|
|
|
|
char * line = js_DeflateString(context, base + line_start, line_end - line_start); |
|
|
Stream_write_string(output, line); |
|
|
Stream_write_char(output, '\n'); |
|
|
JS_free(context, line); |
|
1506 |
} |
} |
1507 |
|
Stream_write_string(output, "]"); |
|
Stream_delete(instrumented); |
|
|
|
|
|
JS_free(context, base); |
|
|
|
|
|
file_id = NULL; |
|
1508 |
} |
} |
1509 |
|
|
1510 |
void jscoverage_copy_resources(const char * destination_directory) { |
void jscoverage_copy_resources(const char * destination_directory) { |
1513 |
copy_resource("jscoverage.js", destination_directory); |
copy_resource("jscoverage.js", destination_directory); |
1514 |
copy_resource("jscoverage-ie.css", destination_directory); |
copy_resource("jscoverage-ie.css", destination_directory); |
1515 |
copy_resource("jscoverage-throbber.gif", destination_directory); |
copy_resource("jscoverage-throbber.gif", destination_directory); |
1516 |
copy_resource("jscoverage-sh_main.js", destination_directory); |
copy_resource("jscoverage-highlight.css", destination_directory); |
|
copy_resource("jscoverage-sh_javascript.js", destination_directory); |
|
|
copy_resource("jscoverage-sh_nedit.css", destination_directory); |
|
1517 |
} |
} |
1518 |
|
|
1519 |
/* |
/* |
1548 |
JS_HashTableDestroy(coverage->coverage_table); |
JS_HashTableDestroy(coverage->coverage_table); |
1549 |
struct FileCoverageList * p = coverage->coverage_list; |
struct FileCoverageList * p = coverage->coverage_list; |
1550 |
while (p != NULL) { |
while (p != NULL) { |
1551 |
free(p->file_coverage->lines); |
free(p->file_coverage->coverage_lines); |
1552 |
free(p->file_coverage->source); |
if (p->file_coverage->source_lines != NULL) { |
1553 |
|
for (uint32 i = 0; i < p->file_coverage->num_source_lines; i++) { |
1554 |
|
free(p->file_coverage->source_lines[i]); |
1555 |
|
} |
1556 |
|
free(p->file_coverage->source_lines); |
1557 |
|
} |
1558 |
free(p->file_coverage->id); |
free(p->file_coverage->id); |
1559 |
free(p->file_coverage); |
free(p->file_coverage); |
1560 |
struct FileCoverageList * q = p; |
struct FileCoverageList * q = p; |
1583 |
} |
} |
1584 |
|
|
1585 |
int jscoverage_parse_json(Coverage * coverage, const uint8_t * json, size_t length) { |
int jscoverage_parse_json(Coverage * coverage, const uint8_t * json, size_t length) { |
1586 |
|
int result = 0; |
1587 |
|
|
1588 |
jschar * base = js_InflateString(context, (char *) json, &length); |
jschar * base = js_InflateString(context, (char *) json, &length); |
1589 |
if (base == NULL) { |
if (base == NULL) { |
1590 |
fatal("out of memory"); |
fatal("out of memory"); |
1597 |
|
|
1598 |
JS_free(context, base); |
JS_free(context, base); |
1599 |
|
|
1600 |
JSTokenStream * token_stream = js_NewTokenStream(context, parenthesized_json, length + 2, NULL, 1, NULL); |
JSParseContext parse_context; |
1601 |
if (token_stream == NULL) { |
if (! js_InitParseContext(context, &parse_context, NULL, NULL, parenthesized_json, length + 2, NULL, NULL, 1)) { |
1602 |
fatal("cannot create token stream"); |
free(parenthesized_json); |
1603 |
|
return -1; |
1604 |
} |
} |
1605 |
|
JSParseNode * root = js_ParseScript(context, global, &parse_context); |
|
JSParseNode * root = js_ParseTokenStream(context, global, token_stream); |
|
1606 |
free(parenthesized_json); |
free(parenthesized_json); |
1607 |
if (root == NULL) { |
if (root == NULL) { |
1608 |
return -1; |
result = -1; |
1609 |
|
goto done; |
1610 |
} |
} |
1611 |
|
|
1612 |
/* root node must be TOK_LC */ |
/* root node must be TOK_LC */ |
1613 |
if (root->pn_type != TOK_LC) { |
if (root->pn_type != TOK_LC) { |
1614 |
return -1; |
result = -1; |
1615 |
|
goto done; |
1616 |
} |
} |
1617 |
JSParseNode * semi = root->pn_u.list.head; |
JSParseNode * semi = root->pn_u.list.head; |
1618 |
|
|
1619 |
/* the list must be TOK_SEMI and it must contain only one element */ |
/* the list must be TOK_SEMI and it must contain only one element */ |
1620 |
if (semi->pn_type != TOK_SEMI || semi->pn_next != NULL) { |
if (semi->pn_type != TOK_SEMI || semi->pn_next != NULL) { |
1621 |
return -1; |
result = -1; |
1622 |
|
goto done; |
1623 |
} |
} |
1624 |
JSParseNode * parenthesized = semi->pn_kid; |
JSParseNode * parenthesized = semi->pn_kid; |
1625 |
|
|
1626 |
/* this must be a parenthesized expression */ |
/* this must be a parenthesized expression */ |
1627 |
if (parenthesized->pn_type != TOK_RP) { |
if (parenthesized->pn_type != TOK_RP) { |
1628 |
return -1; |
result = -1; |
1629 |
|
goto done; |
1630 |
} |
} |
1631 |
JSParseNode * object = parenthesized->pn_kid; |
JSParseNode * object = parenthesized->pn_kid; |
1632 |
|
|
1633 |
/* this must be an object literal */ |
/* this must be an object literal */ |
1634 |
if (object->pn_type != TOK_RC) { |
if (object->pn_type != TOK_RC) { |
1635 |
return -1; |
result = -1; |
1636 |
|
goto done; |
1637 |
} |
} |
1638 |
|
|
1639 |
for (JSParseNode * p = object->pn_head; p != NULL; p = p->pn_next) { |
for (JSParseNode * p = object->pn_head; p != NULL; p = p->pn_next) { |
1640 |
/* every element of this list must be TOK_COLON */ |
/* every element of this list must be TOK_COLON */ |
1641 |
if (p->pn_type != TOK_COLON) { |
if (p->pn_type != TOK_COLON) { |
1642 |
return -1; |
result = -1; |
1643 |
|
goto done; |
1644 |
} |
} |
1645 |
|
|
1646 |
/* the key must be a string representing the file */ |
/* the key must be a string representing the file */ |
1647 |
JSParseNode * key = p->pn_left; |
JSParseNode * key = p->pn_left; |
1648 |
if (key->pn_type != TOK_STRING || ! ATOM_IS_STRING(key->pn_atom)) { |
if (key->pn_type != TOK_STRING || ! ATOM_IS_STRING(key->pn_atom)) { |
1649 |
return -1; |
result = -1; |
1650 |
|
goto done; |
1651 |
} |
} |
1652 |
char * id_bytes = JS_GetStringBytes(ATOM_TO_STRING(key->pn_atom)); |
char * id_bytes = JS_GetStringBytes(ATOM_TO_STRING(key->pn_atom)); |
1653 |
|
|
1654 |
/* the value must be an object literal OR an array */ |
/* the value must be an object literal OR an array */ |
1655 |
JSParseNode * value = p->pn_right; |
JSParseNode * value = p->pn_right; |
1656 |
if (! (value->pn_type == TOK_RC || value->pn_type == TOK_RB)) { |
if (! (value->pn_type == TOK_RC || value->pn_type == TOK_RB)) { |
1657 |
return -1; |
result = -1; |
1658 |
|
goto done; |
1659 |
} |
} |
1660 |
|
|
1661 |
JSParseNode * array = NULL; |
JSParseNode * array = NULL; |
1667 |
else if (value->pn_type == TOK_RC) { |
else if (value->pn_type == TOK_RC) { |
1668 |
/* an object literal */ |
/* an object literal */ |
1669 |
if (value->pn_count != 2) { |
if (value->pn_count != 2) { |
1670 |
return -1; |
result = -1; |
1671 |
|
goto done; |
1672 |
} |
} |
1673 |
for (JSParseNode * element = value->pn_head; element != NULL; element = element->pn_next) { |
for (JSParseNode * element = value->pn_head; element != NULL; element = element->pn_next) { |
1674 |
if (element->pn_type != TOK_COLON) { |
if (element->pn_type != TOK_COLON) { |
1675 |
return -1; |
result = -1; |
1676 |
|
goto done; |
1677 |
} |
} |
1678 |
JSParseNode * left = element->pn_left; |
JSParseNode * left = element->pn_left; |
1679 |
if (left->pn_type != TOK_STRING || ! ATOM_IS_STRING(left->pn_atom)) { |
if (left->pn_type != TOK_STRING || ! ATOM_IS_STRING(left->pn_atom)) { |
1680 |
return -1; |
result = -1; |
1681 |
|
goto done; |
1682 |
} |
} |
1683 |
const char * s = JS_GetStringBytes(ATOM_TO_STRING(left->pn_atom)); |
const char * s = JS_GetStringBytes(ATOM_TO_STRING(left->pn_atom)); |
1684 |
if (strcmp(s, "coverage") == 0) { |
if (strcmp(s, "coverage") == 0) { |
1685 |
array = element->pn_right; |
array = element->pn_right; |
1686 |
if (array->pn_type != TOK_RB) { |
if (array->pn_type != TOK_RB) { |
1687 |
return -1; |
result = -1; |
1688 |
|
goto done; |
1689 |
} |
} |
1690 |
} |
} |
1691 |
else if (strcmp(s, "source") == 0) { |
else if (strcmp(s, "source") == 0) { |
1692 |
source = element->pn_right; |
source = element->pn_right; |
1693 |
if (source->pn_type != TOK_STRING || ! ATOM_IS_STRING(source->pn_atom)) { |
if (source->pn_type != TOK_RB) { |
1694 |
return -1; |
result = -1; |
1695 |
|
goto done; |
1696 |
} |
} |
1697 |
} |
} |
1698 |
else { |
else { |
1699 |
return -1; |
result = -1; |
1700 |
|
goto done; |
1701 |
} |
} |
1702 |
} |
} |
1703 |
} |
} |
1704 |
else { |
else { |
1705 |
return -1; |
result = -1; |
1706 |
|
goto done; |
1707 |
} |
} |
1708 |
|
|
1709 |
if (array == NULL) { |
if (array == NULL) { |
1710 |
return -1; |
result = -1; |
1711 |
|
goto done; |
1712 |
} |
} |
1713 |
|
|
1714 |
/* look up the file in the coverage table */ |
/* look up the file in the coverage table */ |
1718 |
char * id = xstrdup(id_bytes); |
char * id = xstrdup(id_bytes); |
1719 |
file_coverage = xmalloc(sizeof(FileCoverage)); |
file_coverage = xmalloc(sizeof(FileCoverage)); |
1720 |
file_coverage->id = id; |
file_coverage->id = id; |
1721 |
file_coverage->num_lines = array->pn_count - 1; |
file_coverage->num_coverage_lines = array->pn_count; |
1722 |
file_coverage->lines = xnew(int, array->pn_count); |
file_coverage->coverage_lines = xnew(int, array->pn_count); |
1723 |
if (source == NULL) { |
file_coverage->source_lines = NULL; |
|
file_coverage->source = NULL; |
|
|
} |
|
|
else { |
|
|
file_coverage->source = xstrdup(JS_GetStringBytes(ATOM_TO_STRING(source->pn_atom))); |
|
|
} |
|
1724 |
|
|
1725 |
/* set coverage for all lines */ |
/* set coverage for all lines */ |
1726 |
uint32 i = 0; |
uint32 i = 0; |
1727 |
for (JSParseNode * element = array->pn_head; element != NULL; element = element->pn_next, i++) { |
for (JSParseNode * element = array->pn_head; element != NULL; element = element->pn_next, i++) { |
1728 |
if (element->pn_type == TOK_NUMBER) { |
if (element->pn_type == TOK_NUMBER) { |
1729 |
file_coverage->lines[i] = (int) element->pn_dval; |
file_coverage->coverage_lines[i] = (int) element->pn_dval; |
1730 |
} |
} |
1731 |
else if (element->pn_type == TOK_PRIMARY && element->pn_op == JSOP_NULL) { |
else if (element->pn_type == TOK_PRIMARY && element->pn_op == JSOP_NULL) { |
1732 |
file_coverage->lines[i] = -1; |
file_coverage->coverage_lines[i] = -1; |
1733 |
} |
} |
1734 |
else { |
else { |
1735 |
return -1; |
result = -1; |
1736 |
|
goto done; |
1737 |
} |
} |
1738 |
} |
} |
1739 |
assert(i == array->pn_count); |
assert(i == array->pn_count); |
1748 |
else { |
else { |
1749 |
/* sanity check */ |
/* sanity check */ |
1750 |
assert(strcmp(file_coverage->id, id_bytes) == 0); |
assert(strcmp(file_coverage->id, id_bytes) == 0); |
1751 |
if (file_coverage->num_lines != array->pn_count - 1) { |
if (file_coverage->num_coverage_lines != array->pn_count) { |
1752 |
return -2; |
result = -2; |
1753 |
|
goto done; |
1754 |
} |
} |
1755 |
|
|
1756 |
/* merge the coverage */ |
/* merge the coverage */ |
1757 |
uint32 i = 0; |
uint32 i = 0; |
1758 |
for (JSParseNode * element = array->pn_head; element != NULL; element = element->pn_next, i++) { |
for (JSParseNode * element = array->pn_head; element != NULL; element = element->pn_next, i++) { |
1759 |
if (element->pn_type == TOK_NUMBER) { |
if (element->pn_type == TOK_NUMBER) { |
1760 |
if (file_coverage->lines[i] == -1) { |
if (file_coverage->coverage_lines[i] == -1) { |
1761 |
return -2; |
result = -2; |
1762 |
|
goto done; |
1763 |
} |
} |
1764 |
file_coverage->lines[i] += (int) element->pn_dval; |
file_coverage->coverage_lines[i] += (int) element->pn_dval; |
1765 |
} |
} |
1766 |
else if (element->pn_type == TOK_PRIMARY && element->pn_op == JSOP_NULL) { |
else if (element->pn_type == TOK_PRIMARY && element->pn_op == JSOP_NULL) { |
1767 |
if (file_coverage->lines[i] != -1) { |
if (file_coverage->coverage_lines[i] != -1) { |
1768 |
return -2; |
result = -2; |
1769 |
|
goto done; |
1770 |
} |
} |
1771 |
} |
} |
1772 |
else { |
else { |
1773 |
return -1; |
result = -1; |
1774 |
|
goto done; |
1775 |
} |
} |
1776 |
} |
} |
1777 |
assert(i == array->pn_count); |
assert(i == array->pn_count); |
1778 |
|
} |
1779 |
|
|
1780 |
/* if this JSON file has source, use it */ |
/* if this JSON file has source, use it */ |
1781 |
if (file_coverage->source == NULL && source != NULL) { |
if (file_coverage->source_lines == NULL && source != NULL) { |
1782 |
file_coverage->source = xstrdup(JS_GetStringBytes(ATOM_TO_STRING(source->pn_atom))); |
file_coverage->num_source_lines = source->pn_count; |
1783 |
|
file_coverage->source_lines = xnew(char *, source->pn_count); |
1784 |
|
uint32 i = 0; |
1785 |
|
for (JSParseNode * element = source->pn_head; element != NULL; element = element->pn_next, i++) { |
1786 |
|
if (element->pn_type != TOK_STRING) { |
1787 |
|
result = -1; |
1788 |
|
goto done; |
1789 |
|
} |
1790 |
|
file_coverage->source_lines[i] = xstrdup(JS_GetStringBytes(ATOM_TO_STRING(element->pn_atom))); |
1791 |
} |
} |
1792 |
|
assert(i == source->pn_count); |
1793 |
} |
} |
1794 |
} |
} |
1795 |
|
|
1796 |
return 0; |
done: |
1797 |
|
js_FinishParseContext(context, &parse_context); |
1798 |
|
return result; |
1799 |
} |
} |