-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataset.go
275 lines (245 loc) · 6.64 KB
/
dataset.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// Copyright © 2021 zc2638 <zc2638@qq.com>.
//
// 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 dsync
import (
"context"
"errors"
"sync"
"github.com/99nil/dsync/storage"
"github.com/99nil/dsync/suid"
)
var (
ErrDataNotMatch = errors.New("data not match")
ErrUnexpectState = errors.New("unexpect state")
)
type dataSet struct {
mux sync.Mutex
manifest *suid.AssembleManifest
state suid.UID
defaultOperation OperateInterface
dataSetOperation OperateInterface
tmpOperation OperateInterface
customOperation OperateInterface
}
func newDataSet(insName string, storage storage.Interface) *dataSet {
ds := new(dataSet)
ds.defaultOperation = newSpaceOperation(buildName(spaceStatePrefix, insName), storage)
ds.dataSetOperation = newSpaceOperation(buildName(spaceDatasetPrefix, insName), storage)
ds.tmpOperation = newSpaceOperation(buildName(spaceTmpPrefix, insName), storage)
ds.customOperation = newSpaceOperation(buildName(spaceRelatePrefix, insName), storage)
return ds
}
func (ds *dataSet) completeUID(ctx context.Context, uids ...suid.UID) ([]suid.UID, error) {
set := make([]suid.UID, 0, len(uids))
for _, uid := range uids {
if uid.IsCustom() {
custom := uid.CustomUID()
value, err := ds.customOperation.Get(ctx, custom)
if err != nil {
return nil, err
}
id, err := suid.ParseKSUID(string(value))
if err != nil {
return nil, err
}
uid = suid.NewWithCustom(id, custom)
}
set = append(set, uid)
}
return set, nil
}
func (ds *dataSet) SetState(ctx context.Context, uid suid.UID) error {
if err := ds.defaultOperation.Add(ctx, keyState, []byte(uid.String())); err != nil {
return err
}
ds.state = uid
return nil
}
func (ds *dataSet) State(ctx context.Context) suid.UID {
if !ds.state.IsNil() {
return ds.state
}
value, err := ds.defaultOperation.Get(ctx, keyState)
if err != nil {
return ds.state
}
ds.state = value
return ds.state
}
func (ds *dataSet) Get(ctx context.Context, uid suid.UID) (*Item, error) {
uids, err := ds.completeUID(ctx, uid)
if err != nil {
return nil, err
}
uid = uids[0]
value, err := ds.dataSetOperation.Get(ctx, uid.KSUID().String())
if err != nil {
return nil, err
}
return &Item{
UID: uid,
Value: value,
}, nil
}
func (ds *dataSet) Add(ctx context.Context, items ...Item) error {
if len(items) == 0 {
return nil
}
state := ds.State(ctx)
current := state.KSUID()
for _, item := range items {
itemCurrent := item.UID.KSUID()
isCustom := item.UID.IsCustom()
if isCustom && itemCurrent.IsNil() {
itemCurrent = suid.NewKSUID()
}
// When adding data in batches, the order may not be guaranteed,
// so perform the addition first, and then determine the latest state.
if err := ds.dataSetOperation.Add(ctx, itemCurrent.String(), item.Value); err != nil {
return err
}
if item.UID.IsCustom() {
// Add data first, if the association relationship fails,
// the orphaned data will be recovered by the GC soon
if err := ds.customOperation.Add(ctx, item.UID.CustomUID(), []byte(itemCurrent.String())); err != nil {
return err
}
}
if suid.CompareKSUID(current, itemCurrent) > -1 {
continue
}
if err := ds.SetState(ctx, item.UID); err != nil {
return err
}
}
return nil
}
func (ds *dataSet) Del(ctx context.Context, uids ...suid.UID) error {
if len(uids) == 0 {
return nil
}
uids, err := ds.completeUID(ctx, uids...)
if err != nil {
return err
}
for _, uid := range uids {
if err := ds.dataSetOperation.Del(ctx, uid.KSUID().String()); err != nil {
return err
}
}
return nil
}
func (ds *dataSet) SyncManifest(ctx context.Context, manifest *suid.AssembleManifest) {
ds.mux.Lock()
defer ds.mux.Unlock()
state := ds.State(ctx)
if !state.IsNil() {
var (
set []suid.UID
exists bool
)
current := state.KSUID()
for iter := manifest.Iter(); iter.Next(); {
if iter.KSUID == current {
exists = true
}
if exists {
set = append(set, manifest.GetUID(iter.KSUID))
}
}
manifest = suid.NewManifest()
manifest.AppendUID(set...)
}
ds.manifest = manifest
}
func (ds *dataSet) Sync(ctx context.Context, items []Item, callback ItemCallbackFunc) error {
return ds.sync(ctx, items, callback, false)
}
func (ds *dataSet) SyncAndDelete(ctx context.Context, items []Item, callback ItemCallbackFunc) error {
return ds.sync(ctx, items, callback, true)
}
func (ds *dataSet) sync(ctx context.Context, items []Item, callback ItemCallbackFunc, needDelete bool) error {
if len(items) == 0 {
return nil
}
state := ds.State(ctx)
current := state.KSUID()
var count int
// Store items in tmp space first,
// and use items in subsequent synchronization to prevent the sequence of data from affecting synchronization.
for _, item := range items {
isExpire := suid.CompareKSUID(current, item.UID.KSUID())
if isExpire > -1 {
continue
}
if err := ds.tmpOperation.Add(ctx, item.UID.KSUID().String(), item.Value); err != nil {
return err
}
count++
}
if count == 0 {
return nil
}
// In order to ensure the consistency of the manifest,
// it needs to be locked before this.
ds.mux.Lock()
defer ds.mux.Unlock()
var match bool
for iter := ds.manifest.Iter(); iter.Next(); {
uid := iter.KSUID
uidStr := uid.String()
state := ds.State(ctx)
// When state is Nil, directly synchronize data
if state.IsNil() {
match = true
}
if !match {
// When the corresponding state is found in the manifest,
// start synchronization from the next.
if state.KSUID() == uid {
match = true
}
continue
}
value, err := ds.tmpOperation.Get(ctx, uidStr)
if err != nil {
return err
}
if value == nil {
return ErrDataNotMatch
}
item := Item{
UID: ds.manifest.GetUID(uid),
Value: value,
}
if err := ds.Add(ctx, item); err != nil {
return err
}
if callback != nil {
if err := callback(ctx, item); err != nil {
return err
}
}
// Try to delete the synchronized data in the tmp space.
// If the deletion fails, no verification is required,
// and it can be reclaimed by the GC later.
_ = ds.tmpOperation.Del(ctx, uidStr)
if needDelete {
if err := ds.dataSetOperation.Del(ctx, uidStr); err != nil {
return err
}
}
}
return nil
}