-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lease uses monotimer to calculate its expiration. In this way, changing system time won't affect in lease expiration. FIX #6700
- Loading branch information
Showing
6 changed files
with
117 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Copyright (C) 2016 Arista Networks, Inc. | ||
// Use of this source code is governed by the Apache License 2.0 | ||
// that can be found in the COPYING file. | ||
|
||
// This file is intentionally empty. | ||
// It's a workaround for https://github.com/golang/go/issues/15006 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright 2016 The etcd Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package monotime | ||
|
||
import ( | ||
"time" | ||
) | ||
|
||
type Timer interface { | ||
// Since returns duration between two points of time | ||
Since(uint64) time.Duration | ||
// SinceBegining returns duration between now and when timer is created | ||
SinceBegining() time.Duration | ||
// Now returns the current time in nanoseconds | ||
Now() uint64 | ||
} | ||
|
||
func New() Timer { | ||
return &monoTimer{ | ||
begin: Now(), | ||
} | ||
} | ||
|
||
type monoTimer struct { | ||
begin uint64 | ||
} | ||
|
||
func (t *monoTimer) Now() uint64 { | ||
return Now() | ||
} | ||
|
||
func (t *monoTimer) Since(start uint64) time.Duration { | ||
return time.Duration(Now() - start) | ||
} | ||
|
||
func (t *monoTimer) SinceBegining() time.Duration { | ||
return t.Since(t.begin) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (C) 2016 Arista Networks, Inc. | ||
// Use of this source code is governed by the Apache License 2.0 | ||
// that can be found in the COPYING file. | ||
|
||
// Package monotime provides a fast monotonic clock source. | ||
package monotime | ||
|
||
import ( | ||
_ "unsafe" // required to use //go:linkname | ||
) | ||
|
||
//go:noescape | ||
//go:linkname nanotime runtime.nanotime | ||
func nanotime() int64 | ||
|
||
// Now returns the current time in nanoseconds from a monotonic clock. | ||
// The time returned is based on some arbitrary platform-specific point in the | ||
// past. The time returned is guaranteed to increase monotonically at a | ||
// constant rate, unlike time.Now() from the Go standard library, which may | ||
// slow down, speed up, jump forward or backward, due to NTP activity or leap | ||
// seconds. | ||
func Now() uint64 { | ||
return uint64(nanotime()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (C) 2016 Arista Networks, Inc. | ||
// Use of this source code is governed by the Apache License 2.0 | ||
// that can be found in the COPYING file. | ||
|
||
// Package monotime provides a fast monotonic clock source. | ||
|
||
package monotime | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func TestNow(t *testing.T) { | ||
for i := 0; i < 100; i++ { | ||
t1 := Now() | ||
t2 := Now() | ||
// I honestly thought that we needed >= here, but in some environments | ||
// two consecutive calls can return the same value! | ||
if t1 > t2 { | ||
t.Fatalf("t1=%d should have been less than or equal to t2=%d", t1, t2) | ||
} | ||
} | ||
} |