使用benchmark.js对各种node.js解压缩库进行基准测试

时间:2015-05-07 23:36:04

标签: javascript node.js asynchronous benchmarking

我尝试使用benchmark.js为一些流行的node.js解压缩libs编写基准测试,主要是adm-zip, yauzl & unzip。但是,我不确定我是否正确编写了基准代码,因为我不断异常解压缩的lib会出现Error: UNKNOWN, open 'file-<unzip-lib>.zip'错误。

我创建了3个样本zip文件file-<unzip-lib>.zip的副本,每个库可以使用一个副本。

以下是代码

"use strict";

var fs = require("fs");

var Benchmark = require("benchmark");

var AdmZip = require("adm-zip"),
    yauzl = require("yauzl"),
    unzip = require("unzip");

var suite = new Benchmark.Suite;
var entryFile = "file.xml",
    targetDir = "./unzipped/";

suite
    .add("Adm-Zip#extractEntryTo", function() {
        var zip = new AdmZip("./file-adm-zip.zip");
        zip.extractEntryTo(entryFile, targetDir + "adm-zip/", /*maintainEntryPath*/false, /*overwrite*/true);
    })
    .add("YAUZL#open", function() {
        yauzl.open("./file-yauzl.zip", function(err, zip) {
            if (err) throw err;
            zip.on("entry", function(entry) {
                if (entryFile === (entry.fileName)) {
                    zip.openReadStream(entry, function(err, readStream) {
                        if (err) throw err;
                        // ensure parent directory exists, and then:
                        readStream.pipe(fs.createWriteStream(targetDir + "yauzl/" + entry.fileName));
                    });
                }
            });
            zip.once("end", function() {
                console.log("[YAUZL] Closing zip");
                zip.close();
            });
        });
    })
    .add("UNZIP#Parse", function() {
        fs.createReadStream("./file-unzip.zip")
            .pipe(unzip.Parse())
            .on("entry", function (entry) {
                var fileName = entry.path;
                if (fileName === entryFile) {
                    entry.pipe(fs.createWriteStream(targetDir + "unzip/" + fileName));
                } else {
                    entry.autodrain();
                }
            })
            .on("close", function() {
                console.log("[UNZIP] Closing zip");
            });
    })
    // add listeners
    .on("cycle", function(event) {
        console.log(String(event.target));
    })
    .on("complete", function() {
        console.log("Fastest is " + this.filter("fastest").pluck("name"));
    })
    // run async
    .run({ "async": true });

它失败了,因为溪流没有被正确关闭吗?我并不完全确定是这种情况,因为我确实看到,例如,每次运行[YAUZL] Closing zip测试时都会显示yauzl消息。

这是一个示例运行

$ node benchmark-unzippers.js 
Adm-Zip#extractEntryTo x 2.56 ops/sec ±1.62% (11 runs sampled)
[YAUZL] Closing zip
[YAUZL] Closing zip
[YAUZL] Closing zip
[YAUZL] Closing zip

~/benchmark-unzippers.js:23
            if (err) throw err;
                           ^
Error: UNKNOWN, open 'file-yauzl.zip'

不完全确定这里发生了什么。

1 个答案:

答案 0 :(得分:0)

我在打字稿中遇到了类似的问题,并意识到在我打电话给filestream之前,我写给的yauzl没有被关闭。

所以我在调用close之前等待filestream上的yauzl事件。

您可能希望在close上尝试filestream事件的C#等效项。