2023-04-04 13:52:24 -04:00
|
|
|
// Copyright (c) 2015-2023 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
xnet "github.com/minio/pkg/net"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
retryInterval = 3 * time.Second
|
|
|
|
)
|
|
|
|
|
2023-05-09 00:20:31 -04:00
|
|
|
type logger = func(ctx context.Context, err error, id string, errKind ...interface{})
|
|
|
|
|
2023-04-04 13:52:24 -04:00
|
|
|
// ErrNotConnected - indicates that the target connection is not active.
|
|
|
|
var ErrNotConnected = errors.New("not connected to target server/service")
|
|
|
|
|
|
|
|
// Target - store target interface
|
|
|
|
type Target interface {
|
|
|
|
Name() string
|
2023-05-09 00:20:31 -04:00
|
|
|
SendFromStore(key string) error
|
2023-04-04 13:52:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Store - Used to persist items.
|
|
|
|
type Store[I any] interface {
|
|
|
|
Put(item I) error
|
|
|
|
Get(key string) (I, error)
|
|
|
|
Len() int
|
|
|
|
List() ([]string, error)
|
|
|
|
Del(key string) error
|
|
|
|
Open() error
|
|
|
|
Extension() string
|
|
|
|
}
|
|
|
|
|
|
|
|
// replayItems - Reads the items from the store and replays.
|
2023-05-17 14:10:33 -04:00
|
|
|
func replayItems[I any](store Store[I], doneCh <-chan struct{}, log logger, id string) <-chan string {
|
2023-04-04 13:52:24 -04:00
|
|
|
itemKeyCh := make(chan string)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer close(itemKeyCh)
|
|
|
|
|
|
|
|
retryTicker := time.NewTicker(retryInterval)
|
|
|
|
defer retryTicker.Stop()
|
|
|
|
|
|
|
|
for {
|
|
|
|
names, err := store.List()
|
|
|
|
if err != nil {
|
2023-05-17 14:10:33 -04:00
|
|
|
log(context.Background(), fmt.Errorf("store.List() failed with: %w", err), id)
|
2023-04-04 13:52:24 -04:00
|
|
|
} else {
|
|
|
|
for _, name := range names {
|
|
|
|
select {
|
|
|
|
case itemKeyCh <- strings.TrimSuffix(name, store.Extension()):
|
|
|
|
// Get next key.
|
|
|
|
case <-doneCh:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-retryTicker.C:
|
|
|
|
case <-doneCh:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return itemKeyCh
|
|
|
|
}
|
|
|
|
|
|
|
|
// sendItems - Reads items from the store and re-plays.
|
2023-05-09 00:20:31 -04:00
|
|
|
func sendItems(target Target, itemKeyCh <-chan string, doneCh <-chan struct{}, logger logger) {
|
2023-04-04 13:52:24 -04:00
|
|
|
retryTicker := time.NewTicker(retryInterval)
|
|
|
|
defer retryTicker.Stop()
|
|
|
|
|
|
|
|
send := func(itemKey string) bool {
|
|
|
|
for {
|
2023-05-09 00:20:31 -04:00
|
|
|
err := target.SendFromStore(itemKey)
|
2023-04-04 13:52:24 -04:00
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != ErrNotConnected && !xnet.IsConnResetErr(err) {
|
2023-05-09 00:20:31 -04:00
|
|
|
logger(context.Background(),
|
|
|
|
fmt.Errorf("target.SendFromStore() failed with '%w'", err),
|
2023-04-04 13:52:24 -04:00
|
|
|
target.Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrying after 3secs back-off
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-retryTicker.C:
|
|
|
|
case <-doneCh:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case itemKey, ok := <-itemKeyCh:
|
|
|
|
if !ok {
|
|
|
|
// closed channel.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !send(itemKey) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
case <-doneCh:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// StreamItems reads the keys from the store and replays the corresponding item to the target.
|
2023-05-09 00:20:31 -04:00
|
|
|
func StreamItems[I any](store Store[I], target Target, doneCh <-chan struct{}, logger logger) {
|
2023-04-04 13:52:24 -04:00
|
|
|
go func() {
|
|
|
|
// Replays the items from the store.
|
2023-05-09 00:20:31 -04:00
|
|
|
itemKeyCh := replayItems(store, doneCh, logger, target.Name())
|
2023-04-04 13:52:24 -04:00
|
|
|
// Send items from the store.
|
2023-05-09 00:20:31 -04:00
|
|
|
sendItems(target, itemKeyCh, doneCh, logger)
|
2023-04-04 13:52:24 -04:00
|
|
|
}()
|
|
|
|
}
|