1
0
Fork 0
go-asink/client/storage_local.go

74 lines
1.4 KiB
Go
Raw Normal View History

2013-02-10 23:39:23 -05:00
package main
import (
"asink/util"
2013-02-11 23:17:12 -05:00
"code.google.com/p/goconf/conf"
"errors"
2013-02-10 23:39:23 -05:00
"io"
2013-02-11 23:17:12 -05:00
"os"
2013-02-10 23:39:23 -05:00
"path"
)
type LocalStorage struct {
storageDir string
2013-02-11 23:17:12 -05:00
tmpSubdir string
2013-02-10 23:39:23 -05:00
}
func NewLocalStorage(config *conf.ConfigFile) (*LocalStorage, error) {
storageDir, err := config.GetString("storage", "dir")
if err != nil {
return nil, errors.New("Error: LocalStorage indicated in config file, but lacking local storage directory ('dir = some/dir').")
}
ls := new(LocalStorage)
ls.storageDir = storageDir
ls.tmpSubdir = path.Join(storageDir, ".asink-tmpdir")
//make sure the base directory and tmp subdir exist
err = util.EnsureDirExists(ls.storageDir)
2013-02-11 23:17:12 -05:00
if err != nil {
return nil, err
}
err = util.EnsureDirExists(ls.tmpSubdir)
2013-02-11 23:17:12 -05:00
if err != nil {
return nil, err
}
2013-02-10 23:39:23 -05:00
return ls, nil
}
func (ls *LocalStorage) Put(filename string, hash string) (e error) {
tmpfile, err := util.CopyToTmp(filename, ls.tmpSubdir)
2013-02-11 23:17:12 -05:00
if err != nil {
return err
}
2013-02-10 23:39:23 -05:00
err = os.Rename(tmpfile, path.Join(ls.storageDir, hash))
if err != nil {
err := os.Remove(tmpfile)
2013-02-11 23:17:12 -05:00
if err != nil {
return err
}
}
2013-02-10 23:39:23 -05:00
return nil
}
func (ls *LocalStorage) Get(filename string, hash string) error {
infile, err := os.Open(path.Join(ls.storageDir, hash))
2013-02-11 23:17:12 -05:00
if err != nil {
return err
}
2013-02-10 23:39:23 -05:00
defer infile.Close()
outfile, err := os.Create(filename)
2013-02-11 23:17:12 -05:00
if err != nil {
return err
}
2013-02-10 23:39:23 -05:00
defer outfile.Close()
_, err = io.Copy(outfile, infile)
return err
}