2014-07-13 00:45:33 +02:00
|
|
|
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-06-01 22:50:14 +02:00
|
|
|
|
2014-05-15 00:40:17 -03:00
|
|
|
// Package lamport implements a simple Lamport Clock for versioning
|
2014-03-28 14:36:57 +01:00
|
|
|
package lamport
|
|
|
|
|
|
|
|
import "sync"
|
|
|
|
|
|
|
|
var Default = Clock{}
|
|
|
|
|
|
|
|
type Clock struct {
|
|
|
|
val uint64
|
|
|
|
mut sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Clock) Tick(v uint64) uint64 {
|
|
|
|
c.mut.Lock()
|
|
|
|
if v > c.val {
|
|
|
|
c.val = v + 1
|
|
|
|
c.mut.Unlock()
|
|
|
|
return v + 1
|
|
|
|
} else {
|
|
|
|
c.val++
|
|
|
|
v = c.val
|
|
|
|
c.mut.Unlock()
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
}
|