2023-08-29 14:02:34 +02:00
|
|
|
// Package multipart implements generic multipart uploading.
|
2023-08-15 21:38:02 +02:00
|
|
|
package multipart
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/rclone/rclone/fs"
|
2023-08-28 00:10:58 +02:00
|
|
|
"github.com/rclone/rclone/fs/accounting"
|
2023-08-15 21:38:02 +02:00
|
|
|
"github.com/rclone/rclone/lib/atexit"
|
|
|
|
"github.com/rclone/rclone/lib/pacer"
|
|
|
|
"github.com/rclone/rclone/lib/pool"
|
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2024-03-13 17:34:42 +01:00
|
|
|
BufferSize = 1024 * 1024 // BufferSize is the default size of the pages used in the reader
|
2023-08-15 21:38:02 +02:00
|
|
|
bufferCacheSize = 64 // max number of buffers to keep in cache
|
|
|
|
bufferCacheFlushTime = 5 * time.Second // flush the cached buffers after this long
|
|
|
|
)
|
|
|
|
|
|
|
|
// bufferPool is a global pool of buffers
|
|
|
|
var (
|
|
|
|
bufferPool *pool.Pool
|
|
|
|
bufferPoolOnce sync.Once
|
|
|
|
)
|
|
|
|
|
|
|
|
// get a buffer pool
|
|
|
|
func getPool() *pool.Pool {
|
|
|
|
bufferPoolOnce.Do(func() {
|
|
|
|
ci := fs.GetConfig(context.Background())
|
|
|
|
// Initialise the buffer pool when used
|
2024-03-13 17:34:42 +01:00
|
|
|
bufferPool = pool.New(bufferCacheFlushTime, BufferSize, bufferCacheSize, ci.UseMmap)
|
2023-08-15 21:38:02 +02:00
|
|
|
})
|
|
|
|
return bufferPool
|
|
|
|
}
|
|
|
|
|
2023-08-29 14:02:34 +02:00
|
|
|
// NewRW gets a pool.RW using the multipart pool
|
2023-08-15 21:38:02 +02:00
|
|
|
func NewRW() *pool.RW {
|
|
|
|
return pool.NewRW(getPool())
|
|
|
|
}
|
|
|
|
|
|
|
|
// UploadMultipartOptions options for the generic multipart upload
|
|
|
|
type UploadMultipartOptions struct {
|
2023-09-01 18:25:15 +02:00
|
|
|
Open fs.OpenChunkWriter // thing to call OpenChunkWriter on
|
|
|
|
OpenOptions []fs.OpenOption // options for OpenChunkWriter
|
2023-08-15 21:38:02 +02:00
|
|
|
}
|
|
|
|
|
2023-08-29 14:02:34 +02:00
|
|
|
// UploadMultipart does a generic multipart upload from src using f as OpenChunkWriter.
|
2023-08-15 21:38:02 +02:00
|
|
|
//
|
|
|
|
// in is read seqentially and chunks from it are uploaded in parallel.
|
|
|
|
//
|
|
|
|
// It returns the chunkWriter used in case the caller needs to extract any private info from it.
|
|
|
|
func UploadMultipart(ctx context.Context, src fs.ObjectInfo, in io.Reader, opt UploadMultipartOptions) (chunkWriterOut fs.ChunkWriter, err error) {
|
2023-09-01 18:25:15 +02:00
|
|
|
info, chunkWriter, err := opt.Open.OpenChunkWriter(ctx, src.Remote(), src, opt.OpenOptions...)
|
2023-08-15 21:38:02 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("multipart upload failed to initialise: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// make concurrency machinery
|
2023-09-01 18:25:15 +02:00
|
|
|
concurrency := info.Concurrency
|
2023-08-15 21:38:02 +02:00
|
|
|
if concurrency < 1 {
|
|
|
|
concurrency = 1
|
|
|
|
}
|
|
|
|
tokens := pacer.NewTokenDispenser(concurrency)
|
|
|
|
|
|
|
|
uploadCtx, cancel := context.WithCancel(ctx)
|
2023-09-01 18:25:15 +02:00
|
|
|
defer cancel()
|
2023-08-15 21:38:02 +02:00
|
|
|
defer atexit.OnError(&err, func() {
|
|
|
|
cancel()
|
2023-09-01 18:25:15 +02:00
|
|
|
if info.LeavePartsOnError {
|
2023-08-15 21:38:02 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
fs.Debugf(src, "Cancelling multipart upload")
|
|
|
|
errCancel := chunkWriter.Abort(ctx)
|
|
|
|
if errCancel != nil {
|
|
|
|
fs.Debugf(src, "Failed to cancel multipart upload: %v", errCancel)
|
|
|
|
}
|
|
|
|
})()
|
|
|
|
|
|
|
|
var (
|
2023-09-01 18:25:15 +02:00
|
|
|
g, gCtx = errgroup.WithContext(uploadCtx)
|
|
|
|
finished = false
|
|
|
|
off int64
|
|
|
|
size = src.Size()
|
|
|
|
chunkSize = info.ChunkSize
|
2023-08-15 21:38:02 +02:00
|
|
|
)
|
|
|
|
|
2023-08-28 00:10:58 +02:00
|
|
|
// Do the accounting manually
|
|
|
|
in, acc := accounting.UnWrapAccounting(in)
|
|
|
|
|
2023-08-15 21:38:02 +02:00
|
|
|
for partNum := int64(0); !finished; partNum++ {
|
|
|
|
// Get a block of memory from the pool and token which limits concurrency.
|
|
|
|
tokens.Get()
|
|
|
|
rw := NewRW()
|
2023-08-28 00:10:58 +02:00
|
|
|
if acc != nil {
|
|
|
|
rw.SetAccounting(acc.AccountRead)
|
|
|
|
}
|
2023-08-15 21:38:02 +02:00
|
|
|
|
|
|
|
free := func() {
|
|
|
|
// return the memory and token
|
|
|
|
_ = rw.Close() // Can't return an error
|
|
|
|
tokens.Put()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fail fast, in case an errgroup managed function returns an error
|
|
|
|
// gCtx is cancelled. There is no point in uploading all the other parts.
|
|
|
|
if gCtx.Err() != nil {
|
|
|
|
free()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the chunk
|
|
|
|
var n int64
|
|
|
|
n, err = io.CopyN(rw, in, chunkSize)
|
|
|
|
if err == io.EOF {
|
|
|
|
if n == 0 && partNum != 0 { // end if no data and if not first chunk
|
|
|
|
free()
|
|
|
|
break
|
|
|
|
}
|
|
|
|
finished = true
|
|
|
|
} else if err != nil {
|
|
|
|
free()
|
|
|
|
return nil, fmt.Errorf("multipart upload: failed to read source: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
partNum := partNum
|
|
|
|
partOff := off
|
|
|
|
off += n
|
|
|
|
g.Go(func() (err error) {
|
|
|
|
defer free()
|
|
|
|
fs.Debugf(src, "multipart upload: starting chunk %d size %v offset %v/%v", partNum, fs.SizeSuffix(n), fs.SizeSuffix(partOff), fs.SizeSuffix(size))
|
|
|
|
_, err = chunkWriter.WriteChunk(gCtx, int(partNum), rw)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
err = g.Wait()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = chunkWriter.Close(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("multipart upload: failed to finalise: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return chunkWriter, nil
|
|
|
|
}
|