mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
clientv3/concurrency: Mutex
This commit is contained in:
@@ -49,7 +49,7 @@ func (b *Barrier) Release() error {
|
||||
// Wait blocks on the barrier key until it is deleted. If there is no key, Wait
|
||||
// assumes Release has already been called and returns immediately.
|
||||
func (b *Barrier) Wait() error {
|
||||
resp, err := b.kv.Get(b.ctx, b.key, withFirstKey()...)
|
||||
resp, err := b.kv.Get(b.ctx, b.key, v3.WithFirstKey()...)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -62,7 +62,7 @@ func (e *Election) Resign() (err error) {
|
||||
|
||||
// Leader returns the leader value for the current election.
|
||||
func (e *Election) Leader() (string, error) {
|
||||
resp, err := e.kv.Get(e.ctx, e.keyPrefix, withFirstCreate()...)
|
||||
resp, err := e.kv.Get(e.ctx, e.keyPrefix, v3.WithFirstCreate()...)
|
||||
if err != nil {
|
||||
return "", err
|
||||
} else if len(resp.Kvs) == 0 {
|
||||
@@ -74,7 +74,7 @@ func (e *Election) Leader() (string, error) {
|
||||
|
||||
// Wait waits for a leader to be elected, returning the leader value.
|
||||
func (e *Election) Wait() (string, error) {
|
||||
resp, err := e.kv.Get(e.ctx, e.keyPrefix, withFirstCreate()...)
|
||||
resp, err := e.kv.Get(e.ctx, e.keyPrefix, v3.WithFirstCreate()...)
|
||||
if err != nil {
|
||||
return "", err
|
||||
} else if len(resp.Kvs) != 0 {
|
||||
@@ -93,7 +93,7 @@ func (e *Election) Wait() (string, error) {
|
||||
}
|
||||
|
||||
func (e *Election) waitLeadership(tryKey *EphemeralKV) error {
|
||||
opts := append(withLastCreate(), v3.WithRev(tryKey.Revision()-1))
|
||||
opts := append(v3.WithLastCreate(), v3.WithRev(tryKey.Revision()-1))
|
||||
resp, err := e.kv.Get(e.ctx, e.keyPrefix, opts...)
|
||||
if err != nil {
|
||||
return err
|
||||
|
||||
@@ -99,7 +99,7 @@ func NewSequentialKV(kv v3.KV, prefix, val string) (*RemoteKV, error) {
|
||||
// newSequentialKV allocates a new sequential key <prefix>/nnnnn with a given
|
||||
// value and lease. Note: a bookkeeping node __<prefix> is also allocated.
|
||||
func newSequentialKV(kv v3.KV, prefix, val string, leaseID lease.LeaseID) (*RemoteKV, error) {
|
||||
resp, err := kv.Get(context.TODO(), prefix, withLastKey()...)
|
||||
resp, err := kv.Get(context.TODO(), prefix, v3.WithLastKey()...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
@@ -1,91 +0,0 @@
|
||||
// Copyright 2016 CoreOS, Inc.
|
||||
//
|
||||
// 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 recipe
|
||||
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
|
||||
v3 "github.com/coreos/etcd/clientv3"
|
||||
"github.com/coreos/etcd/storage/storagepb"
|
||||
)
|
||||
|
||||
// Mutex implements the sync Locker interface with etcd
|
||||
type Mutex struct {
|
||||
client *v3.Client
|
||||
kv v3.KV
|
||||
ctx context.Context
|
||||
|
||||
key string
|
||||
myKey *EphemeralKV
|
||||
}
|
||||
|
||||
func NewMutex(client *v3.Client, key string) *Mutex {
|
||||
return &Mutex{client, v3.NewKV(client), context.TODO(), key, nil}
|
||||
}
|
||||
|
||||
func (m *Mutex) Lock() (err error) {
|
||||
// put self in lock waiters via myKey; oldest waiter holds lock
|
||||
m.myKey, err = NewUniqueEphemeralKey(m.client, m.key)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
// find oldest element in waiters via revision of insertion
|
||||
resp, err := m.kv.Get(m.ctx, m.key, withFirstRev()...)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
// if myKey is oldest in waiters, then myKey holds the lock
|
||||
if m.myKey.Revision() == resp.Kvs[0].CreateRevision {
|
||||
return nil
|
||||
}
|
||||
// otherwise myKey isn't lowest, so there must be a key prior to myKey
|
||||
opts := append(withLastRev(), v3.WithRev(m.myKey.Revision()-1))
|
||||
lastKey, err := m.kv.Get(m.ctx, m.key, opts...)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
// wait for release on prior key
|
||||
_, err = WaitEvents(
|
||||
m.client,
|
||||
string(lastKey.Kvs[0].Key),
|
||||
m.myKey.Revision()-1,
|
||||
[]storagepb.Event_EventType{storagepb.DELETE})
|
||||
// myKey now oldest
|
||||
return err
|
||||
}
|
||||
|
||||
func (m *Mutex) Unlock() error {
|
||||
err := m.myKey.Delete()
|
||||
m.myKey = nil
|
||||
return err
|
||||
}
|
||||
|
||||
type lockerMutex struct{ *Mutex }
|
||||
|
||||
func (lm *lockerMutex) Lock() {
|
||||
if err := lm.Mutex.Lock(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
func (lm *lockerMutex) Unlock() {
|
||||
if err := lm.Mutex.Unlock(); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
func NewLocker(client *v3.Client, key string) sync.Locker {
|
||||
return &lockerMutex{NewMutex(client, key)}
|
||||
}
|
||||
@@ -46,7 +46,7 @@ func (q *PriorityQueue) Enqueue(val string, pr uint16) error {
|
||||
// queue is empty, Dequeue blocks until items are available.
|
||||
func (q *PriorityQueue) Dequeue() (string, error) {
|
||||
// TODO: fewer round trips by fetching more than one key
|
||||
resp, err := q.kv.Get(q.ctx, q.key, withFirstKey()...)
|
||||
resp, err := q.kv.Get(q.ctx, q.key, v3.WithFirstKey()...)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ func (q *Queue) Enqueue(val string) error {
|
||||
// queue is empty, Dequeue blocks until elements are available.
|
||||
func (q *Queue) Dequeue() (string, error) {
|
||||
// TODO: fewer round trips by fetching more than one key
|
||||
resp, err := q.kv.Get(q.ctx, q.keyPrefix, withFirstRev()...)
|
||||
resp, err := q.kv.Get(q.ctx, q.keyPrefix, v3.WithFirstRev()...)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
// Copyright 2016 CoreOS, Inc.
|
||||
//
|
||||
// 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 recipe
|
||||
|
||||
import (
|
||||
v3 "github.com/coreos/etcd/clientv3"
|
||||
)
|
||||
|
||||
func withFirstCreate() []v3.OpOption { return withTop(v3.SortByCreatedRev, v3.SortAscend) }
|
||||
func withLastCreate() []v3.OpOption { return withTop(v3.SortByCreatedRev, v3.SortDescend) }
|
||||
func withFirstKey() []v3.OpOption { return withTop(v3.SortByKey, v3.SortAscend) }
|
||||
func withLastKey() []v3.OpOption { return withTop(v3.SortByKey, v3.SortDescend) }
|
||||
func withFirstRev() []v3.OpOption { return withTop(v3.SortByModifiedRev, v3.SortAscend) }
|
||||
func withLastRev() []v3.OpOption { return withTop(v3.SortByModifiedRev, v3.SortDescend) }
|
||||
|
||||
// withTop gets the first key over the get's prefix given a sort order
|
||||
func withTop(target v3.SortTarget, order v3.SortOrder) []v3.OpOption {
|
||||
return []v3.OpOption{
|
||||
v3.WithPrefix(),
|
||||
v3.WithSort(target, order),
|
||||
v3.WithLimit(1)}
|
||||
}
|
||||
@@ -42,7 +42,7 @@ func (rwm *RWMutex) RLock() error {
|
||||
|
||||
// if there are nodes with "write-" and a lower
|
||||
// revision number than us we must wait
|
||||
resp, err := rwm.kv.Get(rwm.ctx, rwm.key+"/write", withFirstRev()...)
|
||||
resp, err := rwm.kv.Get(rwm.ctx, rwm.key+"/write", v3.WithFirstRev()...)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@@ -62,7 +62,7 @@ func (rwm *RWMutex) Lock() error {
|
||||
|
||||
for {
|
||||
// find any key of lower rev number blocks the write lock
|
||||
opts := append(withLastRev(), v3.WithRev(rk.Revision()-1))
|
||||
opts := append(v3.WithLastRev(), v3.WithRev(rk.Revision()-1))
|
||||
resp, err := rwm.kv.Get(rwm.ctx, rwm.key, opts...)
|
||||
if err != nil {
|
||||
return err
|
||||
@@ -82,7 +82,7 @@ func (rwm *RWMutex) Lock() error {
|
||||
|
||||
func (rwm *RWMutex) waitOnLowest() error {
|
||||
// must block; get key before ek for waiting
|
||||
opts := append(withLastRev(), v3.WithRev(rwm.myKey.Revision()-1))
|
||||
opts := append(v3.WithLastRev(), v3.WithRev(rwm.myKey.Revision()-1))
|
||||
lastKey, err := rwm.kv.Get(rwm.ctx, rwm.key, opts...)
|
||||
if err != nil {
|
||||
return err
|
||||
|
||||
Reference in New Issue
Block a user