|
@ -85,8 +85,11 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
|
|
|
// 严格模式 用于尾调用优化 |
|
|
|
|
|
"use strict"; |
|
|
|
|
|
|
|
|
const dec = require("./decrypt/common"); |
|
|
const worker = require("workerize-loader!./decrypt/common"); |
|
|
|
|
|
const dec = require('./decrypt/common'); |
|
|
export default { |
|
|
export default { |
|
|
name: 'app', |
|
|
name: 'app', |
|
|
components: {}, |
|
|
components: {}, |
|
@ -109,12 +112,25 @@ |
|
|
return this.cacheQueue.length; |
|
|
return this.cacheQueue.length; |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
workers: [], |
|
|
|
|
|
idle_workers: [], |
|
|
|
|
|
thread_num: 1 |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
mounted() { |
|
|
mounted() { |
|
|
this.$nextTick(function () { |
|
|
this.$nextTick(function () { |
|
|
this.finishLoad(); |
|
|
this.finishLoad(); |
|
|
}); |
|
|
}); |
|
|
|
|
|
if (document.location.host !== "") { |
|
|
|
|
|
this.thread_num = Math.max(navigator.hardwareConcurrency, 1); |
|
|
|
|
|
for (let i = 0; i < this.thread_num; i++) { |
|
|
|
|
|
this.workers.push(worker().CommonDecrypt); |
|
|
|
|
|
this.idle_workers.push(i); |
|
|
|
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
this.workers.push(dec.CommonDecrypt); |
|
|
|
|
|
this.idle_workers.push(0) |
|
|
|
|
|
} |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
finishLoad() { |
|
|
finishLoad() { |
|
@ -130,43 +146,25 @@ |
|
|
}); |
|
|
}); |
|
|
}, |
|
|
}, |
|
|
handleFile(file) { |
|
|
handleFile(file) { |
|
|
// 新的文件加入 |
|
|
// 有空闲worker 立刻处理文件 |
|
|
if (file) { |
|
|
if (this.idle_workers.length > 0) { |
|
|
console.log("workCount", this.workCount); |
|
|
this.handleDoFile(file, this.idle_workers.shift()); |
|
|
// 将工作数量大小限制为100 |
|
|
|
|
|
if (this.workCount < 100) { |
|
|
|
|
|
// 工作数量增加 |
|
|
|
|
|
this.workCount++; |
|
|
|
|
|
// 工作数量小于100 立刻处理文件 |
|
|
|
|
|
this.handleDoFile(file); |
|
|
|
|
|
} |
|
|
|
|
|
// 工作数量大于100 则放入缓存队列 |
|
|
|
|
|
else { |
|
|
|
|
|
this.cacheQueueOption.push(file); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|
//消费缓存队列的数据 |
|
|
// 无空闲worker 则放入缓存队列 |
|
|
else { |
|
|
else { |
|
|
this.workCount++; |
|
|
this.cacheQueueOption.push(file); |
|
|
this.handleDoFile(this.cacheQueueOption.pop()); |
|
|
|
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
handleCacheQueue() { |
|
|
handleCacheQueue(worker_id) { |
|
|
// 缓存队列中有数据且工作数量少于50的话 调用方法消费缓存队列中的数据 |
|
|
// 调用方法消费缓存队列中的数据 |
|
|
if (this.cacheQueueOption.size() > 0 && this.workCount < 50) { |
|
|
if (this.cacheQueue.length === 0) { |
|
|
this.handleFile(null); |
|
|
this.idle_workers.push(worker_id); |
|
|
console.log("size", this.cacheQueueOption.size(), this.workCount); |
|
|
return |
|
|
} |
|
|
} |
|
|
|
|
|
this.handleDoFile(this.cacheQueueOption.pop(), worker_id); |
|
|
}, |
|
|
}, |
|
|
handleDoFile(file) { |
|
|
handleDoFile(file, worker_id) { |
|
|
(async () => { |
|
|
this.workers[worker_id](file).then(data => { |
|
|
let data = await dec.CommonDecrypt(file); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 完成之后 数量减少 同时调用判断函数 |
|
|
|
|
|
this.workCount--; |
|
|
|
|
|
this.handleCacheQueue(); |
|
|
|
|
|
|
|
|
|
|
|
if (data.status) { |
|
|
if (data.status) { |
|
|
this.tableData.push(data); |
|
|
this.tableData.push(data); |
|
|
this.$notify.success({ |
|
|
this.$notify.success({ |
|
@ -186,7 +184,13 @@ |
|
|
}); |
|
|
}); |
|
|
window._paq.push(["trackEvent", "Error", data.message, file.name]); |
|
|
window._paq.push(["trackEvent", "Error", data.message, file.name]); |
|
|
} |
|
|
} |
|
|
})(); |
|
|
// 完成之后 执行新任务 todo: 可能导致call stack过长 |
|
|
|
|
|
this.handleCacheQueue(worker_id); |
|
|
|
|
|
}).catch(err => { |
|
|
|
|
|
console.error(err, file); |
|
|
|
|
|
window._paq.push(["trackEvent", "Error", err, file.name]); |
|
|
|
|
|
this.handleCacheQueue(worker_id); |
|
|
|
|
|
}) |
|
|
}, |
|
|
}, |
|
|
handlePlay(index, row) { |
|
|
handlePlay(index, row) { |
|
|
this.playing_url = row.file; |
|
|
this.playing_url = row.file; |
|
@ -250,6 +254,7 @@ |
|
|
font-size: small; |
|
|
font-size: small; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*noinspection CssUnusedSymbol*/ |
|
|
.el-upload-dragger { |
|
|
.el-upload-dragger { |
|
|
width: 80vw !important; |
|
|
width: 80vw !important; |
|
|
} |
|
|
} |
|
|