gpt4 book ai didi

javascript - 如何使用 yazl 压缩缓冲区?

转载 作者:行者123 更新时间:2023-12-03 00:12:08 28 4
gpt4 key购买 nike

如何通过 yazl 压缩/解压缩缓冲区? https://www.npmjs.com/package/yazl

我不想创建/保存 zip 文件,而只是压缩缓冲区并将其转发到另一个服务。任何示例代码都会有帮助

var yazl = require("yazl");

var buf = fs.readFileSync(__dirname + '/testArchive.txt');
var zipfile = new yazl.ZipFile();
zipfile.addBuffer(buf, "TEMPENTRY");
zipfile.end();

那么现在已经存档了吗?那么如何使用 yauzl 来填充该缓冲区?

最佳答案

这种函数应该会有所帮助,手动检索流的数据包,然后将它们连接到一个缓冲区中:

function stream2buffer(readableStream) {
return new Promise((resolve, reject) => {
const chunks = [];
readableStream.on('data', (chunk) => {
chunks.push(chunk);
}).on('end', () => {
resolve(Buffer.concat(chunks));
}).on('error', (err) => {
reject(err);
});
});
}

然后您可以在 yazl.ZipFile.outputStream 上使用它,并在 yauzl.ZipFile.openReadStream 回调提供的可读流上使用它。

编辑

我的意思更像是在 yazloutputStream 上使用此函数,而不是在要压缩的源文件上。更多类似这样的:

function zipper(mapping) { // mapping is expected to be a Map here
const handler = new yazl.ZipFile(); // yazl = require('yazl');
for (mapItem of mapping) {
if (typeof mapItem[1] === 'string' || mapItem[1] instanceof String) {
handler.addFile(mapItem[1], mapItem[0]);
} else if (mapItem[1] instanceof Buffer) {
handler.addBuffer(mapItem[1], mapItem[0]);
} else if (mapItem[1] instanceof stream.Readable) { // stream = require('stream');
handler.addReadStream(mapItem[1], mapItem[0]);
} else throw new Error('unsupported type');
}
handler.end();
return stream2buffer(handler.outputStream);
}

解压也是一样的:

function unzipper(buffer) {
return new Promise((resolve, reject) => {
unzippedContents = {};
yauzl.fromBuffer(buffer, {lazyEntries: true}, (err, zip) => { // yauzl = require('yauzl')
if (err) return reject(err);
zip.on('entry', (entry) => {
if (/\/$/.test(entry.fileName)) return zip.readEntry(); // no directories
zip.openReadStream(entry, async (err, rs) => {
try {
if (err) throw err;
unzippedContents[entry.fileName] = await stream2buffer(rs);
} catch (err) {
zip.close();
return reject(err);
}
zip.readEntry();
});
}).on('end', () => {
zip.close();
resolve(unzippedContents);
});
zip.readEntry(); // start the process
});
});
}

关于javascript - 如何使用 yazl 压缩缓冲区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54678668/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com