2015-10-16 14:26:01 -04:00
|
|
|
/*
|
|
|
|
* Minio Cloud Storage, (C) 2015 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 fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"bytes"
|
|
|
|
"os"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Metadata - carries metadata about object
|
|
|
|
type Metadata struct {
|
|
|
|
Md5sum []byte
|
|
|
|
ContentType string
|
|
|
|
}
|
|
|
|
|
2015-10-22 01:25:13 -04:00
|
|
|
// sanitizeWindowsPath - sanitize a path
|
|
|
|
func sanitizeWindowsPath(path string) string {
|
|
|
|
return strings.Replace(path, "\\", "/", -1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// sanitizeWindowsPaths - sanitize some windows paths
|
|
|
|
func sanitizeWindowsPaths(paths ...string) []string {
|
|
|
|
var results []string
|
|
|
|
for _, path := range paths {
|
|
|
|
results = append(results, sanitizeWindowsPath(path))
|
|
|
|
}
|
|
|
|
return results
|
|
|
|
}
|
|
|
|
|
2015-10-23 18:54:47 -04:00
|
|
|
// sortUnique returns n, the number of distinct elements in data in sorted order.
|
|
|
|
func sortUnique(data sort.Interface) (n int) {
|
|
|
|
if n = data.Len(); n < 2 {
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
sort.Sort(data)
|
|
|
|
a, b := 0, 1
|
|
|
|
for b < n {
|
|
|
|
if data.Less(a, b) {
|
|
|
|
a++
|
|
|
|
if a != b {
|
|
|
|
data.Swap(a, b)
|
|
|
|
}
|
2015-10-17 02:11:41 -04:00
|
|
|
}
|
2015-10-23 18:54:47 -04:00
|
|
|
b++
|
2015-10-16 14:26:01 -04:00
|
|
|
}
|
2015-10-23 18:54:47 -04:00
|
|
|
return a + 1
|
2015-10-16 14:26:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type contentInfo struct {
|
|
|
|
os.FileInfo
|
|
|
|
Prefix string
|
|
|
|
Size int64
|
|
|
|
Mode os.FileMode
|
|
|
|
ModTime time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type bucketDir struct {
|
|
|
|
files []contentInfo
|
|
|
|
root string
|
|
|
|
}
|
|
|
|
|
|
|
|
func delimiter(object, delimiter string) string {
|
|
|
|
readBuffer := bytes.NewBufferString(object)
|
|
|
|
reader := bufio.NewReader(readBuffer)
|
|
|
|
stringReader := strings.NewReader(delimiter)
|
|
|
|
delimited, _ := stringReader.ReadByte()
|
|
|
|
delimitedStr, _ := reader.ReadString(delimited)
|
|
|
|
return delimitedStr
|
|
|
|
}
|
|
|
|
|
|
|
|
// byObjectMetadataKey is a sortable interface for UploadMetadata slice
|
|
|
|
type byUploadMetadataKey []*UploadMetadata
|
|
|
|
|
|
|
|
func (b byUploadMetadataKey) Len() int { return len(b) }
|
|
|
|
func (b byUploadMetadataKey) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
|
|
|
|
func (b byUploadMetadataKey) Less(i, j int) bool { return b[i].Object < b[j].Object }
|