2020-10-08 05:49:04 +00:00
|
|
|
package repl_util
|
|
|
|
|
|
|
|
import (
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/replication/source"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2020-10-08 05:49:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func CopyFromChunkViews(chunkViews []*filer.ChunkView, filerSource *source.FilerSource, writeFunc func(data []byte) error) error {
|
|
|
|
|
|
|
|
for _, chunk := range chunkViews {
|
|
|
|
|
|
|
|
fileUrls, err := filerSource.LookupFileId(chunk.FileId)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var writeErr error
|
2021-02-03 16:32:30 +00:00
|
|
|
var shouldRetry bool
|
2020-10-08 05:49:04 +00:00
|
|
|
|
|
|
|
for _, fileUrl := range fileUrls {
|
2022-02-28 18:07:06 +00:00
|
|
|
shouldRetry, err = util.ReadUrlAsStream(fileUrl, chunk.CipherKey, chunk.IsGzipped, chunk.IsFullChunk(), chunk.Offset, int(chunk.Size), func(data []byte) {
|
2020-10-08 05:49:04 +00:00
|
|
|
writeErr = writeFunc(data)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
glog.V(1).Infof("read from %s: %v", fileUrl, err)
|
|
|
|
} else if writeErr != nil {
|
|
|
|
glog.V(1).Infof("copy from %s: %v", fileUrl, writeErr)
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2021-02-03 16:32:30 +00:00
|
|
|
if shouldRetry && err != nil {
|
2020-10-08 05:49:04 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-02-03 16:32:30 +00:00
|
|
|
if writeErr != nil {
|
|
|
|
return writeErr
|
|
|
|
}
|
2020-10-08 05:49:04 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|