It takes three lines of code to get to runtime.nanotime, no need to pull a dependency for that.
		
			
				
	
	
		
			128 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			128 lines
		
	
	
		
			3.4 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"
 | |
| 
 | |
| 	_ "unsafe" // for go:linkname
 | |
| )
 | |
| 
 | |
| //go:noescape
 | |
| //go:linkname nanotime runtime.nanotime
 | |
| func nanotime() int64
 | |
| 
 | |
| // AbsTime represents absolute monotonic time.
 | |
| type AbsTime int64
 | |
| 
 | |
| // Now returns the current absolute monotonic time.
 | |
| func Now() AbsTime {
 | |
| 	return AbsTime(nanotime())
 | |
| }
 | |
| 
 | |
| // Add returns t + d as absolute time.
 | |
| func (t AbsTime) Add(d time.Duration) AbsTime {
 | |
| 	return t + AbsTime(d)
 | |
| }
 | |
| 
 | |
| // Sub returns t - t2 as a duration.
 | |
| func (t AbsTime) Sub(t2 AbsTime) time.Duration {
 | |
| 	return time.Duration(t - t2)
 | |
| }
 | |
| 
 | |
| // The Clock interface makes it possible to replace the monotonic system clock with
 | |
| // a simulated clock.
 | |
| type Clock interface {
 | |
| 	Now() AbsTime
 | |
| 	Sleep(time.Duration)
 | |
| 	NewTimer(time.Duration) ChanTimer
 | |
| 	After(time.Duration) <-chan AbsTime
 | |
| 	AfterFunc(d time.Duration, f func()) Timer
 | |
| }
 | |
| 
 | |
| // Timer is a cancellable event created by AfterFunc.
 | |
| type Timer interface {
 | |
| 	// Stop cancels the timer. It returns false if the timer has already
 | |
| 	// expired or been stopped.
 | |
| 	Stop() bool
 | |
| }
 | |
| 
 | |
| // ChanTimer is a cancellable event created by NewTimer.
 | |
| type ChanTimer interface {
 | |
| 	Timer
 | |
| 
 | |
| 	// The channel returned by C receives a value when the timer expires.
 | |
| 	C() <-chan AbsTime
 | |
| 	// Reset reschedules the timer with a new timeout.
 | |
| 	// It should be invoked only on stopped or expired timers with drained channels.
 | |
| 	Reset(time.Duration)
 | |
| }
 | |
| 
 | |
| // System implements Clock using the system clock.
 | |
| type System struct{}
 | |
| 
 | |
| // Now returns the current monotonic time.
 | |
| func (c System) Now() AbsTime {
 | |
| 	return Now()
 | |
| }
 | |
| 
 | |
| // Sleep blocks for the given duration.
 | |
| func (c System) Sleep(d time.Duration) {
 | |
| 	time.Sleep(d)
 | |
| }
 | |
| 
 | |
| // NewTimer creates a timer which can be rescheduled.
 | |
| func (c System) NewTimer(d time.Duration) ChanTimer {
 | |
| 	ch := make(chan AbsTime, 1)
 | |
| 	t := time.AfterFunc(d, func() {
 | |
| 		// This send is non-blocking because that's how time.Timer
 | |
| 		// behaves. It doesn't matter in the happy case, but does
 | |
| 		// when Reset is misused.
 | |
| 		select {
 | |
| 		case ch <- c.Now():
 | |
| 		default:
 | |
| 		}
 | |
| 	})
 | |
| 	return &systemTimer{t, ch}
 | |
| }
 | |
| 
 | |
| // After returns a channel which receives the current time after d has elapsed.
 | |
| func (c System) After(d time.Duration) <-chan AbsTime {
 | |
| 	ch := make(chan AbsTime, 1)
 | |
| 	time.AfterFunc(d, func() { ch <- c.Now() })
 | |
| 	return ch
 | |
| }
 | |
| 
 | |
| // AfterFunc runs f on a new goroutine after the duration has elapsed.
 | |
| func (c System) AfterFunc(d time.Duration, f func()) Timer {
 | |
| 	return time.AfterFunc(d, f)
 | |
| }
 | |
| 
 | |
| type systemTimer struct {
 | |
| 	*time.Timer
 | |
| 	ch <-chan AbsTime
 | |
| }
 | |
| 
 | |
| func (st *systemTimer) Reset(d time.Duration) {
 | |
| 	st.Timer.Reset(d)
 | |
| }
 | |
| 
 | |
| func (st *systemTimer) C() <-chan AbsTime {
 | |
| 	return st.ch
 | |
| }
 |