js-adler32/perf/bm.js

40 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2016-10-13 01:23:45 +00:00
/* bm.js (C) 2014-present SheetJS -- http://sheetjs.com */
2014-06-18 17:58:20 +00:00
var Benchmark = require('benchmark');
var c = require('ansi')(process.stdout);
function test_end() { c.horizontalAbsolute(0).write("✓"); c.write('\n'); }
function suite_end() {
var o = this.filter('fastest');
var m = typeof o.pluck === 'undefined' ? o.map('name') : o.pluck('name');
console.log('Fastest is ' + m);
}
2014-06-18 17:58:20 +00:00
function test_cycle(e) { c.horizontalAbsolute(0); c.eraseLine(); c.write("→ "+e.target); }
function BM(name) {
if(!(this instanceof BM)) return new BM(name);
console.log("--- " + name + " ---");
this.suite = new Benchmark.Suite(name, { onComplete: suite_end });
this.suites = [];
this.maxlen = 0;
}
BM.prototype.run = function() {
var maxlen = this.maxlen, ss = this.suite;
this.suites.forEach(function(s) { ss.add(s[0] + new Array(maxlen-s[0].length+1).join(" "), s[1]); });
if(this.suites.length > 0) this.suite.run();
};
BM.prototype.add = function(msg, test) {
this.suites.push([msg, {
onCycle: test_cycle,
2014-06-18 17:58:20 +00:00
onComplete: test_end,
defer: false,
2014-06-18 17:58:20 +00:00
fn: test
}]);
this.maxlen = Math.max(this.maxlen, msg.length);
};
module.exports = BM;