-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtask.go
102 lines (87 loc) · 2.22 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
package async
import (
"encoding/json"
"time"
uuid "github.com/satori/go.uuid"
)
// Task is an interface to be implemented by types that represent a single
// asynchronous task
type Task interface {
GetID() string
GetJobName() string
GetArgs() map[string]string
GetWorkerRejectionCount() int
IncrementWorkerRejectionCount() int
ToJSON() ([]byte, error)
GetExecuteTime() *time.Time
}
type task struct {
ID string `json:"id"`
JobName string `json:"jobName"`
Args map[string]string `json:"args"`
WorkerRejectionCount int `json:"workerRejectionCount"`
ExecuteTime *time.Time `json:"executeTime"`
}
// NewTask returns a new task
func NewTask(jobName string, args map[string]string) Task {
t := &task{
JobName: jobName,
Args: args,
}
t.ID = uuid.NewV4().String()
return t
}
// NewDelayedTask returns a new task that will fire after a specified duration
func NewDelayedTask(
jobName string,
args map[string]string,
delay time.Duration,
) Task {
tIface := NewTask(jobName, args)
t := tIface.(*task)
executeTime := time.Now().Add(delay)
t.ExecuteTime = &executeTime
return t
}
// NewScheduledTask returns a new task that will fire after a specified time
func NewScheduledTask(
jobName string,
args map[string]string,
time time.Time,
) Task {
tIface := NewTask(jobName, args)
t := tIface.(*task)
t.ExecuteTime = &time
return t
}
// NewTaskFromJSON returns a new Task unmarshalled from the provided []byte
func NewTaskFromJSON(jsonBytes []byte) (Task, error) {
t := &task{}
if err := json.Unmarshal(jsonBytes, t); err != nil {
return nil, err
}
return t, nil
}
func (t *task) GetID() string {
return t.ID
}
func (t *task) GetJobName() string {
return t.JobName
}
func (t *task) GetArgs() map[string]string {
return t.Args
}
func (t *task) GetWorkerRejectionCount() int {
return t.WorkerRejectionCount
}
func (t *task) IncrementWorkerRejectionCount() int {
t.WorkerRejectionCount++
return t.WorkerRejectionCount
}
// ToJSON returns a []byte containing a JSON representation of the task
func (t *task) ToJSON() ([]byte, error) {
return json.Marshal(t)
}
func (t *task) GetExecuteTime() *time.Time {
return t.ExecuteTime
}