mclock.go 3.38 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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/>.

17
// Package mclock is a wrapper for a monotonic clock source
18 19 20 21 22
package mclock

import (
	"time"

23
	_ "unsafe" // for go:linkname
24 25
)

26 27 28 29
//go:noescape
//go:linkname nanotime runtime.nanotime
func nanotime() int64

30
// AbsTime represents absolute monotonic time.
31
type AbsTime int64
32

33
// Now returns the current absolute monotonic time.
34
func Now() AbsTime {
35
	return AbsTime(nanotime())
36
}
37

38
// Add returns t + d as absolute time.
39 40 41 42
func (t AbsTime) Add(d time.Duration) AbsTime {
	return t + AbsTime(d)
}

43 44 45 46 47
// Sub returns t - t2 as a duration.
func (t AbsTime) Sub(t2 AbsTime) time.Duration {
	return time.Duration(t - t2)
}

48
// The Clock interface makes it possible to replace the monotonic system clock with
49 50 51 52
// a simulated clock.
type Clock interface {
	Now() AbsTime
	Sleep(time.Duration)
53 54
	NewTimer(time.Duration) ChanTimer
	After(time.Duration) <-chan AbsTime
55
	AfterFunc(d time.Duration, f func()) Timer
56 57
}

58
// Timer is a cancellable event created by AfterFunc.
59
type Timer interface {
60 61
	// Stop cancels the timer. It returns false if the timer has already
	// expired or been stopped.
62
	Stop() bool
63 64
}

65 66 67 68 69 70 71 72 73 74 75
// 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)
}

76 77 78
// System implements Clock using the system clock.
type System struct{}

79
// Now returns the current monotonic time.
80
func (c System) Now() AbsTime {
81
	return Now()
82 83
}

84
// Sleep blocks for the given duration.
85
func (c System) Sleep(d time.Duration) {
86 87 88
	time.Sleep(d)
}

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
// 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}
}

104
// After returns a channel which receives the current time after d has elapsed.
105 106 107 108
func (c System) After(d time.Duration) <-chan AbsTime {
	ch := make(chan AbsTime, 1)
	time.AfterFunc(d, func() { ch <- c.Now() })
	return ch
109
}
110

111
// AfterFunc runs f on a new goroutine after the duration has elapsed.
112
func (c System) AfterFunc(d time.Duration, f func()) Timer {
113
	return time.AfterFunc(d, f)
114
}
115 116 117 118 119 120 121 122 123 124 125 126 127

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
}