-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstate.go
266 lines (220 loc) · 6.36 KB
/
state.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
// Copyright 2024 Aerospike, 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 backup
import (
"context"
"encoding/gob"
"fmt"
"io"
"log/slog"
"path/filepath"
"sync"
"time"
a "github.com/aerospike/aerospike-client-go/v8"
"github.com/aerospike/backup-go/models"
)
// State contains current backups status data.
type State struct {
// Global backup context.
ctx context.Context
// Counter tracks the number of times the State instance has been initialized.
// This is used to generate a unique suffix for backup files.
Counter int
// RecordsStateChan is a channel for communicating serialized partition filter
// states.
RecordsStateChan chan models.PartitionFilterSerialized
// RecordStates stores the current states of all partition filters.
RecordStates map[int]models.PartitionFilterSerialized
RecordStatesSaved map[int]models.PartitionFilterSerialized
// SaveCommandChan command to save current state for worker.
SaveCommandChan chan int
// Mutex for synchronizing operations on record states.
mu sync.Mutex
// FileName specifies the file path where the backup state is persisted.
FileName string
// writer is used to create a state file.
writer Writer
// logger for logging errors.
logger *slog.Logger
}
// NewState creates and returns a State instance. If continuing a previous
// backup, the state is loaded from the specified state file. Otherwise, a
// new State instance is created.
func NewState(
ctx context.Context,
config *ConfigBackup,
reader StreamingReader,
writer Writer,
logger *slog.Logger,
) (*State, error) {
logger.Debug("Initializing state", slog.String("path", config.StateFile))
switch {
case config.isStateFirstRun():
logger.Debug("initializing new state")
return newState(ctx, config, writer, logger), nil
case config.isStateContinue():
logger.Debug("initializing state from file", slog.String("file", config.StateFile))
return newStateFromFile(ctx, config, reader, writer, logger)
}
return nil, nil
}
// newState creates a new State instance for backup operations.
func newState(
ctx context.Context,
config *ConfigBackup,
writer Writer,
logger *slog.Logger,
) *State {
s := &State{
ctx: ctx,
// RecordsStateChan must not be buffered, so we can stop all operations.
RecordsStateChan: make(chan models.PartitionFilterSerialized),
RecordStates: make(map[int]models.PartitionFilterSerialized),
RecordStatesSaved: make(map[int]models.PartitionFilterSerialized),
SaveCommandChan: make(chan int),
FileName: filepath.Base(config.StateFile),
writer: writer,
logger: logger,
}
// Run watcher on initialization.
go s.serve()
go s.serveRecords()
return s
}
// newStateFromFile creates a new State instance, initializing it with data
// loaded from the specified file. This allows for resuming a previous backup operation.
func newStateFromFile(
ctx context.Context,
config *ConfigBackup,
reader StreamingReader,
writer Writer,
logger *slog.Logger,
) (*State, error) {
f, err := openFile(ctx, reader, config.StateFile)
if err != nil {
return nil, fmt.Errorf("failed to open state file: %w", err)
}
dec := gob.NewDecoder(f)
var s State
if err = dec.Decode(&s); err != nil {
return nil, fmt.Errorf("failed to decode state: %w", err)
}
s.ctx = ctx
s.writer = writer
s.logger = logger
s.RecordsStateChan = make(chan models.PartitionFilterSerialized)
s.SaveCommandChan = make(chan int)
s.Counter++
// Init current state.
for k, v := range s.RecordStatesSaved {
s.RecordStates[k] = v
}
logger.Debug("loaded state file successfully", slog.Int("filters loaded", len(s.RecordStatesSaved)))
// Run watcher on initialization.
go s.serve()
go s.serveRecords()
return &s, nil
}
// serve dumps files to disk.
func (s *State) serve() {
for {
select {
case <-s.ctx.Done():
return
case msg := <-s.SaveCommandChan:
if err := s.dump(msg); err != nil {
s.logger.Error("failed to dump state", slog.Any("error", err))
return
}
}
}
}
func (s *State) dump(n int) error {
file, err := s.writer.NewWriter(s.ctx, s.FileName)
if err != nil {
return fmt.Errorf("failed to create state file %s: %w", s.FileName, err)
}
enc := gob.NewEncoder(file)
s.mu.Lock()
defer s.mu.Unlock()
s.RecordStatesSaved[n] = s.RecordStates[n]
if err = enc.Encode(s); err != nil {
return fmt.Errorf("failed to encode state data: %w", err)
}
if err = file.Close(); err != nil {
return fmt.Errorf("failed to close state file: %w", err)
}
s.logger.Debug("state file dumped", slog.String("path", s.FileName), slog.Time("saved at", time.Now()))
return nil
}
func (s *State) initState(pf []*a.PartitionFilter) error {
s.mu.Lock()
defer s.mu.Unlock()
for i := range pf {
pfs, err := models.NewPartitionFilterSerialized(pf[i])
if err != nil {
return err
}
s.RecordStates[i] = pfs
s.RecordStatesSaved[i] = pfs
}
return nil
}
func (s *State) loadPartitionFilters() ([]*a.PartitionFilter, error) {
s.mu.Lock()
defer s.mu.Unlock()
result := make([]*a.PartitionFilter, 0, len(s.RecordStatesSaved))
for _, state := range s.RecordStatesSaved {
f, err := state.Decode()
if err != nil {
return nil, err
}
result = append(result, f)
}
return result, nil
}
func (s *State) serveRecords() {
for {
select {
case <-s.ctx.Done():
return
case state := <-s.RecordsStateChan:
if state.IsEmpty() {
continue
}
s.mu.Lock()
s.RecordStates[state.N] = state
s.mu.Unlock()
}
}
}
func (s *State) getFileSuffix() string {
if s.Counter > 0 {
return fmt.Sprintf("(%d)", s.Counter)
}
return ""
}
func openFile(ctx context.Context, reader StreamingReader, fileName string) (io.ReadCloser, error) {
readCh := make(chan models.File)
errCh := make(chan error)
go reader.StreamFile(ctx, fileName, readCh, errCh)
select {
case <-ctx.Done():
return nil, ctx.Err()
case err := <-errCh:
return nil, err
case file := <-readCh:
return file.Reader, nil
}
}