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
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2014 Endless Mobile, Inc.
// SPDX-FileContributor: Authored By: Sam Spilsbury <sam@endlessm.com>
#include <config.h>
#include <stdlib.h> // for free, size_t
#include <string.h> // for strcmp, strlen
#include <new>
#include <gio/gio.h>
#include <glib-object.h>
#include <js/GCAPI.h> // for JS_AddExtraGCRootsTracer, JS_Remove...
#include <js/PropertyAndElement.h>
#include <js/Realm.h>
#include <js/RootingAPI.h>
#include <js/TracingAPI.h>
#include <js/TypeDecls.h>
#include <js/Utility.h> // for UniqueChars
#include <js/Value.h>
#include <js/experimental/CodeCoverage.h> // for EnableCodeCoverage
#include <jsapi.h> // for JS_WrapObject
#include "gjs/atoms.h"
#include "gjs/context-private.h"
#include "gjs/context.h"
#include "gjs/coverage.h"
#include "gjs/global.h"
#include "gjs/jsapi-util.h"
#include "gjs/macros.h"
static bool s_coverage_enabled = false;
struct _GjsCoverage {
GObject parent;
};
typedef struct {
gchar **prefixes;
GjsContext *context;
JS::Heap<JSObject*> global;
GFile *output_dir;
} GjsCoveragePrivate;
G_DEFINE_TYPE_WITH_PRIVATE(GjsCoverage,
gjs_coverage,
G_TYPE_OBJECT)
enum {
PROP_COVERAGE_0,
PROP_PREFIXES,
PROP_CONTEXT,
PROP_CACHE,
PROP_OUTPUT_DIRECTORY,
PROP_N
};
static GParamSpec *properties[PROP_N] = { NULL, };
[[nodiscard]] static char* get_file_identifier(GFile* source_file) {
char *path = g_file_get_path(source_file);
if (!path)
path = g_file_get_uri(source_file);
return path;
}
[[nodiscard]] static bool write_source_file_header(GOutputStream* stream,
GFile* source_file,
GError** error) {
GjsAutoChar path = get_file_identifier(source_file);
return g_output_stream_printf(stream, NULL, NULL, error, "SF:%s\n", path.get());
}
[[nodiscard]] static bool copy_source_file_to_coverage_output(
GFile* source_file, GFile* destination_file, GError** error) {
/* We need to recursively make the directory we
* want to copy to, as g_file_copy doesn't do that */
GjsAutoUnref<GFile> destination_dir = g_file_get_parent(destination_file);
if (!g_file_make_directory_with_parents(destination_dir, NULL, error)) {
if (!g_error_matches(*error, G_IO_ERROR, G_IO_ERROR_EXISTS))
return false;
g_clear_error(error);
}
return g_file_copy(source_file, destination_file, G_FILE_COPY_OVERWRITE,
nullptr, nullptr, nullptr, error);
}
/* This function will strip a URI scheme and return
* the string with the URI scheme stripped or NULL
* if the path was not a valid URI
*/
[[nodiscard]] static char* strip_uri_scheme(const char* potential_uri) {
char *uri_header = g_uri_parse_scheme(potential_uri);
if (uri_header) {
gsize offset = strlen(uri_header);
g_free(uri_header);
/* g_uri_parse_scheme only parses the name
* of the scheme, we also need to strip the
* characters ':///' */
return g_strdup(potential_uri + offset + 4);
}
return NULL;
}
/* This function will return a string of pathname
* components from the first directory indicating
* where two directories diverge. For instance:
*
* child: /a/b/c/d/e
* parent: /a/b/d/
*
* Will return: c/d/e
*
* If the directories are not at all similar then
* the full dirname of the child_path effectively
* be returned.
*
* As a special case, child paths that are a URI
* automatically return the full URI path with
* the URI scheme and leading slash stripped out.
*/
[[nodiscard]] static char* find_diverging_child_components(GFile* child,
GFile* parent) {
GjsAutoUnref<GFile> ancestor(parent, GjsAutoTakeOwnership());
while (ancestor) {
char *relpath = g_file_get_relative_path(ancestor, child);
if (relpath)
return relpath;
ancestor = g_file_get_parent(ancestor);
}
/* This is a special case of getting the URI below. The difference is that
* this gives you a regular path name; getting it through the URI would
* give a URI-encoded path (%20 for spaces, etc.) */
GjsAutoUnref<GFile> root = g_file_new_for_path("/");
char* child_path = g_file_get_relative_path(root, child);
if (child_path)
return child_path;
GjsAutoChar child_uri = g_file_get_uri(child);
return strip_uri_scheme(child_uri);
}
[[nodiscard]] static bool filename_has_coverage_prefixes(GjsCoverage* self,
const char* filename) {
auto priv = static_cast<GjsCoveragePrivate *>(gjs_coverage_get_instance_private(self));
GjsAutoChar workdir = g_get_current_dir();
GjsAutoChar abs_filename = g_canonicalize_filename(filename, workdir);
for (const char * const *prefix = priv->prefixes; *prefix; prefix++) {
GjsAutoChar abs_prefix = g_canonicalize_filename(*prefix, workdir);
if (g_str_has_prefix(abs_filename, abs_prefix))
return true;
}
return false;
}
static inline bool
write_line(GOutputStream *out,
const char *line,
GError **error)
{
return g_output_stream_printf(out, nullptr, nullptr, error, "%s\n", line);
}
[[nodiscard]] static GjsAutoUnref<GFile> write_statistics_internal(
GjsCoverage* coverage, JSContext* cx, GError** error) {
if (!s_coverage_enabled) {
g_critical(
"Code coverage requested, but gjs_coverage_enable() was not called."
" You must call this function before creating any GjsContext.");
return nullptr;
}
GjsCoveragePrivate *priv = (GjsCoveragePrivate *) gjs_coverage_get_instance_private(coverage);
/* Create output directory if it doesn't exist */
if (!g_file_make_directory_with_parents(priv->output_dir, nullptr, error)) {
if (!g_error_matches(*error, G_IO_ERROR, G_IO_ERROR_EXISTS))
return nullptr;
g_clear_error(error);
}
GFile *output_file = g_file_get_child(priv->output_dir, "coverage.lcov");
size_t lcov_length;
JS::UniqueChars lcov = js::GetCodeCoverageSummary(cx, &lcov_length);
GjsAutoUnref<GOutputStream> ostream =
G_OUTPUT_STREAM(g_file_append_to(output_file,
G_FILE_CREATE_NONE,
NULL,
error));
if (!ostream)
return nullptr;
GjsAutoStrv lcov_lines = g_strsplit(lcov.get(), "\n", -1);
const char* test_name = NULL;
bool ignoring_file = false;
for (const char * const *iter = lcov_lines.get(); *iter; iter++) {
if (ignoring_file) {
if (strcmp(*iter, "end_of_record") == 0)
ignoring_file = false;
continue;
}
if (g_str_has_prefix(*iter, "TN:")) {
/* Don't write the test name if the next line shows we are
* ignoring the source file */
test_name = *iter;
continue;
} else if (g_str_has_prefix(*iter, "SF:")) {
const char *filename = *iter + 3;
if (!filename_has_coverage_prefixes(coverage, filename)) {
ignoring_file = true;
continue;
}
/* Now we can write the test name before writing the source file */
if (!write_line(ostream, test_name, error))
return nullptr;
/* The source file could be a resource, so we must use
* g_file_new_for_commandline_arg() to disambiguate between URIs and
* filesystem paths. */
GjsAutoUnref<GFile> source_file = g_file_new_for_commandline_arg(filename);
GjsAutoChar diverged_paths =
find_diverging_child_components(source_file, priv->output_dir);
GjsAutoUnref<GFile> destination_file =
g_file_resolve_relative_path(priv->output_dir, diverged_paths);
if (!copy_source_file_to_coverage_output(source_file, destination_file, error))
return nullptr;
/* Rewrite the source file path to be relative to the output
* dir so that genhtml will find it */
if (!write_source_file_header(ostream, destination_file, error))
return nullptr;
continue;
}
if (!write_line(ostream, *iter, error))
return nullptr;
}
return output_file;
}
/**
* gjs_coverage_write_statistics:
* @coverage: A #GjsCoverage
* @output_directory: A directory to write coverage information to.
*
* Scripts which were provided as part of the #GjsCoverage:prefixes
* construction property will be written out to @output_directory, in the same
* directory structure relative to the source dir where the tests were run.
*
* This function takes all available statistics and writes them out to either
* the file provided or to files of the pattern (filename).info in the same
* directory as the scanned files. It will provide coverage data for all files
* ending with ".js" in the coverage directories.
*/
void
gjs_coverage_write_statistics(GjsCoverage *coverage)
{
auto priv = static_cast<GjsCoveragePrivate *>(gjs_coverage_get_instance_private(coverage));
GError *error = nullptr;
auto cx = static_cast<JSContext *>(gjs_context_get_native_context(priv->context));
JSAutoRealm ar(cx, gjs_get_import_global(cx));
GjsAutoUnref<GFile> output_file = write_statistics_internal(coverage, cx, &error);
if (!output_file) {
g_critical("Error writing coverage data: %s", error->message);
g_error_free(error);
return;
}
GjsAutoChar output_file_path = g_file_get_path(output_file);
g_message("Wrote coverage statistics to %s", output_file_path.get());
}
static void gjs_coverage_init(GjsCoverage*) {
if (!s_coverage_enabled)
g_critical(
"Code coverage requested, but gjs_coverage_enable() was not called."
" You must call this function before creating any GjsContext.");
}
static void
coverage_tracer(JSTracer *trc, void *data)
{
GjsCoverage *coverage = (GjsCoverage *) data;
GjsCoveragePrivate *priv = (GjsCoveragePrivate *) gjs_coverage_get_instance_private(coverage);
JS::TraceEdge<JSObject*>(trc, &priv->global, "Coverage global object");
}
GJS_JSAPI_RETURN_CONVENTION
static bool
bootstrap_coverage(GjsCoverage *coverage)
{
GjsCoveragePrivate *priv = (GjsCoveragePrivate *) gjs_coverage_get_instance_private(coverage);
JSContext *context = (JSContext *) gjs_context_get_native_context(priv->context);
JSObject *debuggee = gjs_get_import_global(context);
JS::RootedObject debugger_global(
context, gjs_create_global_object(context, GjsGlobalType::DEBUGGER));
{
JSAutoRealm ar(context, debugger_global);
JS::RootedObject debuggeeWrapper(context, debuggee);
if (!JS_WrapObject(context, &debuggeeWrapper))
return false;
const GjsAtoms& atoms = GjsContextPrivate::atoms(context);
JS::RootedValue debuggeeWrapperValue(context, JS::ObjectValue(*debuggeeWrapper));
if (!JS_SetPropertyById(context, debugger_global, atoms.debuggee(),
debuggeeWrapperValue) ||
!gjs_define_global_properties(context, debugger_global,
GjsGlobalType::DEBUGGER,
"GJS coverage", "coverage"))
return false;
/* Add a tracer, as suggested by jdm on #jsapi */
JS_AddExtraGCRootsTracer(context, coverage_tracer, coverage);
priv->global = debugger_global;
}
return true;
}
static void
gjs_coverage_constructed(GObject *object)
{
G_OBJECT_CLASS(gjs_coverage_parent_class)->constructed(object);
GjsCoverage *coverage = GJS_COVERAGE(object);
GjsCoveragePrivate *priv = (GjsCoveragePrivate *) gjs_coverage_get_instance_private(coverage);
new (&priv->global) JS::Heap<JSObject*>();
if (!bootstrap_coverage(coverage)) {
JSContext *context = static_cast<JSContext *>(gjs_context_get_native_context(priv->context));
JSAutoRealm ar(context, gjs_get_import_global(context));
gjs_log_exception(context);
}
}
static void
gjs_coverage_set_property(GObject *object,
unsigned int prop_id,
const GValue *value,
GParamSpec *pspec)
{
GjsCoverage *coverage = GJS_COVERAGE(object);
GjsCoveragePrivate *priv = (GjsCoveragePrivate *) gjs_coverage_get_instance_private(coverage);
switch (prop_id) {
case PROP_PREFIXES:
g_assert(priv->prefixes == NULL);
priv->prefixes = (char **) g_value_dup_boxed (value);
break;
case PROP_CONTEXT:
priv->context = GJS_CONTEXT(g_value_dup_object(value));
break;
case PROP_CACHE:
break;
case PROP_OUTPUT_DIRECTORY:
priv->output_dir = G_FILE(g_value_dup_object(value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
}
}
static void
gjs_coverage_dispose(GObject *object)
{
GjsCoverage *coverage = GJS_COVERAGE(object);
GjsCoveragePrivate *priv = (GjsCoveragePrivate *) gjs_coverage_get_instance_private(coverage);
/* Decomission objects inside of the JSContext before
* disposing of the context */
auto cx = static_cast<JSContext *>(gjs_context_get_native_context(priv->context));
JS_RemoveExtraGCRootsTracer(cx, coverage_tracer, coverage);
priv->global = nullptr;
g_clear_object(&priv->context);
G_OBJECT_CLASS(gjs_coverage_parent_class)->dispose(object);
}
static void
gjs_coverage_finalize (GObject *object)
{
GjsCoverage *coverage = GJS_COVERAGE(object);
GjsCoveragePrivate *priv = (GjsCoveragePrivate *) gjs_coverage_get_instance_private(coverage);
g_strfreev(priv->prefixes);
g_clear_object(&priv->output_dir);
priv->global.~Heap();
G_OBJECT_CLASS(gjs_coverage_parent_class)->finalize(object);
}
static void
gjs_coverage_class_init (GjsCoverageClass *klass)
{
GObjectClass *object_class = (GObjectClass *) klass;
object_class->constructed = gjs_coverage_constructed;
object_class->dispose = gjs_coverage_dispose;
object_class->finalize = gjs_coverage_finalize;
object_class->set_property = gjs_coverage_set_property;
properties[PROP_PREFIXES] = g_param_spec_boxed("prefixes",
"Prefixes",
"Prefixes of files on which to perform coverage analysis",
G_TYPE_STRV,
(GParamFlags) (G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE));
properties[PROP_CONTEXT] = g_param_spec_object("context",
"Context",
"A context to gather coverage stats for",
GJS_TYPE_CONTEXT,
(GParamFlags) (G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE));
properties[PROP_CACHE] = g_param_spec_object("cache",
"Deprecated property",
"Has no effect",
G_TYPE_FILE,
(GParamFlags) (G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_DEPRECATED));
properties[PROP_OUTPUT_DIRECTORY] =
g_param_spec_object("output-directory", "Output directory",
"Directory handle at which to output coverage statistics",
G_TYPE_FILE,
(GParamFlags) (G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_STATIC_STRINGS));
g_object_class_install_properties(object_class,
PROP_N,
properties);
}
/**
* gjs_coverage_new:
* @prefixes: A null-terminated strv of prefixes of files on which to record
* code coverage
* @context: A #GjsContext object
* @output_dir: A #GFile handle to a directory in which to write coverage
* information
*
* Creates a new #GjsCoverage object that collects coverage information for
* any scripts run in @context.
*
* Scripts which were provided as part of @prefixes will be written out to
* @output_dir, in the same directory structure relative to the source dir where
* the tests were run.
*
* Returns: A #GjsCoverage object
*/
GjsCoverage *
gjs_coverage_new (const char * const *prefixes,
GjsContext *context,
GFile *output_dir)
{
GjsCoverage *coverage =
GJS_COVERAGE(g_object_new(GJS_TYPE_COVERAGE,
"prefixes", prefixes,
"context", context,
"output-directory", output_dir,
NULL));
return coverage;
}
/**
* gjs_coverage_enable:
*
* This function must be called before creating any #GjsContext, if you intend
* to use any #GjsCoverage APIs.
*
* Since: 1.66
*/
void gjs_coverage_enable() {
js::EnableCodeCoverage();
s_coverage_enabled = true;
}
|