-
Notifications
You must be signed in to change notification settings - Fork 180
/
ticker.go
210 lines (179 loc) · 5.16 KB
/
ticker.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
/*
* Copyright (c) 2019-2021. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
// Package schedule provides a fixed ticker based on a start time
// iso8601 interval periods are supported
package schedule
import (
"strconv"
"strings"
"time"
"github.com/ajvb/kala/utils/iso8601"
"github.com/pkg/errors"
)
type OnTick func() error
// TickerSchedule contains all info about the scheduling (start, repeat, interval)
type TickerSchedule struct {
// ISO8601 representation of schedule
iso8601Schedule string
// Number of repetitions: if 0, infinite repetition.
repeat int64
// If there is repeat, endTime should interrupt sending events
endTime time.Time
// Do not start before that time
startTime time.Time
// Interval between ticks
interval time.Duration
}
// ParseIsoSchedule parses the given Iso 8601 string and stores corresponding values.
func (s *TickerSchedule) ParseIsoSchedule() error {
if s.iso8601Schedule == "" {
return errors.New("cannot parse empty Iso8601 schedule")
}
parts := strings.Split(s.iso8601Schedule, "/")
if len(parts) != 3 {
return errors.New("invalid format for schedule")
}
repeatString := parts[0]
startString := parts[1]
intervalString := parts[2]
var err error
if repeatString != "R" {
s.repeat, err = strconv.ParseInt(strings.TrimPrefix(parts[0], "R"), 10, 64)
if err != nil {
return err
}
}
s.startTime, err = time.Parse(time.RFC3339, startString)
if err != nil {
s.startTime, err = time.Parse("2006-01-02T15:04:05", startString)
if err != nil {
return err
}
}
if intervalString != "" {
isoDuration, er := iso8601.FromString(intervalString)
if er != nil {
return err
}
s.interval = isoDuration.RelativeTo(time.Now())
if s.repeat > 0 {
// Compute endTime based on startTime + number of repetitions.
// We consider startTime is always just before now, so the first repetition will not be
// sent on the very first tick, but after the first interval, so add another interval.
s.endTime = s.startTime.Add(s.interval * time.Duration(s.repeat)).Add(s.interval / 2)
}
}
return nil
}
// NewTickerScheduleFromISO creates a schedule from an iso8601 string. It can return
// an error if the string is not properly formatted or empty.
func NewTickerScheduleFromISO(is8601 string) (*TickerSchedule, error) {
s := &TickerSchedule{iso8601Schedule: is8601}
if err := s.ParseIsoSchedule(); err != nil {
return nil, err
}
return s, nil
}
// NewTickerSchedule creates a schedule from parameters
func NewTickerSchedule(interval time.Duration, startTime time.Time, repeat int64) *TickerSchedule {
s := &TickerSchedule{
interval: interval,
startTime: startTime,
repeat: repeat,
}
return s
}
// Ticker provides an easy way to execute a job at given times (like a cron job).
type Ticker struct {
*TickerSchedule
ticker OnTick
stopChan chan bool
stopped bool
lastTick time.Time
}
// NewTicker creates a new waiter that sends start events for this job on the given schedule
func NewTicker(schedule *TickerSchedule, onTick OnTick) *Ticker {
waiter := &Ticker{}
waiter.TickerSchedule = schedule
waiter.ticker = onTick
return waiter
}
// Start starts the waiter
func (w *Ticker) Start() {
w.stopChan = make(chan bool)
w.WaitUntilNext()
}
// Stop simply stops the waiter
func (w *Ticker) Stop() {
if w.stopped {
return
}
w.stopped = true
w.stopChan <- true
}
// WaitUntilNext implements the intelligence of the waiter.
func (w *Ticker) WaitUntilNext() {
var wait time.Duration
var stop bool
wait, stop = w.computeNextWait()
if stop {
w.stopped = true
return
}
if wait == 0 {
// This is not normal, this will trigger the job too many times
wait = 5 * time.Minute
}
go func() {
for {
select {
case <-time.After(wait):
w.ticker()
w.lastTick = time.Now()
w.WaitUntilNext()
return
case <-w.stopChan:
return
}
}
}()
}
func (w *Ticker) computeNextWait() (time.Duration, bool) {
now := time.Now()
var wait time.Duration
// First let's wait until start time
wait = w.startTime.Sub(now)
if wait < 0 {
if w.interval == 0 {
return 0, true
}
// Start time is behind us, let's have a look at intervals now
if w.lastTick.IsZero() {
// next start should be the rest of wait modulo interval
wait = wait%w.interval + w.interval
} else {
wait = w.lastTick.Add(w.interval).Sub(now) // Compute next run and diff
}
}
if !w.endTime.IsZero() && now.Add(wait).After(w.endTime) {
return wait, true
}
return wait, false
}