2019-04-24 15:09:41 +03:00
|
|
|
package deadline
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
// Deadline allows for commands to expire when they run too long
|
|
|
|
type Deadline struct {
|
|
|
|
unixNano int64
|
|
|
|
hit bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new deadline object
|
|
|
|
func New(deadline time.Time) *Deadline {
|
|
|
|
return &Deadline{unixNano: deadline.UnixNano()}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the deadline and panic when reached
|
|
|
|
//go:noinline
|
|
|
|
func (deadline *Deadline) Check() {
|
|
|
|
if deadline == nil || deadline.unixNano == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !deadline.hit && time.Now().UnixNano() > deadline.unixNano {
|
|
|
|
deadline.hit = true
|
|
|
|
panic("deadline")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hit returns true if the deadline has been hit
|
|
|
|
func (deadline *Deadline) Hit() bool {
|
|
|
|
return deadline.hit
|
|
|
|
}
|
2019-04-25 03:00:52 +03:00
|
|
|
|
|
|
|
// GetDeadlineTime returns the time object for the deadline, and an "empty" boolean
|
2019-04-26 00:15:12 +03:00
|
|
|
func (deadline *Deadline) GetDeadlineTime() (time.Time) {
|
|
|
|
return time.Unix(0, deadline.unixNano)
|
2019-04-25 03:00:52 +03:00
|
|
|
}
|