1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/common/signal/task.go

70 lines
1.2 KiB
Go
Raw Normal View History

2018-02-08 09:39:46 -05:00
package signal
import (
"sync"
"time"
)
2018-02-11 17:28:42 -05:00
// PeriodicTask is a task that runs periodically.
2018-02-08 09:39:46 -05:00
type PeriodicTask struct {
2018-02-11 17:28:42 -05:00
// Interval of the task being run
2018-02-08 09:39:46 -05:00
Interval time.Duration
2018-02-11 17:28:42 -05:00
// Execute is the task function
Execute func() error
2018-04-11 10:15:29 -04:00
// OnFailure will be called when Execute returns non-nil error
OnError func(error)
2018-02-08 09:39:46 -05:00
access sync.Mutex
timer *time.Timer
closed bool
}
func (t *PeriodicTask) checkedExecute() error {
t.access.Lock()
defer t.access.Unlock()
if t.closed {
return nil
}
if err := t.Execute(); err != nil {
return err
}
t.timer = time.AfterFunc(t.Interval, func() {
2018-04-11 10:15:29 -04:00
if err := t.checkedExecute(); err != nil && t.OnError != nil {
t.OnError(err)
}
2018-02-08 09:39:46 -05:00
})
return nil
}
2018-02-11 17:28:42 -05:00
// Start implements common.Runnable. Start must not be called multiple times without Close being called.
2018-02-08 09:39:46 -05:00
func (t *PeriodicTask) Start() error {
t.access.Lock()
t.closed = false
t.access.Unlock()
if err := t.checkedExecute(); err != nil {
t.closed = true
return err
}
return nil
}
2018-04-03 05:11:54 -04:00
// Close implements common.Closable.
2018-02-08 09:39:46 -05:00
func (t *PeriodicTask) Close() error {
t.access.Lock()
defer t.access.Unlock()
t.closed = true
if t.timer != nil {
t.timer.Stop()
t.timer = nil
}
return nil
}