2018-07-16 10:23:37 +01:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2018-07-27 22:36:54 +03:00
|
|
|
import {ConstantPool, Expression, Statement, WrappedNodeExpr, WritePropExpr} from '@angular/compiler';
|
|
|
|
import MagicString from 'magic-string';
|
2018-07-16 10:23:37 +01:00
|
|
|
import * as ts from 'typescript';
|
|
|
|
|
2019-04-28 20:48:35 +01:00
|
|
|
import {NOOP_DEFAULT_IMPORT_RECORDER} from '@angular/compiler-cli/src/ngtsc/imports';
|
|
|
|
import {translateStatement, ImportManager} from '../../../src/ngtsc/translator';
|
2018-10-16 08:56:54 +01:00
|
|
|
import {CompiledClass, CompiledFile, DecorationAnalyses} from '../analysis/decoration_analyzer';
|
2019-04-28 20:48:35 +01:00
|
|
|
import {PrivateDeclarationsAnalyses} from '../analysis/private_declarations_analyzer';
|
2018-10-04 12:19:11 +01:00
|
|
|
import {SwitchMarkerAnalyses, SwitchMarkerAnalysis} from '../analysis/switch_marker_analyzer';
|
|
|
|
import {IMPORT_PREFIX} from '../constants';
|
2019-04-28 20:47:57 +01:00
|
|
|
import {FileSystem} from '../file_system/file_system';
|
2019-04-28 20:48:35 +01:00
|
|
|
import {NgccReflectionHost} from '../host/ngcc_host';
|
2019-04-28 20:47:57 +01:00
|
|
|
import {EntryPointBundle} from '../packages/entry_point_bundle';
|
2019-04-28 20:48:35 +01:00
|
|
|
import {Logger} from '../logging/logger';
|
|
|
|
import {FileToWrite, getImportRewriter, stripExtension} from './utils';
|
|
|
|
import {RenderingFormatter, RedundantDecoratorMap} from './rendering_formatter';
|
|
|
|
import {extractSourceMap, renderSourceAndMap} from './source_maps';
|
2018-11-18 21:37:30 +01:00
|
|
|
|
2018-07-16 10:23:37 +01:00
|
|
|
/**
|
2018-07-27 22:36:54 +03:00
|
|
|
* A base-class for rendering an `AnalyzedFile`.
|
|
|
|
*
|
|
|
|
* Package formats have output files that must be rendered differently. Concrete sub-classes must
|
|
|
|
* implement the `addImports`, `addDefinitions` and `removeDecorators` abstract methods.
|
2018-07-16 10:23:37 +01:00
|
|
|
*/
|
2019-04-28 20:48:35 +01:00
|
|
|
export class Renderer {
|
2018-10-03 16:59:32 +01:00
|
|
|
constructor(
|
2019-04-28 20:48:35 +01:00
|
|
|
private srcFormatter: RenderingFormatter, private fs: FileSystem, private logger: Logger,
|
|
|
|
private host: NgccReflectionHost, private isCore: boolean, private bundle: EntryPointBundle) {
|
|
|
|
}
|
2018-10-04 12:19:11 +01:00
|
|
|
|
2018-11-25 22:07:51 +00:00
|
|
|
renderProgram(
|
|
|
|
decorationAnalyses: DecorationAnalyses, switchMarkerAnalyses: SwitchMarkerAnalyses,
|
2019-04-28 20:48:35 +01:00
|
|
|
privateDeclarationsAnalyses: PrivateDeclarationsAnalyses): FileToWrite[] {
|
|
|
|
const renderedFiles: FileToWrite[] = [];
|
2018-10-10 17:52:55 +01:00
|
|
|
|
2018-10-16 08:56:54 +01:00
|
|
|
// Transform the source files.
|
2019-03-18 14:44:56 +00:00
|
|
|
this.bundle.src.program.getSourceFiles().forEach(sourceFile => {
|
2019-04-28 20:48:35 +01:00
|
|
|
if (decorationAnalyses.has(sourceFile) || switchMarkerAnalyses.has(sourceFile) ||
|
|
|
|
sourceFile === this.bundle.src.file) {
|
|
|
|
const compiledFile = decorationAnalyses.get(sourceFile);
|
|
|
|
const switchMarkerAnalysis = switchMarkerAnalyses.get(sourceFile);
|
2018-11-25 22:07:51 +00:00
|
|
|
renderedFiles.push(...this.renderFile(
|
|
|
|
sourceFile, compiledFile, switchMarkerAnalysis, privateDeclarationsAnalyses));
|
2018-10-10 17:52:55 +01:00
|
|
|
}
|
2018-10-04 12:19:11 +01:00
|
|
|
});
|
2018-10-16 08:56:54 +01:00
|
|
|
|
2018-10-04 12:19:11 +01:00
|
|
|
return renderedFiles;
|
|
|
|
}
|
2018-07-27 22:36:54 +03:00
|
|
|
|
2018-07-16 10:23:37 +01:00
|
|
|
/**
|
|
|
|
* Render the source code and source-map for an Analyzed file.
|
2018-10-16 08:56:54 +01:00
|
|
|
* @param compiledFile The analyzed file to render.
|
2018-07-16 10:23:37 +01:00
|
|
|
* @param targetPath The absolute path where the rendered file will be written.
|
|
|
|
*/
|
2018-10-04 12:19:11 +01:00
|
|
|
renderFile(
|
2018-10-16 08:56:54 +01:00
|
|
|
sourceFile: ts.SourceFile, compiledFile: CompiledFile|undefined,
|
2018-11-25 22:07:51 +00:00
|
|
|
switchMarkerAnalysis: SwitchMarkerAnalysis|undefined,
|
2019-04-28 20:48:35 +01:00
|
|
|
privateDeclarationsAnalyses: PrivateDeclarationsAnalyses): FileToWrite[] {
|
2019-04-28 20:48:35 +01:00
|
|
|
const isEntryPoint = sourceFile === this.bundle.src.file;
|
2019-04-28 20:48:35 +01:00
|
|
|
const input = extractSourceMap(this.fs, this.logger, sourceFile);
|
2018-07-16 10:23:37 +01:00
|
|
|
const outputText = new MagicString(input.source);
|
|
|
|
|
2018-10-04 12:19:11 +01:00
|
|
|
if (switchMarkerAnalysis) {
|
2019-04-28 20:48:35 +01:00
|
|
|
this.srcFormatter.rewriteSwitchableDeclarations(
|
2018-10-04 12:19:11 +01:00
|
|
|
outputText, switchMarkerAnalysis.sourceFile, switchMarkerAnalysis.declarations);
|
|
|
|
}
|
2018-07-16 10:23:37 +01:00
|
|
|
|
2019-04-28 20:48:35 +01:00
|
|
|
const importManager = new ImportManager(
|
2019-04-28 20:48:35 +01:00
|
|
|
getImportRewriter(this.bundle.src.r3SymbolsFile, this.isCore, this.bundle.isFlatCore),
|
2019-04-28 20:48:35 +01:00
|
|
|
IMPORT_PREFIX);
|
2018-11-18 21:37:30 +01:00
|
|
|
|
2019-04-28 20:48:35 +01:00
|
|
|
if (compiledFile) {
|
2018-11-18 21:37:30 +01:00
|
|
|
// TODO: remove constructor param metadata and property decorators (we need info from the
|
|
|
|
// handlers to do this)
|
|
|
|
const decoratorsToRemove = this.computeDecoratorsToRemove(compiledFile.compiledClasses);
|
2019-04-28 20:48:35 +01:00
|
|
|
this.srcFormatter.removeDecorators(outputText, decoratorsToRemove);
|
2018-10-04 12:19:11 +01:00
|
|
|
|
2018-10-16 08:56:54 +01:00
|
|
|
compiledFile.compiledClasses.forEach(clazz => {
|
|
|
|
const renderedDefinition = renderDefinitions(compiledFile.sourceFile, clazz, importManager);
|
2019-04-28 20:48:35 +01:00
|
|
|
this.srcFormatter.addDefinitions(outputText, clazz, renderedDefinition);
|
2018-10-04 12:19:11 +01:00
|
|
|
});
|
|
|
|
|
2019-04-28 20:48:35 +01:00
|
|
|
this.srcFormatter.addConstants(
|
2018-10-04 12:19:11 +01:00
|
|
|
outputText,
|
2018-10-16 08:56:54 +01:00
|
|
|
renderConstantPool(compiledFile.sourceFile, compiledFile.constantPool, importManager),
|
|
|
|
compiledFile.sourceFile);
|
2018-10-04 12:19:11 +01:00
|
|
|
}
|
2018-08-17 07:50:45 +01:00
|
|
|
|
2018-11-25 22:07:51 +00:00
|
|
|
// Add exports to the entry-point file
|
2019-04-28 20:48:35 +01:00
|
|
|
if (isEntryPoint) {
|
2018-11-25 22:07:51 +00:00
|
|
|
const entryPointBasePath = stripExtension(this.bundle.src.path);
|
2019-04-28 20:48:35 +01:00
|
|
|
this.srcFormatter.addExports(
|
2019-04-28 20:48:35 +01:00
|
|
|
outputText, entryPointBasePath, privateDeclarationsAnalyses, importManager, sourceFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isEntryPoint || compiledFile) {
|
2019-04-28 20:48:35 +01:00
|
|
|
this.srcFormatter.addImports(
|
|
|
|
outputText, importManager.getAllImports(sourceFile.fileName), sourceFile);
|
2018-11-25 22:07:51 +00:00
|
|
|
}
|
|
|
|
|
2019-04-28 20:48:35 +01:00
|
|
|
if (compiledFile || switchMarkerAnalysis || isEntryPoint) {
|
2019-04-28 20:48:35 +01:00
|
|
|
return renderSourceAndMap(sourceFile, input, outputText);
|
2019-04-28 20:48:35 +01:00
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
2018-10-16 08:56:54 +01:00
|
|
|
}
|
|
|
|
|
2018-07-16 10:23:37 +01:00
|
|
|
/**
|
2018-11-18 21:37:30 +01:00
|
|
|
* From the given list of classes, computes a map of decorators that should be removed.
|
|
|
|
* The decorators to remove are keyed by their container node, such that we can tell if
|
|
|
|
* we should remove the entire decorator property.
|
|
|
|
* @param classes The list of classes that may have decorators to remove.
|
|
|
|
* @returns A map of decorators to remove, keyed by their container node.
|
2018-07-16 10:23:37 +01:00
|
|
|
*/
|
2019-04-28 20:48:35 +01:00
|
|
|
private computeDecoratorsToRemove(classes: CompiledClass[]): RedundantDecoratorMap {
|
2018-11-18 21:37:30 +01:00
|
|
|
const decoratorsToRemove = new RedundantDecoratorMap();
|
|
|
|
classes.forEach(clazz => {
|
|
|
|
clazz.decorators.forEach(dec => {
|
|
|
|
const decoratorArray = dec.node.parent !;
|
|
|
|
if (!decoratorsToRemove.has(decoratorArray)) {
|
|
|
|
decoratorsToRemove.set(decoratorArray, [dec.node]);
|
|
|
|
} else {
|
|
|
|
decoratorsToRemove.get(decoratorArray) !.push(dec.node);
|
|
|
|
}
|
|
|
|
});
|
2018-07-16 10:23:37 +01:00
|
|
|
});
|
2018-11-18 21:37:30 +01:00
|
|
|
return decoratorsToRemove;
|
2018-07-16 10:23:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-27 08:41:11 -07:00
|
|
|
/**
|
|
|
|
* Render the constant pool as source code for the given class.
|
|
|
|
*/
|
|
|
|
export function renderConstantPool(
|
2019-01-08 11:49:58 -08:00
|
|
|
sourceFile: ts.SourceFile, constantPool: ConstantPool, imports: ImportManager): string {
|
2019-04-30 14:06:02 +02:00
|
|
|
const printer = createPrinter();
|
fix(ivy): reuse default imports in type-to-value references (#29266)
This fixes an issue with commit b6f6b117. In this commit, default imports
processed in a type-to-value conversion were recorded as non-local imports
with a '*' name, and the ImportManager generated a new default import for
them. When transpiled to ES2015 modules, this resulted in the following
correct code:
import i3 from './module';
// somewhere in the file, a value reference of i3:
{type: i3}
However, when the AST with this synthetic import and reference was
transpiled to non-ES2015 modules (for example, to commonjs) an issue
appeared:
var module_1 = require('./module');
{type: i3}
TypeScript renames the imported identifier from i3 to module_1, but doesn't
substitute later references to i3. This is because the import and reference
are both synthetic, and never went through the TypeScript AST step of
"binding" which associates the reference to its import. This association is
important during emit when the identifiers might change.
Synthetic (transformer-added) imports will never be bound properly. The only
possible solution is to reuse the user's original import and the identifier
from it, which will be properly downleveled. The issue with this approach
(which prompted the fix in b6f6b117) is that if the import is only used in a
type position, TypeScript will mark it for deletion in the generated JS,
even though additional non-type usages are added in the transformer. This
again would leave a dangling import.
To work around this, it's necessary for the compiler to keep track of
identifiers that it emits which came from default imports, and tell TS not
to remove those imports during transpilation. A `DefaultImportTracker` class
is implemented to perform this tracking. It implements a
`DefaultImportRecorder` interface, which is used to record two significant
pieces of information:
* when a WrappedNodeExpr is generated which refers to a default imported
value, the ts.Identifier is associated to the ts.ImportDeclaration via
the recorder.
* when that WrappedNodeExpr is later emitted as part of the statement /
expression translators, the fact that the ts.Identifier was used is
also recorded.
Combined, this tracking gives the `DefaultImportTracker` enough information
to implement another TS transformer, which can recognize default imports
which were used in the output of the Ivy transform and can prevent them
from being elided. This is done by creating a new ts.ImportDeclaration for
the imports with the same ts.ImportClause. A test verifies that this works.
PR Close #29266
2019-03-11 16:54:07 -07:00
|
|
|
return constantPool.statements
|
|
|
|
.map(stmt => translateStatement(stmt, imports, NOOP_DEFAULT_IMPORT_RECORDER))
|
2018-06-27 08:41:11 -07:00
|
|
|
.map(stmt => printer.printNode(ts.EmitHint.Unspecified, stmt, sourceFile))
|
|
|
|
.join('\n');
|
|
|
|
}
|
|
|
|
|
2018-07-16 10:23:37 +01:00
|
|
|
/**
|
|
|
|
* Render the definitions as source code for the given class.
|
|
|
|
* @param sourceFile The file containing the class to process.
|
|
|
|
* @param clazz The class whose definitions are to be rendered.
|
|
|
|
* @param compilation The results of analyzing the class - this is used to generate the rendered
|
|
|
|
* definitions.
|
|
|
|
* @param imports An object that tracks the imports that are needed by the rendered definitions.
|
|
|
|
*/
|
|
|
|
export function renderDefinitions(
|
2019-01-08 11:49:58 -08:00
|
|
|
sourceFile: ts.SourceFile, compiledClass: CompiledClass, imports: ImportManager): string {
|
2019-04-30 14:06:02 +02:00
|
|
|
const printer = createPrinter();
|
2019-03-20 12:10:57 +02:00
|
|
|
const name = compiledClass.declaration.name;
|
fix(ivy): reuse default imports in type-to-value references (#29266)
This fixes an issue with commit b6f6b117. In this commit, default imports
processed in a type-to-value conversion were recorded as non-local imports
with a '*' name, and the ImportManager generated a new default import for
them. When transpiled to ES2015 modules, this resulted in the following
correct code:
import i3 from './module';
// somewhere in the file, a value reference of i3:
{type: i3}
However, when the AST with this synthetic import and reference was
transpiled to non-ES2015 modules (for example, to commonjs) an issue
appeared:
var module_1 = require('./module');
{type: i3}
TypeScript renames the imported identifier from i3 to module_1, but doesn't
substitute later references to i3. This is because the import and reference
are both synthetic, and never went through the TypeScript AST step of
"binding" which associates the reference to its import. This association is
important during emit when the identifiers might change.
Synthetic (transformer-added) imports will never be bound properly. The only
possible solution is to reuse the user's original import and the identifier
from it, which will be properly downleveled. The issue with this approach
(which prompted the fix in b6f6b117) is that if the import is only used in a
type position, TypeScript will mark it for deletion in the generated JS,
even though additional non-type usages are added in the transformer. This
again would leave a dangling import.
To work around this, it's necessary for the compiler to keep track of
identifiers that it emits which came from default imports, and tell TS not
to remove those imports during transpilation. A `DefaultImportTracker` class
is implemented to perform this tracking. It implements a
`DefaultImportRecorder` interface, which is used to record two significant
pieces of information:
* when a WrappedNodeExpr is generated which refers to a default imported
value, the ts.Identifier is associated to the ts.ImportDeclaration via
the recorder.
* when that WrappedNodeExpr is later emitted as part of the statement /
expression translators, the fact that the ts.Identifier was used is
also recorded.
Combined, this tracking gives the `DefaultImportTracker` enough information
to implement another TS transformer, which can recognize default imports
which were used in the output of the Ivy transform and can prevent them
from being elided. This is done by creating a new ts.ImportDeclaration for
the imports with the same ts.ImportClause. A test verifies that this works.
PR Close #29266
2019-03-11 16:54:07 -07:00
|
|
|
const translate = (stmt: Statement) =>
|
|
|
|
translateStatement(stmt, imports, NOOP_DEFAULT_IMPORT_RECORDER);
|
2019-03-29 21:31:22 +01:00
|
|
|
const print = (stmt: Statement) =>
|
|
|
|
printer.printNode(ts.EmitHint.Unspecified, translate(stmt), sourceFile);
|
|
|
|
const definitions = compiledClass.compilation
|
|
|
|
.map(
|
|
|
|
c => [createAssignmentStatement(name, c.name, c.initializer)]
|
|
|
|
.concat(c.statements)
|
|
|
|
.map(print)
|
|
|
|
.join('\n'))
|
|
|
|
.join('\n');
|
2018-07-16 10:23:37 +01:00
|
|
|
return definitions;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an Angular AST statement node that contains the assignment of the
|
|
|
|
* compiled decorator to be applied to the class.
|
|
|
|
* @param analyzedClass The info about the class whose statement we want to create.
|
|
|
|
*/
|
|
|
|
function createAssignmentStatement(
|
|
|
|
receiverName: ts.DeclarationName, propName: string, initializer: Expression): Statement {
|
|
|
|
const receiver = new WrappedNodeExpr(receiverName);
|
|
|
|
return new WritePropExpr(receiver, propName, initializer).toStmt();
|
|
|
|
}
|
2018-12-07 13:10:52 +00:00
|
|
|
|
2019-04-30 14:06:02 +02:00
|
|
|
function createPrinter(): ts.Printer {
|
|
|
|
return ts.createPrinter({newLine: ts.NewLineKind.LineFeed});
|
2019-04-28 20:48:35 +01:00
|
|
|
}
|