mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Event histories after merging serve as an authorotative list of events that can be seen as ones persisted by etcd, we don't need PrevValue as part of it. Signed-off-by: Madhav Jivrajani <madhav.jiv@gmail.com>
131 lines
3.5 KiB
Go
131 lines
3.5 KiB
Go
// Copyright 2023 The etcd 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 model
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
func NewReplay(eventHistory []PersistedEvent) *EtcdReplay {
|
|
var lastEventRevision int64 = 1
|
|
for _, event := range eventHistory {
|
|
if event.Revision > lastEventRevision && event.Revision != lastEventRevision+1 {
|
|
panic("Replay requires a complete event history")
|
|
}
|
|
lastEventRevision = event.Revision
|
|
}
|
|
return &EtcdReplay{
|
|
eventHistory: eventHistory,
|
|
}
|
|
}
|
|
|
|
type EtcdReplay struct {
|
|
eventHistory []PersistedEvent
|
|
|
|
// Cached state and event index used for it's calculation
|
|
cachedState *EtcdState
|
|
eventHistoryIndex int
|
|
}
|
|
|
|
func (r *EtcdReplay) StateForRevision(revision int64) (EtcdState, error) {
|
|
if revision < 1 {
|
|
return EtcdState{}, fmt.Errorf("invalid revision: %d", revision)
|
|
}
|
|
if r.cachedState == nil || r.cachedState.Revision > revision {
|
|
r.reset()
|
|
}
|
|
|
|
for r.eventHistoryIndex < len(r.eventHistory) && r.cachedState.Revision < revision {
|
|
nextRequest, nextRevision, nextIndex := r.next()
|
|
newState, _ := r.cachedState.Step(nextRequest)
|
|
if newState.Revision != nextRevision {
|
|
return EtcdState{}, fmt.Errorf("model returned different revision than one present in event history, model: %d, event: %d", newState.Revision, nextRevision)
|
|
}
|
|
r.cachedState = &newState
|
|
r.eventHistoryIndex = nextIndex
|
|
}
|
|
if r.eventHistoryIndex > len(r.eventHistory) && r.cachedState.Revision < revision {
|
|
return EtcdState{}, fmt.Errorf("requested revision higher then available in even history, requested: %d, model: %d", revision, r.cachedState.Revision)
|
|
}
|
|
return *r.cachedState, nil
|
|
}
|
|
|
|
func (r *EtcdReplay) reset() {
|
|
state := freshEtcdState()
|
|
r.cachedState = &state
|
|
r.eventHistoryIndex = 0
|
|
}
|
|
|
|
func (r *EtcdReplay) next() (request EtcdRequest, revision int64, index int) {
|
|
revision = r.eventHistory[r.eventHistoryIndex].Revision
|
|
index = r.eventHistoryIndex
|
|
operations := []EtcdOperation{}
|
|
for index < len(r.eventHistory) && r.eventHistory[index].Revision == revision {
|
|
event := r.eventHistory[index]
|
|
switch event.Type {
|
|
case PutOperation:
|
|
operations = append(operations, EtcdOperation{
|
|
Type: event.Type,
|
|
Put: PutOptions{Key: event.Key, Value: event.Value},
|
|
})
|
|
case DeleteOperation:
|
|
operations = append(operations, EtcdOperation{
|
|
Type: event.Type,
|
|
Delete: DeleteOptions{Key: event.Key},
|
|
})
|
|
}
|
|
index++
|
|
}
|
|
return EtcdRequest{
|
|
Type: Txn,
|
|
Txn: &TxnRequest{
|
|
OperationsOnSuccess: operations,
|
|
},
|
|
}, revision, index
|
|
}
|
|
|
|
type WatchEvent struct {
|
|
PersistedEvent
|
|
PrevValue *ValueRevision
|
|
}
|
|
|
|
type PersistedEvent struct {
|
|
Event
|
|
Revision int64
|
|
IsCreate bool
|
|
}
|
|
|
|
type Event struct {
|
|
Type OperationType
|
|
Key string
|
|
Value ValueOrHash
|
|
}
|
|
|
|
func (e Event) Match(request WatchRequest) bool {
|
|
if request.WithPrefix {
|
|
return strings.HasPrefix(e.Key, request.Key)
|
|
}
|
|
return e.Key == request.Key
|
|
}
|
|
|
|
type WatchRequest struct {
|
|
Key string
|
|
Revision int64
|
|
WithPrefix bool
|
|
WithProgressNotify bool
|
|
WithPrevKV bool
|
|
}
|