1
0
Fork 0
go-asink/asink.go

151 lines
3.0 KiB
Go
Raw Normal View History

2013-02-10 23:39:23 -05:00
package main
import (
2013-02-11 23:17:12 -05:00
"code.google.com/p/goconf/conf"
"database/sql"
2013-02-10 23:39:23 -05:00
"flag"
2013-02-11 23:17:12 -05:00
"fmt"
"os"
2013-02-10 23:39:23 -05:00
"os/user"
2013-02-11 23:17:12 -05:00
"path"
2013-02-10 23:39:23 -05:00
)
type AsinkGlobals struct {
configFileName string
syncDir string
cacheDir string
tmpDir string
db *sql.DB
storage Storage
}
var globals AsinkGlobals
2013-02-10 23:39:23 -05:00
func init() {
const config_usage = "Config File to use"
userHomeDir := "~"
u, err := user.Current()
if err == nil {
userHomeDir = u.HomeDir
2013-02-11 23:17:12 -05:00
}
2013-02-10 23:39:23 -05:00
flag.StringVar(&globals.configFileName, "config", path.Join(userHomeDir, ".asink", "config"), config_usage)
flag.StringVar(&globals.configFileName, "c", path.Join(userHomeDir, ".asink", "config"), config_usage+" (shorthand)")
2013-02-10 23:39:23 -05:00
}
func main() {
flag.Parse()
fmt.Println("config file:", globals.configFileName)
2013-02-10 23:39:23 -05:00
config, err := conf.ReadConfigFile(globals.configFileName)
2013-02-10 23:39:23 -05:00
if err != nil {
fmt.Println(err)
fmt.Println("Error reading config file at ", globals.configFileName, ". Does it exist?")
2013-02-10 23:39:23 -05:00
return
}
globals.storage, err = GetStorage(config)
2013-02-10 23:39:23 -05:00
if err != nil {
fmt.Println(err)
return
}
globals.syncDir, err = config.GetString("local", "syncdir")
globals.cacheDir, err = config.GetString("local", "cachedir")
globals.tmpDir, err = config.GetString("local", "tmpdir")
//make sure all the necessary directories exist
err = ensureDirExists(globals.syncDir)
if err != nil {
panic(err)
}
err = ensureDirExists(globals.cacheDir)
if err != nil {
panic(err)
}
err = ensureDirExists(globals.tmpDir)
if err != nil {
panic(err)
}
2013-02-10 23:39:23 -05:00
//TODO FIXME REMOVEME
fmt.Println(globals.syncDir)
fmt.Println(globals.cacheDir)
fmt.Println(globals.tmpDir)
fmt.Println(globals.storage)
//TODO FIXME REMOVEME
2013-02-10 23:39:23 -05:00
2013-02-11 23:16:19 -05:00
fileUpdates := make(chan *Event)
go StartWatching(globals.syncDir, fileUpdates)
globals.db, err = GetAndInitDB(config)
if err != nil {
panic(err)
return
}
2013-02-10 23:39:23 -05:00
2013-02-11 23:16:19 -05:00
for {
2013-02-11 23:17:12 -05:00
event := <-fileUpdates
ProcessEvent(globals, event)
2013-02-10 23:39:23 -05:00
}
2013-02-11 23:16:19 -05:00
}
2013-02-10 23:39:23 -05:00
func ProcessEvent(globals AsinkGlobals, event *Event) {
//add to database
err := DatabaseAddEvent(globals.db, event)
if err != nil {
panic(err)
}
2013-02-10 23:39:23 -05:00
2013-02-11 23:16:19 -05:00
if event.IsUpdate() {
//copy to tmp
tmpfilename, err := copyToTmp(event.Path, globals.tmpDir)
if err != nil {
panic(err)
}
event.Status |= COPIED_TO_TMP
//get the file's hash
hash, err := HashFile(tmpfilename)
event.Hash = hash
if err != nil {
panic(err)
}
event.Status |= HASHED
//rename to local cache w/ filename=hash
err = os.Rename(tmpfilename, path.Join(globals.cacheDir, event.Hash))
if err != nil {
err := os.Remove(tmpfilename)
if err != nil {
panic(err)
}
}
event.Status |= CACHED
//update database
err = DatabaseUpdateEvent(globals.db, event)
2013-02-11 23:17:12 -05:00
if err != nil {
panic(err)
}
//upload file to remote storage
err = globals.storage.Put(event.Path, event.Hash)
if err != nil {
panic(err)
}
event.Status |= UPLOADED
//update database again
err = DatabaseUpdateEvent(globals.db, event)
if err != nil {
panic(err)
}
2013-02-10 23:39:23 -05:00
}
fmt.Println(event)
//TODO notify server of new file
2013-02-10 23:39:23 -05:00
}