In TypeScript 3.9 some re-export syntaxes have changed to be getter functions (created by calls to `Object.defineProperty()`) rather than simple property accessors. This commit adds support into the CommonJS and UMD reflection hosts for this style of re-export syntax. PR Close #36989
226 lines
9.3 KiB
TypeScript
226 lines
9.3 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 * as ts from 'typescript';
|
|
|
|
import {absoluteFrom} from '../../../src/ngtsc/file_system';
|
|
import {Declaration, Import} from '../../../src/ngtsc/reflection';
|
|
import {Logger} from '../logging/logger';
|
|
import {BundleProgram} from '../packages/bundle_program';
|
|
import {FactoryMap, isDefined} from '../utils';
|
|
|
|
import {DefinePropertyReexportStatement, ExportDeclaration, ExportStatement, extractGetterFnExpression, findNamespaceOfIdentifier, findRequireCallReference, isDefinePropertyReexportStatement, isExportStatement, isExternalImport, isRequireCall, isWildcardReexportStatement, RequireCall, WildcardReexportStatement} from './commonjs_umd_utils';
|
|
import {Esm5ReflectionHost} from './esm5_host';
|
|
import {NgccClassSymbol} from './ngcc_host';
|
|
|
|
export class CommonJsReflectionHost extends Esm5ReflectionHost {
|
|
protected commonJsExports = new FactoryMap<ts.SourceFile, Map<string, Declaration>|null>(
|
|
sf => this.computeExportsOfCommonJsModule(sf));
|
|
protected topLevelHelperCalls =
|
|
new FactoryMap<string, FactoryMap<ts.SourceFile, ts.CallExpression[]>>(
|
|
helperName => new FactoryMap<ts.SourceFile, ts.CallExpression[]>(
|
|
sf => sf.statements.map(stmt => this.getHelperCall(stmt, [helperName]))
|
|
.filter(isDefined)));
|
|
protected program: ts.Program;
|
|
protected compilerHost: ts.CompilerHost;
|
|
constructor(logger: Logger, isCore: boolean, src: BundleProgram, dts: BundleProgram|null = null) {
|
|
super(logger, isCore, src, dts);
|
|
this.program = src.program;
|
|
this.compilerHost = src.host;
|
|
}
|
|
|
|
getImportOfIdentifier(id: ts.Identifier): Import|null {
|
|
const requireCall = this.findCommonJsImport(id);
|
|
if (requireCall === null) {
|
|
return null;
|
|
}
|
|
return {from: requireCall.arguments[0].text, name: id.text};
|
|
}
|
|
|
|
getDeclarationOfIdentifier(id: ts.Identifier): Declaration|null {
|
|
return this.getCommonJsModuleDeclaration(id) || super.getDeclarationOfIdentifier(id);
|
|
}
|
|
|
|
getExportsOfModule(module: ts.Node): Map<string, Declaration>|null {
|
|
return super.getExportsOfModule(module) || this.commonJsExports.get(module.getSourceFile());
|
|
}
|
|
|
|
/**
|
|
* Search statements related to the given class for calls to the specified helper.
|
|
*
|
|
* In CommonJS these helper calls can be outside the class's IIFE at the top level of the
|
|
* source file. Searching the top level statements for helpers can be expensive, so we
|
|
* try to get helpers from the IIFE first and only fall back on searching the top level if
|
|
* no helpers are found.
|
|
*
|
|
* @param classSymbol the class whose helper calls we are interested in.
|
|
* @param helperNames the names of the helpers (e.g. `__decorate`) whose calls we are interested
|
|
* in.
|
|
* @returns an array of nodes of calls to the helper with the given name.
|
|
*/
|
|
protected getHelperCallsForClass(classSymbol: NgccClassSymbol, helperNames: string[]):
|
|
ts.CallExpression[] {
|
|
const esm5HelperCalls = super.getHelperCallsForClass(classSymbol, helperNames);
|
|
if (esm5HelperCalls.length > 0) {
|
|
return esm5HelperCalls;
|
|
} else {
|
|
const sourceFile = classSymbol.declaration.valueDeclaration.getSourceFile();
|
|
return this.getTopLevelHelperCalls(sourceFile, helperNames);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Find all the helper calls at the top level of a source file.
|
|
*
|
|
* We cache the helper calls per source file so that we don't have to keep parsing the code for
|
|
* each class in a file.
|
|
*
|
|
* @param sourceFile the source who may contain helper calls.
|
|
* @param helperNames the names of the helpers (e.g. `__decorate`) whose calls we are interested
|
|
* in.
|
|
* @returns an array of nodes of calls to the helper with the given name.
|
|
*/
|
|
private getTopLevelHelperCalls(sourceFile: ts.SourceFile, helperNames: string[]):
|
|
ts.CallExpression[] {
|
|
const calls: ts.CallExpression[] = [];
|
|
helperNames.forEach(helperName => {
|
|
const helperCallsMap = this.topLevelHelperCalls.get(helperName);
|
|
calls.push(...helperCallsMap.get(sourceFile));
|
|
});
|
|
return calls;
|
|
}
|
|
|
|
private computeExportsOfCommonJsModule(sourceFile: ts.SourceFile): Map<string, Declaration> {
|
|
const moduleMap = new Map<string, Declaration>();
|
|
for (const statement of this.getModuleStatements(sourceFile)) {
|
|
if (isExportStatement(statement)) {
|
|
const exportDeclaration = this.extractBasicCommonJsExportDeclaration(statement);
|
|
moduleMap.set(exportDeclaration.name, exportDeclaration.declaration);
|
|
} else if (isWildcardReexportStatement(statement)) {
|
|
const reexports = this.extractCommonJsWildcardReexports(statement, sourceFile);
|
|
for (const reexport of reexports) {
|
|
moduleMap.set(reexport.name, reexport.declaration);
|
|
}
|
|
} else if (isDefinePropertyReexportStatement(statement)) {
|
|
const exportDeclaration = this.extractCommonJsDefinePropertyExportDeclaration(statement);
|
|
if (exportDeclaration !== null) {
|
|
moduleMap.set(exportDeclaration.name, exportDeclaration.declaration);
|
|
}
|
|
}
|
|
}
|
|
return moduleMap;
|
|
}
|
|
|
|
private extractBasicCommonJsExportDeclaration(statement: ExportStatement): ExportDeclaration {
|
|
const exportExpression = statement.expression.right;
|
|
const name = statement.expression.left.name.text;
|
|
return this.extractCommonJsExportDeclaration(name, exportExpression);
|
|
}
|
|
|
|
private extractCommonJsWildcardReexports(
|
|
statement: WildcardReexportStatement, containingFile: ts.SourceFile): ExportDeclaration[] {
|
|
const reexportArg = statement.expression.arguments[0];
|
|
|
|
const requireCall = isRequireCall(reexportArg) ?
|
|
reexportArg :
|
|
ts.isIdentifier(reexportArg) ? findRequireCallReference(reexportArg, this.checker) : null;
|
|
if (requireCall === null) {
|
|
return [];
|
|
}
|
|
|
|
const importPath = requireCall.arguments[0].text;
|
|
const importedFile = this.resolveModuleName(importPath, containingFile);
|
|
if (importedFile === undefined) {
|
|
return [];
|
|
}
|
|
|
|
const importedExports = this.getExportsOfModule(importedFile);
|
|
if (importedExports === null) {
|
|
return [];
|
|
}
|
|
|
|
const viaModule = isExternalImport(importPath) ? importPath : null;
|
|
const reexports: ExportDeclaration[] = [];
|
|
importedExports.forEach((declaration, name) => {
|
|
if (viaModule !== null && declaration.viaModule === null) {
|
|
declaration = {...declaration, viaModule};
|
|
}
|
|
reexports.push({name, declaration});
|
|
});
|
|
return reexports;
|
|
}
|
|
|
|
private extractCommonJsDefinePropertyExportDeclaration(
|
|
statement: DefinePropertyReexportStatement): ExportDeclaration|null {
|
|
const args = statement.expression.arguments;
|
|
const name = args[1].text;
|
|
const getterFnExpression = extractGetterFnExpression(statement);
|
|
if (getterFnExpression === null) {
|
|
return null;
|
|
}
|
|
return this.extractCommonJsExportDeclaration(name, getterFnExpression);
|
|
}
|
|
|
|
private findCommonJsImport(id: ts.Identifier): RequireCall|null {
|
|
// Is `id` a namespaced property access, e.g. `Directive` in `core.Directive`?
|
|
// If so capture the symbol of the namespace, e.g. `core`.
|
|
const nsIdentifier = findNamespaceOfIdentifier(id);
|
|
return nsIdentifier && findRequireCallReference(nsIdentifier, this.checker);
|
|
}
|
|
|
|
private extractCommonJsExportDeclaration(name: string, expression: ts.Expression):
|
|
ExportDeclaration {
|
|
const declaration = this.getDeclarationOfExpression(expression);
|
|
if (declaration !== null) {
|
|
return {name, declaration};
|
|
} else {
|
|
return {
|
|
name,
|
|
declaration: {node: null, known: null, expression, viaModule: null},
|
|
};
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle the case where the identifier represents a reference to a whole CommonJS
|
|
* module, i.e. the result of a call to `require(...)`.
|
|
*
|
|
* @param id the identifier whose declaration we are looking for.
|
|
* @returns a declaration if `id` refers to a CommonJS module, or `null` otherwise.
|
|
*/
|
|
private getCommonJsModuleDeclaration(id: ts.Identifier): Declaration|null {
|
|
const requireCall = findRequireCallReference(id, this.checker);
|
|
if (requireCall === null) {
|
|
return null;
|
|
}
|
|
const importPath = requireCall.arguments[0].text;
|
|
const module = this.resolveModuleName(importPath, id.getSourceFile());
|
|
if (module === undefined) {
|
|
return null;
|
|
}
|
|
const viaModule = isExternalImport(importPath) ? importPath : null;
|
|
return {node: module, known: null, viaModule, identity: null};
|
|
}
|
|
|
|
private resolveModuleName(moduleName: string, containingFile: ts.SourceFile): ts.SourceFile
|
|
|undefined {
|
|
if (this.compilerHost.resolveModuleNames) {
|
|
const moduleInfo = this.compilerHost.resolveModuleNames(
|
|
[moduleName], containingFile.fileName, undefined, undefined,
|
|
this.program.getCompilerOptions())[0];
|
|
return moduleInfo && this.program.getSourceFile(absoluteFrom(moduleInfo.resolvedFileName));
|
|
} else {
|
|
const moduleInfo = ts.resolveModuleName(
|
|
moduleName, containingFile.fileName, this.program.getCompilerOptions(),
|
|
this.compilerHost);
|
|
return moduleInfo.resolvedModule &&
|
|
this.program.getSourceFile(absoluteFrom(moduleInfo.resolvedModule.resolvedFileName));
|
|
}
|
|
}
|
|
}
|