Skip to content

Commit

Permalink
core: add type checking to pwmetrics-events (#6980)
Browse files Browse the repository at this point in the history
  • Loading branch information
brendankenny committed Jan 11, 2019
1 parent d5fe65e commit b06f284
Showing 1 changed file with 63 additions and 59 deletions.
122 changes: 63 additions & 59 deletions lighthouse-core/lib/traces/pwmetrics-events.js
Expand Up @@ -3,134 +3,136 @@
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
// @ts-nocheck
'use strict';

const log = require('lighthouse-logger');

// TODO: rework this file to not need this function
// see https://github.com/GoogleChrome/lighthouse/pull/5101/files#r186168840
function findValueInMetricsAuditFn(metricName) {
return auditResults => {
const metricsAudit = auditResults.metrics;
if (!metricsAudit || !metricsAudit.details || !metricsAudit.details.items) return;
/** @typedef {import('../../audits/metrics.js').UberMetricsItem} UberMetricsItem */

const values = metricsAudit.details.items[0];
return values && values[metricName];
};
/**
* @param {LH.Audit.Results} auditResults
* @return {UberMetricsItem|undefined}
*/
function getUberMetrics(auditResults) {
const metricsAudit = auditResults.metrics;
if (!metricsAudit || !metricsAudit.details || !metricsAudit.details.items) return;

return metricsAudit.details.items[0];
}

class Metrics {
/**
* @param {Array<LH.TraceEvent>} traceEvents
* @param {LH.Audit.Results} auditResults
*/
constructor(traceEvents, auditResults) {
this._traceEvents = traceEvents;
this._auditResults = auditResults;
}

/**
* Returns simplified representation of all metrics
* @return {!Array<{getTs: Function, id: string, name: string}>} metrics to consider
* @return {Array<{id: string, name: string, tsKey: keyof UberMetricsItem}>} metrics to consider
*/
static get metricsDefinitions() {
return [
{
name: 'Navigation Start',
id: 'navstart',
getTs: findValueInMetricsAuditFn('observedNavigationStartTs'),
getTiming: findValueInMetricsAuditFn('observedNavigationStart'),
tsKey: 'observedNavigationStartTs',
},
{
name: 'First Contentful Paint',
id: 'ttfcp',
getTs: findValueInMetricsAuditFn('observedFirstContentfulPaintTs'),
getTiming: findValueInMetricsAuditFn('observedFirstContentfulPaint'),
tsKey: 'observedFirstContentfulPaintTs',
},
{
name: 'First Meaningful Paint',
id: 'ttfmp',
getTs: findValueInMetricsAuditFn('observedFirstMeaningfulPaintTs'),
getTiming: findValueInMetricsAuditFn('observedFirstMeaningfulPaint'),
tsKey: 'observedFirstMeaningfulPaintTs',
},
{
name: 'Speed Index',
id: 'si',
getTs: findValueInMetricsAuditFn('observedSpeedIndexTs'),
getTiming: findValueInMetricsAuditFn('observedSpeedIndex'),
tsKey: 'observedSpeedIndexTs',
},
{
name: 'First Visual Change',
id: 'fv',
getTs: findValueInMetricsAuditFn('observedFirstVisualChangeTs'),
getTiming: findValueInMetricsAuditFn('observedFirstVisualChange'),
tsKey: 'observedFirstVisualChangeTs',
},
{
name: 'Visually Complete 100%',
id: 'vc100',
getTs: findValueInMetricsAuditFn('observedLastVisualChangeTs'),
getTiming: findValueInMetricsAuditFn('observedLastVisualChange'),
tsKey: 'observedLastVisualChangeTs',
},
{
name: 'First CPU Idle',
id: 'ttfi',
getTs: findValueInMetricsAuditFn('firstCPUIdleTs'),
getTiming: findValueInMetricsAuditFn('firstCPUIdle'),
tsKey: 'firstCPUIdleTs',
},
{
name: 'Interactive',
id: 'tti',
getTs: findValueInMetricsAuditFn('interactiveTs'),
getTiming: findValueInMetricsAuditFn('interactive'),
tsKey: 'interactiveTs',
},
{
name: 'End of Trace',
id: 'eot',
getTs: findValueInMetricsAuditFn('observedTraceEndTs'),
getTiming: findValueInMetricsAuditFn('observedTraceEnd'),
tsKey: 'observedTraceEndTs',
},
{
name: 'On Load',
id: 'onload',
getTs: findValueInMetricsAuditFn('observedLoadTs'),
getTiming: findValueInMetricsAuditFn('observedLoad'),
tsKey: 'observedLoadTs',
},
{
name: 'DOM Content Loaded',
id: 'dcl',
getTs: findValueInMetricsAuditFn('observedDomContentLoadedTs'),
getTiming: findValueInMetricsAuditFn('observedDomContentLoaded'),
tsKey: 'observedDomContentLoadedTs',
},
];
}

/**
* Returns simplified representation of all metrics' timestamps from monotonic clock
* @return {!Array<{ts: number, id: string, name: string}>} metrics to consider
* @return {Array<{ts: number, id: string, name: string}>} metrics to consider
*/
gatherMetrics() {
const metricDfns = Metrics.metricsDefinitions;
const uberMetrics = getUberMetrics(this._auditResults);
if (!uberMetrics) {
return [];
}

/** @type {Array<{ts: number, id: string, name: string}>} */
const resolvedMetrics = [];
metricDfns.forEach(metric => {
// try/catch in case auditResults is missing a particular audit result
try {
resolvedMetrics.push({
id: metric.id,
name: metric.name,
ts: metric.getTs(this._auditResults),
});
} catch (e) {
log.error('pwmetrics-events', `${metric.name} timestamp not found: ${e.message}`);
Metrics.metricsDefinitions.forEach(metric => {
// Skip if auditResults is missing a particular audit result
const ts = uberMetrics[metric.tsKey];
if (ts === undefined) {
log.error('pwmetrics-events', `${metric.name} timestamp not found`);
return;
}

resolvedMetrics.push({
id: metric.id,
name: metric.name,
ts,
});
});

return resolvedMetrics;
}

/**
* Get the full trace event for our navigationStart
* @param {!Array<{ts: number, id: string, name: string}>} metrics
* @param {Array<{ts: number, id: string, name: string}>} metrics
* @return {LH.TraceEvent|undefined}
*/
identifyNavigationStartEvt(metrics) {
getNavigationStartEvt(metrics) {
const navStartMetric = metrics.find(e => e.id === 'navstart');
if (!navStartMetric) return;
this._navigationStartEvt = this._traceEvents.find(
return this._traceEvents.find(
e => e.name === 'navigationStart' && e.ts === navStartMetric.ts
);
}
Expand All @@ -140,47 +142,49 @@ class Metrics {
* { "pid": 89922,"tid":1295,"ts":77176783452,"ph":"b","cat":"blink.user_timing","name":"innermeasure","args":{},"tts":1257886,"id":"0xe66c67"}
* { "pid": 89922,"tid":1295,"ts":77176882592,"ph":"e","cat":"blink.user_timing","name":"innermeasure","args":{},"tts":1257898,"id":"0xe66c67"}
* @param {{ts: number, id: string, name: string}} metric
* @return {!Array} Pair of trace events (start/end)
* @param {LH.TraceEvent} navigationStartEvt
* @return {Array<LH.TraceEvent>} Pair of trace events (start/end)
*/
synthesizeEventPair(metric) {
synthesizeEventPair(metric, navigationStartEvt) {
// We'll masquerade our fake events to look mostly like navigationStart
const eventBase = {
pid: this._navigationStartEvt.pid,
tid: this._navigationStartEvt.tid,
pid: navigationStartEvt.pid,
tid: navigationStartEvt.tid,
cat: 'blink.user_timing',
name: metric.name,
args: {},
// randomized id is same for the pair
id: `0x${((Math.random() * 1000000) | 0).toString(16)}`,
};
const fakeMeasureStartEvent = Object.assign({}, eventBase, {
ts: this._navigationStartEvt.ts,
ts: navigationStartEvt.ts,
ph: 'b',
});
const fakeMeasureEndEvent = Object.assign({}, eventBase, {
ts: metric.ts,
ph: 'e',
});
return [fakeMeasureStartEvent, fakeMeasureEndEvent];
return /** @type {Array<LH.TraceEvent>} */ ([fakeMeasureStartEvent, fakeMeasureEndEvent]);
}

/**
* @returns {Array<LH.TraceEvent>} User timing raw trace event pairs
* @return {Array<LH.TraceEvent>} User timing raw trace event pairs
*/
generateFakeEvents() {
const fakeEvents = [];
const metrics = this.gatherMetrics();
if (metrics.length === 0) {
log.error('metrics-events', 'Metrics collection had errors, not synthetizing trace events');
return [];
}

this.identifyNavigationStartEvt(metrics);
if (!this._navigationStartEvt) {
const navigationStartEvt = this.getNavigationStartEvt(metrics);
if (!navigationStartEvt) {
log.error('pwmetrics-events', 'Reference navigationStart not found');
return [];
}

/** @type {Array<LH.TraceEvent>} */
const fakeEvents = [];
metrics.forEach(metric => {
if (metric.id === 'navstart') {
return;
Expand All @@ -190,7 +194,7 @@ class Metrics {
return;
}
log.verbose('pwmetrics-events', `Sythesizing trace events for ${metric.name}`);
fakeEvents.push(...this.synthesizeEventPair(metric));
fakeEvents.push(...this.synthesizeEventPair(metric, navigationStartEvt));
});
return fakeEvents;
}
Expand Down

0 comments on commit b06f284

Please sign in to comment.