1
0
mirror of https://github.com/kepler155c/opus synced 2025-01-19 03:42:51 +00:00
opus/sys/apis/bulkget.lua
2019-06-18 15:19:24 -04:00

34 lines
543 B
Lua

local Util = require('util')
local parallel = _G.parallel
local BulkGet = { }
function BulkGet.download(list, callback)
local t = { }
local failed = false
for _ = 1, 5 do
table.insert(t, function()
while true do
local entry = table.remove(list)
if not entry then
break
end
local s, m = Util.download(entry.url, entry.path)
if not s then
failed = true
end
callback(entry, s, m)
if failed then
break
end
end
end)
end
parallel.waitForAll(table.unpack(t))
end
return BulkGet