-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
file.go
152 lines (130 loc) · 4.58 KB
/
file.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
Copyright 2019 The Vitess 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 etcd2topo
import (
"path"
"context"
clientv3 "go.etcd.io/etcd/client/v3"
"vitess.io/vitess/go/vt/topo"
)
// Create is part of the topo.Conn interface.
func (s *Server) Create(ctx context.Context, filePath string, contents []byte) (topo.Version, error) {
nodePath := path.Join(s.root, filePath)
// We have to do a transaction, comparing existing version with 0.
// This means: if the file doesn't exist, create it.
txnresp, err := s.cli.Txn(ctx).
If(clientv3.Compare(clientv3.Version(nodePath), "=", 0)).
Then(clientv3.OpPut(nodePath, string(contents))).
Commit()
if err != nil {
return nil, convertError(err, nodePath)
}
if !txnresp.Succeeded {
return nil, topo.NewError(topo.NodeExists, nodePath)
}
return EtcdVersion(txnresp.Header.Revision), nil
}
// Update is part of the topo.Conn interface.
func (s *Server) Update(ctx context.Context, filePath string, contents []byte, version topo.Version) (topo.Version, error) {
nodePath := path.Join(s.root, filePath)
if version != nil {
// We have to do a transaction. This means: if the
// current file revision is what we expect, save it.
txnresp, err := s.cli.Txn(ctx).
If(clientv3.Compare(clientv3.ModRevision(nodePath), "=", int64(version.(EtcdVersion)))).
Then(clientv3.OpPut(nodePath, string(contents))).
Commit()
if err != nil {
return nil, convertError(err, nodePath)
}
if !txnresp.Succeeded {
return nil, topo.NewError(topo.BadVersion, nodePath)
}
return EtcdVersion(txnresp.Header.Revision), nil
}
// No version specified. We can use a simple unconditional Put.
resp, err := s.cli.Put(ctx, nodePath, string(contents))
if err != nil {
return nil, convertError(err, nodePath)
}
return EtcdVersion(resp.Header.Revision), nil
}
// Get is part of the topo.Conn interface.
func (s *Server) Get(ctx context.Context, filePath string) ([]byte, topo.Version, error) {
nodePath := path.Join(s.root, filePath)
resp, err := s.cli.Get(ctx, nodePath)
if err != nil {
return nil, nil, convertError(err, nodePath)
}
if len(resp.Kvs) != 1 {
return nil, nil, topo.NewError(topo.NoNode, nodePath)
}
return resp.Kvs[0].Value, EtcdVersion(resp.Kvs[0].ModRevision), nil
}
// List is part of the topo.Conn interface.
func (s *Server) List(ctx context.Context, filePathPrefix string) ([]topo.KVInfo, error) {
nodePathPrefix := path.Join(s.root, filePathPrefix)
resp, err := s.cli.Get(ctx, nodePathPrefix, clientv3.WithPrefix())
if err != nil {
return []topo.KVInfo{}, err
}
pairs := resp.Kvs
if len(pairs) == 0 {
return []topo.KVInfo{}, topo.NewError(topo.NoNode, nodePathPrefix)
}
results := make([]topo.KVInfo, len(pairs))
for n := range pairs {
results[n].Key = pairs[n].Key
results[n].Value = pairs[n].Value
results[n].Version = EtcdVersion(pairs[n].ModRevision)
}
return results, nil
}
// Delete is part of the topo.Conn interface.
func (s *Server) Delete(ctx context.Context, filePath string, version topo.Version) error {
nodePath := path.Join(s.root, filePath)
if version != nil {
// We have to do a transaction. This means: if the
// node revision is what we expect, delete it,
// otherwise get the file. If the transaction doesn't
// succeed, we also ask for the value of the
// node. That way we'll know if it failed because it
// didn't exist, or because the version was wrong.
txnresp, err := s.cli.Txn(ctx).
If(clientv3.Compare(clientv3.ModRevision(nodePath), "=", int64(version.(EtcdVersion)))).
Then(clientv3.OpDelete(nodePath)).
Else(clientv3.OpGet(nodePath)).
Commit()
if err != nil {
return convertError(err, nodePath)
}
if !txnresp.Succeeded {
if len(txnresp.Responses) > 0 {
if len(txnresp.Responses[0].GetResponseRange().Kvs) > 0 {
return topo.NewError(topo.BadVersion, nodePath)
}
}
return topo.NewError(topo.NoNode, nodePath)
}
return nil
}
// This is just a regular unconditional Delete here.
resp, err := s.cli.Delete(ctx, nodePath)
if err != nil {
return convertError(err, nodePath)
}
if resp.Deleted != 1 {
return topo.NewError(topo.NoNode, nodePath)
}
return nil
}