-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtask.go
384 lines (329 loc) · 10.6 KB
/
task.go
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
package server
import (
"fmt"
"time"
"github.com/nixpare/goutils"
)
// TaskTimer tells the TaskManager how often a Task should be executed.
// See the constants for the values accepted by the TaskManager
type TaskTimer int
const (
// A Task with this value will be executed every minute
TASK_TIMER_10_SECONDS TaskTimer = TaskTimer(time.Second * 10)
// A Task with this value will be executed every minute
TASK_TIMER_1_MINUTE TaskTimer = TaskTimer(time.Minute * 1)
// A Task with this value will be executed every 10 minutes
TASK_TIMER_10_MINUTES TaskTimer = TaskTimer(time.Minute * 10)
// A Task with this value will be executed every 30 minutes
TASK_TIMER_30_MINUTES TaskTimer = TaskTimer(time.Minute * 30)
// A Task with this value will be executed every hour
TASK_TIMER_1_HOUR TaskTimer = TaskTimer(time.Hour)
// A Task with this value will be never be executed automatically
TASK_TIMER_INACTIVE TaskTimer = -1
)
// Task is composed of a name set upon creation and of 3 functions necessary of the
// correct execution of a kind of program. Every function is panic-protected, this means
// that the entire server will not crash when some parts of the task fails badly; this
// does not mean that you can't handle panics by yourself, but if they are not handled
// its like catching them and returning their message as an error.
// If a function returns an error, this will be logged, providing the task name and which
// function called it automatically (the task will be disabled if the one failing is the
// startup one or but you can do it manually, see router.SetBackgroundTaskState)
type Task struct {
name string
StartupF TaskFunc
ExecF TaskFunc
CleanupF TaskFunc
timer TaskTimer
exitChan chan struct{} // exitChan will receive the signal of the server shutting down
killChan chan struct{} // killChan will kill the exec function after the 10 seconds are gone
startupDone bool
running bool
bc *goutils.Broadcaster[struct{}]
}
// Name returns the name of the function
func (t *Task) Name() string {
return t.name
}
// ListenForExit waits until the exit signal is received from the manager.
// This signal is sent when you manually stop a task or the server is shutting
// down: in the last case the manager will wait for a maximum of 10 seconds,
// after those, if the execution is not finished, it will first kill the task
// and then call the cleanup function.
// This function is intended to be called in a goroutine listening for the signal:
// considering that the goroutine could stay alive even after the task exec function
// has exited, if this function returns true, this means that the signal is received
// correctly for that execution and you should exit, otherwise this means that the
// execution of the task has already exited and thus you should not do anything
// Example:
// execF = func(tm *server.TaskManager, t *server.Task) error {
// go func () {
// if !t.ListenForExit() {
// return // doing nothing because it returned false
// }
// // DO SOME FAST RECOVERY
// }()
// // SOME LONG RUNNING EXECUTION
// }
func (t *Task) ListenForExit() bool {
_, ok := <- t.exitChan
return ok
}
func (t *Task) IsReady() bool {
return t.startupDone
}
func (t *Task) IsRunning() bool {
return t.running
}
func (t *Task) Wait() {
if !t.running {
return
}
l := t.bc.Subscribe()
defer l.Unsubscribe()
l.Get()
}
// TaskFunc is the executable part of the program. The manager will provide, upon
// call, the router (and thus the server) and the task itself; changed to the task
// are allowed (exept for the name): you can modify through the router the timer of
// the task and also the functions themself!
// See TaskInitFunc, NewTask and router.RegisterBackgroundTask for the creation of a Task
type TaskFunc func(tm *TaskManager, t *Task) error
// TaskInitFunc is called when creating a task and its provided by the user.
// This function need to return 3 TaskFunc (they can be nil) and they will be
// set to the created task.
// The kind of functions are:
// - the startup function: called only upon creation, if it fails (panics or
// returns an error) the task will be disabled automatically
// - the exec function: called every time, could be interrupted if the server is
// shutting down; in this case, you will receive a signal on Task.ListenForExit,
// after that you will have 10 seconds before the server will call the cleanup
// function and exit
// - the cleanup function: called when the server is shutting down, this must not be
// potentially blocking (must end in a reasonable time)
// Example of usage:
/* func() {
taskInitF := func() (startupF, execF, cleanupF TaskFunc) {
var myNeededValiable package.AnyType
startupF = func(tm *server.TaskManager, t *server.Task) {
myNeededVariable = package.InitializeNewValiable()
// DO SOME OTHER STUFF WITH router AND t
}
execF = func(tm *server.TaskManager, t *server.Task) {
myNeededVariable.UseValiable()
// DO SOME OTHER STUFF WITH router AND t
}
cleaunpF = func(tm *server.TaskManager, t *server.Task) {
// DO SOME OTHER STUFF WITH router AND t
myNeededVariable.DestroyValiable()
}
return
}
task := tm.NewTask("myTask", taskInitF, server.TaskTimerInactive)
}*/
type TaskInitFunc func() (startupF, execF, cleanupF TaskFunc)
// NewTask creates and registers a new Task with the given name, displayName, initialization
// function (f TaskInitFunc) and execution timer, the TaskManager initialize it calling the
// startupF function provided by f (if any). If it returns an error the Task will not be
// registered in the TaskManager.
func (tm *TaskManager) NewTask(name string, f TaskInitFunc, timer TaskTimer) error {
if t, _ := tm.getTask(name); t != nil {
return fmt.Errorf("task \"%s\" already registered", name)
}
startupF, execF, cleanupF := f()
t := &Task {
name: name, StartupF: startupF,
ExecF: execF, CleanupF: cleanupF,
timer: timer,
bc: goutils.NewBroadcaster[struct{}](),
}
tm.tasks[name] = t
if tm.Router.running {
tm.startTask(t)
}
return nil
}
// SetTaskTimer sets the Task timer to the given one and activates the startup
// procedure if it was not already done
func (tm *TaskManager) SetTaskTimer(name string, timer TaskTimer) error {
t, err := tm.getTask(name)
if err != nil {
return err
}
t.timer = timer
tm.startTask(t)
return nil
}
// StartTask runs the Task immediatly
func (tm *TaskManager) StartTask(name string) error {
t, err := tm.getTask(name)
if err != nil {
return err
}
tm.startTask(t)
return nil
}
// ExecuteTask runs the Task immediatly
func (tm *TaskManager) ExecTask(name string) error {
t, err := tm.getTask(name)
if err != nil {
return err
}
return tm.execTask(t)
}
// StopTask runs the cleanup function provided and stops the Task, but can
// be restarted afterwards
func (tm *TaskManager) StopTask(name string) error {
t, err := tm.getTask(name)
if err != nil {
return err
}
tm.stopTask(t)
return nil
}
// RemoveTask runs the cleanup function provided and removes the Task from
// the TaskManager
func (tm *TaskManager) RemoveTask(name string) error {
t, err := tm.getTask(name)
if err != nil {
return err
}
tm.stopTask(t)
delete(tm.tasks, name)
return nil
}
// GetTasksNames returns all the names of the registered tasks in the
// TaskManager
func (tm *TaskManager) GetTasksNames() []string {
names := make([]string, 0, len(tm.tasks))
for name := range tm.tasks {
names = append(names, name)
}
return names
}
// startTask runs the startup function, catching every possible error or panic,
// and then sets the flag Task.startupDone to true. If the function fails it deactivates
// the task
func (tm *TaskManager) startTask(t *Task) {
if t == nil || t.StartupF == nil || t.startupDone {
return
}
err := PanicToErr(func() error {
return t.StartupF(tm, t)
})
if err == nil {
tm.Router.Log(LOG_LEVEL_INFO, fmt.Sprintf("Task \"%s\" started successfully", t.name))
t.startupDone = true
return
}
if err.err != nil {
tm.Router.Log(LOG_LEVEL_ERROR, fmt.Sprintf("Task \"%s\" startup error: %v", t.name, err.err))
return
}
if err.panicErr != nil {
tm.Router.Log(
LOG_LEVEL_FATAL,
fmt.Sprintf("Task \"%s\" startup panic: %v", t.name, err.panicErr),
err.stack,
)
return
}
}
// execTask runs the exec function, catching every possible error or panic,
// only if the manager has already executed the startup function and if the previous
// exec function has terminated. It also listens for the kill signal in case the server
// is shutting down and the task is taking too long to execute
func (tm *TaskManager) execTask(t *Task) error {
if t == nil || t.ExecF == nil || t.running {
return nil
}
if !t.startupDone {
return fmt.Errorf("can't execute task \"%s\": startup is not done", t.name)
}
t.exitChan = make(chan struct{})
t.killChan = make(chan struct{})
t.running = true
defer func() {
t.running = false
close(t.exitChan)
close(t.killChan)
t.bc.Send(struct{}{})
}()
execDone := make(chan struct{})
go func() {
defer func() { execDone <- struct{}{} }()
err := PanicToErr(func() error {
return t.ExecF(tm, t)
})
if err == nil {
return
}
t.timer = TASK_TIMER_INACTIVE
if err.err != nil {
tm.Router.Log(LOG_LEVEL_WARNING, fmt.Sprintf("Task \"%s\" exec error: %v", t.name, err.err))
return
}
if err.panicErr != nil {
tm.Router.Log(
LOG_LEVEL_FATAL,
fmt.Sprintf("Task \"%s\" exec panic: %v", t.name, err.panicErr),
err.stack,
)
return
}
}()
select {
case <- execDone:
return nil
case <- t.killChan:
tm.Router.Log(LOG_LEVEL_ERROR, fmt.Sprintf(
"Task \"%s\" execution was forcibly killed\n",
t.name,
))
return nil
}
}
// stopTask runs the cleanup function, catching every possible error or panic
func (tm *TaskManager) stopTask(t *Task) {
if t == nil || t.CleanupF == nil || !t.startupDone {
return
}
if t.running {
t.exitChan <- struct{}{}
t.Wait()
}
t.startupDone = false
err := PanicToErr(func() error {
return t.CleanupF(tm, t)
})
if err == nil {
tm.Router.Log(LOG_LEVEL_INFO, fmt.Sprintf("Task \"%s\" stopped successfully", t.name))
return
}
if err.err != nil {
tm.Router.Log(LOG_LEVEL_ERROR, fmt.Sprintf("Task \"%s\" cleanup error: %v", t.name, err.err))
return
}
if err.panicErr != nil {
tm.Router.Log(
LOG_LEVEL_FATAL,
fmt.Sprintf("Task \"%s\" cleanup panic: %v", t.name, err.panicErr),
err.stack,
)
return
}
}
func (tm *TaskManager) runTasksWithTimer(timer TaskTimer) {
for _, t := range tm.tasks {
if t.timer == timer {
go tm.execTask(t)
}
}
}
func (tm *TaskManager) getTask(name string) (*Task, error) {
t := tm.tasks[name]
if t == nil {
return nil, fmt.Errorf("task \"%s\" not found", name)
}
return t, nil
}