1 Star 0 Fork 0

Richard/node-bsdiff

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 716 Bytes
一键复制 编辑 原始数据 按行查看 历史
tdzl2003 提交于 2016-02-28 23:11 . first commit
/**
* Created by tdzl2003 on 2/28/16.
*/
var native;
try {
native = require('./build/Release/bsdiff');
} catch(e) {
console.error(e);
native = require('./build/Debug/bsdiff');
}
exports.native = native;
exports.diff = function(oldBuf, newBuf) {
var buffers = [];
native.diff(oldBuf, newBuf, function(output){
buffers.push(output);
});
var full = Buffer.concat(buffers);
// Generate bzip2 package with header.
var header = new Buffer(32);
header.fill(0);
new Buffer('ENDSLEY/BSDIFF43').copy(header, 0);
header.writeUInt32LE(newBuf.length, 16);
var buffers1 = [header];
native.compress(full, function(output){
buffers1.push(output);
});
return Buffer.concat(buffers1);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xinlc/node-bsdiff.git
[email protected]:xinlc/node-bsdiff.git
xinlc
node-bsdiff
node-bsdiff
master

搜索帮助