forked from mirrors/action-gh-release
node_modules
This commit is contained in:
parent
0e414c630a
commit
78c309ef59
555 changed files with 103819 additions and 1 deletions
88
node_modules/bottleneck/lib/States.js
generated
vendored
Normal file
88
node_modules/bottleneck/lib/States.js
generated
vendored
Normal file
|
@ -0,0 +1,88 @@
|
|||
"use strict";
|
||||
|
||||
var BottleneckError, States;
|
||||
BottleneckError = require("./BottleneckError");
|
||||
States = class States {
|
||||
constructor(status1) {
|
||||
this.status = status1;
|
||||
this._jobs = {};
|
||||
this.counts = this.status.map(function () {
|
||||
return 0;
|
||||
});
|
||||
}
|
||||
|
||||
next(id) {
|
||||
var current, next;
|
||||
current = this._jobs[id];
|
||||
next = current + 1;
|
||||
|
||||
if (current != null && next < this.status.length) {
|
||||
this.counts[current]--;
|
||||
this.counts[next]++;
|
||||
return this._jobs[id]++;
|
||||
} else if (current != null) {
|
||||
this.counts[current]--;
|
||||
return delete this._jobs[id];
|
||||
}
|
||||
}
|
||||
|
||||
start(id) {
|
||||
var initial;
|
||||
initial = 0;
|
||||
this._jobs[id] = initial;
|
||||
return this.counts[initial]++;
|
||||
}
|
||||
|
||||
remove(id) {
|
||||
var current;
|
||||
current = this._jobs[id];
|
||||
|
||||
if (current != null) {
|
||||
this.counts[current]--;
|
||||
delete this._jobs[id];
|
||||
}
|
||||
|
||||
return current != null;
|
||||
}
|
||||
|
||||
jobStatus(id) {
|
||||
var ref;
|
||||
return (ref = this.status[this._jobs[id]]) != null ? ref : null;
|
||||
}
|
||||
|
||||
statusJobs(status) {
|
||||
var k, pos, ref, results, v;
|
||||
|
||||
if (status != null) {
|
||||
pos = this.status.indexOf(status);
|
||||
|
||||
if (pos < 0) {
|
||||
throw new BottleneckError(`status must be one of ${this.status.join(', ')}`);
|
||||
}
|
||||
|
||||
ref = this._jobs;
|
||||
results = [];
|
||||
|
||||
for (k in ref) {
|
||||
v = ref[k];
|
||||
|
||||
if (v === pos) {
|
||||
results.push(k);
|
||||
}
|
||||
}
|
||||
|
||||
return results;
|
||||
} else {
|
||||
return Object.keys(this._jobs);
|
||||
}
|
||||
}
|
||||
|
||||
statusCounts() {
|
||||
return this.counts.reduce((acc, v, i) => {
|
||||
acc[this.status[i]] = v;
|
||||
return acc;
|
||||
}, {});
|
||||
}
|
||||
|
||||
};
|
||||
module.exports = States;
|
Loading…
Add table
Add a link
Reference in a new issue