2014-11-17 11:01:21 -08:00
|
|
|
import {benchmark, benchmarkStep} from '../benchpress';
|
|
|
|
|
|
|
|
import {DOM, document} from 'facade/dom';
|
|
|
|
import {isBlank} from 'facade/lang';
|
|
|
|
import {MapWrapper} from 'facade/collection';
|
|
|
|
import {AnnotatedType} from 'core/compiler/annotated_type';
|
2014-11-14 14:03:03 -08:00
|
|
|
|
|
|
|
import {Parser} from 'change_detection/parser/parser';
|
|
|
|
import {Lexer} from 'change_detection/parser/lexer';
|
|
|
|
|
|
|
|
import {Compiler} from 'core/compiler/compiler';
|
2014-11-20 12:07:48 -08:00
|
|
|
import {DirectiveMetadataReader} from 'core/compiler/directive_metadata_reader';
|
2014-11-14 14:03:03 -08:00
|
|
|
|
2014-11-21 21:19:23 -08:00
|
|
|
import {Component} from 'core/annotations/annotations';
|
|
|
|
import {Decorator} from 'core/annotations/annotations';
|
2014-11-14 14:03:03 -08:00
|
|
|
import {TemplateConfig} from 'core/annotations/template_config';
|
|
|
|
|
2014-11-17 11:01:21 -08:00
|
|
|
var COUNT = 30;
|
|
|
|
|
2014-11-14 14:03:03 -08:00
|
|
|
var compiler;
|
|
|
|
var annotatedComponent;
|
|
|
|
|
2014-11-17 11:01:21 -08:00
|
|
|
function setup() {
|
2014-11-20 12:07:48 -08:00
|
|
|
var reader = new CachingDirectiveMetadataReader();
|
|
|
|
compiler = new Compiler(null, reader, new Parser(new Lexer()));
|
|
|
|
annotatedComponent = reader.annotatedType(BenchmarkComponent);
|
2014-11-14 14:03:03 -08:00
|
|
|
}
|
|
|
|
|
2014-11-17 11:01:21 -08:00
|
|
|
export function main() {
|
|
|
|
setup();
|
|
|
|
|
|
|
|
benchmark(`Compiler.compile 5*${COUNT} element no bindings`, function() {
|
|
|
|
var template = loadTemplate('templateNoBindings', COUNT);
|
|
|
|
|
|
|
|
benchmarkStep('run', function() {
|
|
|
|
// Need to clone every time as the compiler might modify the template!
|
|
|
|
var cloned = DOM.clone(template);
|
|
|
|
compiler.compileWithCache(null, annotatedComponent, cloned);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
benchmark(`Compiler.compile 5*${COUNT} element with bindings`, function() {
|
|
|
|
var template = loadTemplate('templateWithBindings', COUNT);
|
|
|
|
|
|
|
|
benchmarkStep('run', function() {
|
|
|
|
// Need to clone every time as the compiler might modify the template!
|
|
|
|
var cloned = DOM.clone(template);
|
|
|
|
compiler.compileWithCache(null, annotatedComponent, cloned);
|
|
|
|
});
|
|
|
|
});
|
2014-11-14 14:03:03 -08:00
|
|
|
}
|
|
|
|
|
2014-11-17 11:01:21 -08:00
|
|
|
function loadTemplate(templateId, repeatCount) {
|
|
|
|
var template = DOM.querySelectorAll(document, `#${templateId}`)[0];
|
|
|
|
var content = DOM.getInnerHTML(template);
|
|
|
|
var result = '';
|
|
|
|
for (var i=0; i<repeatCount; i++) {
|
|
|
|
result += content;
|
|
|
|
}
|
|
|
|
return DOM.createTemplate(result);
|
2014-11-14 14:03:03 -08:00
|
|
|
}
|
|
|
|
|
2014-11-17 11:01:21 -08:00
|
|
|
// Caching reflector as reflection in Dart using Mirrors
|
2014-11-20 12:07:48 -08:00
|
|
|
class CachingDirectiveMetadataReader extends DirectiveMetadataReader {
|
2014-11-21 21:19:23 -08:00
|
|
|
_cache: Map;
|
2014-11-17 11:01:21 -08:00
|
|
|
constructor() {
|
|
|
|
this._cache = MapWrapper.create();
|
|
|
|
}
|
|
|
|
annotatedType(type:Type):AnnotatedType {
|
|
|
|
var result = MapWrapper.get(this._cache, type);
|
|
|
|
if (isBlank(result)) {
|
|
|
|
result = super.annotatedType(type);
|
|
|
|
MapWrapper.set(this._cache, type, result);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2014-11-14 14:03:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@Decorator({
|
|
|
|
selector: '[dir0]',
|
|
|
|
bind: {
|
|
|
|
'attr0': 'prop'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
class Dir0 {}
|
|
|
|
|
|
|
|
@Decorator({
|
|
|
|
selector: '[dir1]',
|
|
|
|
bind: {
|
|
|
|
'attr1': 'prop'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
class Dir1 {}
|
|
|
|
|
|
|
|
@Decorator({
|
|
|
|
selector: '[dir2]',
|
|
|
|
bind: {
|
|
|
|
'attr2': 'prop'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
class Dir2 {}
|
|
|
|
|
|
|
|
@Decorator({
|
|
|
|
selector: '[dir3]',
|
|
|
|
bind: {
|
|
|
|
'attr3': 'prop'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
class Dir3 {}
|
|
|
|
|
|
|
|
@Decorator({
|
|
|
|
selector: '[dir4]',
|
|
|
|
bind: {
|
|
|
|
'attr4': 'prop'
|
|
|
|
}
|
|
|
|
})
|
|
|
|
class Dir4 {}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
template: new TemplateConfig({
|
|
|
|
directives: [Dir0, Dir1, Dir2, Dir3, Dir4]
|
|
|
|
})
|
|
|
|
})
|
2014-11-17 11:01:21 -08:00
|
|
|
class BenchmarkComponent {}
|
2014-11-14 14:03:03 -08:00
|
|
|
|