2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 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/>.
|
2020-10-28 12:18:35 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-10-30 12:33:16 -04:00
|
|
|
"errors"
|
2021-02-11 13:22:03 -05:00
|
|
|
"fmt"
|
2020-10-28 12:18:35 -04:00
|
|
|
"io"
|
2021-02-11 13:22:03 -05:00
|
|
|
"os"
|
2021-02-26 12:52:27 -05:00
|
|
|
pathutil "path"
|
2021-01-13 12:44:11 -05:00
|
|
|
"strings"
|
2020-10-28 12:18:35 -04:00
|
|
|
"sync"
|
2020-11-18 13:28:22 -05:00
|
|
|
"time"
|
2020-10-28 12:18:35 -04:00
|
|
|
|
2024-01-28 13:04:17 -05:00
|
|
|
xioutil "github.com/minio/minio/internal/ioutil"
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/logger"
|
2020-10-28 12:18:35 -04:00
|
|
|
)
|
|
|
|
|
2021-02-11 13:22:03 -05:00
|
|
|
func renameAllBucketMetacache(epPath string) error {
|
|
|
|
// Rename all previous `.minio.sys/buckets/<bucketname>/.metacache` to
|
|
|
|
// to `.minio.sys/tmp/` for deletion.
|
2021-02-17 18:34:42 -05:00
|
|
|
return readDirFn(pathJoin(epPath, minioMetaBucket, bucketMetaPrefix), func(name string, typ os.FileMode) error {
|
2021-02-11 13:22:03 -05:00
|
|
|
if typ == os.ModeDir {
|
2021-02-26 12:52:27 -05:00
|
|
|
tmpMetacacheOld := pathutil.Join(epPath, minioMetaTmpDeletedBucket, mustGetUUID())
|
2021-02-11 13:22:03 -05:00
|
|
|
if err := renameAll(pathJoin(epPath, minioMetaBucket, metacachePrefixForID(name, slashSeparator)),
|
2023-09-13 11:14:36 -04:00
|
|
|
tmpMetacacheOld, epPath); err != nil && err != errFileNotFound {
|
2021-02-11 13:22:03 -05:00
|
|
|
return fmt.Errorf("unable to rename (%s -> %s) %w",
|
|
|
|
pathJoin(epPath, minioMetaBucket+metacachePrefixForID(minioMetaBucket, slashSeparator)),
|
|
|
|
tmpMetacacheOld,
|
|
|
|
osErrToFileErr(err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-10-28 12:18:35 -04:00
|
|
|
// listPath will return the requested entries.
|
|
|
|
// If no more entries are in the listing io.EOF is returned,
|
|
|
|
// otherwise nil or an unexpected error is returned.
|
|
|
|
// The listPathOptions given will be checked and modified internally.
|
|
|
|
// Required important fields are Bucket, Prefix, Separator.
|
|
|
|
// Other important fields are Limit, Marker.
|
|
|
|
// List ID always derived from the Marker.
|
2021-07-05 18:34:41 -04:00
|
|
|
func (z *erasureServerPools) listPath(ctx context.Context, o *listPathOptions) (entries metaCacheEntriesSorted, err error) {
|
2024-01-30 15:43:25 -05:00
|
|
|
if err := checkListObjsArgs(ctx, o.Bucket, o.Prefix, o.Marker); err != nil {
|
2020-10-28 12:18:35 -04:00
|
|
|
return entries, err
|
|
|
|
}
|
2024-01-30 15:43:25 -05:00
|
|
|
|
2023-09-25 11:13:08 -04:00
|
|
|
// Marker points to before the prefix, just ignore it.
|
|
|
|
if o.Marker < o.Prefix {
|
|
|
|
o.Marker = ""
|
|
|
|
}
|
2020-10-28 12:18:35 -04:00
|
|
|
|
|
|
|
// Marker is set validate pre-condition.
|
|
|
|
if o.Marker != "" && o.Prefix != "" {
|
|
|
|
// Marker not common with prefix is not implemented. Send an empty response
|
|
|
|
if !HasPrefix(o.Marker, o.Prefix) {
|
|
|
|
return entries, io.EOF
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// With max keys of zero we have reached eof, return right here.
|
|
|
|
if o.Limit == 0 {
|
|
|
|
return entries, io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
// For delimiter and prefix as '/' we do not list anything at all
|
|
|
|
// along // with the prefix. On a flat namespace with 'prefix'
|
|
|
|
// as '/' we don't have any entries, since all the keys are
|
|
|
|
// of form 'keyName/...'
|
2021-01-13 12:44:11 -05:00
|
|
|
if strings.HasPrefix(o.Prefix, SlashSeparator) {
|
2020-10-28 12:18:35 -04:00
|
|
|
return entries, io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
// If delimiter is slashSeparator we must return directories of
|
|
|
|
// the non-recursive scan unless explicitly requested.
|
|
|
|
o.IncludeDirectories = o.Separator == slashSeparator
|
|
|
|
if (o.Separator == slashSeparator || o.Separator == "") && !o.Recursive {
|
|
|
|
o.Recursive = o.Separator != slashSeparator
|
|
|
|
o.Separator = slashSeparator
|
|
|
|
} else {
|
|
|
|
// Default is recursive, if delimiter is set then list non recursive.
|
|
|
|
o.Recursive = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decode and get the optional list id from the marker.
|
2021-07-05 18:34:41 -04:00
|
|
|
o.parseMarker()
|
2023-02-10 13:48:39 -05:00
|
|
|
if o.BaseDir == "" {
|
|
|
|
o.BaseDir = baseDirFromPrefix(o.Prefix)
|
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
o.Transient = o.Transient || isReservedOrInvalidBucket(o.Bucket, false)
|
2021-08-17 10:43:24 -04:00
|
|
|
o.SetFilter()
|
2021-07-05 18:34:41 -04:00
|
|
|
if o.Transient {
|
|
|
|
o.Create = false
|
2020-12-15 14:25:36 -05:00
|
|
|
}
|
|
|
|
|
2021-07-05 18:34:41 -04:00
|
|
|
// We have 2 cases:
|
|
|
|
// 1) Cold listing, just list.
|
|
|
|
// 2) Returning, but with no id. Start async listing.
|
|
|
|
// 3) Returning, with ID, stream from list.
|
|
|
|
//
|
2020-10-28 12:18:35 -04:00
|
|
|
// If we don't have a list id we must ask the server if it has a cache or create a new.
|
2021-07-05 18:34:41 -04:00
|
|
|
if o.ID != "" && !o.Transient {
|
|
|
|
// Create or ping with handout...
|
2022-03-25 06:41:31 -04:00
|
|
|
rpc := globalNotificationSys.restClientFromHash(pathJoin(o.Bucket, o.Prefix))
|
2021-07-05 18:34:41 -04:00
|
|
|
var c *metacache
|
|
|
|
if rpc == nil {
|
|
|
|
resp := localMetacacheMgr.getBucket(ctx, o.Bucket).findCache(*o)
|
|
|
|
c = &resp
|
|
|
|
} else {
|
2022-08-10 10:35:29 -04:00
|
|
|
rctx, cancel := context.WithTimeout(ctx, 5*time.Second)
|
|
|
|
c, err = rpc.GetMetacacheListing(rctx, *o)
|
|
|
|
cancel()
|
2021-07-05 18:34:41 -04:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, context.Canceled) {
|
|
|
|
// Context is canceled, return at once.
|
|
|
|
// request canceled, no entries to return
|
|
|
|
return entries, io.EOF
|
|
|
|
}
|
|
|
|
if !errors.Is(err, context.DeadlineExceeded) {
|
2023-08-15 10:45:25 -04:00
|
|
|
// Report error once per bucket, but continue listing.
|
|
|
|
logger.LogOnceIf(ctx, err, "GetMetacacheListing:"+o.Bucket)
|
2021-07-05 18:34:41 -04:00
|
|
|
}
|
2021-02-25 01:24:38 -05:00
|
|
|
o.Transient = true
|
2021-07-05 18:34:41 -04:00
|
|
|
o.Create = false
|
|
|
|
o.ID = mustGetUUID()
|
|
|
|
} else {
|
|
|
|
if c.fileNotFound {
|
|
|
|
// No cache found, no entries found.
|
|
|
|
return entries, io.EOF
|
|
|
|
}
|
|
|
|
if c.status == scanStateError || c.status == scanStateNone {
|
|
|
|
o.ID = ""
|
|
|
|
o.Create = false
|
|
|
|
o.debugln("scan status", c.status, " - waiting a roundtrip to create")
|
|
|
|
} else {
|
|
|
|
// Continue listing
|
|
|
|
o.ID = c.id
|
2021-09-08 14:06:45 -04:00
|
|
|
go func(meta metacache) {
|
|
|
|
// Continuously update while we wait.
|
|
|
|
t := time.NewTicker(metacacheMaxClientWait / 10)
|
|
|
|
defer t.Stop()
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
// Request is done, stop updating.
|
|
|
|
return
|
|
|
|
case <-t.C:
|
|
|
|
meta.lastHandout = time.Now()
|
|
|
|
meta, _ = rpc.UpdateMetacacheListing(ctx, meta)
|
|
|
|
}
|
|
|
|
}(*c)
|
2021-07-05 18:34:41 -04:00
|
|
|
}
|
2020-11-03 15:47:52 -05:00
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if o.ID != "" && !o.Transient {
|
|
|
|
// We have an existing list ID, continue streaming.
|
|
|
|
if o.Create {
|
|
|
|
o.debugln("Creating", o)
|
|
|
|
entries, err = z.listAndSave(ctx, o)
|
|
|
|
if err == nil || err == io.EOF {
|
|
|
|
return entries, err
|
|
|
|
}
|
|
|
|
entries.truncate(0)
|
2020-10-28 12:18:35 -04:00
|
|
|
} else {
|
2021-07-05 18:34:41 -04:00
|
|
|
if o.pool < len(z.serverPools) && o.set < len(z.serverPools[o.pool].sets) {
|
|
|
|
o.debugln("Resuming", o)
|
|
|
|
entries, err = z.serverPools[o.pool].sets[o.set].streamMetadataParts(ctx, *o)
|
2021-08-13 14:39:27 -04:00
|
|
|
entries.reuse = true // We read from stream and are not sharing results.
|
2021-07-05 18:34:41 -04:00
|
|
|
if err == nil {
|
|
|
|
return entries, nil
|
2020-11-18 13:28:22 -05:00
|
|
|
}
|
2020-10-28 12:18:35 -04:00
|
|
|
} else {
|
2021-07-05 18:34:41 -04:00
|
|
|
err = fmt.Errorf("invalid pool/set")
|
|
|
|
o.pool, o.set = 0, 0
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
if IsErr(err, []error{
|
|
|
|
nil,
|
|
|
|
context.Canceled,
|
|
|
|
context.DeadlineExceeded,
|
|
|
|
// io.EOF is expected and should be returned but no need to log it.
|
|
|
|
io.EOF,
|
|
|
|
}...) {
|
|
|
|
// Expected good errors we don't need to return error.
|
|
|
|
return entries, err
|
|
|
|
}
|
|
|
|
entries.truncate(0)
|
|
|
|
go func() {
|
2022-03-25 06:41:31 -04:00
|
|
|
rpc := globalNotificationSys.restClientFromHash(pathJoin(o.Bucket, o.Prefix))
|
2021-12-15 12:19:11 -05:00
|
|
|
if rpc != nil {
|
|
|
|
ctx, cancel := context.WithTimeout(GlobalContext, 5*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
c, err := rpc.GetMetacacheListing(ctx, *o)
|
|
|
|
if err == nil {
|
|
|
|
c.error = "no longer used"
|
|
|
|
c.status = scanStateError
|
|
|
|
rpc.UpdateMetacacheListing(ctx, *c)
|
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
o.ID = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do listing in-place.
|
|
|
|
// Create output for our results.
|
|
|
|
// Create filter for results.
|
|
|
|
o.debugln("Raw List", o)
|
|
|
|
filterCh := make(chan metaCacheEntry, o.Limit)
|
|
|
|
listCtx, cancelList := context.WithCancel(ctx)
|
2021-08-16 14:59:16 -04:00
|
|
|
filteredResults := o.gatherResults(listCtx, filterCh)
|
2021-07-05 18:34:41 -04:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(1)
|
|
|
|
var listErr error
|
|
|
|
|
|
|
|
go func(o listPathOptions) {
|
|
|
|
defer wg.Done()
|
2022-09-09 11:13:06 -04:00
|
|
|
o.StopDiskAtLimit = true
|
2021-07-05 18:34:41 -04:00
|
|
|
listErr = z.listMerged(listCtx, o, filterCh)
|
|
|
|
o.debugln("listMerged returned with", listErr)
|
|
|
|
}(*o)
|
|
|
|
|
|
|
|
entries, err = filteredResults()
|
|
|
|
cancelList()
|
|
|
|
wg.Wait()
|
|
|
|
if listErr != nil && !errors.Is(listErr, context.Canceled) {
|
|
|
|
return entries, listErr
|
|
|
|
}
|
2021-08-13 14:39:27 -04:00
|
|
|
entries.reuse = true
|
2021-07-05 18:34:41 -04:00
|
|
|
truncated := entries.len() > o.Limit || err == nil
|
|
|
|
entries.truncate(o.Limit)
|
|
|
|
if !o.Transient && truncated {
|
|
|
|
if o.ID == "" {
|
|
|
|
entries.listID = mustGetUUID()
|
|
|
|
} else {
|
|
|
|
entries.listID = o.ID
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
if !truncated {
|
|
|
|
return entries, io.EOF
|
|
|
|
}
|
|
|
|
return entries, nil
|
|
|
|
}
|
2020-10-28 12:18:35 -04:00
|
|
|
|
2021-07-05 18:34:41 -04:00
|
|
|
// listMerged will list across all sets and return a merged results stream.
|
|
|
|
// The result channel is closed when no more results are expected.
|
|
|
|
func (z *erasureServerPools) listMerged(ctx context.Context, o listPathOptions, results chan<- metaCacheEntry) error {
|
2020-10-28 12:18:35 -04:00
|
|
|
var mu sync.Mutex
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
var errs []error
|
|
|
|
allAtEOF := true
|
2021-07-05 18:34:41 -04:00
|
|
|
var inputs []chan metaCacheEntry
|
2020-10-28 12:18:35 -04:00
|
|
|
mu.Lock()
|
|
|
|
// Ask all sets and merge entries.
|
2021-07-05 18:34:41 -04:00
|
|
|
listCtx, cancelList := context.WithCancel(ctx)
|
|
|
|
defer cancelList()
|
2021-01-06 12:35:47 -05:00
|
|
|
for _, pool := range z.serverPools {
|
|
|
|
for _, set := range pool.sets {
|
2020-10-28 12:18:35 -04:00
|
|
|
wg.Add(1)
|
2022-06-03 08:59:02 -04:00
|
|
|
innerResults := make(chan metaCacheEntry, 100)
|
|
|
|
inputs = append(inputs, innerResults)
|
2020-10-28 12:18:35 -04:00
|
|
|
go func(i int, set *erasureObjects) {
|
|
|
|
defer wg.Done()
|
2022-06-03 08:59:02 -04:00
|
|
|
err := set.listPath(listCtx, o, innerResults)
|
2020-10-28 12:18:35 -04:00
|
|
|
mu.Lock()
|
|
|
|
defer mu.Unlock()
|
|
|
|
if err == nil {
|
|
|
|
allAtEOF = false
|
|
|
|
}
|
|
|
|
errs[i] = err
|
|
|
|
}(len(errs), set)
|
|
|
|
errs = append(errs, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mu.Unlock()
|
2021-07-05 18:34:41 -04:00
|
|
|
|
|
|
|
// Gather results to a single channel.
|
2022-11-04 14:33:22 -04:00
|
|
|
// Quorum is one since we are merging across sets.
|
|
|
|
err := mergeEntryChannels(ctx, inputs, results, 1)
|
2021-07-05 18:34:41 -04:00
|
|
|
|
|
|
|
cancelList()
|
2020-10-28 12:18:35 -04:00
|
|
|
wg.Wait()
|
|
|
|
|
2024-02-07 16:20:07 -05:00
|
|
|
// we should return 'errs' from per disk
|
2020-10-28 12:18:35 -04:00
|
|
|
if isAllNotFound(errs) {
|
2024-01-30 15:43:25 -05:00
|
|
|
if isAllVolumeNotFound(errs) {
|
|
|
|
return errVolumeNotFound
|
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
return nil
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
|
|
|
|
2024-02-07 16:20:07 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if contextCanceled(ctx) {
|
|
|
|
return ctx.Err()
|
|
|
|
}
|
|
|
|
|
2020-10-28 12:18:35 -04:00
|
|
|
for _, err := range errs {
|
2023-02-17 04:40:31 -05:00
|
|
|
if errors.Is(err, io.EOF) {
|
2020-10-28 12:18:35 -04:00
|
|
|
continue
|
|
|
|
}
|
2023-02-17 04:40:31 -05:00
|
|
|
if err == nil || contextCanceled(ctx) || errors.Is(err, context.Canceled) {
|
|
|
|
allAtEOF = false
|
2020-10-28 12:18:35 -04:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
logger.LogIf(ctx, err)
|
2021-07-05 18:34:41 -04:00
|
|
|
return err
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
if allAtEOF {
|
|
|
|
return io.EOF
|
2020-12-15 14:25:36 -05:00
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-19 16:23:12 -04:00
|
|
|
// triggerExpiryAndRepl applies lifecycle and replication actions on the listing
|
|
|
|
// It returns true if the listing is non-versioned and the given object is expired.
|
|
|
|
func triggerExpiryAndRepl(ctx context.Context, o listPathOptions, obj metaCacheEntry) (skip bool) {
|
|
|
|
versioned := o.Versioning != nil && o.Versioning.Versioned(obj.name)
|
|
|
|
|
|
|
|
// skip latest object from listing only for regular
|
|
|
|
// listObjects calls, versioned based listing cannot
|
|
|
|
// filter out between versions 'obj' cannot be truncated
|
|
|
|
// in such a manner, so look for skipping an object only
|
|
|
|
// for regular ListObjects() call only.
|
|
|
|
if !o.Versioned && !o.V1 {
|
|
|
|
fi, err := obj.fileInfo(o.Bucket)
|
|
|
|
if err != nil {
|
2022-03-22 15:39:45 -04:00
|
|
|
return
|
|
|
|
}
|
2024-03-19 16:23:12 -04:00
|
|
|
objInfo := fi.ToObjectInfo(o.Bucket, obj.name, versioned)
|
|
|
|
if o.Lifecycle != nil {
|
|
|
|
act := evalActionFromLifecycle(ctx, *o.Lifecycle, o.Retention, o.Replication.Config, objInfo).Action
|
|
|
|
skip = act.Delete() && !act.DeleteRestored()
|
2023-03-09 18:15:30 -05:00
|
|
|
}
|
2024-03-19 16:23:12 -04:00
|
|
|
}
|
2023-03-09 18:15:30 -05:00
|
|
|
|
2024-03-19 16:23:12 -04:00
|
|
|
fiv, err := obj.fileInfoVersions(o.Bucket)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2023-03-09 18:15:30 -05:00
|
|
|
|
2024-03-19 16:23:12 -04:00
|
|
|
// Expire all versions if needed, if not attempt to queue for replication.
|
|
|
|
for _, version := range fiv.Versions {
|
|
|
|
objInfo := version.ToObjectInfo(o.Bucket, obj.name, versioned)
|
|
|
|
|
|
|
|
if o.Lifecycle != nil {
|
|
|
|
evt := evalActionFromLifecycle(ctx, *o.Lifecycle, o.Retention, o.Replication.Config, objInfo)
|
|
|
|
if evt.Action.Delete() {
|
|
|
|
globalExpiryState.enqueueByDays(objInfo, evt, lcEventSrc_s3ListObjects)
|
|
|
|
if !evt.Action.DeleteRestored() {
|
|
|
|
continue
|
|
|
|
} // queue version for replication upon expired restored copies if needed.
|
2023-01-27 15:43:28 -05:00
|
|
|
}
|
2022-03-22 15:39:45 -04:00
|
|
|
}
|
2024-03-19 16:23:12 -04:00
|
|
|
|
|
|
|
queueReplicationHeal(ctx, o.Bucket, objInfo, o.Replication, 0)
|
2022-03-22 15:39:45 -04:00
|
|
|
}
|
2024-03-19 16:23:12 -04:00
|
|
|
return
|
2022-03-22 15:39:45 -04:00
|
|
|
}
|
|
|
|
|
2021-07-05 18:34:41 -04:00
|
|
|
func (z *erasureServerPools) listAndSave(ctx context.Context, o *listPathOptions) (entries metaCacheEntriesSorted, err error) {
|
|
|
|
// Use ID as the object name...
|
|
|
|
o.pool = z.getAvailablePoolIdx(ctx, minioMetaBucket, o.ID, 10<<20)
|
|
|
|
if o.pool < 0 {
|
|
|
|
// No space or similar, don't persist the listing.
|
|
|
|
o.pool = 0
|
|
|
|
o.Create = false
|
|
|
|
o.ID = ""
|
|
|
|
o.Transient = true
|
|
|
|
return entries, errDiskFull
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
o.set = z.serverPools[o.pool].getHashedSetIndex(o.ID)
|
|
|
|
saver := z.serverPools[o.pool].sets[o.set]
|
|
|
|
|
|
|
|
// Disconnect from call above, but cancel on exit.
|
|
|
|
listCtx, cancel := context.WithCancel(GlobalContext)
|
|
|
|
saveCh := make(chan metaCacheEntry, metacacheBlockSize)
|
|
|
|
inCh := make(chan metaCacheEntry, metacacheBlockSize)
|
|
|
|
outCh := make(chan metaCacheEntry, o.Limit)
|
|
|
|
|
2021-08-16 14:59:16 -04:00
|
|
|
filteredResults := o.gatherResults(ctx, outCh)
|
2021-07-05 18:34:41 -04:00
|
|
|
|
|
|
|
mc := o.newMetacache()
|
2022-03-25 06:41:31 -04:00
|
|
|
meta := metaCacheRPC{meta: &mc, cancel: cancel, rpc: globalNotificationSys.restClientFromHash(pathJoin(o.Bucket, o.Prefix)), o: *o}
|
2021-07-05 18:34:41 -04:00
|
|
|
|
|
|
|
// Save listing...
|
|
|
|
go func() {
|
|
|
|
if err := saver.saveMetaCacheStream(listCtx, &meta, saveCh); err != nil {
|
|
|
|
meta.setErr(err.Error())
|
|
|
|
}
|
|
|
|
cancel()
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Do listing...
|
|
|
|
go func(o listPathOptions) {
|
|
|
|
err := z.listMerged(listCtx, o, inCh)
|
|
|
|
if err != nil {
|
|
|
|
meta.setErr(err.Error())
|
|
|
|
}
|
|
|
|
o.debugln("listAndSave: listing", o.ID, "finished with ", err)
|
|
|
|
}(*o)
|
|
|
|
|
2021-08-13 14:39:27 -04:00
|
|
|
// Keep track of when we return since we no longer have to send entries to output.
|
|
|
|
var funcReturned bool
|
|
|
|
var funcReturnedMu sync.Mutex
|
|
|
|
defer func() {
|
|
|
|
funcReturnedMu.Lock()
|
|
|
|
funcReturned = true
|
|
|
|
funcReturnedMu.Unlock()
|
|
|
|
}()
|
2021-07-05 18:34:41 -04:00
|
|
|
// Write listing to results and saver.
|
|
|
|
go func() {
|
2021-08-13 14:39:27 -04:00
|
|
|
var returned bool
|
2021-07-05 18:34:41 -04:00
|
|
|
for entry := range inCh {
|
2021-08-13 14:39:27 -04:00
|
|
|
if !returned {
|
|
|
|
funcReturnedMu.Lock()
|
|
|
|
returned = funcReturned
|
|
|
|
funcReturnedMu.Unlock()
|
|
|
|
outCh <- entry
|
|
|
|
if returned {
|
2024-01-28 13:04:17 -05:00
|
|
|
xioutil.SafeClose(outCh)
|
2021-08-13 14:39:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
entry.reusable = returned
|
2021-07-05 18:34:41 -04:00
|
|
|
saveCh <- entry
|
|
|
|
}
|
2021-08-13 14:39:27 -04:00
|
|
|
if !returned {
|
2024-01-28 13:04:17 -05:00
|
|
|
xioutil.SafeClose(outCh)
|
2021-08-13 14:39:27 -04:00
|
|
|
}
|
2024-01-28 13:04:17 -05:00
|
|
|
xioutil.SafeClose(saveCh)
|
2021-07-05 18:34:41 -04:00
|
|
|
}()
|
|
|
|
|
|
|
|
return filteredResults()
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|