-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcodebot.jobs.js
122 lines (101 loc) · 4.56 KB
/
codebot.jobs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
The MIT License (MIT)
Copyright (c) 2015 Fernando Bevilacqua
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* A jobs/scheduler system. It is able to run chunks of code at fixed intervals,
* which is useful to implement pooling, animations, etc.
*/
var CodebotJobs = function() {
var mIds = 1;
var mJobs = {};
var mSetIntervalId = null;
var mSelf = this;
var currentTime = function() {
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now
return !Date.now ? (new Date().getTime()) : Date.now();
}
var getJobByFunction = function(theFunction) {
var aId,
aJob,
aRet = null;
for(aId in mJobs) {
aJob = mJobs[aId];
if(aJob && aJob.callback == theFunction) {
aRet = aJob;
break;
}
}
return aRet;
};
var functionRunner = function() {
var aId,
aCurrentTime = currentTime(),
aRemove = false,
aJob;
for(aId in mJobs) {
aJob = mJobs[aId];
if(aJob && aCurrentTime >= aJob.nextRunTime) {
aRemove = aJob.callback(aJob.payload);
aJob.nextRunTime = aCurrentTime + aJob.interval;
if(aRemove || (aCurrentTime - aJob.startTime) >= aJob.duration) {
mJobs[aId] = null;
}
}
}
};
/**
* Schedules a new job to run at fixed intervals;
*
* @param {Function} theFunction The function that will be invoked at fixed intervals. It should be <code>func(obj)</code>, where <code>obj</code> is an <code>Object</code> (the payload). If the function returns <code>true</code>, it will be automatically removed from the list of jobs, no matter the scheduled duration.
* @param {Number} theInterval The amount of time in milliseconds the scheduler should wait between every call to the specified function. The default is <code>500</code> milliseconds.
* @param {Object} thePayload An object that will be passed as a parameter <code>theFunction</code>. This parameter will never be destroyed, so it can be used to create some sort of function context.
* @param {Number} theDuration For how long the scheduler will continue to call the specified function. The default value is <code>Number.MAX_VALUE</code>.
* @return {boolean} Returns <code>true</code> if the job was adde, or <code>false</code> otherwise (e.g. the job already existed).
*/
this.add = function(theFunction, theInterval, thePayload, theDuration) {
var aCurrentTime = currentTime(),
aId = 0;
if(getJobByFunction(theFunction) == null) {
aId = mIds++;
mJobs[aId] = {
callback: theFunction,
startTime: aCurrentTime,
interval: theInterval || 500,
duration: theDuration || Number.MAX_VALUE,
nextRunTime: 0,
payload: thePayload
};
}
return aId != 0;
};
/**
* Removes a job from the list.
*
* @param {Function} theFunction The function that is invoked for the job being removed.
* @return {Boolean} Returns <code>true</code> if the job existed and was removed, or <code>false</code> otherwise.
*/
this.remove = function(theFunction) {
};
/**
* Initializes the how thing up.
*/
this.init = function() {
// TODO: reduce pooling time.
mSetIntervalId = setInterval(functionRunner, 500);
};
};