mirror of https://github.com/perkeep/perkeep.git
163 lines
4.0 KiB
Go
163 lines
4.0 KiB
Go
/*
|
|
Copyright 2011 Google 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 localdisk
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"log"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"camlistore.org/pkg/blobref"
|
|
"camlistore.org/pkg/blobserver"
|
|
)
|
|
|
|
func (ds *DiskStorage) ReceiveBlob(blobRef *blobref.BlobRef, source io.Reader) (blobGot blobref.SizedBlobRef, err error) {
|
|
pname := ds.partition
|
|
if pname != "" {
|
|
err = fmt.Errorf("refusing upload directly to queue partition %q", pname)
|
|
return
|
|
}
|
|
hashedDirectory := ds.blobDirectory(pname, blobRef)
|
|
err = os.MkdirAll(hashedDirectory, 0700)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
tempFile, err := ioutil.TempFile(hashedDirectory, BlobFileBaseName(blobRef)+".tmp")
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
success := false // set true later
|
|
defer func() {
|
|
if !success {
|
|
log.Println("Removing temp file: ", tempFile.Name())
|
|
os.Remove(tempFile.Name())
|
|
}
|
|
}()
|
|
|
|
hash := blobRef.Hash()
|
|
written, err := io.Copy(io.MultiWriter(hash, tempFile), source)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if err = tempFile.Sync(); err != nil {
|
|
return
|
|
}
|
|
if err = tempFile.Close(); err != nil {
|
|
return
|
|
}
|
|
if !blobRef.HashMatches(hash) {
|
|
err = blobserver.ErrCorruptBlob
|
|
return
|
|
}
|
|
stat, err := os.Lstat(tempFile.Name())
|
|
if err != nil {
|
|
return
|
|
}
|
|
if stat.Size() != written {
|
|
err = fmt.Errorf("temp file %q size %d didn't match written size %d", tempFile.Name(), stat.Size(), written)
|
|
return
|
|
}
|
|
|
|
fileName := ds.blobPath("", blobRef)
|
|
if err = os.Rename(tempFile.Name(), fileName); err != nil {
|
|
return
|
|
}
|
|
|
|
stat, err = os.Lstat(fileName)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if stat.Size() != written {
|
|
err = errors.New("Written size didn't match.")
|
|
return
|
|
}
|
|
|
|
for _, mirror := range ds.mirrorPartitions {
|
|
pname := mirror.partition
|
|
if pname == "" {
|
|
panic("expected partition name")
|
|
}
|
|
partitionDir := ds.blobDirectory(pname, blobRef)
|
|
|
|
// Prevent the directory from being unlinked by
|
|
// enumerate code, which cleans up.
|
|
defer keepDirectoryLock(partitionDir).Unlock()
|
|
defer keepDirectoryLock(filepath.Dir(partitionDir)).Unlock()
|
|
defer keepDirectoryLock(filepath.Dir(filepath.Dir(partitionDir))).Unlock()
|
|
|
|
if err = os.MkdirAll(partitionDir, 0700); err != nil {
|
|
return blobref.SizedBlobRef{}, fmt.Errorf("localdisk.receive: MkdirAll(%q) after lock on it: %v", partitionDir, err)
|
|
}
|
|
partitionFileName := ds.blobPath(pname, blobRef)
|
|
pfi, err := os.Stat(partitionFileName)
|
|
if err == nil && !pfi.IsDir() {
|
|
log.Printf("Skipped dup on partition %q", pname)
|
|
} else {
|
|
if err = linkOrCopy(fileName, partitionFileName); err != nil && !linkAlreadyExists(err) {
|
|
log.Fatalf("got link or copy error %T %#v", err, err)
|
|
return blobref.SizedBlobRef{}, err
|
|
}
|
|
log.Printf("Mirrored blob %s to partition %q", blobRef, pname)
|
|
}
|
|
}
|
|
|
|
blobGot = blobref.SizedBlobRef{BlobRef: blobRef, Size: stat.Size()}
|
|
success = true
|
|
|
|
hub := ds.GetBlobHub()
|
|
hub.NotifyBlobReceived(blobRef)
|
|
for _, mirror := range ds.mirrorPartitions {
|
|
mirror.GetBlobHub().NotifyBlobReceived(blobRef)
|
|
}
|
|
return
|
|
}
|
|
|
|
func linkAlreadyExists(err error) bool {
|
|
if os.IsExist(err) {
|
|
return true
|
|
}
|
|
if le, ok := err.(*os.LinkError); ok && os.IsExist(le.Err) {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Used by Windows (receive_windows.go) and when a posix filesystem doesn't
|
|
// support a link operation (e.g. Linux with an exfat external USB disk).
|
|
func copyFile(src, dst string) error {
|
|
srcFile, err := os.Open(src)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer srcFile.Close()
|
|
|
|
dstFile, err := os.Create(dst)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer dstFile.Close()
|
|
|
|
_, err = io.Copy(dstFile, srcFile)
|
|
return err
|
|
}
|