2016-06-01 14:58:11 -07:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extract i18n messages from source code
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Must be imported first, because angular2 decorators throws on load.
|
|
|
|
import 'reflect-metadata';
|
|
|
|
|
|
|
|
import * as ts from 'typescript';
|
|
|
|
import * as tsc from '@angular/tsc-wrapped';
|
|
|
|
import * as path from 'path';
|
|
|
|
import * as compiler from '@angular/compiler';
|
2016-06-13 10:06:40 -07:00
|
|
|
import {ViewEncapsulation} from '@angular/core';
|
2016-06-01 14:58:11 -07:00
|
|
|
|
|
|
|
import {StaticReflector} from './static_reflector';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {CompileMetadataResolver, HtmlParser, DirectiveNormalizer, Lexer, Parser, TemplateParser, DomElementSchemaRegistry, StyleCompiler, ViewCompiler, TypeScriptEmitter, MessageExtractor, removeDuplicates, ExtractionResult, Message, ParseError, serializeXmb,} from './compiler_private';
|
2016-06-01 14:58:11 -07:00
|
|
|
|
2016-06-09 14:51:53 -07:00
|
|
|
import {ReflectorHost} from './reflector_host';
|
2016-06-01 14:58:11 -07:00
|
|
|
import {StaticAndDynamicReflectionCapabilities} from './static_reflection_capabilities';
|
|
|
|
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
function extract(
|
|
|
|
ngOptions: tsc.AngularCompilerOptions, program: ts.Program, host: ts.CompilerHost) {
|
2016-06-01 14:58:11 -07:00
|
|
|
return Extractor.create(ngOptions, program, host).extract();
|
|
|
|
}
|
|
|
|
|
|
|
|
const GENERATED_FILES = /\.ngfactory\.ts$|\.css\.ts$|\.css\.shim\.ts$/;
|
|
|
|
|
|
|
|
class Extractor {
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
|
|
|
private options: tsc.AngularCompilerOptions, private program: ts.Program,
|
|
|
|
public host: ts.CompilerHost, private staticReflector: StaticReflector,
|
|
|
|
private resolver: CompileMetadataResolver, private compiler: compiler.OfflineCompiler,
|
|
|
|
private reflectorHost: ReflectorHost, private _extractor: MessageExtractor) {}
|
|
|
|
|
|
|
|
private extractCmpMessages(metadatas: compiler.CompileDirectiveMetadata[]):
|
|
|
|
Promise<ExtractionResult> {
|
2016-06-01 14:58:11 -07:00
|
|
|
if (!metadatas || !metadatas.length) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const normalize = (metadata: compiler.CompileDirectiveMetadata) => {
|
|
|
|
const directiveType = metadata.type.runtime;
|
|
|
|
const directives = this.resolver.getViewDirectivesMetadata(directiveType);
|
|
|
|
return Promise.all(directives.map(d => this.compiler.normalizeDirectiveMetadata(d)))
|
2016-06-08 16:38:52 -07:00
|
|
|
.then(normalizedDirectives => {
|
|
|
|
const pipes = this.resolver.getViewPipesMetadata(directiveType);
|
|
|
|
return new compiler.NormalizedComponentWithViewDirectives(
|
|
|
|
metadata, normalizedDirectives, pipes);
|
|
|
|
});
|
2016-06-01 14:58:11 -07:00
|
|
|
};
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
return Promise.all(metadatas.map(normalize))
|
|
|
|
.then((cmps: compiler.NormalizedComponentWithViewDirectives[]) => {
|
|
|
|
let messages: Message[] = [];
|
|
|
|
let errors: ParseError[] = [];
|
|
|
|
cmps.forEach(cmp => {
|
|
|
|
// TODO(vicb): url
|
|
|
|
let result = this._extractor.extract(cmp.component.template.template, 'url');
|
|
|
|
errors = errors.concat(result.errors);
|
|
|
|
messages = messages.concat(result.messages);
|
|
|
|
});
|
2016-06-01 14:58:11 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
// Extraction Result might contain duplicate messages at this point
|
|
|
|
return new ExtractionResult(messages, errors);
|
|
|
|
});
|
2016-06-01 14:58:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private readComponents(absSourcePath: string) {
|
|
|
|
const result: Promise<compiler.CompileDirectiveMetadata>[] = [];
|
|
|
|
const metadata = this.staticReflector.getModuleMetadata(absSourcePath);
|
|
|
|
if (!metadata) {
|
|
|
|
console.log(`WARNING: no metadata found for ${absSourcePath}`);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const symbols = Object.keys(metadata['metadata']);
|
|
|
|
if (!symbols || !symbols.length) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
for (const symbol of symbols) {
|
|
|
|
const staticType = this.reflectorHost.findDeclaration(absSourcePath, symbol, absSourcePath);
|
|
|
|
let directive: compiler.CompileDirectiveMetadata;
|
|
|
|
directive = this.resolver.maybeGetDirectiveMetadata(<any>staticType);
|
|
|
|
|
|
|
|
if (!directive || !directive.isComponent) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
result.push(this.compiler.normalizeDirectiveMetadata(directive));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
extract(): Promise<any> {
|
|
|
|
const promises = this.program.getSourceFiles()
|
2016-06-08 16:38:52 -07:00
|
|
|
.map(sf => sf.fileName)
|
|
|
|
.filter(f => !GENERATED_FILES.test(f))
|
|
|
|
.map(
|
|
|
|
(absSourcePath: string): Promise<any> =>
|
|
|
|
Promise.all(this.readComponents(absSourcePath))
|
|
|
|
.then(metadatas => this.extractCmpMessages(metadatas))
|
|
|
|
.catch(e => console.error(e.stack)));
|
2016-06-01 14:58:11 -07:00
|
|
|
|
|
|
|
let messages: Message[] = [];
|
|
|
|
let errors: ParseError[] = [];
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
return Promise.all(promises).then(extractionResults => {
|
|
|
|
extractionResults.filter(result => !!result).forEach(result => {
|
|
|
|
messages = messages.concat(result.messages);
|
|
|
|
errors = errors.concat(result.errors);
|
|
|
|
});
|
2016-06-01 14:58:11 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
if (errors.length) {
|
|
|
|
throw errors;
|
|
|
|
}
|
2016-06-01 14:58:11 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
messages = removeDuplicates(messages);
|
2016-06-01 14:58:11 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
let genPath = path.join(this.options.genDir, 'messages.xmb');
|
|
|
|
let msgBundle = serializeXmb(messages);
|
2016-06-01 14:58:11 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
this.host.writeFile(genPath, msgBundle, false);
|
|
|
|
});
|
2016-06-01 14:58:11 -07:00
|
|
|
}
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
static create(
|
|
|
|
options: tsc.AngularCompilerOptions, program: ts.Program,
|
|
|
|
compilerHost: ts.CompilerHost): Extractor {
|
2016-06-01 14:58:11 -07:00
|
|
|
const xhr: compiler.XHR = {get: (s: string) => Promise.resolve(compilerHost.readFile(s))};
|
|
|
|
const urlResolver: compiler.UrlResolver = compiler.createOfflineCompileUrlResolver();
|
2016-06-09 14:51:53 -07:00
|
|
|
const reflectorHost = new ReflectorHost(program, compilerHost, options);
|
2016-06-01 14:58:11 -07:00
|
|
|
const staticReflector = new StaticReflector(reflectorHost);
|
|
|
|
StaticAndDynamicReflectionCapabilities.install(staticReflector);
|
|
|
|
const htmlParser = new HtmlParser();
|
2016-06-13 10:06:40 -07:00
|
|
|
const config = new compiler.CompilerConfig({
|
|
|
|
genDebugInfo: true,
|
|
|
|
defaultEncapsulation: ViewEncapsulation.Emulated,
|
|
|
|
logBindingUpdate: false,
|
|
|
|
useJit: false,
|
|
|
|
platformDirectives: [],
|
|
|
|
platformPipes: []
|
|
|
|
});
|
2016-06-01 14:58:11 -07:00
|
|
|
const normalizer = new DirectiveNormalizer(xhr, urlResolver, htmlParser, config);
|
|
|
|
const parser = new Parser(new Lexer());
|
2016-06-08 16:38:52 -07:00
|
|
|
const tmplParser = new TemplateParser(
|
|
|
|
parser, new DomElementSchemaRegistry(), htmlParser,
|
|
|
|
/*console*/ null, []);
|
2016-06-01 14:58:11 -07:00
|
|
|
const offlineCompiler = new compiler.OfflineCompiler(
|
2016-06-08 16:38:52 -07:00
|
|
|
normalizer, tmplParser, new StyleCompiler(urlResolver), new ViewCompiler(config),
|
|
|
|
new TypeScriptEmitter(reflectorHost), xhr);
|
2016-06-01 14:58:11 -07:00
|
|
|
const resolver = new CompileMetadataResolver(
|
2016-06-08 16:38:52 -07:00
|
|
|
new compiler.DirectiveResolver(staticReflector), new compiler.PipeResolver(staticReflector),
|
2016-06-13 10:06:40 -07:00
|
|
|
new compiler.ViewResolver(staticReflector), config, staticReflector);
|
2016-06-01 14:58:11 -07:00
|
|
|
|
|
|
|
// TODO(vicb): handle implicit
|
|
|
|
const extractor = new MessageExtractor(htmlParser, parser, [], {});
|
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
return new Extractor(
|
|
|
|
options, program, compilerHost, staticReflector, resolver, offlineCompiler, reflectorHost,
|
|
|
|
extractor);
|
2016-06-01 14:58:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Entry point
|
|
|
|
if (require.main === module) {
|
|
|
|
const args = require('minimist')(process.argv.slice(2));
|
|
|
|
tsc.main(args.p || args.project || '.', args.basePath, extract)
|
2016-06-08 16:38:52 -07:00
|
|
|
.then(exitCode => process.exit(exitCode))
|
|
|
|
.catch(e => {
|
|
|
|
console.error(e.stack);
|
|
|
|
console.error('Compilation failed');
|
|
|
|
process.exit(1);
|
|
|
|
});
|
2016-06-01 14:58:11 -07:00
|
|
|
}
|