1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 00:06:11 -04:00
v2fly/common/task/periodic.go

85 lines
1.4 KiB
Go
Raw Normal View History

2018-05-27 07:02:29 -04:00
package task
2018-02-08 09:39:46 -05:00
import (
"sync"
"time"
)
2018-05-27 07:02:29 -04:00
// Periodic is a task that runs periodically.
type Periodic 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
2018-05-27 08:42:53 -04:00
access sync.RWMutex
2018-02-08 09:39:46 -05:00
timer *time.Timer
closed bool
}
2018-05-27 08:42:53 -04:00
func (t *Periodic) setClosed(f bool) {
2018-02-08 09:39:46 -05:00
t.access.Lock()
2018-05-27 08:42:53 -04:00
t.closed = f
t.access.Unlock()
}
func (t *Periodic) hasClosed() bool {
t.access.RLock()
defer t.access.RUnlock()
return t.closed
}
2018-02-08 09:39:46 -05:00
2018-05-27 08:42:53 -04:00
func (t *Periodic) checkedExecute() error {
if t.hasClosed() {
2018-02-08 09:39:46 -05:00
return nil
}
if err := t.Execute(); err != nil {
return err
}
2018-05-27 08:42:53 -04:00
t.access.Lock()
defer t.access.Unlock()
if t.closed {
return nil
}
2018-02-08 09:39:46 -05:00
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-05-27 07:02:29 -04:00
func (t *Periodic) Start() error {
2018-05-27 08:42:53 -04:00
t.setClosed(false)
2018-02-08 09:39:46 -05:00
if err := t.checkedExecute(); err != nil {
2018-05-27 08:42:53 -04:00
t.setClosed(true)
2018-02-08 09:39:46 -05:00
return err
}
return nil
}
2018-04-03 05:11:54 -04:00
// Close implements common.Closable.
2018-05-27 07:02:29 -04:00
func (t *Periodic) Close() error {
2018-02-08 09:39:46 -05:00
t.access.Lock()
defer t.access.Unlock()
t.closed = true
if t.timer != nil {
t.timer.Stop()
t.timer = nil
}
return nil
}