2016-05-20 23:48:47 -04:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2016 Minio, 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 main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
"path"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/skyrings/skyring-common/tools/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
// uploadInfo -
|
|
|
|
type uploadInfo struct {
|
|
|
|
UploadID string `json:"uploadId"`
|
|
|
|
Initiated time.Time `json:"initiated"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// uploadsV1 -
|
|
|
|
type uploadsV1 struct {
|
|
|
|
Version string `json:"version"`
|
|
|
|
Format string `json:"format"`
|
|
|
|
Uploads []uploadInfo `json:"uploadIds"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// byInitiatedTime is a collection satisfying sort.Interface.
|
|
|
|
type byInitiatedTime []uploadInfo
|
|
|
|
|
|
|
|
func (t byInitiatedTime) Len() int { return len(t) }
|
|
|
|
func (t byInitiatedTime) Swap(i, j int) { t[i], t[j] = t[j], t[i] }
|
|
|
|
func (t byInitiatedTime) Less(i, j int) bool {
|
2016-05-25 12:22:39 -04:00
|
|
|
return t[i].Initiated.Before(t[j].Initiated)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// AddUploadID - adds a new upload id in order of its initiated time.
|
|
|
|
func (u *uploadsV1) AddUploadID(uploadID string, initiated time.Time) {
|
|
|
|
u.Uploads = append(u.Uploads, uploadInfo{
|
|
|
|
UploadID: uploadID,
|
|
|
|
Initiated: initiated,
|
|
|
|
})
|
|
|
|
sort.Sort(byInitiatedTime(u.Uploads))
|
|
|
|
}
|
|
|
|
|
2016-05-26 06:15:01 -04:00
|
|
|
// Index - returns the index of matching the upload id.
|
|
|
|
func (u uploadsV1) Index(uploadID string) int {
|
2016-05-20 23:48:47 -04:00
|
|
|
for i, u := range u.Uploads {
|
|
|
|
if u.UploadID == uploadID {
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadFrom - read from implements io.ReaderFrom interface for unmarshalling uploads.
|
|
|
|
func (u *uploadsV1) ReadFrom(reader io.Reader) (n int64, err error) {
|
|
|
|
var buffer bytes.Buffer
|
|
|
|
n, err = buffer.ReadFrom(reader)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
err = json.Unmarshal(buffer.Bytes(), &u)
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteTo - write to implements io.WriterTo interface for marshalling uploads.
|
|
|
|
func (u uploadsV1) WriteTo(writer io.Writer) (n int64, err error) {
|
2016-05-24 16:35:43 -04:00
|
|
|
metadataBytes, err := json.Marshal(&u)
|
2016-05-20 23:48:47 -04:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
m, err := writer.Write(metadataBytes)
|
|
|
|
return int64(m), err
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// readUploadsJSON - get all the saved uploads JSON.
|
|
|
|
func readUploadsJSON(bucket, object string, storageDisks ...StorageAPI) (uploadIDs uploadsV1, err error) {
|
2016-05-20 23:48:47 -04:00
|
|
|
uploadJSONPath := path.Join(mpartMetaPrefix, bucket, object, uploadsJSONFile)
|
|
|
|
var errs = make([]error, len(storageDisks))
|
|
|
|
var uploads = make([]uploadsV1, len(storageDisks))
|
|
|
|
var wg = &sync.WaitGroup{}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Read `uploads.json` from all disks.
|
2016-05-20 23:48:47 -04:00
|
|
|
for index, disk := range storageDisks {
|
|
|
|
wg.Add(1)
|
2016-05-26 17:43:17 -04:00
|
|
|
// Read `uploads.json` in a routine.
|
2016-05-20 23:48:47 -04:00
|
|
|
go func(index int, disk StorageAPI) {
|
|
|
|
defer wg.Done()
|
|
|
|
r, rErr := disk.ReadFile(minioMetaBucket, uploadJSONPath, int64(0))
|
|
|
|
if rErr != nil {
|
|
|
|
errs[index] = rErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer r.Close()
|
|
|
|
_, rErr = uploads[index].ReadFrom(r)
|
|
|
|
if rErr != nil {
|
|
|
|
errs[index] = rErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
errs[index] = nil
|
|
|
|
}(index, disk)
|
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
|
|
|
|
// Wait for all the routines.
|
2016-05-20 23:48:47 -04:00
|
|
|
wg.Wait()
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Return for first error.
|
2016-05-20 23:48:47 -04:00
|
|
|
for _, err = range errs {
|
|
|
|
if err != nil {
|
|
|
|
return uploadsV1{}, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Do not know if it should pick the picks the first successful one and returns.
|
|
|
|
return uploads[0], nil
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// uploadUploadsJSON - update `uploads.json` with new uploadsJSON for all disks.
|
|
|
|
func updateUploadsJSON(bucket, object string, uploadsJSON uploadsV1, storageDisks ...StorageAPI) error {
|
2016-05-20 23:48:47 -04:00
|
|
|
uploadsPath := path.Join(mpartMetaPrefix, bucket, object, uploadsJSONFile)
|
|
|
|
var errs = make([]error, len(storageDisks))
|
|
|
|
var wg = &sync.WaitGroup{}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Update `uploads.json` for all the disks.
|
2016-05-20 23:48:47 -04:00
|
|
|
for index, disk := range storageDisks {
|
|
|
|
wg.Add(1)
|
2016-05-26 17:43:17 -04:00
|
|
|
// Update `uploads.json` in routine.
|
2016-05-20 23:48:47 -04:00
|
|
|
go func(index int, disk StorageAPI) {
|
|
|
|
defer wg.Done()
|
|
|
|
w, wErr := disk.CreateFile(minioMetaBucket, uploadsPath)
|
|
|
|
if wErr != nil {
|
|
|
|
errs[index] = wErr
|
|
|
|
return
|
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
_, wErr = uploadsJSON.WriteTo(w)
|
2016-05-20 23:48:47 -04:00
|
|
|
if wErr != nil {
|
|
|
|
errs[index] = wErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if wErr = w.Close(); wErr != nil {
|
|
|
|
if clErr := safeCloseAndRemove(w); clErr != nil {
|
|
|
|
errs[index] = clErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
errs[index] = wErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}(index, disk)
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Wait for all the routines to finish updating `uploads.json`
|
2016-05-20 23:48:47 -04:00
|
|
|
wg.Wait()
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Return for first error.
|
2016-05-20 23:48:47 -04:00
|
|
|
for _, err := range errs {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// newUploadsV1 - initialize new uploads v1.
|
|
|
|
func newUploadsV1(format string) uploadsV1 {
|
|
|
|
uploadIDs := uploadsV1{}
|
|
|
|
uploadIDs.Version = "1"
|
|
|
|
uploadIDs.Format = format
|
|
|
|
return uploadIDs
|
|
|
|
}
|
|
|
|
|
2016-05-20 23:48:47 -04:00
|
|
|
// writeUploadJSON - create `uploads.json` or update it with new uploadID.
|
2016-05-26 17:43:17 -04:00
|
|
|
func writeUploadJSON(bucket, object, uploadID string, initiated time.Time, storageDisks ...StorageAPI) (err error) {
|
2016-05-20 23:48:47 -04:00
|
|
|
uploadsPath := path.Join(mpartMetaPrefix, bucket, object, uploadsJSONFile)
|
|
|
|
tmpUploadsPath := path.Join(tmpMetaPrefix, bucket, object, uploadsJSONFile)
|
|
|
|
|
|
|
|
var errs = make([]error, len(storageDisks))
|
|
|
|
var wg = &sync.WaitGroup{}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
var uploadsJSON uploadsV1
|
|
|
|
uploadsJSON, err = readUploadsJSON(bucket, object, storageDisks...)
|
|
|
|
if err != nil {
|
|
|
|
// For any other errors.
|
|
|
|
if err != errFileNotFound {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(storageDisks) == 1 {
|
|
|
|
// Set uploads format to `fs` for single disk.
|
|
|
|
uploadsJSON = newUploadsV1("fs")
|
|
|
|
} else {
|
|
|
|
// Set uploads format to `xl` otherwise.
|
|
|
|
uploadsJSON = newUploadsV1("xl")
|
|
|
|
}
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
// Add a new upload id.
|
|
|
|
uploadsJSON.AddUploadID(uploadID, initiated)
|
2016-05-20 23:48:47 -04:00
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Update `uploads.json` on all disks.
|
2016-05-20 23:48:47 -04:00
|
|
|
for index, disk := range storageDisks {
|
|
|
|
wg.Add(1)
|
2016-05-26 17:43:17 -04:00
|
|
|
// Update `uploads.json` in a routine.
|
2016-05-20 23:48:47 -04:00
|
|
|
go func(index int, disk StorageAPI) {
|
|
|
|
defer wg.Done()
|
|
|
|
w, wErr := disk.CreateFile(minioMetaBucket, tmpUploadsPath)
|
|
|
|
if wErr != nil {
|
|
|
|
errs[index] = wErr
|
|
|
|
return
|
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
_, wErr = uploadsJSON.WriteTo(w)
|
2016-05-20 23:48:47 -04:00
|
|
|
if wErr != nil {
|
|
|
|
errs[index] = wErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if wErr = w.Close(); wErr != nil {
|
|
|
|
if clErr := safeCloseAndRemove(w); clErr != nil {
|
|
|
|
errs[index] = clErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
errs[index] = wErr
|
|
|
|
return
|
|
|
|
}
|
2016-05-24 16:35:43 -04:00
|
|
|
wErr = disk.RenameFile(minioMetaBucket, tmpUploadsPath, minioMetaBucket, uploadsPath)
|
2016-05-20 23:48:47 -04:00
|
|
|
if wErr != nil {
|
|
|
|
if dErr := disk.DeleteFile(minioMetaBucket, tmpUploadsPath); dErr != nil {
|
|
|
|
errs[index] = dErr
|
|
|
|
return
|
|
|
|
}
|
|
|
|
errs[index] = wErr
|
|
|
|
return
|
|
|
|
}
|
2016-05-24 16:35:43 -04:00
|
|
|
errs[index] = nil
|
2016-05-20 23:48:47 -04:00
|
|
|
}(index, disk)
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Wait for all the writes to finish.
|
2016-05-20 23:48:47 -04:00
|
|
|
wg.Wait()
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Return for first error encountered.
|
2016-05-20 23:48:47 -04:00
|
|
|
for _, err = range errs {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrapper which removes all the uploaded parts.
|
|
|
|
func cleanupUploadedParts(bucket, object, uploadID string, storageDisks ...StorageAPI) error {
|
|
|
|
var errs = make([]error, len(storageDisks))
|
|
|
|
var wg = &sync.WaitGroup{}
|
2016-05-26 17:43:17 -04:00
|
|
|
|
|
|
|
// Construct uploadIDPath.
|
|
|
|
uploadIDPath := path.Join(mpartMetaPrefix, bucket, object, uploadID)
|
|
|
|
|
|
|
|
// Cleanup uploadID for all disks.
|
2016-05-20 23:48:47 -04:00
|
|
|
for index, disk := range storageDisks {
|
|
|
|
wg.Add(1)
|
2016-05-26 17:43:17 -04:00
|
|
|
// Cleanup each uploadID in a routine.
|
2016-05-20 23:48:47 -04:00
|
|
|
go func(index int, disk StorageAPI) {
|
|
|
|
defer wg.Done()
|
2016-05-26 17:43:17 -04:00
|
|
|
err := cleanupDir(disk, minioMetaBucket, uploadIDPath)
|
2016-05-20 23:48:47 -04:00
|
|
|
if err != nil {
|
|
|
|
errs[index] = err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
errs[index] = nil
|
|
|
|
}(index, disk)
|
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
|
|
|
|
// Wait for all the cleanups to finish.
|
2016-05-20 23:48:47 -04:00
|
|
|
wg.Wait()
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// Return first error.
|
2016-05-20 23:48:47 -04:00
|
|
|
for _, err := range errs {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-26 17:43:17 -04:00
|
|
|
// listMultipartUploadIDs - list all the upload ids from a marker up to 'count'.
|
|
|
|
func listMultipartUploadIDs(bucketName, objectName, uploadIDMarker string, count int, disk StorageAPI) ([]uploadMetadata, bool, error) {
|
2016-05-25 12:22:39 -04:00
|
|
|
var uploads []uploadMetadata
|
2016-05-26 17:43:17 -04:00
|
|
|
// Read `uploads.json`.
|
|
|
|
uploadsJSON, err := readUploadsJSON(bucketName, objectName, disk)
|
2016-05-25 12:22:39 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, false, err
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-05-25 12:22:39 -04:00
|
|
|
index := 0
|
|
|
|
if uploadIDMarker != "" {
|
2016-05-26 17:43:17 -04:00
|
|
|
for ; index < len(uploadsJSON.Uploads); index++ {
|
|
|
|
if uploadsJSON.Uploads[index].UploadID == uploadIDMarker {
|
2016-05-25 12:22:39 -04:00
|
|
|
// Skip the uploadID as it would already be listed in previous listing.
|
|
|
|
index++
|
2016-05-20 23:48:47 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
for index < len(uploadsJSON.Uploads) {
|
2016-05-25 12:22:39 -04:00
|
|
|
uploads = append(uploads, uploadMetadata{
|
|
|
|
Object: objectName,
|
2016-05-26 17:43:17 -04:00
|
|
|
UploadID: uploadsJSON.Uploads[index].UploadID,
|
|
|
|
Initiated: uploadsJSON.Uploads[index].Initiated,
|
2016-05-25 12:22:39 -04:00
|
|
|
})
|
|
|
|
count--
|
|
|
|
index++
|
|
|
|
if count == 0 {
|
|
|
|
break
|
|
|
|
}
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
end := (index == len(uploadsJSON.Uploads))
|
|
|
|
return uploads, end, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns if the prefix is a multipart upload.
|
|
|
|
func (xl xlObjects) isMultipartUpload(bucket, prefix string) bool {
|
|
|
|
disk := xl.getRandomDisk() // Choose a random disk.
|
|
|
|
_, err := disk.StatFile(bucket, pathJoin(prefix, uploadsJSONFile))
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// listUploadsInfo - list all uploads info.
|
|
|
|
func (xl xlObjects) listUploadsInfo(prefixPath string) (uploadsInfo []uploadInfo, err error) {
|
|
|
|
disk := xl.getRandomDisk() // Choose a random disk on each attempt.
|
|
|
|
splitPrefixes := strings.SplitN(prefixPath, "/", 3)
|
|
|
|
uploadsJSON, err := readUploadsJSON(splitPrefixes[1], splitPrefixes[2], disk)
|
|
|
|
if err != nil {
|
|
|
|
if err == errFileNotFound {
|
|
|
|
return []uploadInfo{}, nil
|
|
|
|
}
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
uploadsInfo = uploadsJSON.Uploads
|
|
|
|
return uploadsInfo, nil
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// listMultipartUploadsCommon - lists all multipart uploads, common
|
|
|
|
// function for both object layers.
|
|
|
|
func (xl xlObjects) listMultipartUploadsCommon(bucket, prefix, keyMarker, uploadIDMarker, delimiter string, maxUploads int) (ListMultipartsInfo, error) {
|
|
|
|
result := ListMultipartsInfo{}
|
|
|
|
// Verify if bucket is valid.
|
|
|
|
if !IsValidBucketName(bucket) {
|
|
|
|
return ListMultipartsInfo{}, BucketNameInvalid{Bucket: bucket}
|
|
|
|
}
|
|
|
|
if !xl.isBucketExist(bucket) {
|
|
|
|
return ListMultipartsInfo{}, BucketNotFound{Bucket: bucket}
|
|
|
|
}
|
|
|
|
if !IsValidObjectPrefix(prefix) {
|
|
|
|
return ListMultipartsInfo{}, ObjectNameInvalid{Bucket: bucket, Object: prefix}
|
|
|
|
}
|
|
|
|
// Verify if delimiter is anything other than '/', which we do not support.
|
|
|
|
if delimiter != "" && delimiter != slashSeparator {
|
|
|
|
return ListMultipartsInfo{}, UnsupportedDelimiter{
|
|
|
|
Delimiter: delimiter,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Verify if marker has prefix.
|
|
|
|
if keyMarker != "" && !strings.HasPrefix(keyMarker, prefix) {
|
|
|
|
return ListMultipartsInfo{}, InvalidMarkerPrefixCombination{
|
|
|
|
Marker: keyMarker,
|
|
|
|
Prefix: prefix,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if uploadIDMarker != "" {
|
|
|
|
if strings.HasSuffix(keyMarker, slashSeparator) {
|
|
|
|
return result, InvalidUploadIDKeyCombination{
|
|
|
|
UploadIDMarker: uploadIDMarker,
|
|
|
|
KeyMarker: keyMarker,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
id, err := uuid.Parse(uploadIDMarker)
|
|
|
|
if err != nil {
|
|
|
|
return result, err
|
|
|
|
}
|
|
|
|
if id.IsZero() {
|
|
|
|
return result, MalformedUploadID{
|
|
|
|
UploadID: uploadIDMarker,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
recursive := true
|
|
|
|
if delimiter == slashSeparator {
|
|
|
|
recursive = false
|
|
|
|
}
|
|
|
|
|
|
|
|
result.IsTruncated = true
|
|
|
|
result.MaxUploads = maxUploads
|
2016-05-25 12:22:39 -04:00
|
|
|
result.KeyMarker = keyMarker
|
|
|
|
result.Prefix = prefix
|
|
|
|
result.Delimiter = delimiter
|
2016-05-20 23:48:47 -04:00
|
|
|
|
|
|
|
// Not using path.Join() as it strips off the trailing '/'.
|
2016-05-25 12:22:39 -04:00
|
|
|
multipartPrefixPath := pathJoin(mpartMetaPrefix, bucket, prefix)
|
2016-05-20 23:48:47 -04:00
|
|
|
if prefix == "" {
|
|
|
|
// Should have a trailing "/" if prefix is ""
|
|
|
|
// For ex. multipartPrefixPath should be "multipart/bucket/" if prefix is ""
|
|
|
|
multipartPrefixPath += slashSeparator
|
|
|
|
}
|
|
|
|
multipartMarkerPath := ""
|
|
|
|
if keyMarker != "" {
|
2016-05-25 12:22:39 -04:00
|
|
|
multipartMarkerPath = pathJoin(mpartMetaPrefix, bucket, keyMarker)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-05-25 12:22:39 -04:00
|
|
|
var uploads []uploadMetadata
|
|
|
|
var err error
|
|
|
|
var eof bool
|
|
|
|
if uploadIDMarker != "" {
|
2016-05-26 17:43:17 -04:00
|
|
|
uploads, _, err = listMultipartUploadIDs(bucket, keyMarker, uploadIDMarker, maxUploads, xl.getRandomDisk())
|
2016-05-25 12:22:39 -04:00
|
|
|
if err != nil {
|
|
|
|
return ListMultipartsInfo{}, err
|
|
|
|
}
|
|
|
|
maxUploads = maxUploads - len(uploads)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
2016-05-25 12:22:39 -04:00
|
|
|
if maxUploads > 0 {
|
|
|
|
walker := xl.lookupTreeWalkXL(listParams{minioMetaBucket, recursive, multipartMarkerPath, multipartPrefixPath})
|
|
|
|
if walker == nil {
|
|
|
|
walker = xl.startTreeWalkXL(minioMetaBucket, multipartPrefixPath, multipartMarkerPath, recursive, xl.isMultipartUpload)
|
|
|
|
}
|
|
|
|
for maxUploads > 0 {
|
|
|
|
walkResult, ok := <-walker.ch
|
|
|
|
if !ok {
|
|
|
|
// Closed channel.
|
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
// For any walk error return right away.
|
|
|
|
if walkResult.err != nil {
|
|
|
|
// File not found or Disk not found is a valid case.
|
|
|
|
if walkResult.err == errFileNotFound || walkResult.err == errDiskNotFound {
|
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
return ListMultipartsInfo{}, err
|
|
|
|
}
|
|
|
|
entry := strings.TrimPrefix(walkResult.entry, retainSlash(pathJoin(mpartMetaPrefix, bucket)))
|
|
|
|
if strings.HasSuffix(walkResult.entry, slashSeparator) {
|
|
|
|
uploads = append(uploads, uploadMetadata{
|
|
|
|
Object: entry,
|
|
|
|
})
|
|
|
|
maxUploads--
|
|
|
|
if maxUploads == 0 {
|
|
|
|
if walkResult.end {
|
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
var newUploads []uploadMetadata
|
2016-05-25 12:22:39 -04:00
|
|
|
var end bool
|
|
|
|
uploadIDMarker = ""
|
2016-05-26 17:43:17 -04:00
|
|
|
newUploads, end, err = listMultipartUploadIDs(bucket, entry, uploadIDMarker, maxUploads, xl.getRandomDisk())
|
2016-05-25 12:22:39 -04:00
|
|
|
if err != nil {
|
|
|
|
return ListMultipartsInfo{}, err
|
|
|
|
}
|
2016-05-26 17:43:17 -04:00
|
|
|
uploads = append(uploads, newUploads...)
|
|
|
|
maxUploads -= len(newUploads)
|
2016-05-25 12:22:39 -04:00
|
|
|
if walkResult.end && end {
|
|
|
|
eof = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Loop through all the received uploads fill in the multiparts result.
|
|
|
|
for _, upload := range uploads {
|
2016-05-20 23:48:47 -04:00
|
|
|
var objectName string
|
|
|
|
var uploadID string
|
2016-05-25 12:22:39 -04:00
|
|
|
if strings.HasSuffix(upload.Object, slashSeparator) {
|
2016-05-20 23:48:47 -04:00
|
|
|
// All directory entries are common prefixes.
|
|
|
|
uploadID = "" // Upload ids are empty for CommonPrefixes.
|
2016-05-25 12:22:39 -04:00
|
|
|
objectName = upload.Object
|
2016-05-20 23:48:47 -04:00
|
|
|
result.CommonPrefixes = append(result.CommonPrefixes, objectName)
|
|
|
|
} else {
|
2016-05-25 12:22:39 -04:00
|
|
|
uploadID = upload.UploadID
|
|
|
|
objectName = upload.Object
|
|
|
|
result.Uploads = append(result.Uploads, upload)
|
2016-05-20 23:48:47 -04:00
|
|
|
}
|
|
|
|
result.NextKeyMarker = objectName
|
|
|
|
result.NextUploadIDMarker = uploadID
|
|
|
|
}
|
|
|
|
result.IsTruncated = !eof
|
|
|
|
if !result.IsTruncated {
|
|
|
|
result.NextKeyMarker = ""
|
|
|
|
result.NextUploadIDMarker = ""
|
|
|
|
}
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// isUploadIDExists - verify if a given uploadID exists and is valid.
|
|
|
|
func (xl xlObjects) isUploadIDExists(bucket, object, uploadID string) bool {
|
|
|
|
uploadIDPath := path.Join(mpartMetaPrefix, bucket, object, uploadID)
|
|
|
|
return xl.isObject(minioMetaBucket, uploadIDPath)
|
|
|
|
}
|
2016-05-28 16:23:08 -04:00
|
|
|
|
|
|
|
// Removes part given by partName belonging to a mulitpart upload from minioMetaBucket
|
|
|
|
func (xl xlObjects) removeObjectPart(bucket, object, uploadID, partName string) {
|
|
|
|
curpartPath := path.Join(mpartMetaPrefix, bucket, object, uploadID, partName)
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
for i, disk := range xl.storageDisks {
|
|
|
|
wg.Add(1)
|
|
|
|
go func(index int, disk StorageAPI) {
|
|
|
|
defer wg.Done()
|
|
|
|
// Ignoring failure to remove parts that weren't present in CompleteMultipartUpload
|
|
|
|
// requests. xl.json is the authoritative source of truth on which parts constitute
|
|
|
|
// the object. The presence of parts that don't belong in the object doesn't affect correctness.
|
|
|
|
_ = disk.DeleteFile(minioMetaBucket, curpartPath)
|
|
|
|
}(i, disk)
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
}
|