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';
|
2019-04-28 20:47:57 +01:00
|
|
|
import {SourceMapConverter, commentRegex, fromJSON, fromObject, fromSource, generateMapFileComment, mapFileCommentRegex, removeComments, removeMapFileComments} from 'convert-source-map';
|
2018-07-27 22:36:54 +03:00
|
|
|
import MagicString from 'magic-string';
|
|
|
|
import {SourceMapConsumer, SourceMapGenerator, RawSourceMap} from 'source-map';
|
2018-07-16 10:23:37 +01:00
|
|
|
import * as ts from 'typescript';
|
|
|
|
|
2019-04-28 20:47:57 +01:00
|
|
|
import {NoopImportRewriter, ImportRewriter, R3SymbolsImportRewriter, NOOP_DEFAULT_IMPORT_RECORDER} from '../../../src/ngtsc/imports';
|
|
|
|
import {AbsoluteFsPath, PathSegment} from '../../../src/ngtsc/path';
|
|
|
|
import {CompileResult} from '../../../src/ngtsc/transform';
|
2019-04-28 20:48:33 +01:00
|
|
|
import {translateStatement, translateType, Import, ImportManager} from '../../../src/ngtsc/translator';
|
2018-10-16 08:56:54 +01:00
|
|
|
import {CompiledClass, CompiledFile, DecorationAnalyses} from '../analysis/decoration_analyzer';
|
2018-12-07 13:10:52 +00:00
|
|
|
import {ModuleWithProvidersInfo, ModuleWithProvidersAnalyses} from '../analysis/module_with_providers_analyzer';
|
2018-11-25 22:07:51 +00:00
|
|
|
import {PrivateDeclarationsAnalyses, ExportInfo} 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';
|
2018-10-04 12:19:11 +01:00
|
|
|
import {NgccReflectionHost, SwitchableVariableDeclaration} from '../host/ngcc_host';
|
2019-03-29 10:13:14 +00:00
|
|
|
import {Logger} from '../logging/logger';
|
2019-04-28 20:47:57 +01:00
|
|
|
import {EntryPointBundle} from '../packages/entry_point_bundle';
|
|
|
|
import {NgccFlatImportRewriter} from './ngcc_import_rewriter';
|
2018-07-16 10:23:37 +01:00
|
|
|
|
|
|
|
interface SourceMapInfo {
|
|
|
|
source: string;
|
|
|
|
map: SourceMapConverter|null;
|
|
|
|
isInline: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Information about a file that has been rendered.
|
|
|
|
*/
|
|
|
|
export interface FileInfo {
|
|
|
|
/**
|
|
|
|
* Path to where the file should be written.
|
|
|
|
*/
|
2019-04-28 20:47:57 +01:00
|
|
|
path: AbsoluteFsPath;
|
2018-07-16 10:23:37 +01:00
|
|
|
/**
|
|
|
|
* The contents of the file to be be written.
|
|
|
|
*/
|
|
|
|
contents: string;
|
|
|
|
}
|
|
|
|
|
2018-10-16 08:56:54 +01:00
|
|
|
interface DtsClassInfo {
|
|
|
|
dtsDeclaration: ts.Declaration;
|
|
|
|
compilation: CompileResult[];
|
|
|
|
}
|
|
|
|
|
2018-12-07 13:10:52 +00:00
|
|
|
/**
|
|
|
|
* A structure that captures information about what needs to be rendered
|
|
|
|
* in a typings file.
|
|
|
|
*
|
|
|
|
* It is created as a result of processing the analysis passed to the renderer.
|
|
|
|
*
|
|
|
|
* The `renderDtsFile()` method consumes it when rendering a typings file.
|
|
|
|
*/
|
|
|
|
class DtsRenderInfo {
|
|
|
|
classInfo: DtsClassInfo[] = [];
|
|
|
|
moduleWithProviders: ModuleWithProvidersInfo[] = [];
|
|
|
|
privateExports: ExportInfo[] = [];
|
|
|
|
}
|
|
|
|
|
2018-11-18 21:37:30 +01:00
|
|
|
/**
|
|
|
|
* The collected decorators that have become redundant after the compilation
|
|
|
|
* of Ivy static fields. The map is keyed by the container node, such that we
|
|
|
|
* can tell if we should remove the entire decorator property
|
|
|
|
*/
|
|
|
|
export type RedundantDecoratorMap = Map<ts.Node, ts.Node[]>;
|
|
|
|
export const RedundantDecoratorMap = Map;
|
|
|
|
|
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
|
|
|
*/
|
|
|
|
export abstract class Renderer {
|
2018-10-03 16:59:32 +01:00
|
|
|
constructor(
|
2019-04-28 20:47:57 +01:00
|
|
|
protected fs: FileSystem, protected logger: Logger, protected host: NgccReflectionHost,
|
|
|
|
protected isCore: boolean, protected bundle: EntryPointBundle) {}
|
2018-10-04 12:19:11 +01:00
|
|
|
|
2018-11-25 22:07:51 +00:00
|
|
|
renderProgram(
|
|
|
|
decorationAnalyses: DecorationAnalyses, switchMarkerAnalyses: SwitchMarkerAnalyses,
|
2018-12-07 13:10:52 +00:00
|
|
|
privateDeclarationsAnalyses: PrivateDeclarationsAnalyses,
|
|
|
|
moduleWithProvidersAnalyses: ModuleWithProvidersAnalyses|null): FileInfo[] {
|
2018-10-04 12:19:11 +01:00
|
|
|
const renderedFiles: FileInfo[] = [];
|
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 => {
|
2018-10-16 08:56:54 +01:00
|
|
|
const compiledFile = decorationAnalyses.get(sourceFile);
|
2018-10-04 12:19:11 +01:00
|
|
|
const switchMarkerAnalysis = switchMarkerAnalyses.get(sourceFile);
|
|
|
|
|
2018-11-25 21:40:25 +00:00
|
|
|
if (compiledFile || switchMarkerAnalysis || sourceFile === this.bundle.src.file) {
|
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-11-25 21:40:25 +00:00
|
|
|
// Transform the .d.ts files
|
|
|
|
if (this.bundle.dts) {
|
2018-12-07 13:10:52 +00:00
|
|
|
const dtsFiles = this.getTypingsFilesToRender(
|
|
|
|
decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses);
|
2018-11-25 21:40:25 +00:00
|
|
|
|
|
|
|
// If the dts entry-point is not already there (it did not have compiled classes)
|
|
|
|
// then add it now, to ensure it gets its extra exports rendered.
|
|
|
|
if (!dtsFiles.has(this.bundle.dts.file)) {
|
2018-12-07 13:10:52 +00:00
|
|
|
dtsFiles.set(this.bundle.dts.file, new DtsRenderInfo());
|
2018-11-25 21:40:25 +00:00
|
|
|
}
|
2018-11-25 22:07:51 +00:00
|
|
|
dtsFiles.forEach(
|
2018-12-07 13:10:52 +00:00
|
|
|
(renderInfo, file) => renderedFiles.push(...this.renderDtsFile(file, renderInfo)));
|
2018-10-16 09:46:59 +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,
|
|
|
|
privateDeclarationsAnalyses: PrivateDeclarationsAnalyses): FileInfo[] {
|
2019-04-28 20:48:35 +01:00
|
|
|
const isEntryPoint = sourceFile === this.bundle.src.file;
|
2018-10-04 12:19:11 +01:00
|
|
|
const input = this.extractSourceMap(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) {
|
|
|
|
this.rewriteSwitchableDeclarations(
|
|
|
|
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(
|
|
|
|
this.getImportRewriter(this.bundle.src.r3SymbolsFile, this.bundle.isFlatCore),
|
|
|
|
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);
|
|
|
|
this.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);
|
2018-10-04 12:19:11 +01:00
|
|
|
this.addDefinitions(outputText, clazz, renderedDefinition);
|
|
|
|
});
|
|
|
|
|
|
|
|
this.addConstants(
|
|
|
|
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.addExports(
|
|
|
|
outputText, entryPointBasePath, privateDeclarationsAnalyses, importManager, sourceFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isEntryPoint || compiledFile) {
|
|
|
|
this.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) {
|
|
|
|
return this.renderSourceAndMap(sourceFile, input, outputText);
|
|
|
|
} else {
|
|
|
|
return [];
|
|
|
|
}
|
2018-10-16 08:56:54 +01:00
|
|
|
}
|
|
|
|
|
2018-12-07 13:10:52 +00:00
|
|
|
renderDtsFile(dtsFile: ts.SourceFile, renderInfo: DtsRenderInfo): FileInfo[] {
|
2018-10-16 08:56:54 +01:00
|
|
|
const input = this.extractSourceMap(dtsFile);
|
|
|
|
const outputText = new MagicString(input.source);
|
2019-04-30 14:06:02 +02:00
|
|
|
const printer = createPrinter();
|
2019-01-08 11:49:58 -08:00
|
|
|
const importManager = new ImportManager(
|
|
|
|
this.getImportRewriter(this.bundle.dts !.r3SymbolsFile, false), IMPORT_PREFIX);
|
2018-10-16 08:56:54 +01:00
|
|
|
|
2018-12-07 13:10:52 +00:00
|
|
|
renderInfo.classInfo.forEach(dtsClass => {
|
2018-10-16 08:56:54 +01:00
|
|
|
const endOfClass = dtsClass.dtsDeclaration.getEnd();
|
|
|
|
dtsClass.compilation.forEach(declaration => {
|
|
|
|
const type = translateType(declaration.type, importManager);
|
2019-01-25 12:12:57 +00:00
|
|
|
const typeStr = printer.printNode(ts.EmitHint.Unspecified, type, dtsFile);
|
|
|
|
const newStatement = ` static ${declaration.name}: ${typeStr};\n`;
|
2018-10-16 08:56:54 +01:00
|
|
|
outputText.appendRight(endOfClass - 1, newStatement);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-12-07 13:10:52 +00:00
|
|
|
this.addModuleWithProvidersParams(outputText, renderInfo.moduleWithProviders, importManager);
|
2019-04-22 14:57:31 +02:00
|
|
|
this.addImports(outputText, importManager.getAllImports(dtsFile.fileName), dtsFile);
|
2018-10-16 08:56:54 +01:00
|
|
|
|
2019-04-28 20:48:35 +01:00
|
|
|
this.addExports(
|
|
|
|
outputText, AbsoluteFsPath.fromSourceFile(dtsFile), renderInfo.privateExports,
|
|
|
|
importManager, dtsFile);
|
2018-12-07 13:10:52 +00:00
|
|
|
|
2018-11-25 22:07:51 +00:00
|
|
|
|
2018-10-16 08:56:54 +01:00
|
|
|
return this.renderSourceAndMap(dtsFile, input, outputText);
|
2018-07-16 10:23:37 +01:00
|
|
|
}
|
|
|
|
|
2018-12-07 13:10:52 +00:00
|
|
|
/**
|
|
|
|
* Add the type parameters to the appropriate functions that return `ModuleWithProviders`
|
|
|
|
* structures.
|
|
|
|
*
|
|
|
|
* This function only gets called on typings files, so it doesn't need different implementations
|
|
|
|
* for each bundle format.
|
|
|
|
*/
|
|
|
|
protected addModuleWithProvidersParams(
|
|
|
|
outputText: MagicString, moduleWithProviders: ModuleWithProvidersInfo[],
|
2019-01-08 11:49:58 -08:00
|
|
|
importManager: ImportManager): void {
|
2018-12-07 13:10:52 +00:00
|
|
|
moduleWithProviders.forEach(info => {
|
2019-03-05 23:29:28 +01:00
|
|
|
const ngModuleName = info.ngModule.node.name.text;
|
2019-04-28 20:47:57 +01:00
|
|
|
const declarationFile = AbsoluteFsPath.fromSourceFile(info.declaration.getSourceFile());
|
|
|
|
const ngModuleFile = AbsoluteFsPath.fromSourceFile(info.ngModule.node.getSourceFile());
|
2018-12-07 13:10:52 +00:00
|
|
|
const importPath = info.ngModule.viaModule ||
|
|
|
|
(declarationFile !== ngModuleFile ?
|
2019-04-28 20:47:57 +01:00
|
|
|
stripExtension(
|
|
|
|
`./${PathSegment.relative(AbsoluteFsPath.dirname(declarationFile), ngModuleFile)}`) :
|
2018-12-07 13:10:52 +00:00
|
|
|
null);
|
|
|
|
const ngModule = getImportString(importManager, importPath, ngModuleName);
|
|
|
|
|
|
|
|
if (info.declaration.type) {
|
|
|
|
const typeName = info.declaration.type && ts.isTypeReferenceNode(info.declaration.type) ?
|
|
|
|
info.declaration.type.typeName :
|
|
|
|
null;
|
|
|
|
if (this.isCoreModuleWithProvidersType(typeName)) {
|
|
|
|
// The declaration already returns `ModuleWithProvider` but it needs the `NgModule` type
|
|
|
|
// parameter adding.
|
|
|
|
outputText.overwrite(
|
|
|
|
info.declaration.type.getStart(), info.declaration.type.getEnd(),
|
|
|
|
`ModuleWithProviders<${ngModule}>`);
|
|
|
|
} else {
|
|
|
|
// The declaration returns an unknown type so we need to convert it to a union that
|
|
|
|
// includes the ngModule property.
|
|
|
|
const originalTypeString = info.declaration.type.getText();
|
|
|
|
outputText.overwrite(
|
|
|
|
info.declaration.type.getStart(), info.declaration.type.getEnd(),
|
|
|
|
`(${originalTypeString})&{ngModule:${ngModule}}`);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// The declaration has no return type so provide one.
|
|
|
|
const lastToken = info.declaration.getLastToken();
|
|
|
|
const insertPoint = lastToken && lastToken.kind === ts.SyntaxKind.SemicolonToken ?
|
|
|
|
lastToken.getStart() :
|
|
|
|
info.declaration.getEnd();
|
|
|
|
outputText.appendLeft(
|
|
|
|
insertPoint,
|
|
|
|
`: ${getImportString(importManager, '@angular/core', 'ModuleWithProviders')}<${ngModule}>`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-27 08:41:11 -07:00
|
|
|
protected abstract addConstants(output: MagicString, constants: string, file: ts.SourceFile):
|
|
|
|
void;
|
2019-04-28 20:48:33 +01:00
|
|
|
protected abstract addImports(output: MagicString, imports: Import[], sf: ts.SourceFile): void;
|
2019-02-14 18:59:46 +01:00
|
|
|
protected abstract addExports(
|
2019-04-28 20:48:35 +01:00
|
|
|
output: MagicString, entryPointBasePath: AbsoluteFsPath, exports: ExportInfo[],
|
|
|
|
importManager: ImportManager, file: ts.SourceFile): void;
|
2018-07-16 10:23:37 +01:00
|
|
|
protected abstract addDefinitions(
|
2018-10-16 08:56:54 +01:00
|
|
|
output: MagicString, compiledClass: CompiledClass, definitions: string): void;
|
2018-07-16 10:23:37 +01:00
|
|
|
protected abstract removeDecorators(
|
2018-11-18 21:37:30 +01:00
|
|
|
output: MagicString, decoratorsToRemove: RedundantDecoratorMap): void;
|
2018-08-17 07:50:45 +01:00
|
|
|
protected abstract rewriteSwitchableDeclarations(
|
2018-10-04 12:19:11 +01:00
|
|
|
outputText: MagicString, sourceFile: ts.SourceFile,
|
|
|
|
declarations: SwitchableVariableDeclaration[]): void;
|
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
|
|
|
*/
|
2018-11-18 21:37:30 +01:00
|
|
|
protected computeDecoratorsToRemove(classes: CompiledClass[]): RedundantDecoratorMap {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the map from the source (note whether it is inline or external)
|
|
|
|
*/
|
|
|
|
protected extractSourceMap(file: ts.SourceFile): SourceMapInfo {
|
|
|
|
const inline = commentRegex.test(file.text);
|
2019-04-28 20:47:57 +01:00
|
|
|
const external = mapFileCommentRegex.exec(file.text);
|
2018-07-16 10:23:37 +01:00
|
|
|
|
|
|
|
if (inline) {
|
|
|
|
const inlineSourceMap = fromSource(file.text);
|
|
|
|
return {
|
|
|
|
source: removeComments(file.text).replace(/\n\n$/, '\n'),
|
|
|
|
map: inlineSourceMap,
|
|
|
|
isInline: true,
|
|
|
|
};
|
|
|
|
} else if (external) {
|
|
|
|
let externalSourceMap: SourceMapConverter|null = null;
|
|
|
|
try {
|
2019-04-28 20:47:57 +01:00
|
|
|
const fileName = external[1] || external[2];
|
|
|
|
const filePath = AbsoluteFsPath.resolve(
|
|
|
|
AbsoluteFsPath.dirname(AbsoluteFsPath.fromSourceFile(file)), fileName);
|
|
|
|
const mappingFile = this.fs.readFile(filePath);
|
|
|
|
externalSourceMap = fromJSON(mappingFile);
|
2018-07-16 10:23:37 +01:00
|
|
|
} catch (e) {
|
2018-07-17 10:43:42 +01:00
|
|
|
if (e.code === 'ENOENT') {
|
2019-03-29 10:13:14 +00:00
|
|
|
this.logger.warn(
|
2018-07-17 10:43:42 +01:00
|
|
|
`The external map file specified in the source code comment "${e.path}" was not found on the file system.`);
|
2019-04-28 20:47:57 +01:00
|
|
|
const mapPath = AbsoluteFsPath.fromUnchecked(file.fileName + '.map');
|
|
|
|
if (PathSegment.basename(e.path) !== PathSegment.basename(mapPath) &&
|
|
|
|
this.fs.stat(mapPath).isFile()) {
|
2019-03-29 10:13:14 +00:00
|
|
|
this.logger.warn(
|
2019-04-28 20:47:57 +01:00
|
|
|
`Guessing the map file name from the source file name: "${PathSegment.basename(mapPath)}"`);
|
2018-07-17 10:43:42 +01:00
|
|
|
try {
|
2019-04-28 20:47:57 +01:00
|
|
|
externalSourceMap = fromObject(JSON.parse(this.fs.readFile(mapPath)));
|
2018-07-17 10:43:42 +01:00
|
|
|
} catch (e) {
|
2019-03-29 10:13:14 +00:00
|
|
|
this.logger.error(e);
|
2018-07-17 10:43:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 10:23:37 +01:00
|
|
|
}
|
|
|
|
return {
|
|
|
|
source: removeMapFileComments(file.text).replace(/\n\n$/, '\n'),
|
|
|
|
map: externalSourceMap,
|
|
|
|
isInline: false,
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return {source: file.text, map: null, isInline: false};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge the input and output source-maps, replacing the source-map comment in the output file
|
|
|
|
* with an appropriate source-map comment pointing to the merged source-map.
|
|
|
|
*/
|
|
|
|
protected renderSourceAndMap(
|
2018-10-16 08:56:54 +01:00
|
|
|
sourceFile: ts.SourceFile, input: SourceMapInfo, output: MagicString): FileInfo[] {
|
2019-04-28 20:47:57 +01:00
|
|
|
const outputPath = AbsoluteFsPath.fromSourceFile(sourceFile);
|
|
|
|
const outputMapPath = AbsoluteFsPath.fromUnchecked(`${outputPath}.map`);
|
|
|
|
const relativeSourcePath = PathSegment.basename(outputPath);
|
2019-03-27 22:10:31 +00:00
|
|
|
const relativeMapPath = `${relativeSourcePath}.map`;
|
|
|
|
|
2018-07-16 10:23:37 +01:00
|
|
|
const outputMap = output.generateMap({
|
2019-03-27 16:48:20 +00:00
|
|
|
source: outputPath,
|
2018-07-16 10:23:37 +01:00
|
|
|
includeContent: true,
|
|
|
|
// hires: true // TODO: This results in accurate but huge sourcemaps. Instead we should fix
|
|
|
|
// the merge algorithm.
|
|
|
|
});
|
|
|
|
|
|
|
|
// we must set this after generation as magic string does "manipulation" on the path
|
2019-03-27 22:10:31 +00:00
|
|
|
outputMap.file = relativeSourcePath;
|
2018-07-16 10:23:37 +01:00
|
|
|
|
|
|
|
const mergedMap =
|
|
|
|
mergeSourceMaps(input.map && input.map.toObject(), JSON.parse(outputMap.toString()));
|
|
|
|
|
2018-10-16 08:56:54 +01:00
|
|
|
const result: FileInfo[] = [];
|
2018-07-16 10:23:37 +01:00
|
|
|
if (input.isInline) {
|
2018-10-16 08:56:54 +01:00
|
|
|
result.push({path: outputPath, contents: `${output.toString()}\n${mergedMap.toComment()}`});
|
2018-07-16 10:23:37 +01:00
|
|
|
} else {
|
2018-10-16 08:56:54 +01:00
|
|
|
result.push({
|
|
|
|
path: outputPath,
|
2019-03-27 22:10:31 +00:00
|
|
|
contents: `${output.toString()}\n${generateMapFileComment(relativeMapPath)}`
|
2018-10-16 08:56:54 +01:00
|
|
|
});
|
|
|
|
result.push({path: outputMapPath, contents: mergedMap.toJSON()});
|
2018-07-16 10:23:37 +01:00
|
|
|
}
|
2018-10-16 08:56:54 +01:00
|
|
|
return result;
|
2018-07-16 10:23:37 +01:00
|
|
|
}
|
2018-10-10 17:52:55 +01:00
|
|
|
|
2018-12-07 13:10:52 +00:00
|
|
|
protected getTypingsFilesToRender(
|
|
|
|
decorationAnalyses: DecorationAnalyses,
|
|
|
|
privateDeclarationsAnalyses: PrivateDeclarationsAnalyses,
|
|
|
|
moduleWithProvidersAnalyses: ModuleWithProvidersAnalyses|
|
|
|
|
null): Map<ts.SourceFile, DtsRenderInfo> {
|
|
|
|
const dtsMap = new Map<ts.SourceFile, DtsRenderInfo>();
|
|
|
|
|
|
|
|
// Capture the rendering info from the decoration analyses
|
|
|
|
decorationAnalyses.forEach(compiledFile => {
|
2018-10-16 08:56:54 +01:00
|
|
|
compiledFile.compiledClasses.forEach(compiledClass => {
|
2018-11-29 08:26:00 +00:00
|
|
|
const dtsDeclaration = this.host.getDtsDeclaration(compiledClass.declaration);
|
2018-10-16 08:56:54 +01:00
|
|
|
if (dtsDeclaration) {
|
|
|
|
const dtsFile = dtsDeclaration.getSourceFile();
|
2018-12-07 13:10:52 +00:00
|
|
|
const renderInfo = dtsMap.get(dtsFile) || new DtsRenderInfo();
|
|
|
|
renderInfo.classInfo.push({dtsDeclaration, compilation: compiledClass.compilation});
|
|
|
|
dtsMap.set(dtsFile, renderInfo);
|
2018-10-16 08:56:54 +01:00
|
|
|
}
|
2018-10-10 17:52:55 +01:00
|
|
|
});
|
2018-10-16 08:56:54 +01:00
|
|
|
});
|
2018-12-07 13:10:52 +00:00
|
|
|
|
|
|
|
// Capture the ModuleWithProviders functions/methods that need updating
|
|
|
|
if (moduleWithProvidersAnalyses !== null) {
|
|
|
|
moduleWithProvidersAnalyses.forEach((moduleWithProvidersToFix, dtsFile) => {
|
|
|
|
const renderInfo = dtsMap.get(dtsFile) || new DtsRenderInfo();
|
|
|
|
renderInfo.moduleWithProviders = moduleWithProvidersToFix;
|
|
|
|
dtsMap.set(dtsFile, renderInfo);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Capture the private declarations that need to be re-exported
|
|
|
|
if (privateDeclarationsAnalyses.length) {
|
2019-02-14 18:59:46 +01:00
|
|
|
privateDeclarationsAnalyses.forEach(e => {
|
|
|
|
if (!e.dtsFrom && !e.alias) {
|
2018-12-07 13:10:52 +00:00
|
|
|
throw new Error(
|
|
|
|
`There is no typings path for ${e.identifier} in ${e.from}.\n` +
|
|
|
|
`We need to add an export for this class to a .d.ts typings file because ` +
|
|
|
|
`Angular compiler needs to be able to reference this class in compiled code, such as templates.\n` +
|
|
|
|
`The simplest fix for this is to ensure that this class is exported from the package's entry-point.`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
const dtsEntryPoint = this.bundle.dts !.file;
|
|
|
|
const renderInfo = dtsMap.get(dtsEntryPoint) || new DtsRenderInfo();
|
2019-02-14 18:59:46 +01:00
|
|
|
renderInfo.privateExports = privateDeclarationsAnalyses;
|
2018-12-07 13:10:52 +00:00
|
|
|
dtsMap.set(dtsEntryPoint, renderInfo);
|
|
|
|
}
|
|
|
|
|
2018-10-16 08:56:54 +01:00
|
|
|
return dtsMap;
|
2018-10-10 17:52:55 +01:00
|
|
|
}
|
2018-12-07 13:10:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the given type is the core Angular `ModuleWithProviders` interface.
|
|
|
|
* @param typeName The type to check.
|
|
|
|
* @returns true if the type is the core Angular `ModuleWithProviders` interface.
|
|
|
|
*/
|
|
|
|
private isCoreModuleWithProvidersType(typeName: ts.EntityName|null) {
|
|
|
|
const id =
|
|
|
|
typeName && ts.isIdentifier(typeName) ? this.host.getImportOfIdentifier(typeName) : null;
|
|
|
|
return (
|
|
|
|
id && id.name === 'ModuleWithProviders' && (this.isCore || id.from === '@angular/core'));
|
|
|
|
}
|
2019-01-08 11:49:58 -08:00
|
|
|
|
|
|
|
private getImportRewriter(r3SymbolsFile: ts.SourceFile|null, isFlat: boolean): ImportRewriter {
|
|
|
|
if (this.isCore && isFlat) {
|
|
|
|
return new NgccFlatImportRewriter();
|
|
|
|
} else if (this.isCore) {
|
|
|
|
return new R3SymbolsImportRewriter(r3SymbolsFile !.fileName);
|
|
|
|
} else {
|
|
|
|
return new NoopImportRewriter();
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 10:23:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge the two specified source-maps into a single source-map that hides the intermediate
|
|
|
|
* source-map.
|
|
|
|
* E.g. Consider these mappings:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* OLD_SRC -> OLD_MAP -> INTERMEDIATE_SRC -> NEW_MAP -> NEW_SRC
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* this will be replaced with:
|
|
|
|
*
|
|
|
|
* ```
|
|
|
|
* OLD_SRC -> MERGED_MAP -> NEW_SRC
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
export function mergeSourceMaps(
|
|
|
|
oldMap: RawSourceMap | null, newMap: RawSourceMap): SourceMapConverter {
|
|
|
|
if (!oldMap) {
|
|
|
|
return fromObject(newMap);
|
|
|
|
}
|
|
|
|
const oldMapConsumer = new SourceMapConsumer(oldMap);
|
|
|
|
const newMapConsumer = new SourceMapConsumer(newMap);
|
|
|
|
const mergedMapGenerator = SourceMapGenerator.fromSourceMap(newMapConsumer);
|
|
|
|
mergedMapGenerator.applySourceMap(oldMapConsumer);
|
|
|
|
const merged = fromJSON(mergedMapGenerator.toString());
|
|
|
|
return merged;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-04-28 20:47:57 +01:00
|
|
|
export function stripExtension<T extends string>(filePath: T): T {
|
|
|
|
return filePath.replace(/\.(js|d\.ts)$/, '') as T;
|
2018-11-25 21:40:25 +00:00
|
|
|
}
|
|
|
|
|
2018-07-16 10:23:37 +01:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
|
|
|
function getImportString(
|
|
|
|
importManager: ImportManager, importPath: string | null, importName: string) {
|
|
|
|
const importAs = importPath ? importManager.generateNamedImport(importPath, importName) : null;
|
|
|
|
return importAs ? `${importAs.moduleImport}.${importAs.symbol}` : `${importName}`;
|
|
|
|
}
|
2019-04-30 14:06:02 +02:00
|
|
|
|
|
|
|
function createPrinter(): ts.Printer {
|
|
|
|
return ts.createPrinter({newLine: ts.NewLineKind.LineFeed});
|
|
|
|
}
|