mirror of https://github.com/minio/minio.git
153 lines
3.7 KiB
Go
153 lines
3.7 KiB
Go
/*
|
|
* Mini Object Storage, (C) 2014 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 appendstorage
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/gob"
|
|
"errors"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/minio-io/minio/pkgs/checksum/crc32c"
|
|
"github.com/minio-io/minio/pkgs/storage"
|
|
)
|
|
|
|
type appendStorage struct {
|
|
RootDir string
|
|
file *os.File
|
|
objects map[string]Header
|
|
objectsFile string
|
|
}
|
|
|
|
type Header struct {
|
|
Path string
|
|
Offset int64
|
|
Length int
|
|
Crc uint32
|
|
}
|
|
|
|
func NewStorage(rootDir string, slice int) (storage.ObjectStorage, error) {
|
|
rootPath := path.Join(rootDir, strconv.Itoa(slice))
|
|
// TODO verify and fix partial writes
|
|
file, err := os.OpenFile(rootPath, os.O_APPEND|os.O_CREATE|os.O_RDWR, 0600)
|
|
if err != nil {
|
|
return &appendStorage{}, err
|
|
}
|
|
objectsFile := path.Join(rootDir, strconv.Itoa(slice)+".map")
|
|
objects := make(map[string]Header)
|
|
if _, err := os.Stat(objectsFile); err == nil {
|
|
mapFile, err := os.Open(objectsFile)
|
|
defer mapFile.Close()
|
|
if err != nil {
|
|
return &appendStorage{}, nil
|
|
}
|
|
dec := gob.NewDecoder(mapFile)
|
|
err = dec.Decode(&objects)
|
|
if err != nil && err != io.EOF {
|
|
return &appendStorage{}, nil
|
|
}
|
|
}
|
|
if err != nil {
|
|
return &appendStorage{}, err
|
|
}
|
|
return &appendStorage{
|
|
RootDir: rootDir,
|
|
file: file,
|
|
objects: objects,
|
|
objectsFile: objectsFile,
|
|
}, nil
|
|
}
|
|
|
|
func (storage *appendStorage) Get(objectPath string) (io.Reader, error) {
|
|
header, ok := storage.objects[objectPath]
|
|
if ok == false {
|
|
return nil, errors.New("Object not found")
|
|
}
|
|
|
|
offset := header.Offset
|
|
length := header.Length
|
|
crc := header.Crc
|
|
|
|
object := make([]byte, length)
|
|
_, err := storage.file.ReadAt(object, offset)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
newcrc, err := crc32c.Crc32c(object)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if newcrc != crc {
|
|
return nil, err
|
|
}
|
|
return bytes.NewBuffer(object), nil
|
|
}
|
|
|
|
func (aStorage *appendStorage) Put(objectPath string, object io.Reader) error {
|
|
header := Header{
|
|
Path: objectPath,
|
|
Offset: 0,
|
|
Length: 0,
|
|
Crc: 0,
|
|
}
|
|
offset, err := aStorage.file.Seek(0, os.SEEK_END)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
objectBytes, err := ioutil.ReadAll(object)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if _, err := aStorage.file.Write(objectBytes); err != nil {
|
|
return err
|
|
}
|
|
header.Offset = offset
|
|
header.Length = len(objectBytes)
|
|
header.Crc, err = crc32c.Crc32c(objectBytes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
aStorage.objects[objectPath] = header
|
|
var mapBuffer bytes.Buffer
|
|
encoder := gob.NewEncoder(&mapBuffer)
|
|
encoder.Encode(aStorage.objects)
|
|
ioutil.WriteFile(aStorage.objectsFile, mapBuffer.Bytes(), 0600)
|
|
return nil
|
|
}
|
|
|
|
func (aStorage *appendStorage) List(objectPath string) ([]storage.ObjectDescription, error) {
|
|
var objectDescList []storage.ObjectDescription
|
|
for objectName, _ := range aStorage.objects {
|
|
if strings.HasPrefix(objectName, objectPath) {
|
|
var objectDescription storage.ObjectDescription
|
|
objectDescription.Name = objectName
|
|
objectDescription.Md5sum = ""
|
|
objectDescription.Murmur3 = ""
|
|
objectDescList = append(objectDescList, objectDescription)
|
|
}
|
|
}
|
|
if len(objectDescList) == 0 {
|
|
return nil, errors.New("No objects found")
|
|
}
|
|
return objectDescList, nil
|
|
}
|