b1c3010bf2
This change adds tests for the virtual clock and aligns the interface with the time package by renaming Cancel to Stop. It also removes the binary search from Stop because it complicates the code unnecessarily.
75 lines
2.1 KiB
Go
75 lines
2.1 KiB
Go
// Copyright 2016 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library 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 Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// Package mclock is a wrapper for a monotonic clock source
|
|
package mclock
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/aristanetworks/goarista/monotime"
|
|
)
|
|
|
|
// AbsTime represents absolute monotonic time.
|
|
type AbsTime time.Duration
|
|
|
|
// Now returns the current absolute monotonic time.
|
|
func Now() AbsTime {
|
|
return AbsTime(monotime.Now())
|
|
}
|
|
|
|
// Add returns t + d.
|
|
func (t AbsTime) Add(d time.Duration) AbsTime {
|
|
return t + AbsTime(d)
|
|
}
|
|
|
|
// The Clock interface makes it possible to replace the monotonic system clock with
|
|
// a simulated clock.
|
|
type Clock interface {
|
|
Now() AbsTime
|
|
Sleep(time.Duration)
|
|
After(time.Duration) <-chan time.Time
|
|
AfterFunc(d time.Duration, f func()) Timer
|
|
}
|
|
|
|
// Timer represents a cancellable event returned by AfterFunc
|
|
type Timer interface {
|
|
Stop() bool
|
|
}
|
|
|
|
// System implements Clock using the system clock.
|
|
type System struct{}
|
|
|
|
// Now returns the current monotonic time.
|
|
func (System) Now() AbsTime {
|
|
return AbsTime(monotime.Now())
|
|
}
|
|
|
|
// Sleep blocks for the given duration.
|
|
func (System) Sleep(d time.Duration) {
|
|
time.Sleep(d)
|
|
}
|
|
|
|
// After returns a channel which receives the current time after d has elapsed.
|
|
func (System) After(d time.Duration) <-chan time.Time {
|
|
return time.After(d)
|
|
}
|
|
|
|
// AfterFunc runs f on a new goroutine after the duration has elapsed.
|
|
func (System) AfterFunc(d time.Duration, f func()) Timer {
|
|
return time.AfterFunc(d, f)
|
|
}
|