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
|
/*!
* The mediawiki.inspect module.
*
* @author Ori Livneh
* @since 1.22
*/
/* eslint-disable no-console */
( function () {
// mw.inspect is a singleton class with static methods
// that itself can also be invoked as a function (mediawiki.base/mw#inspect).
// In JavaScript, that is implemented by starting with a function,
// and subsequently setting additional properties on the function object.
/**
* Tools for inspecting page composition and performance.
*
* @class mw.inspect
* @singleton
*/
var inspect = mw.inspect,
byteLength = require( 'mediawiki.String' ).byteLength,
hasOwn = Object.prototype.hasOwnProperty;
function sortByProperty( array, prop, descending ) {
var order = descending ? -1 : 1;
return array.sort( function ( a, b ) {
if ( a[ prop ] === undefined || b[ prop ] === undefined ) {
// Sort undefined to the end, regardless of direction
return a[ prop ] !== undefined ? -1 : b[ prop ] !== undefined ? 1 : 0;
}
return a[ prop ] > b[ prop ] ? order : a[ prop ] < b[ prop ] ? -order : 0;
} );
}
function humanSize( bytesInput ) {
var i,
bytes = +bytesInput,
units = [ '', ' KiB', ' MiB', ' GiB', ' TiB', ' PiB' ];
if ( bytes === 0 || isNaN( bytes ) ) {
return bytesInput;
}
for ( i = 0; bytes >= 1024; bytes /= 1024 ) {
i++;
}
// Maintain one decimal for kB and above, but don't
// add ".0" for bytes.
return bytes.toFixed( i > 0 ? 1 : 0 ) + units[ i ];
}
/**
* Return a map of all dependency relationships between loaded modules.
*
* @return {Object} Maps module names to objects. Each sub-object has
* two properties, 'requires' and 'requiredBy'.
*/
inspect.getDependencyGraph = function () {
var modules = inspect.getLoadedModules(),
graph = {};
modules.forEach( function ( moduleName ) {
var dependencies = mw.loader.moduleRegistry[ moduleName ].dependencies || [];
if ( !hasOwn.call( graph, moduleName ) ) {
graph[ moduleName ] = { requiredBy: [] };
}
graph[ moduleName ].requires = dependencies;
dependencies.forEach( function ( depName ) {
if ( !hasOwn.call( graph, depName ) ) {
graph[ depName ] = { requiredBy: [] };
}
graph[ depName ].requiredBy.push( moduleName );
} );
} );
return graph;
};
/**
* Calculate the byte size of a ResourceLoader module.
*
* @param {string} moduleName The name of the module
* @return {number|null} Module size in bytes or null
*/
inspect.getModuleSize = function ( moduleName ) {
var module = mw.loader.moduleRegistry[ moduleName ],
args, i, size;
if ( module.state !== 'ready' ) {
return null;
}
if ( !module.style && !module.script ) {
return 0;
}
function getFunctionBody( func ) {
return String( func )
// To ensure a deterministic result, replace the start of the function
// declaration with a fixed string. For example, in Chrome 55, it seems
// V8 seemingly-at-random decides to sometimes put a line break between
// the opening brace and first statement of the function body. T159751.
.replace( /^\s*function\s*\([^)]*\)\s*{\s*/, 'function(){' )
.replace( /\s*}\s*$/, '}' );
}
// Based on the load.php response for this module.
// For example: `mw.loader.implement("example", function(){}, {"css":[".x{color:red}"]});`
// @see mw.loader.store.set().
args = [
moduleName,
module.script,
module.style,
module.messages,
module.templates
];
// Trim trailing null or empty object, as load.php would have done.
// @see ResourceLoader::makeLoaderImplementScript and ResourceLoader::trimArray.
i = args.length;
while ( i-- ) {
if ( args[ i ] === null || ( $.isPlainObject( args[ i ] ) && $.isEmptyObject( args[ i ] ) ) ) {
args.splice( i, 1 );
} else {
break;
}
}
size = 0;
for ( i = 0; i < args.length; i++ ) {
if ( typeof args[ i ] === 'function' ) {
size += byteLength( getFunctionBody( args[ i ] ) );
} else {
size += byteLength( JSON.stringify( args[ i ] ) );
}
}
return size;
};
/**
* Given CSS source, count both the total number of selectors it
* contains and the number which match some element in the current
* document.
*
* @param {string} css CSS source
* @return {Object} Selector counts
* @return {number} return.selectors Total number of selectors
* @return {number} return.matched Number of matched selectors
*/
inspect.auditSelectors = function ( css ) {
var selectors = { total: 0, matched: 0 },
style = document.createElement( 'style' );
style.textContent = css;
document.body.appendChild( style );
// eslint-disable-next-line no-jquery/no-each-util
$.each( style.sheet.cssRules, function ( index, rule ) {
selectors.total++;
// document.querySelector() on prefixed pseudo-elements can throw exceptions
// in Firefox and Safari. Ignore these exceptions.
// https://bugs.webkit.org/show_bug.cgi?id=149160
// https://bugzilla.mozilla.org/show_bug.cgi?id=1204880
try {
if ( document.querySelector( rule.selectorText ) !== null ) {
selectors.matched++;
}
} catch ( e ) {}
} );
document.body.removeChild( style );
return selectors;
};
/**
* Get a list of all loaded ResourceLoader modules.
*
* @return {Array} List of module names
*/
inspect.getLoadedModules = function () {
return mw.loader.getModuleNames().filter( function ( module ) {
return mw.loader.getState( module ) === 'ready';
} );
};
/**
* Print tabular data to the console, using console.table, console.log,
* or mw.log (in declining order of preference).
*
* @param {Array} data Tabular data represented as an array of objects
* with common properties.
*/
inspect.dumpTable = function ( data ) {
try {
// Use Function.prototype#call to force an exception on Firefox,
// which doesn't define console#table but doesn't complain if you
// try to invoke it.
// eslint-disable-next-line no-useless-call
console.table.call( console, data );
return;
} catch ( e ) {}
try {
console.log( JSON.stringify( data, null, 2 ) );
} catch ( e ) {}
};
/**
* Generate and print reports.
*
* When invoked without arguments, prints all available reports.
*
* @param {...string} [reports] One or more of "size", "css", "store", or "time".
*/
inspect.runReports = function () {
var reports = arguments.length > 0 ?
Array.prototype.slice.call( arguments ) :
Object.keys( inspect.reports );
reports.forEach( function ( name ) {
if ( console.group ) {
console.group( 'mw.inspect ' + name + ' report' );
} else {
console.log( 'mw.inspect ' + name + ' report' );
}
inspect.dumpTable( inspect.reports[ name ]() );
if ( console.group ) {
console.groupEnd( 'mw.inspect ' + name + ' report' );
}
} );
};
/**
* Perform a string search across the JavaScript and CSS source code
* of all loaded modules and return an array of the names of the
* modules that matched.
*
* @param {string|RegExp} pattern String or regexp to match.
* @return {Array} Array of the names of modules that matched.
*/
inspect.grep = function ( pattern ) {
if ( typeof pattern.test !== 'function' ) {
pattern = new RegExp( mw.RegExp.escape( pattern ), 'g' );
}
return inspect.getLoadedModules().filter( function ( moduleName ) {
var module = mw.loader.moduleRegistry[ moduleName ];
// Grep module's JavaScript
if ( typeof module.script === 'function' && pattern.test( module.script.toString() ) ) {
return true;
}
// Grep module's CSS
if (
$.isPlainObject( module.style ) && Array.isArray( module.style.css ) &&
pattern.test( module.style.css.join( '' ) )
) {
// Module's CSS source matches
return true;
}
return false;
} );
};
/**
* @private
* @class mw.inspect.reports
* @singleton
*/
inspect.reports = {
/**
* Generate a breakdown of all loaded modules and their size in
* kilobytes. Modules are ordered from largest to smallest.
*
* @return {Object[]} Size reports
*/
size: function () {
// Map each module to a descriptor object.
var modules = inspect.getLoadedModules().map( function ( module ) {
return {
name: module,
size: inspect.getModuleSize( module )
};
} );
// Sort module descriptors by size, largest first.
sortByProperty( modules, 'size', true );
// Convert size to human-readable string.
modules.forEach( function ( module ) {
module.sizeInBytes = module.size;
module.size = humanSize( module.size );
} );
return modules;
},
/**
* For each module with styles, count the number of selectors, and
* count how many match against some element currently in the DOM.
*
* @return {Object[]} CSS reports
*/
css: function () {
var modules = [];
inspect.getLoadedModules().forEach( function ( name ) {
var css, stats, module = mw.loader.moduleRegistry[ name ];
try {
css = module.style.css.join();
} catch ( e ) { return; } // skip
stats = inspect.auditSelectors( css );
modules.push( {
module: name,
allSelectors: stats.total,
matchedSelectors: stats.matched,
percentMatched: stats.total !== 0 ?
( stats.matched / stats.total * 100 ).toFixed( 2 ) + '%' : null
} );
} );
sortByProperty( modules, 'allSelectors', true );
return modules;
},
/**
* Report stats on mw.loader.store: the number of localStorage
* cache hits and misses, the number of items purged from the
* cache, and the total size of the module blob in localStorage.
*
* @return {Object[]} Store stats
*/
store: function () {
var raw, stats = { enabled: mw.loader.store.enabled };
if ( stats.enabled ) {
$.extend( stats, mw.loader.store.stats );
try {
raw = localStorage.getItem( mw.loader.store.getStoreKey() );
stats.totalSizeInBytes = byteLength( raw );
stats.totalSize = humanSize( byteLength( raw ) );
} catch ( e ) {}
}
return [ stats ];
},
/**
* Generate a breakdown of all loaded modules and their time
* spent during initialisation (measured in milliseconds).
*
* This timing data is collected by mw.loader.profiler.
*
* @return {Object[]} Table rows
*/
time: function () {
var modules;
if ( !mw.loader.profiler ) {
mw.log.warn( 'mw.inspect: The time report requires $wgResourceLoaderEnableJSProfiler.' );
return [];
}
modules = inspect.getLoadedModules()
.map( function ( moduleName ) {
return mw.loader.profiler.getProfile( moduleName );
} )
.filter( function ( perf ) {
// Exclude modules that reached "ready" state without involvement from mw.loader.
// This is primarily styles-only as loaded via <link rel="stylesheet">.
return perf !== null;
} );
// Sort by total time spent, highest first.
sortByProperty( modules, 'total', true );
// Add human-readable strings
modules.forEach( function ( module ) {
module.totalInMs = module.total;
module.total = module.totalInMs.toLocaleString() + ' ms';
} );
return modules;
}
};
if ( mw.config.get( 'debug' ) ) {
mw.log( 'mw.inspect: reports are not available in debug mode.' );
}
}() );
|