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 (
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/minio/minio-xl/pkg/probe"
|
|
|
|
"github.com/minio/minio-xl/pkg/quick"
|
2015-12-06 17:31:20 -05:00
|
|
|
"github.com/minio/minio/pkg/user"
|
2015-10-16 14:26:01 -04:00
|
|
|
)
|
|
|
|
|
2015-11-01 23:56:54 -05:00
|
|
|
func getFSBucketsConfigPath() (string, *probe.Error) {
|
|
|
|
if customBucketsConfigPath != "" {
|
|
|
|
return customBucketsConfigPath, nil
|
|
|
|
}
|
2015-12-06 17:31:20 -05:00
|
|
|
homeDir, e := user.HomeDir()
|
|
|
|
if e != nil {
|
|
|
|
return "", probe.NewError(e)
|
2015-11-01 23:56:54 -05:00
|
|
|
}
|
2015-12-06 17:31:20 -05:00
|
|
|
fsBucketsConfigPath := filepath.Join(homeDir, ".minio", "$buckets.json")
|
2015-11-01 23:56:54 -05:00
|
|
|
return fsBucketsConfigPath, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getFSMultipartsSessionConfigPath() (string, *probe.Error) {
|
2015-10-16 14:26:01 -04:00
|
|
|
if customMultipartsConfigPath != "" {
|
|
|
|
return customMultipartsConfigPath, nil
|
|
|
|
}
|
2015-12-06 17:31:20 -05:00
|
|
|
homeDir, e := user.HomeDir()
|
|
|
|
if e != nil {
|
|
|
|
return "", probe.NewError(e)
|
2015-10-16 14:26:01 -04:00
|
|
|
}
|
2015-12-06 17:31:20 -05:00
|
|
|
fsMultipartsConfigPath := filepath.Join(homeDir, ".minio", "$multiparts-session.json")
|
2015-10-16 14:26:01 -04:00
|
|
|
return fsMultipartsConfigPath, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// internal variable only accessed via get/set methods
|
2015-11-01 23:56:54 -05:00
|
|
|
var customMultipartsConfigPath, customBucketsConfigPath string
|
2015-10-16 14:26:01 -04:00
|
|
|
|
2015-12-06 17:31:20 -05:00
|
|
|
// setFSBucketsConfigPath - set custom fs buckets config path
|
|
|
|
func setFSBucketsConfigPath(configPath string) {
|
2015-11-01 23:56:54 -05:00
|
|
|
customBucketsConfigPath = configPath
|
2015-10-16 14:26:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetFSMultipartsConfigPath - set custom multiparts session config path
|
2015-12-06 17:31:20 -05:00
|
|
|
func setFSMultipartsConfigPath(configPath string) {
|
2015-10-16 14:26:01 -04:00
|
|
|
customMultipartsConfigPath = configPath
|
|
|
|
}
|
|
|
|
|
2015-12-06 17:31:20 -05:00
|
|
|
// saveMultipartsSession - save multiparts
|
|
|
|
func saveMultipartsSession(multiparts *Multiparts) *probe.Error {
|
2015-11-01 23:56:54 -05:00
|
|
|
fsMultipartsConfigPath, err := getFSMultipartsSessionConfigPath()
|
2015-10-16 14:26:01 -04:00
|
|
|
if err != nil {
|
|
|
|
return err.Trace()
|
|
|
|
}
|
|
|
|
qc, err := quick.New(multiparts)
|
|
|
|
if err != nil {
|
|
|
|
return err.Trace()
|
|
|
|
}
|
|
|
|
if err := qc.Save(fsMultipartsConfigPath); err != nil {
|
|
|
|
return err.Trace()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-12-06 17:31:20 -05:00
|
|
|
// saveBucketsMetadata - save metadata of all buckets
|
|
|
|
func saveBucketsMetadata(buckets *Buckets) *probe.Error {
|
2015-11-01 23:56:54 -05:00
|
|
|
fsBucketsConfigPath, err := getFSBucketsConfigPath()
|
|
|
|
if err != nil {
|
|
|
|
return err.Trace()
|
|
|
|
}
|
|
|
|
qc, err := quick.New(buckets)
|
|
|
|
if err != nil {
|
|
|
|
return err.Trace()
|
|
|
|
}
|
|
|
|
if err := qc.Save(fsBucketsConfigPath); err != nil {
|
|
|
|
return err.Trace()
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-10-16 14:26:01 -04:00
|
|
|
// loadMultipartsSession load multipart session file
|
|
|
|
func loadMultipartsSession() (*Multiparts, *probe.Error) {
|
2015-11-01 23:56:54 -05:00
|
|
|
fsMultipartsConfigPath, err := getFSMultipartsSessionConfigPath()
|
2015-10-16 14:26:01 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err.Trace()
|
|
|
|
}
|
|
|
|
multiparts := &Multiparts{}
|
|
|
|
multiparts.Version = "1"
|
|
|
|
multiparts.ActiveSession = make(map[string]*MultipartSession)
|
|
|
|
qc, err := quick.New(multiparts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err.Trace()
|
|
|
|
}
|
|
|
|
if err := qc.Load(fsMultipartsConfigPath); err != nil {
|
|
|
|
return nil, err.Trace()
|
|
|
|
}
|
|
|
|
return qc.Data().(*Multiparts), nil
|
|
|
|
}
|
2015-11-01 23:56:54 -05:00
|
|
|
|
|
|
|
// loadBucketsMetadata load buckets metadata file
|
|
|
|
func loadBucketsMetadata() (*Buckets, *probe.Error) {
|
|
|
|
fsBucketsConfigPath, err := getFSBucketsConfigPath()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err.Trace()
|
|
|
|
}
|
|
|
|
buckets := &Buckets{}
|
|
|
|
buckets.Version = "1"
|
|
|
|
buckets.Metadata = make(map[string]*BucketMetadata)
|
|
|
|
qc, err := quick.New(buckets)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err.Trace()
|
|
|
|
}
|
|
|
|
if err := qc.Load(fsBucketsConfigPath); err != nil {
|
|
|
|
return nil, err.Trace()
|
|
|
|
}
|
|
|
|
return qc.Data().(*Buckets), nil
|
|
|
|
}
|