2016-06-23 09:47:54 -07: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
|
|
|
|
*/
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
import {CompileDirectiveMetadata, CompileDirectiveSummary, CompileIdentifierMetadata, CompileNgModuleMetadata, CompileNgModuleSummary, CompilePipeMetadata, CompilePipeSummary, CompileProviderMetadata, CompileStylesheetMetadata, CompileSummaryKind, CompileTypeMetadata, CompileTypeSummary, componentFactoryName, flatten, identifierName, sourceUrl, templateSourceUrl} from '../compile_metadata';
|
2017-02-17 08:56:49 -08:00
|
|
|
import {CompilerConfig} from '../config';
|
2017-09-12 09:40:28 -07:00
|
|
|
import {ViewEncapsulation} from '../core';
|
2017-09-12 15:53:17 -07:00
|
|
|
import {MessageBundle} from '../i18n/message_bundle';
|
2017-05-18 13:46:51 -07:00
|
|
|
import {Identifiers, createTokenForExternalReference} from '../identifiers';
|
2016-11-14 17:37:47 -08:00
|
|
|
import {CompileMetadataResolver} from '../metadata_resolver';
|
2017-09-12 15:53:17 -07:00
|
|
|
import {HtmlParser} from '../ml_parser/html_parser';
|
|
|
|
import {InterpolationConfig} from '../ml_parser/interpolation_config';
|
2016-11-14 17:37:47 -08:00
|
|
|
import {NgModuleCompiler} from '../ng_module_compiler';
|
|
|
|
import {OutputEmitter} from '../output/abstract_emitter';
|
|
|
|
import * as o from '../output/output_ast';
|
2017-09-12 15:53:17 -07:00
|
|
|
import {ParseError} from '../parse_util';
|
2016-11-14 17:37:47 -08:00
|
|
|
import {CompiledStylesheet, StyleCompiler} from '../style_compiler';
|
2016-12-15 09:12:40 -08:00
|
|
|
import {SummaryResolver} from '../summary_resolver';
|
2017-09-11 15:18:19 -07:00
|
|
|
import {TemplateAst} from '../template_parser/template_ast';
|
2016-11-14 17:37:47 -08:00
|
|
|
import {TemplateParser} from '../template_parser/template_parser';
|
2017-09-12 09:40:28 -07:00
|
|
|
import {OutputContext, ValueVisitor, syntaxError, visitValue} from '../util';
|
2017-09-11 15:18:19 -07:00
|
|
|
import {TypeCheckCompiler} from '../view_compiler/type_check_compiler';
|
2017-05-16 16:30:37 -07:00
|
|
|
import {ViewCompileResult, ViewCompiler} from '../view_compiler/view_compiler';
|
2016-11-14 17:37:47 -08:00
|
|
|
|
2016-12-15 09:12:40 -08:00
|
|
|
import {AotCompilerHost} from './compiler_host';
|
2016-11-29 15:36:33 -08:00
|
|
|
import {GeneratedFile} from './generated_file';
|
2017-05-18 13:46:51 -07:00
|
|
|
import {StaticReflector} from './static_reflector';
|
2016-11-14 17:37:47 -08:00
|
|
|
import {StaticSymbol} from './static_symbol';
|
2017-04-26 09:24:42 -07:00
|
|
|
import {ResolvedStaticSymbol, StaticSymbolResolver} from './static_symbol_resolver';
|
2017-05-23 13:40:50 -07:00
|
|
|
import {createForJitStub, serializeSummaries} from './summary_serializer';
|
2017-04-26 09:24:42 -07:00
|
|
|
import {ngfactoryFilePath, splitTypescriptSuffix, summaryFileName, summaryForJitFileName, summaryForJitName} from './util';
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
export enum StubEmitFlags {
|
|
|
|
Basic = 1 << 0,
|
|
|
|
TypeCheck = 1 << 1,
|
|
|
|
All = TypeCheck | Basic
|
|
|
|
}
|
|
|
|
|
2016-11-14 17:37:47 -08:00
|
|
|
export class AotCompiler {
|
2017-09-11 15:18:19 -07:00
|
|
|
private _templateAstCache =
|
|
|
|
new Map<StaticSymbol, {template: TemplateAst[], pipes: CompilePipeSummary[]}>();
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
2017-02-17 08:56:49 -08:00
|
|
|
private _config: CompilerConfig, private _host: AotCompilerHost,
|
2017-05-18 13:46:51 -07:00
|
|
|
private _reflector: StaticReflector, private _metadataResolver: CompileMetadataResolver,
|
2017-09-12 09:40:28 -07:00
|
|
|
private _templateParser: TemplateParser, private _styleCompiler: StyleCompiler,
|
|
|
|
private _viewCompiler: ViewCompiler, private _typeCheckCompiler: TypeCheckCompiler,
|
|
|
|
private _ngModuleCompiler: NgModuleCompiler, private _outputEmitter: OutputEmitter,
|
2017-03-24 09:59:58 -07:00
|
|
|
private _summaryResolver: SummaryResolver<StaticSymbol>, private _localeId: string|null,
|
2017-09-12 09:40:28 -07:00
|
|
|
private _translationFormat: string|null,
|
|
|
|
/** TODO(tbosch): remove this flag as it is always on in the new ngc */
|
|
|
|
private _enableSummariesForJit: boolean|null, private _symbolResolver: StaticSymbolResolver) {
|
|
|
|
}
|
2016-07-18 03:50:31 -07:00
|
|
|
|
2016-11-10 14:07:30 -08:00
|
|
|
clearCache() { this._metadataResolver.clearCache(); }
|
2016-06-28 09:54:42 -07:00
|
|
|
|
2017-05-23 13:40:50 -07:00
|
|
|
analyzeModulesSync(rootFiles: string[]): NgAnalyzedModules {
|
2017-08-18 14:03:59 -07:00
|
|
|
const analyzeResult = analyzeAndValidateNgModules(
|
2017-09-12 09:40:28 -07:00
|
|
|
rootFiles, this._host, this._symbolResolver, this._metadataResolver);
|
2017-05-23 13:40:50 -07:00
|
|
|
analyzeResult.ngModules.forEach(
|
|
|
|
ngModule => this._metadataResolver.loadNgModuleDirectiveAndPipeMetadata(
|
|
|
|
ngModule.type.reference, true));
|
|
|
|
return analyzeResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
analyzeModulesAsync(rootFiles: string[]): Promise<NgAnalyzedModules> {
|
2017-08-18 14:03:59 -07:00
|
|
|
const analyzeResult = analyzeAndValidateNgModules(
|
2017-09-12 09:40:28 -07:00
|
|
|
rootFiles, this._host, this._symbolResolver, this._metadataResolver);
|
2016-11-29 08:08:22 -08:00
|
|
|
return Promise
|
2017-05-23 13:40:50 -07:00
|
|
|
.all(analyzeResult.ngModules.map(
|
2016-11-29 08:08:22 -08:00
|
|
|
ngModule => this._metadataResolver.loadNgModuleDirectiveAndPipeMetadata(
|
|
|
|
ngModule.type.reference, false)))
|
2017-05-23 13:40:50 -07:00
|
|
|
.then(() => analyzeResult);
|
2016-10-24 13:28:23 -07:00
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
analyzeFile(fileName: string): NgAnalyzedFile {
|
|
|
|
return analyzeFile(this._host, this._symbolResolver, this._metadataResolver, fileName);
|
2017-05-23 13:40:50 -07:00
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
emitBasicStubs(file: NgAnalyzedFile): GeneratedFile[] {
|
|
|
|
return this._emitStubs(file, StubEmitFlags.Basic);
|
|
|
|
}
|
|
|
|
|
|
|
|
emitTypeCheckStubs(files: NgAnalyzedModules): GeneratedFile[] {
|
|
|
|
const generatedFiles: GeneratedFile[] = [];
|
|
|
|
files.files.forEach(
|
|
|
|
file => this._emitStubs(file, StubEmitFlags.TypeCheck)
|
|
|
|
.forEach(genFile => generatedFiles.push(genFile)));
|
|
|
|
return generatedFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
loadFilesAsync(files: NgAnalyzedFile[]): Promise<NgAnalyzedModules> {
|
|
|
|
const loadingPromises: Promise<NgAnalyzedModules>[] = [];
|
|
|
|
files.forEach(
|
|
|
|
file => file.ngModules.forEach(
|
|
|
|
ngModule =>
|
|
|
|
loadingPromises.push(this._metadataResolver.loadNgModuleDirectiveAndPipeMetadata(
|
|
|
|
ngModule.type.reference, false))));
|
|
|
|
return Promise.all(loadingPromises).then(_ => mergeAndValidateNgFiles(files));
|
|
|
|
}
|
|
|
|
|
|
|
|
loadFilesSync(files: NgAnalyzedFile[]): NgAnalyzedModules {
|
|
|
|
files.forEach(
|
|
|
|
file => file.ngModules.forEach(
|
|
|
|
ngModule => this._metadataResolver.loadNgModuleDirectiveAndPipeMetadata(
|
|
|
|
ngModule.type.reference, true)));
|
|
|
|
return mergeAndValidateNgFiles(files);
|
|
|
|
}
|
|
|
|
|
|
|
|
private _emitStubs(file: NgAnalyzedFile, emitFlags: StubEmitFlags): GeneratedFile[] {
|
|
|
|
return [
|
|
|
|
...this._createNgFactoryStub(file, emitFlags),
|
|
|
|
...this._createExternalStyleSheetNgFactoryStubs(file, emitFlags),
|
|
|
|
...this._createNgSummaryStub(file, emitFlags)
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
private _createNgFactoryStub(file: NgAnalyzedFile, emitFlags: StubEmitFlags): GeneratedFile[] {
|
|
|
|
const generatedFiles: GeneratedFile[] = [];
|
|
|
|
const outputCtx = this._createOutputContext(ngfactoryFilePath(file.fileName, true));
|
|
|
|
|
|
|
|
file.ngModules.forEach((ngModuleMeta, ngModuleIndex) => {
|
|
|
|
// Note: the code below needs to executed for StubEmitFlags.Basic and StubEmitFlags.TypeCheck,
|
|
|
|
// so we don't change the .ngfactory file too much when adding the typecheck block.
|
|
|
|
|
|
|
|
// create exports that user code can reference
|
|
|
|
this._ngModuleCompiler.createStub(outputCtx, ngModuleMeta.type.reference);
|
|
|
|
|
|
|
|
// add references to the symbols from the metadata.
|
|
|
|
// These can be used by the type check block for components,
|
|
|
|
// and they also cause TypeScript to include these files into the program too,
|
|
|
|
// which will make them part of the analyzedFiles.
|
|
|
|
const externalReferences: StaticSymbol[] = [
|
|
|
|
...ngModuleMeta.declaredDirectives.map(d => d.reference),
|
|
|
|
...ngModuleMeta.declaredPipes.map(d => d.reference),
|
|
|
|
...ngModuleMeta.importedModules.map(m => m.type.reference),
|
|
|
|
...ngModuleMeta.exportedModules.map(m => m.type.reference),
|
|
|
|
];
|
|
|
|
const externalReferenceVars = new Map<any, string>();
|
|
|
|
externalReferences.forEach((ref, typeIndex) => {
|
|
|
|
if (this._host.isSourceFile(ref.filePath)) {
|
|
|
|
externalReferenceVars.set(ref, `_decl${ngModuleIndex}_${typeIndex}`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
externalReferenceVars.forEach((varName, reference) => {
|
|
|
|
outputCtx.statements.push(
|
|
|
|
o.variable(varName)
|
|
|
|
.set(o.NULL_EXPR.cast(o.DYNAMIC_TYPE))
|
|
|
|
.toDeclStmt(o.expressionType(outputCtx.importExpr(reference))));
|
|
|
|
});
|
|
|
|
|
|
|
|
if (emitFlags & StubEmitFlags.TypeCheck) {
|
|
|
|
// add the typecheck block for all components of the NgModule
|
|
|
|
ngModuleMeta.declaredDirectives.forEach((dirId) => {
|
|
|
|
const compMeta = this._metadataResolver.getDirectiveMetadata(dirId.reference);
|
|
|
|
if (!compMeta.isComponent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._createTypeCheckBlock(
|
|
|
|
outputCtx, ngModuleMeta, this._metadataResolver.getHostComponentMetadata(compMeta),
|
|
|
|
[compMeta.type], externalReferenceVars);
|
|
|
|
this._createTypeCheckBlock(
|
|
|
|
outputCtx, ngModuleMeta, compMeta, ngModuleMeta.transitiveModule.directives,
|
|
|
|
externalReferenceVars);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// make sure we create a .ngfactory if we have a least one component
|
|
|
|
// in the file.
|
|
|
|
// Only do this for StubEmitFlags.Basic, as adding a type check block
|
|
|
|
// does not change this file (as we generate type check blocks based on NgModules).
|
|
|
|
if (outputCtx.statements.length === 0 && (emitFlags & StubEmitFlags.Basic) &&
|
|
|
|
file.directives.some(
|
|
|
|
dir => this._metadataResolver.getNonNormalizedDirectiveMetadata(
|
|
|
|
dir) !.metadata.isComponent)) {
|
|
|
|
_createEmptyStub(outputCtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure we create a .ngfactory if we reexport a non source file.
|
|
|
|
// Only do this for StubEmitFlags.Basic, as adding a type check block
|
|
|
|
// does not change this file (as we generate type check blocks based on NgModules).
|
|
|
|
if (outputCtx.statements.length === 0 && (emitFlags & StubEmitFlags.Basic) &&
|
|
|
|
file.exportsNonSourceFiles) {
|
|
|
|
_createEmptyStub(outputCtx);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outputCtx.statements.length > 0) {
|
|
|
|
generatedFiles.push(this._codegenSourceModule(file.fileName, outputCtx));
|
|
|
|
}
|
|
|
|
return generatedFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _createExternalStyleSheetNgFactoryStubs(file: NgAnalyzedFile, emitFlags: StubEmitFlags):
|
|
|
|
GeneratedFile[] {
|
|
|
|
const generatedFiles: GeneratedFile[] = [];
|
|
|
|
if (!(emitFlags & StubEmitFlags.Basic)) {
|
|
|
|
// note: stylesheet stubs don't change when we produce type check stubs
|
|
|
|
return generatedFiles;
|
|
|
|
}
|
|
|
|
const fileSuffix = splitTypescriptSuffix(file.fileName, true)[1];
|
|
|
|
file.directives.forEach((dirSymbol) => {
|
|
|
|
const compMeta =
|
|
|
|
this._metadataResolver.getNonNormalizedDirectiveMetadata(dirSymbol) !.metadata;
|
|
|
|
if (!compMeta.isComponent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Note: compMeta is a component and therefore template is non null.
|
|
|
|
compMeta.template !.styleUrls.forEach((styleUrl) => {
|
|
|
|
const normalizedUrl = this._host.resourceNameToFileName(styleUrl, file.fileName);
|
|
|
|
if (!normalizedUrl) {
|
|
|
|
throw new Error(`Couldn't resolve resource ${styleUrl} relative to ${file.fileName}`);
|
|
|
|
}
|
|
|
|
const encapsulation =
|
|
|
|
compMeta.template !.encapsulation || this._config.defaultEncapsulation;
|
|
|
|
const outputCtx = this._createOutputContext(_stylesModuleUrl(
|
|
|
|
normalizedUrl, encapsulation === ViewEncapsulation.Emulated, fileSuffix));
|
|
|
|
_createEmptyStub(outputCtx);
|
|
|
|
generatedFiles.push(this._codegenSourceModule(normalizedUrl, outputCtx));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return generatedFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _createNgSummaryStub(file: NgAnalyzedFile, emitFlags: StubEmitFlags): GeneratedFile[] {
|
|
|
|
const generatedFiles: GeneratedFile[] = [];
|
|
|
|
// note: .ngsummary.js stubs don't change when we produce type check stubs
|
|
|
|
if (!this._enableSummariesForJit || !(emitFlags & StubEmitFlags.Basic)) {
|
|
|
|
return generatedFiles;
|
|
|
|
}
|
|
|
|
if (file.directives.length || file.injectables.length || file.ngModules.length ||
|
|
|
|
file.pipes.length || file.exportsNonSourceFiles) {
|
|
|
|
const outputCtx = this._createOutputContext(summaryForJitFileName(file.fileName, true));
|
|
|
|
file.ngModules.forEach(ngModule => {
|
|
|
|
// create exports that user code can reference
|
|
|
|
createForJitStub(outputCtx, ngModule.type.reference);
|
|
|
|
});
|
|
|
|
if (outputCtx.statements.length === 0) {
|
|
|
|
_createEmptyStub(outputCtx);
|
|
|
|
}
|
|
|
|
generatedFiles.push(this._codegenSourceModule(file.fileName, outputCtx));
|
|
|
|
}
|
|
|
|
return generatedFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _createTypeCheckBlock(
|
|
|
|
ctx: OutputContext, moduleMeta: CompileNgModuleMetadata, compMeta: CompileDirectiveMetadata,
|
|
|
|
directives: CompileIdentifierMetadata[], externalReferenceVars: Map<any, string>) {
|
|
|
|
const {template: parsedTemplate, pipes: usedPipes} =
|
|
|
|
this._parseTemplate(compMeta, moduleMeta, directives);
|
|
|
|
ctx.statements.push(...this._typeCheckCompiler.compileComponent(
|
|
|
|
compMeta, parsedTemplate, usedPipes, externalReferenceVars));
|
2017-05-17 15:39:08 -07:00
|
|
|
}
|
|
|
|
|
2017-09-12 15:53:17 -07:00
|
|
|
emitMessageBundle(analyzeResult: NgAnalyzedModules, locale: string|null): MessageBundle {
|
|
|
|
const errors: ParseError[] = [];
|
|
|
|
const htmlParser = new HtmlParser();
|
|
|
|
|
|
|
|
// TODO(vicb): implicit tags & attributes
|
|
|
|
const messageBundle = new MessageBundle(htmlParser, [], {}, locale);
|
|
|
|
|
|
|
|
analyzeResult.files.forEach(file => {
|
|
|
|
const compMetas: CompileDirectiveMetadata[] = [];
|
|
|
|
file.directives.forEach(directiveType => {
|
|
|
|
const dirMeta = this._metadataResolver.getDirectiveMetadata(directiveType);
|
|
|
|
if (dirMeta && dirMeta.isComponent) {
|
|
|
|
compMetas.push(dirMeta);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
compMetas.forEach(compMeta => {
|
|
|
|
const html = compMeta.template !.template !;
|
|
|
|
const interpolationConfig =
|
|
|
|
InterpolationConfig.fromArray(compMeta.template !.interpolation);
|
2017-09-12 09:40:28 -07:00
|
|
|
errors.push(
|
|
|
|
...messageBundle.updateFromTemplate(html, file.fileName, interpolationConfig) !);
|
2017-09-12 15:53:17 -07:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
if (errors.length) {
|
|
|
|
throw new Error(errors.map(e => e.toString()).join('\n'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return messageBundle;
|
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
emitAllImpls(analyzeResult: NgAnalyzedModules): GeneratedFile[] {
|
|
|
|
const {ngModuleByPipeOrDirective, files} = analyzeResult;
|
|
|
|
const sourceModules = files.map(
|
|
|
|
file => this._compileImplFile(
|
|
|
|
file.fileName, ngModuleByPipeOrDirective, file.directives, file.pipes, file.ngModules,
|
|
|
|
file.injectables));
|
|
|
|
return flatten(sourceModules);
|
2017-05-23 13:40:50 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private _compileImplFile(
|
2016-10-25 16:28:22 -07:00
|
|
|
srcFileUrl: string, ngModuleByPipeOrDirective: Map<StaticSymbol, CompileNgModuleMetadata>,
|
2017-09-12 09:40:28 -07:00
|
|
|
directives: StaticSymbol[], pipes: StaticSymbol[], ngModules: CompileNgModuleMetadata[],
|
2016-12-15 09:12:40 -08:00
|
|
|
injectables: StaticSymbol[]): GeneratedFile[] {
|
2017-04-26 09:24:42 -07:00
|
|
|
const fileSuffix = splitTypescriptSuffix(srcFileUrl, true)[1];
|
2016-11-29 15:36:33 -08:00
|
|
|
const generatedFiles: GeneratedFile[] = [];
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
const outputCtx = this._createOutputContext(ngfactoryFilePath(srcFileUrl, true));
|
|
|
|
|
|
|
|
generatedFiles.push(
|
|
|
|
...this._createSummary(srcFileUrl, directives, pipes, ngModules, injectables, outputCtx));
|
2016-06-28 09:54:42 -07:00
|
|
|
|
2016-07-18 03:50:31 -07:00
|
|
|
// compile all ng modules
|
2017-09-12 09:40:28 -07:00
|
|
|
ngModules.forEach((ngModuleMeta) => this._compileModule(outputCtx, ngModuleMeta));
|
2016-06-28 09:54:42 -07:00
|
|
|
|
|
|
|
// compile components
|
2016-11-10 14:07:30 -08:00
|
|
|
directives.forEach((dirType) => {
|
|
|
|
const compMeta = this._metadataResolver.getDirectiveMetadata(<any>dirType);
|
|
|
|
if (!compMeta.isComponent) {
|
2017-05-23 13:40:50 -07:00
|
|
|
return;
|
2016-11-10 14:07:30 -08:00
|
|
|
}
|
|
|
|
const ngModule = ngModuleByPipeOrDirective.get(dirType);
|
|
|
|
if (!ngModule) {
|
|
|
|
throw new Error(
|
2016-11-23 09:42:19 -08:00
|
|
|
`Internal Error: cannot determine the module for component ${identifierName(compMeta.type)}!`);
|
2016-11-10 14:07:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// compile styles
|
2017-05-16 16:30:37 -07:00
|
|
|
const componentStylesheet = this._styleCompiler.compileComponent(outputCtx, compMeta);
|
|
|
|
// Note: compMeta is a component and therefore template is non null.
|
|
|
|
compMeta.template !.externalStylesheets.forEach((stylesheetMeta) => {
|
2017-05-23 13:40:50 -07:00
|
|
|
generatedFiles.push(
|
|
|
|
this._codegenStyles(stylesheetMeta.moduleUrl !, compMeta, stylesheetMeta, fileSuffix));
|
2016-11-10 14:07:30 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
// compile components
|
2017-02-16 13:55:55 -08:00
|
|
|
const compViewVars = this._compileComponent(
|
2017-05-16 16:30:37 -07:00
|
|
|
outputCtx, compMeta, ngModule, ngModule.transitiveModule.directives, componentStylesheet,
|
|
|
|
fileSuffix);
|
|
|
|
this._compileComponentFactory(outputCtx, compMeta, ngModule, fileSuffix);
|
2016-11-10 14:07:30 -08:00
|
|
|
});
|
2017-05-16 16:30:37 -07:00
|
|
|
if (outputCtx.statements.length > 0) {
|
|
|
|
const srcModule = this._codegenSourceModule(srcFileUrl, outputCtx);
|
2016-11-29 15:36:33 -08:00
|
|
|
generatedFiles.unshift(srcModule);
|
2016-11-10 14:07:30 -08:00
|
|
|
}
|
2016-11-29 15:36:33 -08:00
|
|
|
return generatedFiles;
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
2016-12-15 09:12:40 -08:00
|
|
|
private _createSummary(
|
2017-08-15 14:41:48 -07:00
|
|
|
srcFileName: string, directives: StaticSymbol[], pipes: StaticSymbol[],
|
2017-09-12 09:40:28 -07:00
|
|
|
ngModules: CompileNgModuleMetadata[], injectables: StaticSymbol[],
|
2017-05-16 16:30:37 -07:00
|
|
|
ngFactoryCtx: OutputContext): GeneratedFile[] {
|
2017-08-15 14:41:48 -07:00
|
|
|
const symbolSummaries = this._symbolResolver.getSymbolsOf(srcFileName)
|
2016-12-15 09:12:40 -08:00
|
|
|
.map(symbol => this._symbolResolver.resolveSymbol(symbol));
|
2017-04-26 09:24:42 -07:00
|
|
|
const typeData: {
|
|
|
|
summary: CompileTypeSummary,
|
|
|
|
metadata: CompileNgModuleMetadata | CompileDirectiveMetadata | CompilePipeMetadata |
|
|
|
|
CompileTypeMetadata
|
|
|
|
}[] =
|
|
|
|
[
|
2017-09-12 09:40:28 -07:00
|
|
|
...ngModules.map(
|
|
|
|
meta => ({
|
|
|
|
summary: this._metadataResolver.getNgModuleSummary(meta.type.reference) !,
|
|
|
|
metadata: this._metadataResolver.getNgModuleMetadata(meta.type.reference) !
|
|
|
|
})),
|
2017-04-26 09:24:42 -07:00
|
|
|
...directives.map(ref => ({
|
|
|
|
summary: this._metadataResolver.getDirectiveSummary(ref) !,
|
|
|
|
metadata: this._metadataResolver.getDirectiveMetadata(ref) !
|
|
|
|
})),
|
|
|
|
...pipes.map(ref => ({
|
|
|
|
summary: this._metadataResolver.getPipeSummary(ref) !,
|
|
|
|
metadata: this._metadataResolver.getPipeMetadata(ref) !
|
|
|
|
})),
|
|
|
|
...injectables.map(ref => ({
|
|
|
|
summary: this._metadataResolver.getInjectableSummary(ref) !,
|
|
|
|
metadata: this._metadataResolver.getInjectableSummary(ref) !.type
|
|
|
|
}))
|
|
|
|
];
|
2017-08-15 14:41:48 -07:00
|
|
|
const forJitOutputCtx = this._createOutputContext(summaryForJitFileName(srcFileName, true));
|
2017-05-16 16:30:37 -07:00
|
|
|
const {json, exportAs} = serializeSummaries(
|
2017-08-15 14:41:48 -07:00
|
|
|
srcFileName, forJitOutputCtx, this._summaryResolver, this._symbolResolver, symbolSummaries,
|
|
|
|
typeData);
|
2016-12-27 09:36:47 -08:00
|
|
|
exportAs.forEach((entry) => {
|
2017-05-16 16:30:37 -07:00
|
|
|
ngFactoryCtx.statements.push(
|
|
|
|
o.variable(entry.exportAs).set(ngFactoryCtx.importExpr(entry.symbol)).toDeclStmt(null, [
|
|
|
|
o.StmtModifier.Exported
|
|
|
|
]));
|
2016-12-27 09:36:47 -08:00
|
|
|
});
|
2017-08-15 14:41:48 -07:00
|
|
|
const summaryJson = new GeneratedFile(srcFileName, summaryFileName(srcFileName), json);
|
2017-06-09 14:00:03 -07:00
|
|
|
if (this._enableSummariesForJit) {
|
2017-08-15 14:41:48 -07:00
|
|
|
return [summaryJson, this._codegenSourceModule(srcFileName, forJitOutputCtx)];
|
2017-06-09 14:00:03 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
return [summaryJson];
|
2016-12-15 09:12:40 -08:00
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
private _compileModule(outputCtx: OutputContext, ngModule: CompileNgModuleMetadata): void {
|
2016-09-15 15:43:00 -07:00
|
|
|
const providers: CompileProviderMetadata[] = [];
|
|
|
|
|
|
|
|
if (this._localeId) {
|
2017-08-30 17:33:26 -07:00
|
|
|
const normalizedLocale = this._localeId.replace(/_/g, '-');
|
2016-11-30 10:52:51 -08:00
|
|
|
providers.push({
|
2017-05-18 13:46:51 -07:00
|
|
|
token: createTokenForExternalReference(this._reflector, Identifiers.LOCALE_ID),
|
2017-08-30 17:33:26 -07:00
|
|
|
useValue: normalizedLocale,
|
2016-11-30 10:52:51 -08:00
|
|
|
});
|
2016-09-15 15:43:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this._translationFormat) {
|
2016-11-30 10:52:51 -08:00
|
|
|
providers.push({
|
2017-05-18 13:46:51 -07:00
|
|
|
token: createTokenForExternalReference(this._reflector, Identifiers.TRANSLATIONS_FORMAT),
|
2016-08-12 14:45:36 -07:00
|
|
|
useValue: this._translationFormat
|
2016-11-30 10:52:51 -08:00
|
|
|
});
|
2016-09-15 15:43:00 -07:00
|
|
|
}
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
this._ngModuleCompiler.compile(outputCtx, ngModule, providers);
|
2016-06-28 09:54:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private _compileComponentFactory(
|
2017-05-16 16:30:37 -07:00
|
|
|
outputCtx: OutputContext, compMeta: CompileDirectiveMetadata,
|
|
|
|
ngModule: CompileNgModuleMetadata, fileSuffix: string): void {
|
2017-09-12 09:40:28 -07:00
|
|
|
const hostMeta = this._metadataResolver.getHostComponentMetadata(compMeta);
|
2017-02-16 13:55:55 -08:00
|
|
|
const hostViewFactoryVar =
|
2017-05-16 16:30:37 -07:00
|
|
|
this._compileComponent(outputCtx, hostMeta, ngModule, [compMeta.type], null, fileSuffix)
|
2017-02-16 13:55:55 -08:00
|
|
|
.viewClassVar;
|
2016-12-27 09:36:47 -08:00
|
|
|
const compFactoryVar = componentFactoryName(compMeta.type.reference);
|
2017-03-14 14:54:36 -07:00
|
|
|
const inputsExprs: o.LiteralMapEntry[] = [];
|
|
|
|
for (let propName in compMeta.inputs) {
|
|
|
|
const templateName = compMeta.inputs[propName];
|
|
|
|
// Don't quote so that the key gets minified...
|
|
|
|
inputsExprs.push(new o.LiteralMapEntry(propName, o.literal(templateName), false));
|
|
|
|
}
|
|
|
|
const outputsExprs: o.LiteralMapEntry[] = [];
|
|
|
|
for (let propName in compMeta.outputs) {
|
|
|
|
const templateName = compMeta.outputs[propName];
|
|
|
|
// Don't quote so that the key gets minified...
|
|
|
|
outputsExprs.push(new o.LiteralMapEntry(propName, o.literal(templateName), false));
|
|
|
|
}
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
outputCtx.statements.push(
|
2017-02-27 23:08:19 -08:00
|
|
|
o.variable(compFactoryVar)
|
2017-05-16 16:30:37 -07:00
|
|
|
.set(o.importExpr(Identifiers.createComponentFactory).callFn([
|
|
|
|
o.literal(compMeta.selector), outputCtx.importExpr(compMeta.type.reference),
|
2017-03-14 14:54:36 -07:00
|
|
|
o.variable(hostViewFactoryVar), new o.LiteralMapExpr(inputsExprs),
|
|
|
|
new o.LiteralMapExpr(outputsExprs),
|
|
|
|
o.literalArr(
|
2017-03-24 09:59:58 -07:00
|
|
|
compMeta.template !.ngContentSelectors.map(selector => o.literal(selector)))
|
2017-02-27 23:08:19 -08:00
|
|
|
]))
|
|
|
|
.toDeclStmt(
|
|
|
|
o.importType(
|
2017-05-16 16:30:37 -07:00
|
|
|
Identifiers.ComponentFactory,
|
|
|
|
[o.expressionType(outputCtx.importExpr(compMeta.type.reference)) !],
|
2017-02-27 23:08:19 -08:00
|
|
|
[o.TypeModifier.Const]),
|
2017-05-16 16:30:37 -07:00
|
|
|
[o.StmtModifier.Final, o.StmtModifier.Exported]));
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2017-09-11 15:18:19 -07:00
|
|
|
private _compileComponent(
|
|
|
|
outputCtx: OutputContext, compMeta: CompileDirectiveMetadata,
|
|
|
|
ngModule: CompileNgModuleMetadata, directiveIdentifiers: CompileIdentifierMetadata[],
|
|
|
|
componentStyles: CompiledStylesheet|null, fileSuffix: string): ViewCompileResult {
|
|
|
|
const {template: parsedTemplate, pipes: usedPipes} =
|
|
|
|
this._parseTemplate(compMeta, ngModule, directiveIdentifiers);
|
2016-09-15 15:38:17 -07:00
|
|
|
const stylesExpr = componentStyles ? o.variable(componentStyles.stylesVar) : o.literalArr([]);
|
2017-05-16 16:30:37 -07:00
|
|
|
const viewResult = this._viewCompiler.compileComponent(
|
|
|
|
outputCtx, compMeta, parsedTemplate, stylesExpr, usedPipes);
|
2016-06-24 08:46:43 -07:00
|
|
|
if (componentStyles) {
|
2017-05-16 16:30:37 -07:00
|
|
|
_resolveStyleStatements(
|
|
|
|
this._symbolResolver, componentStyles, this._styleCompiler.needsStyleShim(compMeta),
|
|
|
|
fileSuffix);
|
2016-06-24 08:46:43 -07:00
|
|
|
}
|
2017-05-16 16:30:37 -07:00
|
|
|
return viewResult;
|
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
private _parseTemplate(
|
|
|
|
compMeta: CompileDirectiveMetadata, ngModule: CompileNgModuleMetadata,
|
|
|
|
directiveIdentifiers: CompileIdentifierMetadata[]):
|
|
|
|
{template: TemplateAst[], pipes: CompilePipeSummary[]} {
|
|
|
|
if (this._templateAstCache.has(compMeta.type.reference)) {
|
|
|
|
return this._templateAstCache.get(compMeta.type.reference) !;
|
|
|
|
}
|
|
|
|
const preserveWhitespaces = compMeta !.template !.preserveWhitespaces;
|
|
|
|
const directives =
|
|
|
|
directiveIdentifiers.map(dir => this._metadataResolver.getDirectiveSummary(dir.reference));
|
|
|
|
const pipes = ngModule.transitiveModule.pipes.map(
|
|
|
|
pipe => this._metadataResolver.getPipeSummary(pipe.reference));
|
|
|
|
const result = this._templateParser.parse(
|
|
|
|
compMeta, compMeta.template !.htmlAst !, directives, pipes, ngModule.schemas,
|
|
|
|
templateSourceUrl(ngModule.type, compMeta, compMeta.template !), preserveWhitespaces);
|
|
|
|
this._templateAstCache.set(compMeta.type.reference, result);
|
|
|
|
return result;
|
2017-09-11 15:18:19 -07:00
|
|
|
}
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
private _createOutputContext(genFilePath: string): OutputContext {
|
|
|
|
const importExpr = (symbol: StaticSymbol, typeParams: o.Type[] | null = null) => {
|
|
|
|
if (!(symbol instanceof StaticSymbol)) {
|
|
|
|
throw new Error(`Internal error: unknown identifier ${JSON.stringify(symbol)}`);
|
|
|
|
}
|
|
|
|
const arity = this._symbolResolver.getTypeArity(symbol) || 0;
|
|
|
|
const {filePath, name, members} = this._symbolResolver.getImportAs(symbol) || symbol;
|
2017-06-21 15:05:11 -07:00
|
|
|
const importModule = this._symbolResolver.fileNameToModuleName(filePath, genFilePath);
|
2017-06-22 10:36:42 -07:00
|
|
|
|
|
|
|
// It should be good enough to compare filePath to genFilePath and if they are equal
|
|
|
|
// there is a self reference. However, ngfactory files generate to .ts but their
|
|
|
|
// symbols have .d.ts so a simple compare is insufficient. They should be canonical
|
|
|
|
// and is tracked by #17705.
|
2017-06-21 15:05:11 -07:00
|
|
|
const selfReference = this._symbolResolver.fileNameToModuleName(genFilePath, genFilePath);
|
|
|
|
const moduleName = importModule === selfReference ? null : importModule;
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
// If we are in a type expression that refers to a generic type then supply
|
|
|
|
// the required type parameters. If there were not enough type parameters
|
|
|
|
// supplied, supply any as the type. Outside a type expression the reference
|
|
|
|
// should not supply type parameters and be treated as a simple value reference
|
|
|
|
// to the constructor function itself.
|
|
|
|
const suppliedTypeParams = typeParams || [];
|
|
|
|
const missingTypeParamsCount = arity - suppliedTypeParams.length;
|
|
|
|
const allTypeParams =
|
|
|
|
suppliedTypeParams.concat(new Array(missingTypeParamsCount).fill(o.DYNAMIC_TYPE));
|
|
|
|
return members.reduce(
|
|
|
|
(expr, memberName) => expr.prop(memberName),
|
|
|
|
<o.Expression>o.importExpr(
|
|
|
|
new o.ExternalReference(moduleName, name, null), allTypeParams));
|
|
|
|
};
|
|
|
|
|
|
|
|
return {statements: [], genFilePath, importExpr};
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
private _codegenStyles(
|
|
|
|
srcFileUrl: string, compMeta: CompileDirectiveMetadata,
|
|
|
|
stylesheetMetadata: CompileStylesheetMetadata, fileSuffix: string): GeneratedFile {
|
|
|
|
const outputCtx = this._createOutputContext(_stylesModuleUrl(
|
|
|
|
stylesheetMetadata.moduleUrl !, this._styleCompiler.needsStyleShim(compMeta), fileSuffix));
|
|
|
|
const compiledStylesheet =
|
|
|
|
this._styleCompiler.compileStyles(outputCtx, compMeta, stylesheetMetadata);
|
|
|
|
_resolveStyleStatements(
|
|
|
|
this._symbolResolver, compiledStylesheet, this._styleCompiler.needsStyleShim(compMeta),
|
|
|
|
fileSuffix);
|
|
|
|
return this._codegenSourceModule(srcFileUrl, outputCtx);
|
2016-05-02 09:38:46 -07:00
|
|
|
}
|
2016-01-06 14:13:44 -08:00
|
|
|
|
2017-05-16 16:30:37 -07:00
|
|
|
private _codegenSourceModule(srcFileUrl: string, ctx: OutputContext): GeneratedFile {
|
2017-05-17 11:21:08 -07:00
|
|
|
return new GeneratedFile(srcFileUrl, ctx.genFilePath, ctx.statements);
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
function _createEmptyStub(outputCtx: OutputContext) {
|
2017-08-22 16:17:44 -07:00
|
|
|
// Note: We need to produce at least one import statement so that
|
|
|
|
// TypeScript knows that the file is an es6 module. Otherwise our generated
|
|
|
|
// exports / imports won't be emitted properly by TypeScript.
|
|
|
|
outputCtx.statements.push(o.importExpr(Identifiers.ComponentFactory).toStmt());
|
2017-06-09 14:50:57 -07:00
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
function _resolveStyleStatements(
|
2017-05-16 16:30:37 -07:00
|
|
|
symbolResolver: StaticSymbolResolver, compileResult: CompiledStylesheet, needsShim: boolean,
|
|
|
|
fileSuffix: string): void {
|
2016-01-06 14:13:44 -08:00
|
|
|
compileResult.dependencies.forEach((dep) => {
|
2017-05-16 16:30:37 -07:00
|
|
|
dep.setValue(symbolResolver.getStaticSymbol(
|
|
|
|
_stylesModuleUrl(dep.moduleUrl, needsShim, fileSuffix), dep.name));
|
2016-01-06 14:13:44 -08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-02 09:38:46 -07:00
|
|
|
function _stylesModuleUrl(stylesheetUrl: string, shim: boolean, suffix: string): string {
|
2016-12-13 17:34:46 -08:00
|
|
|
return `${stylesheetUrl}${shim ? '.shim' : ''}.ngstyle${suffix}`;
|
2016-01-06 14:13:44 -08:00
|
|
|
}
|
|
|
|
|
2016-11-15 13:57:25 -08:00
|
|
|
export interface NgAnalyzedModules {
|
|
|
|
ngModules: CompileNgModuleMetadata[];
|
|
|
|
ngModuleByPipeOrDirective: Map<StaticSymbol, CompileNgModuleMetadata>;
|
2017-09-12 09:40:28 -07:00
|
|
|
files: NgAnalyzedFile[];
|
2016-11-15 13:57:25 -08:00
|
|
|
symbolsMissingModule?: StaticSymbol[];
|
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
export interface NgAnalyzedFile {
|
|
|
|
fileName: string;
|
|
|
|
directives: StaticSymbol[];
|
|
|
|
pipes: StaticSymbol[];
|
|
|
|
ngModules: CompileNgModuleMetadata[];
|
|
|
|
injectables: StaticSymbol[];
|
|
|
|
exportsNonSourceFiles: boolean;
|
|
|
|
}
|
|
|
|
|
2016-12-15 09:12:40 -08:00
|
|
|
export interface NgAnalyzeModulesHost { isSourceFile(filePath: string): boolean; }
|
|
|
|
|
2016-11-15 13:57:25 -08:00
|
|
|
export function analyzeNgModules(
|
2017-09-12 09:40:28 -07:00
|
|
|
fileNames: string[], host: NgAnalyzeModulesHost, staticSymbolResolver: StaticSymbolResolver,
|
2016-11-15 13:57:25 -08:00
|
|
|
metadataResolver: CompileMetadataResolver): NgAnalyzedModules {
|
2017-09-12 09:40:28 -07:00
|
|
|
const files = _analyzeFilesIncludingNonProgramFiles(
|
|
|
|
fileNames, host, staticSymbolResolver, metadataResolver);
|
|
|
|
return mergeAnalyzedFiles(files);
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function analyzeAndValidateNgModules(
|
2017-09-12 09:40:28 -07:00
|
|
|
fileNames: string[], host: NgAnalyzeModulesHost, staticSymbolResolver: StaticSymbolResolver,
|
2016-11-15 13:57:25 -08:00
|
|
|
metadataResolver: CompileMetadataResolver): NgAnalyzedModules {
|
2017-09-12 09:40:28 -07:00
|
|
|
return validateAnalyzedModules(
|
|
|
|
analyzeNgModules(fileNames, host, staticSymbolResolver, metadataResolver));
|
|
|
|
}
|
|
|
|
|
|
|
|
function validateAnalyzedModules(analyzedModules: NgAnalyzedModules): NgAnalyzedModules {
|
|
|
|
if (analyzedModules.symbolsMissingModule && analyzedModules.symbolsMissingModule.length) {
|
|
|
|
const messages = analyzedModules.symbolsMissingModule.map(
|
2017-02-06 15:26:30 -08:00
|
|
|
s =>
|
|
|
|
`Cannot determine the module for class ${s.name} in ${s.filePath}! Add ${s.name} to the NgModule to fix it.`);
|
|
|
|
throw syntaxError(messages.join('\n'));
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|
2017-09-12 09:40:28 -07:00
|
|
|
return analyzedModules;
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
// Analyzes all of the program files,
|
|
|
|
// including files that are not part of the program
|
|
|
|
// but are referenced by an NgModule.
|
|
|
|
function _analyzeFilesIncludingNonProgramFiles(
|
|
|
|
fileNames: string[], host: NgAnalyzeModulesHost, staticSymbolResolver: StaticSymbolResolver,
|
|
|
|
metadataResolver: CompileMetadataResolver): NgAnalyzedFile[] {
|
|
|
|
const seenFiles = new Set<string>();
|
|
|
|
const files: NgAnalyzedFile[] = [];
|
|
|
|
|
|
|
|
const visitFile = (fileName: string) => {
|
|
|
|
if (seenFiles.has(fileName) || !host.isSourceFile(fileName)) {
|
|
|
|
return false;
|
2016-12-15 09:12:40 -08:00
|
|
|
}
|
2017-09-12 09:40:28 -07:00
|
|
|
seenFiles.add(fileName);
|
|
|
|
const analyzedFile = analyzeFile(host, staticSymbolResolver, metadataResolver, fileName);
|
|
|
|
files.push(analyzedFile);
|
|
|
|
analyzedFile.ngModules.forEach(ngModule => {
|
|
|
|
ngModule.transitiveModule.modules.forEach(modMeta => visitFile(modMeta.reference.filePath));
|
2016-11-15 13:57:25 -08:00
|
|
|
});
|
|
|
|
};
|
2017-09-12 09:40:28 -07:00
|
|
|
fileNames.forEach((fileName) => visitFile(fileName));
|
|
|
|
return files;
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
export function analyzeFile(
|
|
|
|
host: NgAnalyzeModulesHost, staticSymbolResolver: StaticSymbolResolver,
|
|
|
|
metadataResolver: CompileMetadataResolver, fileName: string): NgAnalyzedFile {
|
|
|
|
const directives: StaticSymbol[] = [];
|
|
|
|
const pipes: StaticSymbol[] = [];
|
|
|
|
const injectables: StaticSymbol[] = [];
|
|
|
|
const ngModules: CompileNgModuleMetadata[] = [];
|
|
|
|
const hasDecorators = staticSymbolResolver.hasDecorators(fileName);
|
|
|
|
let exportsNonSourceFiles = false;
|
|
|
|
// Don't analyze .d.ts files that have no decorators as a shortcut
|
|
|
|
// to speed up the analysis. This prevents us from
|
|
|
|
// resolving the references in these files.
|
|
|
|
// Note: exportsNonSourceFiles is only needed when compiling with summaries,
|
|
|
|
// which is not the case when .d.ts files are treated as input files.
|
|
|
|
if (!fileName.endsWith('.d.ts') || hasDecorators) {
|
|
|
|
staticSymbolResolver.getSymbolsOf(fileName).forEach((symbol) => {
|
2016-12-15 09:12:40 -08:00
|
|
|
const resolvedSymbol = staticSymbolResolver.resolveSymbol(symbol);
|
|
|
|
const symbolMeta = resolvedSymbol.metadata;
|
2017-09-12 09:40:28 -07:00
|
|
|
if (!symbolMeta || symbolMeta.__symbolic === 'error') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
exportsNonSourceFiles =
|
|
|
|
exportsNonSourceFiles || isValueExportingNonSourceFile(host, symbolMeta);
|
|
|
|
if (symbolMeta.__symbolic === 'class') {
|
|
|
|
if (metadataResolver.isDirective(symbol)) {
|
|
|
|
directives.push(symbol);
|
|
|
|
} else if (metadataResolver.isPipe(symbol)) {
|
|
|
|
pipes.push(symbol);
|
|
|
|
} else if (metadataResolver.isInjectable(symbol)) {
|
|
|
|
injectables.push(symbol);
|
|
|
|
} else {
|
|
|
|
const ngModule = metadataResolver.getNgModuleMetadata(symbol, false);
|
|
|
|
if (ngModule) {
|
|
|
|
ngModules.push(ngModule);
|
|
|
|
}
|
2016-12-15 09:12:40 -08:00
|
|
|
}
|
2016-11-17 20:11:55 -08:00
|
|
|
}
|
2016-12-15 09:12:40 -08:00
|
|
|
});
|
2017-09-12 09:40:28 -07:00
|
|
|
}
|
|
|
|
return {
|
|
|
|
fileName, directives, pipes, ngModules, injectables, exportsNonSourceFiles,
|
|
|
|
};
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
function isValueExportingNonSourceFile(host: NgAnalyzeModulesHost, metadata: any): boolean {
|
|
|
|
let exportsNonSourceFiles = false;
|
|
|
|
|
|
|
|
class Visitor implements ValueVisitor {
|
|
|
|
visitArray(arr: any[], context: any): any { arr.forEach(v => visitValue(v, this, context)); }
|
|
|
|
visitStringMap(map: {[key: string]: any}, context: any): any {
|
|
|
|
Object.keys(map).forEach((key) => visitValue(map[key], this, context));
|
2016-11-10 14:07:30 -08:00
|
|
|
}
|
2017-09-12 09:40:28 -07:00
|
|
|
visitPrimitive(value: any, context: any): any {}
|
|
|
|
visitOther(value: any, context: any): any {
|
|
|
|
if (value instanceof StaticSymbol && !host.isSourceFile(value.filePath)) {
|
|
|
|
exportsNonSourceFiles = true;
|
|
|
|
}
|
2016-10-25 16:28:22 -07:00
|
|
|
}
|
2017-09-12 09:40:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
visitValue(metadata, new Visitor(), null);
|
|
|
|
return exportsNonSourceFiles;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function mergeAnalyzedFiles(analyzedFiles: NgAnalyzedFile[]): NgAnalyzedModules {
|
|
|
|
const allNgModules: CompileNgModuleMetadata[] = [];
|
|
|
|
const ngModuleByPipeOrDirective = new Map<StaticSymbol, CompileNgModuleMetadata>();
|
|
|
|
const allPipesAndDirectives = new Set<StaticSymbol>();
|
|
|
|
|
|
|
|
analyzedFiles.forEach(af => {
|
|
|
|
af.ngModules.forEach(ngModule => {
|
|
|
|
allNgModules.push(ngModule);
|
|
|
|
ngModule.declaredDirectives.forEach(
|
|
|
|
d => ngModuleByPipeOrDirective.set(d.reference, ngModule));
|
|
|
|
ngModule.declaredPipes.forEach(p => ngModuleByPipeOrDirective.set(p.reference, ngModule));
|
|
|
|
});
|
|
|
|
af.directives.forEach(d => allPipesAndDirectives.add(d));
|
|
|
|
af.pipes.forEach(p => allPipesAndDirectives.add(p));
|
2016-10-25 16:28:22 -07:00
|
|
|
});
|
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
const symbolsMissingModule: StaticSymbol[] = [];
|
|
|
|
allPipesAndDirectives.forEach(ref => {
|
|
|
|
if (!ngModuleByPipeOrDirective.has(ref)) {
|
|
|
|
symbolsMissingModule.push(ref);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
ngModules: allNgModules,
|
|
|
|
ngModuleByPipeOrDirective,
|
|
|
|
symbolsMissingModule,
|
|
|
|
files: analyzedFiles
|
|
|
|
};
|
|
|
|
}
|
2016-11-10 14:07:30 -08:00
|
|
|
|
2017-09-12 09:40:28 -07:00
|
|
|
function mergeAndValidateNgFiles(files: NgAnalyzedFile[]): NgAnalyzedModules {
|
|
|
|
return validateAnalyzedModules(mergeAnalyzedFiles(files));
|
2016-10-25 16:28:22 -07:00
|
|
|
}
|