我尝试用电子和webtorrent编写一个小的torrent客户端。起初一切似乎都很好,但有时当种子下载完成时,生成的文件不会写入磁盘。
我的项目是通过模拟GREG/electron-vue样板设置的。
这是我的洪流客户端类的代码:
const WebTorrent = require('webtorrent');
const client = new WebTorrent();
export default class TorrentClient {
download (downloadInfo) {
console.log('download torrent from magnet link:', downloadInfo.magnetLink);
let torrent = client.add(downloadInfo.infoHash);
torrent.on('download', function (bytes) {
console.log('just downloaded: ' + bytes);
console.log('total downloaded: ' + torrent.downloaded);
console.log('download speed: ' + torrent.downloadSpeed);
console.log('progress: ' + torrent.progress);
});
torrent.on('done', function () {
console.log('done...');
});
}
}
Electron应用程序在下载后是关闭,还是继续运行?(如果是前者,则需要一种方法来延迟关闭,直到确定写入已完成。 例如,确保没有未解决的承诺。
在并非所有内容都写入磁盘的情况下,是否会发生done
消息?
您需要将两个错误处理程序添加到代码中,它们可能会解释问题。
客户端具有错误处理程序。
torrent 对象还有一个错误处理程序。
更新:我解决了这个问题。
在我调试了webtorrent正在使用的fs-chunk-store之后,我发现在数据写入磁盘之前抛出了一个错误。当调用 fs.mkdir 为下载目标创建新路径时,会发生此错误(ENOENT:没有此类文件或目录,mkdir 'path/to/folder'(。如果没有回调函数作为参数,错误将不会打印到 stdout。
我现在的解决方案是使用 fs-chunk-store 的自定义实现,它允许递归创建文件夹。