forked from emberjs/ember.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiframe_runner.js
90 lines (69 loc) · 2.03 KB
/
iframe_runner.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*globals BenchWarmer:true jQuery Benchmark*/
BenchWarmer = function(emberPath, logger, profile) {
this.emberPath = emberPath;
this.profile = profile;
this.logger = logger;
};
BenchWarmer.evalString = function(string, emberPath, logger, profile) {
var benchWarmer = new BenchWarmer(emberPath, logger, profile);
var bench = function(name, fn) {
benchWarmer.bench(name, fn);
};
var before = function(fn) {
benchWarmer.before(fn);
};
var after = function(fn) {
benchWarmer.after(fn);
};
eval(string);
return benchWarmer;
};
BenchWarmer.prototype = {
log: function(string) {
this.logger(string);
},
before: function(fn) {
this.setup = fn;
},
after: function(fn) {
this.teardown = fn;
},
bench: function(name, fn) {
var self = this;
this.name = name;
this.fn = fn;
this.benchmark = new Benchmark(name, fn, {
async: true,
setup: this.setup,
teardown: this.teardown,
onCycle: function(event, bench) {
self.log("<code>" + name + "</code> x" + event.target.stats.sample.length + " Hz: " + Math.floor(event.target.hz));
},
onComplete: function() {
var moe = Math.round(this.stats.moe / this.stats.mean * 10000) / 100;
var sampleMoe = (moe / 100) * this.hz;
self.log("<code>" + name + "</code> x" + this.stats.sample.length + " Hz: " + Math.floor(this.hz) + " ±" + moe + "% (" + sampleMoe + ")");
if (self.next) { self.next.run(); }
}
});
return this;
},
run: function() {
if (this.profile) {
var self = this;
var count = parseInt(this.profile, 10);
setTimeout(function() {
if (self.setup) { self.setup(); }
console.profile(self.emberPath + ": " + self.name);
for (var i=0; i<count; i++) {
self.fn();
}
console.profileEnd(self.emberPath + ": " + self.name);
if (self.teardown) { self.teardown(); }
if (self.next) { self.next.run(); }
}, 1);
} else {
this.benchmark.run();
}
}
};