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
|
|
|
|
*/
|
|
|
|
|
2016-04-28 21:57:16 -07:00
|
|
|
/**
|
|
|
|
* Transform template html and css into executable code.
|
|
|
|
* Intended to be used in a build step.
|
|
|
|
*/
|
2016-04-28 17:50:03 -07:00
|
|
|
import * as compiler from '@angular/compiler';
|
2016-08-12 14:45:36 -07:00
|
|
|
import {AngularCompilerOptions, NgcCliOptions} from '@angular/tsc-wrapped';
|
2017-07-07 10:22:52 -07:00
|
|
|
import {readFileSync} from 'fs';
|
2016-06-08 16:38:52 -07:00
|
|
|
import * as ts from 'typescript';
|
2016-04-28 21:57:16 -07:00
|
|
|
|
2016-12-01 13:24:51 -08:00
|
|
|
import {CompilerHost, CompilerHostContext, ModuleResolutionHostAdapter} from './compiler_host';
|
2016-11-17 12:24:33 -08:00
|
|
|
import {PathMappedCompilerHost} from './path_mapped_compiler_host';
|
2016-04-28 21:57:16 -07:00
|
|
|
|
2016-11-29 15:36:33 -08:00
|
|
|
const GENERATED_META_FILES = /\.json$/;
|
2016-08-12 17:38:29 -07:00
|
|
|
|
2016-04-28 21:57:16 -07:00
|
|
|
const PREAMBLE = `/**
|
2017-01-26 22:30:42 -08:00
|
|
|
* @fileoverview This file is generated by the Angular template compiler.
|
2016-04-28 21:57:16 -07:00
|
|
|
* Do not edit.
|
2017-04-18 15:00:43 -07:00
|
|
|
* @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride}
|
2016-04-28 21:57:16 -07:00
|
|
|
*/
|
2016-05-27 09:16:46 -07:00
|
|
|
/* tslint:disable */
|
|
|
|
|
2016-04-28 21:57:16 -07:00
|
|
|
`;
|
|
|
|
|
2017-09-12 15:53:17 -07:00
|
|
|
export interface CodeGeneratorI18nOptions {
|
|
|
|
i18nFormat: string|null;
|
|
|
|
i18nFile: string|null;
|
|
|
|
locale: string|null;
|
|
|
|
missingTranslation: string|null;
|
|
|
|
}
|
|
|
|
|
2016-10-06 15:10:44 -07:00
|
|
|
export class CodeGenerator {
|
|
|
|
constructor(
|
|
|
|
private options: AngularCompilerOptions, private program: ts.Program,
|
2016-11-18 08:40:41 -08:00
|
|
|
public host: ts.CompilerHost, private compiler: compiler.AotCompiler,
|
|
|
|
private ngCompilerHost: CompilerHost) {}
|
2016-04-28 21:57:16 -07:00
|
|
|
|
2017-05-25 10:00:26 -07:00
|
|
|
codegen(): Promise<string[]> {
|
2016-11-15 13:57:25 -08:00
|
|
|
return this.compiler
|
2017-05-23 13:40:50 -07:00
|
|
|
.analyzeModulesAsync(this.program.getSourceFiles().map(
|
2016-11-17 12:24:33 -08:00
|
|
|
sf => this.ngCompilerHost.getCanonicalFileName(sf.fileName)))
|
2017-06-05 11:34:25 -07:00
|
|
|
.then(analyzedModules => this.emit(analyzedModules));
|
|
|
|
}
|
|
|
|
|
|
|
|
codegenSync(): string[] {
|
|
|
|
const analyzed = this.compiler.analyzeModulesSync(this.program.getSourceFiles().map(
|
|
|
|
sf => this.ngCompilerHost.getCanonicalFileName(sf.fileName)));
|
|
|
|
return this.emit(analyzed);
|
|
|
|
}
|
|
|
|
|
|
|
|
private emit(analyzedModules: compiler.NgAnalyzedModules) {
|
|
|
|
const generatedModules = this.compiler.emitAllImpls(analyzedModules);
|
|
|
|
return generatedModules.map(generatedModule => {
|
|
|
|
const sourceFile = this.program.getSourceFile(generatedModule.srcFileUrl);
|
|
|
|
const emitPath = this.ngCompilerHost.calculateEmitPath(generatedModule.genFileUrl);
|
|
|
|
const source = generatedModule.source || compiler.toTypeScript(generatedModule, PREAMBLE);
|
|
|
|
this.host.writeFile(emitPath, source, false, () => {}, [sourceFile]);
|
|
|
|
return emitPath;
|
|
|
|
});
|
2016-04-28 21:57:16 -07:00
|
|
|
}
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
static create(
|
2017-09-12 15:53:17 -07:00
|
|
|
options: AngularCompilerOptions, i18nOptions: CodeGeneratorI18nOptions, program: ts.Program,
|
2016-11-17 12:24:33 -08:00
|
|
|
tsCompilerHost: ts.CompilerHost, compilerHostContext?: CompilerHostContext,
|
|
|
|
ngCompilerHost?: CompilerHost): CodeGenerator {
|
|
|
|
if (!ngCompilerHost) {
|
2016-11-15 13:57:25 -08:00
|
|
|
const usePathMapping = !!options.rootDirs && options.rootDirs.length > 0;
|
2016-12-01 13:24:51 -08:00
|
|
|
const context = compilerHostContext || new ModuleResolutionHostAdapter(tsCompilerHost);
|
|
|
|
ngCompilerHost = usePathMapping ? new PathMappedCompilerHost(program, options, context) :
|
|
|
|
new CompilerHost(program, options, context);
|
2016-11-15 13:57:25 -08:00
|
|
|
}
|
2016-08-12 14:45:36 -07:00
|
|
|
let transContent: string = '';
|
2017-09-12 15:53:17 -07:00
|
|
|
if (i18nOptions.i18nFile) {
|
|
|
|
if (!i18nOptions.locale) {
|
2016-08-26 15:38:48 -07:00
|
|
|
throw new Error(
|
2017-09-12 15:53:17 -07:00
|
|
|
`The translation file (${i18nOptions.i18nFile}) locale must be provided. Use the --locale option.`);
|
2017-04-13 09:17:37 +02:00
|
|
|
}
|
2017-09-12 15:53:17 -07:00
|
|
|
transContent = readFileSync(i18nOptions.i18nFile, 'utf8');
|
2017-04-13 09:17:37 +02:00
|
|
|
}
|
2017-08-16 09:00:03 -07:00
|
|
|
let missingTranslation = compiler.core.MissingTranslationStrategy.Warning;
|
2017-09-12 15:53:17 -07:00
|
|
|
if (i18nOptions.missingTranslation) {
|
|
|
|
switch (i18nOptions.missingTranslation) {
|
2017-04-13 09:17:37 +02:00
|
|
|
case 'error':
|
2017-08-16 09:00:03 -07:00
|
|
|
missingTranslation = compiler.core.MissingTranslationStrategy.Error;
|
2017-04-13 09:17:37 +02:00
|
|
|
break;
|
|
|
|
case 'warning':
|
2017-08-16 09:00:03 -07:00
|
|
|
missingTranslation = compiler.core.MissingTranslationStrategy.Warning;
|
2017-04-13 09:17:37 +02:00
|
|
|
break;
|
|
|
|
case 'ignore':
|
2017-08-16 09:00:03 -07:00
|
|
|
missingTranslation = compiler.core.MissingTranslationStrategy.Ignore;
|
2017-04-13 09:17:37 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new Error(
|
2017-09-12 15:53:17 -07:00
|
|
|
`Unknown option for missingTranslation (${i18nOptions.missingTranslation}). Use either error, warning or ignore.`);
|
2016-08-26 15:38:48 -07:00
|
|
|
}
|
2016-08-12 14:45:36 -07:00
|
|
|
}
|
2017-07-07 16:16:49 -07:00
|
|
|
if (!transContent) {
|
2017-08-16 09:00:03 -07:00
|
|
|
missingTranslation = compiler.core.MissingTranslationStrategy.Ignore;
|
2017-07-07 16:16:49 -07:00
|
|
|
}
|
2016-11-18 08:40:41 -08:00
|
|
|
const {compiler: aotCompiler} = compiler.createAotCompiler(ngCompilerHost, {
|
2016-11-15 11:13:20 -08:00
|
|
|
translations: transContent,
|
2017-09-12 15:53:17 -07:00
|
|
|
i18nFormat: i18nOptions.i18nFormat || undefined,
|
|
|
|
locale: i18nOptions.locale || undefined, missingTranslation,
|
2017-08-17 17:18:33 +02:00
|
|
|
enableLegacyTemplate: options.enableLegacyTemplate === true,
|
2017-06-09 14:00:03 -07:00
|
|
|
enableSummariesForJit: options.enableSummariesForJit !== false,
|
2017-08-18 12:13:17 +02:00
|
|
|
preserveWhitespaces: options.preserveWhitespaces,
|
2016-06-13 10:06:40 -07:00
|
|
|
});
|
2016-11-18 08:40:41 -08:00
|
|
|
return new CodeGenerator(options, program, tsCompilerHost, aotCompiler, ngCompilerHost);
|
2016-04-28 21:57:16 -07:00
|
|
|
}
|
|
|
|
}
|