gen-thread/index.js

82 lines
1.6 KiB
JavaScript
Raw Normal View History

2016-06-27 16:03:06 +03:00
module.exports.run = runThread;
module.exports.runParallel = runParallel;
2016-07-17 00:35:35 +03:00
var q = [];
var pending = [];
function finishq()
{
for (var i = 0; i < q.length; i++)
{
if (q[i]._done)
{
q.splice(i, 1);
i--;
}
}
while (pending.length > 0 && q.length < pending[0][1])
{
var t = pending.shift();
q.push(t[0]);
t[0]();
}
}
var tid = 0;
2016-06-27 16:03:06 +03:00
function runThread(main, arg, done)
{
var thread = function()
{
// pass parameters as yield result
var pass = Array.prototype.slice.call(arguments, 0);
2016-07-17 00:35:35 +03:00
try
{
v = thread.gen.next(pass);
}
catch (e)
{
v = { done: 1 };
}
if (v.done)
{
thread._done = true;
finishq();
}
2016-06-27 16:03:06 +03:00
if (v.done && done)
done(v.value);
};
2016-07-17 00:35:35 +03:00
thread.id = tid++;
2016-06-27 16:03:06 +03:00
thread.gen = main(thread, arg);
2016-07-17 00:35:35 +03:00
thread.throttle = function(count)
{
finishq();
if (q.length < count)
{
q.push(thread);
setTimeout(thread, 1);
}
else
{
pending.push([ thread, count ]);
}
};
2016-06-27 16:03:06 +03:00
thread();
}
function runParallel(threads, done)
{
var results = [];
var resultCount = 0;
var allDone = function(i, result)
{
if (!results[i])
{
results[i] = result;
resultCount++;
if (resultCount == threads.length)
done(results);
}
};
threads.map((t, i) => runThread(t, null, function(result) { allDone(i, result); }));
}