Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/bottleneck/lib/Sync.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

80 lines (64 sloc)
2.23 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } } | |
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; } | |
var DLList, Sync; | |
DLList = require("./DLList"); | |
Sync = class Sync { | |
constructor(name, Promise) { | |
this.schedule = this.schedule.bind(this); | |
this.name = name; | |
this.Promise = Promise; | |
this._running = 0; | |
this._queue = new DLList(); | |
} | |
isEmpty() { | |
return this._queue.length === 0; | |
} | |
_tryToRun() { | |
var _this = this; | |
return _asyncToGenerator(function* () { | |
var args, cb, error, reject, resolve, returned, task; | |
if (_this._running < 1 && _this._queue.length > 0) { | |
_this._running++; | |
var _this$_queue$shift = _this._queue.shift(); | |
task = _this$_queue$shift.task; | |
args = _this$_queue$shift.args; | |
resolve = _this$_queue$shift.resolve; | |
reject = _this$_queue$shift.reject; | |
cb = yield _asyncToGenerator(function* () { | |
try { | |
returned = yield task(...args); | |
return function () { | |
return resolve(returned); | |
}; | |
} catch (error1) { | |
error = error1; | |
return function () { | |
return reject(error); | |
}; | |
} | |
})(); | |
_this._running--; | |
_this._tryToRun(); | |
return cb(); | |
} | |
})(); | |
} | |
schedule(task, ...args) { | |
var promise, reject, resolve; | |
resolve = reject = null; | |
promise = new this.Promise(function (_resolve, _reject) { | |
resolve = _resolve; | |
return reject = _reject; | |
}); | |
this._queue.push({ | |
task, | |
args, | |
resolve, | |
reject | |
}); | |
this._tryToRun(); | |
return promise; | |
} | |
}; | |
module.exports = Sync; |