forked from ossbox/taskqueuer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththreadpool.js
188 lines (156 loc) · 5.27 KB
/
threadpool.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
/**********************************************************************
# Copyright (C) 2014 Luís A. Bastião Silva and Eriksson Monteiro
#
# Authors: Luís A. Bastião Silva <[email protected]>
Eriksson Monteiro <[email protected]>
#
The MIT License (MIT)
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.
#
/*********************************************************************/
/********************************************************************
****** ThreadPool ***************************************************
*********************************************************************/
/**
* The idea of this class is to create a thread pool to management many
* tasks
*
* @class ThreadPool
* @constructor
* @param {Integer} size It contains the number of threads that will execute
* at the same time
* @param {Integer} timeout It contains the timeout that the queue is waiting
* to get more tasks from the queue. 600 is the default timeout.
*/
function ThreadPool(size, timeout) {
var TIMEOUT = 600;
this.poolSize = size;
this.pool = [];
this.die = false;
this.onDie = null;
if (timeout === undefined)
{
timeout = TIMEOUT;
};
this.timeout = timeout;
this._init();
};
ThreadPool.prototype = {
/**
* This methods puts a task in thread pool to run.
*
* @method run
* @param {Runnable} runnable This is a Runnable object which contains the link
* to the function and also the priority
*/
run : function(runnable) {
this.pool.push(runnable);
},
/**
* This methods contains the loop to start the threadpool.
* Note: it is a private method
* @method _init
*/
_init : function(){
var self = this; // This is very nice advise by Eriksson Monteiro! :D
this.poolHandler = setInterval(function() {
if (self.pool.length == 0 && self.die)
{
clearInterval(self.poolHandler) // this code remmember me Python.
// If any onDie defined
if(self.onDie != null)
self.onDie();
return;
};
self.pool = self.pool.sort(function (x, y) {
return x.priority - y.priority;
} );
for (var i = 0; i < self.poolSize && i < self.pool.length ; i++){
var r = self.pool.shift();
r.run();
}
}, this.timeout);
},
destroy : function() {
if(arguments.length == 1){
this.onDie=arguments[0];
}
this.die = true;
}
};
/********************************************************************
****** Runnable *****************************************************
*********************************************************************/
/**
* This class accept the task to run.
* This contains the function and priority. For instance, if the priority is
* bigger than the others in the queue, the task will be executed firstly.
*
* @class Runnable
* @constructor
* @param fRun {function} the function to run the task
* @param priority {Integer} priority of this task. 1 is the default priority
*/
function Runnable(fRun, priority ){
if (priority===undefined)
{
priority = 1;
}
this.args = Array.prototype.slice.call(arguments,2);
this.priority = priority;
this.fRun = fRun;
this.completed = false;
}
Runnable.prototype = {
/**
* This methods should be called when the task is completed.
*
* @method complete
*/
complete : function() {
this.completed = true;
},
/**
* This methods returns if the task is already complete or not.
*
* @method isCompleted
* @return {Boolean} returns if the task is completed or not.
*/
isCompleted : function() {
return this.completed;
},
/**
* Change priority to this task.
*
* @method setPriority
* @param {Integer} priority Change the priority of then task
*/
setPriority : function(priority) {
this.priority = priority;
},
/**
* This methods runs the task. Call the function fRun with the passed arguments.
*
* @method run
*/
run : function(){
var self = this;
setTimeout(function(){
self.fRun.apply(self, self.args);
}, 0);
}
};