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"
|
|
|
|
"fmt"
|
2021-07-05 18:34:41 -04:00
|
|
|
"strconv"
|
2020-10-28 12:18:35 -04:00
|
|
|
"strings"
|
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/logger"
|
2020-10-28 12:18:35 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// markerTagVersion is the marker version.
|
|
|
|
// Should not need to be updated unless a fundamental change is made to the marker format.
|
2021-07-05 18:34:41 -04:00
|
|
|
const markerTagVersion = "v2"
|
2020-10-28 12:18:35 -04:00
|
|
|
|
|
|
|
// parseMarker will parse a marker possibly encoded with encodeMarker
|
2021-07-05 18:34:41 -04:00
|
|
|
func (o *listPathOptions) parseMarker() {
|
|
|
|
s := o.Marker
|
2020-10-28 12:18:35 -04:00
|
|
|
if !strings.Contains(s, "[minio_cache:"+markerTagVersion) {
|
2021-07-05 18:34:41 -04:00
|
|
|
return
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
|
|
|
start := strings.LastIndex(s, "[")
|
2021-07-05 18:34:41 -04:00
|
|
|
o.Marker = s[:start]
|
2020-10-28 12:18:35 -04:00
|
|
|
end := strings.LastIndex(s, "]")
|
|
|
|
tag := strings.Trim(s[start:end], "[]")
|
|
|
|
tags := strings.Split(tag, ",")
|
|
|
|
for _, tag := range tags {
|
|
|
|
kv := strings.Split(tag, ":")
|
|
|
|
if len(kv) < 2 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
switch kv[0] {
|
|
|
|
case "minio_cache":
|
|
|
|
if kv[1] != markerTagVersion {
|
2022-12-05 14:18:50 -05:00
|
|
|
continue
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
|
|
|
case "id":
|
2021-07-05 18:34:41 -04:00
|
|
|
o.ID = kv[1]
|
|
|
|
case "return":
|
|
|
|
o.ID = mustGetUUID()
|
|
|
|
o.Create = true
|
|
|
|
case "p": // pool
|
|
|
|
v, err := strconv.ParseInt(kv[1], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
o.ID = mustGetUUID()
|
|
|
|
o.Create = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
o.pool = int(v)
|
|
|
|
case "s": // set
|
|
|
|
v, err := strconv.ParseInt(kv[1], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
o.ID = mustGetUUID()
|
|
|
|
o.Create = true
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
o.set = int(v)
|
2020-10-28 12:18:35 -04:00
|
|
|
default:
|
|
|
|
// Ignore unknown
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// encodeMarker will encode a uuid and return it as a marker.
|
|
|
|
// uuid cannot contain '[', ':' or ','.
|
2021-07-05 18:34:41 -04:00
|
|
|
func (o listPathOptions) encodeMarker(marker string) string {
|
|
|
|
if o.ID == "" {
|
|
|
|
// Mark as returning listing...
|
|
|
|
return fmt.Sprintf("%s[minio_cache:%s,return:]", marker, markerTagVersion)
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
if strings.ContainsAny(o.ID, "[:,") {
|
|
|
|
logger.LogIf(context.Background(), fmt.Errorf("encodeMarker: uuid %s contained invalid characters", o.ID))
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|
2021-07-05 18:34:41 -04:00
|
|
|
return fmt.Sprintf("%s[minio_cache:%s,id:%s,p:%d,s:%d]", marker, markerTagVersion, o.ID, o.pool, o.set)
|
2020-10-28 12:18:35 -04:00
|
|
|
}
|