| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- // 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 (
- "github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
- "github.com/coreos/etcd/clientv3"
- pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
- )
- // STM implements software transactional memory over etcd
- type STM struct {
- client *clientv3.Client
- // rset holds the read key's value and revision of read
- rset map[string]*RemoteKV
- // wset holds the write key and its value
- wset map[string]string
- // aborted is whether user aborted the txn
- aborted bool
- apply func(*STM) error
- }
- // NewSTM creates new transaction loop for a given apply function.
- func NewSTM(client *clientv3.Client, apply func(*STM) error) <-chan error {
- s := &STM{client: client, apply: apply}
- errc := make(chan error, 1)
- go func() {
- var err error
- for {
- s.clear()
- if err = apply(s); err != nil || s.aborted {
- break
- }
- if ok, err := s.commit(); ok || err != nil {
- break
- }
- }
- errc <- err
- }()
- return errc
- }
- // Abort abandons the apply loop, letting the transaction close without a commit.
- func (s *STM) Abort() { s.aborted = true }
- // Get returns the value for a given key, inserting the key into the txn's rset.
- func (s *STM) Get(key string) (string, error) {
- if wv, ok := s.wset[key]; ok {
- return wv, nil
- }
- if rk, ok := s.rset[key]; ok {
- return rk.Value(), nil
- }
- rk, err := GetRemoteKV(s.client, key)
- if err != nil {
- return "", err
- }
- // TODO: setup watchers to abort txn early
- s.rset[key] = rk
- return rk.Value(), nil
- }
- // Put adds a value for a key to the write set.
- func (s *STM) Put(key string, val string) { s.wset[key] = val }
- // commit attempts to apply the txn's changes to the server.
- func (s *STM) commit() (ok bool, err error) {
- // read set must not change
- cmps := []*pb.Compare{}
- for k, rk := range s.rset {
- // use < to support updating keys that don't exist yet
- cmp := &pb.Compare{
- Result: pb.Compare_LESS,
- Target: pb.Compare_MOD,
- Key: []byte(k),
- TargetUnion: &pb.Compare_ModRevision{ModRevision: rk.Revision() + 1},
- }
- cmps = append(cmps, cmp)
- }
- // apply all writes
- puts := []*pb.RequestUnion{}
- for k, v := range s.wset {
- puts = append(puts, &pb.RequestUnion{
- Request: &pb.RequestUnion_RequestPut{
- RequestPut: &pb.PutRequest{
- Key: []byte(k),
- Value: []byte(v),
- }}})
- }
- txnresp, err := s.client.KV.Txn(context.TODO(), &pb.TxnRequest{cmps, puts, nil})
- return txnresp.Succeeded, err
- }
- func (s *STM) clear() {
- s.rset = make(map[string]*RemoteKV)
- s.wset = make(map[string]string)
- }
|