-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcron.js
executable file
·287 lines (227 loc) · 6.44 KB
/
cron.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// https://github.com/ncb000gt/node-cron
function CronTime(time) {
this.source = time;
this.second = {};
this.minute = {};
this.hour = {};
this.dayOfWeek = {};
this.dayOfMonth = {};
this.month = {};
if (!(this.source instanceof Date)) {
this._parse();
}
};
CronTime.map = ['second', 'minute', 'hour', 'dayOfMonth', 'month', 'dayOfWeek'];
CronTime.constraints = [ [0, 59], [0, 59], [0, 23], [1, 31], [0, 11], [1, 7] ];
CronTime.aliases = {
jan:0, feb:1, mar:2, apr:3, may:4, jun:5, jul:6, aug:7, sep:8, oct:9, nov:10, dec:11,
sun:1, mon:2, tue:3, wed:4, thu:5, fri:6, sat:7
};
CronTime.prototype = {
/**
* calculates the next send time
*/
sendAt: function() {
var date = (this.source instanceof Date) ? this.source : new Date();
//add 1 second so next time isn't now (can cause timeout to be 0)
date.setSeconds(date.getSeconds() + 1);
var i = 1000;
//sanity check
while(--i) {
if (!(date.getMonth() in this.month)) {
date.setMonth(date.getMonth()+1);
date.setDate(1);
date.setHours(0);
date.setMinutes(0);
continue;
}
if (!(date.getDate() in this.dayOfMonth)) {
date.setDate(date.getDate()+1);
date.setHours(0);
date.setMinutes(0);
continue;
}
if (!(date.getDay()+1 in this.dayOfWeek)) {
date.setDate(date.getDate()+1);
date.setHours(0);
date.setMinutes(0);
continue;
}
if (!(date.getHours() in this.hour)) {
date.setHours(date.getHours()+1);
date.setMinutes(0);
continue;
}
if (!(date.getMinutes() in this.minute)) {
date.setMinutes(date.getMinutes()+1);
date.setSeconds(0);
continue;
}
if(!(date.getSeconds() in this.second)) {
date.setSeconds(date.getSeconds()+1);
continue;
}
break;
}
return date;
},
/**
* Get the number of seconds in the future at which to fire our callbacks.
*/
getTimeout: function() {
return Math.max(-1, this.sendAt().getTime() - Date.now());
},
/**
* writes out a cron string
*/
toString: function() {
return this.toJSON().join(' ');
},
/**
* Json representation of the parsed cron syntax.
*/
toJSON: function() {
return [
this._wcOrAll('second'),
this._wcOrAll('minute'),
this._wcOrAll('hour'),
this._wcOrAll('dayOfMonth'),
this._wcOrAll('month'),
this._wcOrAll('dayOfWeek')
];
},
/**
* wildcard, or all params in array (for to string)
*/
_wcOrAll: function(type) {
if(this._hasAll(type)) return '*';
var all = [];
for(var time in this[type]) {
all.push(time);
}
return all.join(',');
},
/**
*/
_hasAll: function(type) {
var constrain = CronTime.constraints[CronTime.map.indexOf(type)];
for(var i = constrain[0], n = constrain[1]; i < n; i++) {
if(!(i in this[type])) return false;
}
return true;
},
/**
* Parse the cron syntax.
*/
_parse: function() {
var aliases = CronTime.aliases,
source = this.source.replace(/[a-z]{1,3}/ig, function(alias){
alias = alias.toLowerCase();
if (alias in aliases) {
return aliases[alias];
}
throw new Error('Unknown alias: ' + alias);
}),
split = source.replace(/^\s\s*|\s\s*$/g, '').split(/\s+/),
cur, len = 6;
while (len--) {
cur = split[len] || '*';
this._parseField(cur, CronTime.map[len], CronTime.constraints[len]);
}
},
/**
* Parse a field from the cron syntax.
*/
_parseField: function(field, type, constraints) {
var rangePattern = /(\d+?)(?:-(\d+?))?(?:\/(\d+?))?(?:,|$)/g,
typeObj = this[type],
diff, pointer,
low = constraints[0],
high = constraints[1];
// * is a shortcut to [lower-upper] range
field = field.replace(/\*/g, low + '-' + high);
if (field.match(rangePattern)) {
field.replace(rangePattern, function($0, lower, upper, step) {
step = parseInt(step) || 1;
// Positive integer higher than constraints[0]
lower = Math.max(low, ~~Math.abs(lower));
// Positive integer lower than constraints[1]
upper = upper ? Math.min(high, ~~Math.abs(upper)) : lower;
// Count from the lower barrier to the upper
pointer = lower;
do {
typeObj[pointer] = true
pointer += step;
} while(pointer <= upper);
});
} else {
throw new Error('Field (' + field + ') cannot be parsed');
}
}
};
function CronJob(cronTime, onTick, onComplete) {
this._callbacks = [];
this.onComplete = onComplete;
this.cronTime = new CronTime(cronTime);
this.addCallback(onTick);
this.start();
}
CronJob.prototype = {
/**
* Add a method to fire onTick
*/
addCallback: function(callback) {
//only functions
if(typeof callback == 'function') this._callbacks.push(callback);
},
/**
* Fire all callbacks registered.
*/
_callback: function() {
for (var i = (this._callbacks.length - 1); i >= 0; i--) {
//send this so the callback can call this.stop();
this._callbacks[i].call(this, this.onComplete);
}
},
/**
* Start the cronjob.
*/
start: function() {
if(this.running) return;
var timeout = this.cronTime.getTimeout();
if (timeout >= 0) {
this.running = true;
this._timeout = setTimeout(function(self) {
self.running = false;
//start before calling back so the callbacks have the ability to stop the cron job
self.start();
self._callback();
}, timeout, this);
} else {
this.running = false;
}
},
/**
* Stop the cronjob.
*/
stop: function()
{
clearTimeout(this._timeout);
this.running = false;
//if (this.onComplete) this.onComplete();
}
};
exports.job = function(cronTime, onTick, onComplete) {
return new CronJob(cronTime, onTick, onComplete);
}
exports.time = function(cronTime) {
return new CronTime(cronTime);
}
exports.sendAt = function(cronTime) {
return exports.time(cronTime).sendAt();
}
exports.timeout = function(cronTime) {
return exports.time(cronTime).getTimeout();
}
exports.CronJob = CronJob;
exports.CronTime = CronTime;