-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
async.go
237 lines (198 loc) · 5.66 KB
/
async.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
package utils
import (
"context"
"sync"
"time"
"github.com/Laisky/errors/v2"
"github.com/Laisky/zap"
"github.com/Laisky/go-utils/v4/log"
)
// AsyncTaskStatus status of async task
type AsyncTaskStatus uint
// String convert status to string
func (s AsyncTaskStatus) String() string {
switch s {
case AsyncTaskStatusPending:
return "pending"
case AsyncTaskStatusDone:
return "done"
case AsyncTaskStatusFailed:
return "failed"
default:
return "unspecified"
}
}
const (
// AsyncTaskStatusUnspecified unknown
AsyncTaskStatusUnspecified AsyncTaskStatus = iota
// AsyncTaskStatusPending task pending
AsyncTaskStatusPending
// AsyncTaskStatusDone task done
AsyncTaskStatusDone
// AsyncTaskStatusFailed task failed
AsyncTaskStatusFailed
)
var (
// ErrAsyncTask root error for async tasks
ErrAsyncTask = errors.New("async task error")
_ AsyncTaskInterface = new(AsyncTask)
)
// AsyncTaskResult result of async task
type AsyncTaskResult struct {
TaskID string `json:"task_id"`
Status AsyncTaskStatus `json:"status"`
Data string `json:"data"`
Err string `json:"err"`
}
// AsyncTaskStoreInterface persistency storage for async task
type AsyncTaskStoreInterface interface {
// New create new AsyncTaskResult with id
New(ctx context.Context) (result *AsyncTaskResult, err error)
// Set AsyncTaskResult
Set(ctx context.Context, taskID string, result *AsyncTaskResult) (err error)
// Heartbeat refresh async task's updated time to mark this task is still alive
Heartbeat(ctx context.Context, taskID string) (alived bool, err error)
// Get task by id
Get(ctx context.Context, taskID string) (result *AsyncTaskResult, err error)
// Delete task by id
Delete(ctx context.Context, taskID string) (err error)
}
// AsyncTaskStoreMemory example store in memory
type AsyncTaskStoreMemory struct {
store sync.Map
}
// NewAsyncTaskStoreMemory new default memory store
func NewAsyncTaskStoreMemory() *AsyncTaskStoreMemory {
return &AsyncTaskStoreMemory{
store: sync.Map{},
}
}
// New create new AsyncTaskResult with id
func (s *AsyncTaskStoreMemory) New(_ context.Context) (result *AsyncTaskResult, err error) {
t := &AsyncTaskResult{
TaskID: UUID7(),
Status: AsyncTaskStatusPending,
}
s.store.Store(t.TaskID, t)
return t, nil
}
// Get get task by id
func (s *AsyncTaskStoreMemory) Get(_ context.Context, taskID string) (
result *AsyncTaskResult, err error) {
ri, ok := s.store.Load(taskID)
if !ok {
return nil, errors.Errorf("task %q notfound", taskID)
}
if result, ok = ri.(*AsyncTaskResult); !ok {
return nil, errors.Errorf("task %q in invalid type %T", taskID, ri)
}
return result, nil
}
// Delete task by id
func (s *AsyncTaskStoreMemory) Delete(_ context.Context, taskID string) (err error) {
s.store.Delete(taskID)
return nil
}
// Set set AsyncTaskResult
func (s *AsyncTaskStoreMemory) Set(_ context.Context, taskID string, result *AsyncTaskResult) (err error) {
s.store.Store(taskID, result)
return nil
}
// Heartbeat refresh async task's updated time to mark this task is still alive
func (s *AsyncTaskStoreMemory) Heartbeat(_ context.Context, _ string) (alived bool, err error) {
return true, nil
}
// asyncTask async task
type AsyncTaskInterface interface {
// ID get task id
ID() string
// Status get task status, pending/done/failed
Status() AsyncTaskStatus
// SetDone set task done with result data
SetDone(ctx context.Context, data string) (err error)
// SetError set task error with err message
SetError(ctx context.Context, errMsg string) (err error)
}
// AsyncTask async task manager
type AsyncTask struct {
id string
store AsyncTaskStoreInterface
result *AsyncTaskResult
cancel func()
}
// NewTask new async task
//
// ctx must keep alive for whole lifecycle of AsyncTask
func NewAsyncTask(ctx context.Context, store AsyncTaskStoreInterface) (
*AsyncTask, error) {
ctx, cancel := context.WithCancel(ctx)
go func() {
<-ctx.Done()
cancel()
}()
result, err := store.New(ctx)
if err != nil {
return nil, errors.Wrap(err, "new async task result")
}
result.Status = AsyncTaskStatusPending
t := &AsyncTask{
id: result.TaskID,
store: store,
result: result,
cancel: cancel,
}
if err := store.Set(ctx, t.id, t.result); err != nil {
return nil, errors.Wrap(err, "set async task result")
}
go t.heartbeat(ctx)
return t, nil
}
func (t *AsyncTask) heartbeat(ctx context.Context) {
for {
select {
case <-ctx.Done():
return
default:
}
if alived, err := t.store.Heartbeat(ctx, t.id); err != nil {
log.Shared.Error("async task heartbeat", zap.Error(err))
} else if !alived {
return
}
SleepWithContext(ctx, 10*time.Second)
}
}
// ID get task id
func (t *AsyncTask) ID() string {
return t.id
}
// Status get task status
func (t *AsyncTask) Status() AsyncTaskStatus {
return t.result.Status
}
// SetDone set task done with result data
func (t *AsyncTask) SetDone(ctx context.Context, data string) (err error) {
if t.result.Status != AsyncTaskStatusPending {
return errors.Errorf("task already %s", t.result.Status.String())
}
defer t.cancel()
t.result.Status = AsyncTaskStatusDone
t.result.Data = data
if err = t.store.Set(ctx, t.id, t.result); err != nil {
return errors.Wrapf(err, "set async task `%s` done", t.id)
}
return nil
}
// SetError set task error with err message
func (t *AsyncTask) SetError(ctx context.Context, errMsg string) (err error) {
if t.result.Status != AsyncTaskStatusPending {
return errors.Errorf("task already %s", t.result.Status.String())
}
defer t.cancel()
t.result.Status = AsyncTaskStatusFailed
t.result.Err = errMsg
if err = t.store.Set(ctx, t.id, t.result); err != nil {
return errors.Wrapf(err, "set async task `%s` failed", t.id)
}
return nil
}