-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpendingqueue.go
74 lines (60 loc) · 1.43 KB
/
pendingqueue.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
package goscheduler
import (
"container/heap"
"errors"
"strings"
)
// pendingQueue is a collection of jobs that are scheduled to run at some
// point in the future.
type pendingQueue []*job
func (pq * pendingQueue) Init(){
heap.Init(pq)
}
func (pq * pendingQueue) Add(j *job){
heap.Push(pq, j)
heap.Fix(pq, len(*pq)-1)
}
func (pq * pendingQueue) RemoveHead() {
heap.Pop(pq)
}
func (pq * pendingQueue) Peek() (error, *job) {
if len(*pq) > 0 {
return nil, (*pq)[0]
} else {
err := errors.New("No items in queue.")
return err, nil
}
}
func (pq * pendingQueue) String() string {
results := make([]string, len(*pq))
for i, j := range *pq {
results[i] = j.Interval.String()
}
return strings.Join(results, "|")
}
// Heap.interface implementation.
func (pq *pendingQueue) Push(j interface{}) {
// Push and Pop use pointer receivers because they modify the slice's length,
// not just its contents.
*pq = append(*pq, j.(*job))
}
// Heap.interface implementation.
func (pq *pendingQueue) Pop() interface{} {
old := *pq
n := len(old)
j := old[n-1]
*pq = old[0 : n-1]
return j
}
// sort.Interface implementation.
func (pq pendingQueue) Len() int {
return len(pq)
}
// sort.Interface implementation.
func (pq pendingQueue) Less(i, j int) bool {
return pq[i].RunAt.Before(pq[j].RunAt)
}
// sort.Interface implementation.
func (pq pendingQueue) Swap(i, j int) {
pq[i], pq[j] = pq[j], pq[i]
}