
This change allows ReflectiveInjector to be tree shaken resulting in not needed Reflect polyfil and smaller bundles. Code savings for HelloWorld using Closure: Reflective: bundle.js: 105,864(34,190 gzip) Static: bundle.js: 154,889(33,555 gzip) 645( 2%) BREAKING CHANGE: `platformXXXX()` no longer accepts providers which depend on reflection. Specifically the method signature when from `Provider[]` to `StaticProvider[]`. Example: Before: ``` [ MyClass, {provide: ClassA, useClass: SubClassA} ] ``` After: ``` [ {provide: MyClass, deps: [Dep1,...]}, {provide: ClassA, useClass: SubClassA, deps: [Dep1,...]} ] ``` NOTE: This only applies to platform creation and providers for the JIT compiler. It does not apply to `@Compotent` or `@NgModule` provides declarations. Benchpress note: Previously Benchpress also supported reflective provides, which now require static providers. DEPRECATION: - `ReflectiveInjector` is now deprecated as it will be remove. Use `Injector.create` as a replacement. closes #18496
92 lines
3.0 KiB
TypeScript
92 lines
3.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {Inject, Injectable, InjectionToken} from '@angular/core';
|
|
import {MeasureValues} from '../measure_values';
|
|
import {Reporter} from '../reporter';
|
|
import {SampleDescription} from '../sample_description';
|
|
|
|
import {formatNum, formatStats, sortedProps} from './util';
|
|
|
|
|
|
/**
|
|
* A reporter for the console
|
|
*/
|
|
@Injectable()
|
|
export class ConsoleReporter extends Reporter {
|
|
static PRINT = new InjectionToken('ConsoleReporter.print');
|
|
static COLUMN_WIDTH = new InjectionToken('ConsoleReporter.columnWidth');
|
|
static PROVIDERS = [
|
|
{
|
|
provide: ConsoleReporter,
|
|
deps: [ConsoleReporter.COLUMN_WIDTH, SampleDescription, ConsoleReporter.PRINT]
|
|
},
|
|
{provide: ConsoleReporter.COLUMN_WIDTH, useValue: 18}, {
|
|
provide: ConsoleReporter.PRINT,
|
|
useValue: function(v: any) {
|
|
// tslint:disable-next-line:no-console
|
|
console.log(v);
|
|
}
|
|
}
|
|
];
|
|
|
|
private static _lpad(value: string, columnWidth: number, fill = ' ') {
|
|
let result = '';
|
|
for (let i = 0; i < columnWidth - value.length; i++) {
|
|
result += fill;
|
|
}
|
|
return result + value;
|
|
}
|
|
|
|
private _metricNames: string[];
|
|
|
|
constructor(
|
|
@Inject(ConsoleReporter.COLUMN_WIDTH) private _columnWidth: number,
|
|
sampleDescription: SampleDescription,
|
|
@Inject(ConsoleReporter.PRINT) private _print: Function) {
|
|
super();
|
|
this._metricNames = sortedProps(sampleDescription.metrics);
|
|
this._printDescription(sampleDescription);
|
|
}
|
|
|
|
private _printDescription(sampleDescription: SampleDescription) {
|
|
this._print(`BENCHMARK ${sampleDescription.id}`);
|
|
this._print('Description:');
|
|
const props = sortedProps(sampleDescription.description);
|
|
props.forEach((prop) => { this._print(`- ${prop}: ${sampleDescription.description[prop]}`); });
|
|
this._print('Metrics:');
|
|
this._metricNames.forEach((metricName) => {
|
|
this._print(`- ${metricName}: ${sampleDescription.metrics[metricName]}`);
|
|
});
|
|
this._print('');
|
|
this._printStringRow(this._metricNames);
|
|
this._printStringRow(this._metricNames.map((_) => ''), '-');
|
|
}
|
|
|
|
reportMeasureValues(measureValues: MeasureValues): Promise<any> {
|
|
const formattedValues = this._metricNames.map(metricName => {
|
|
const value = measureValues.values[metricName];
|
|
return formatNum(value);
|
|
});
|
|
this._printStringRow(formattedValues);
|
|
return Promise.resolve(null);
|
|
}
|
|
|
|
reportSample(completeSample: MeasureValues[], validSamples: MeasureValues[]): Promise<any> {
|
|
this._printStringRow(this._metricNames.map((_) => ''), '=');
|
|
this._printStringRow(
|
|
this._metricNames.map(metricName => formatStats(validSamples, metricName)));
|
|
return Promise.resolve(null);
|
|
}
|
|
|
|
private _printStringRow(parts: any[], fill = ' ') {
|
|
this._print(
|
|
parts.map(part => ConsoleReporter._lpad(part, this._columnWidth, fill)).join(' | '));
|
|
}
|
|
}
|