mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
87 lines
2.2 KiB
Go
87 lines
2.2 KiB
Go
// 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/clientv3"
|
|
"github.com/coreos/etcd/storage/storagepb"
|
|
)
|
|
|
|
// Mutex implements the sync Locker interface with etcd
|
|
type Mutex struct {
|
|
client *clientv3.Client
|
|
key string
|
|
myKey *RemoteKV
|
|
}
|
|
|
|
func NewMutex(client *clientv3.Client, key string) *Mutex {
|
|
return &Mutex{client, key, nil}
|
|
}
|
|
|
|
func (m *Mutex) Lock() (err error) {
|
|
// put self in lock waiters via myKey; oldest waiter holds lock
|
|
m.myKey, err = NewUniqueKey(m.client, m.key)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// find oldest element in waiters via revision of insertion
|
|
resp, err := NewRange(m.client, m.key).FirstRev()
|
|
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
|
|
lastKey, err := NewRangeRev(m.client, m.key, m.myKey.Revision()-1).LastRev()
|
|
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 *clientv3.Client, key string) sync.Locker {
|
|
return &lockerMutex{NewMutex(client, key)}
|
|
}
|