2018-12-06 21:50:17 +00:00
|
|
|
package wait
|
2016-03-11 02:52:46 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
2018-09-24 19:07:20 +00:00
|
|
|
|
|
|
|
"github.com/xenolf/lego/log"
|
2016-03-11 02:52:46 +00:00
|
|
|
)
|
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
// For polls the given function 'f', once every 'interval', up to 'timeout'.
|
|
|
|
func For(timeout, interval time.Duration, f func() (bool, error)) error {
|
2018-09-24 19:07:20 +00:00
|
|
|
log.Infof("Wait [timeout: %s, interval: %s]", timeout, interval)
|
|
|
|
|
2016-03-11 02:52:46 +00:00
|
|
|
var lastErr string
|
2018-10-09 17:03:07 +00:00
|
|
|
timeUp := time.After(timeout)
|
2016-03-11 02:52:46 +00:00
|
|
|
for {
|
|
|
|
select {
|
2018-10-09 17:03:07 +00:00
|
|
|
case <-timeUp:
|
2018-09-24 19:07:20 +00:00
|
|
|
return fmt.Errorf("time limit exceeded: last error: %s", lastErr)
|
2016-03-11 02:52:46 +00:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
stop, err := f()
|
|
|
|
if stop {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
lastErr = err.Error()
|
|
|
|
}
|
|
|
|
|
2016-03-11 03:51:02 +00:00
|
|
|
time.Sleep(interval)
|
2016-03-11 02:52:46 +00:00
|
|
|
}
|
|
|
|
}
|