Resuming work on camliup.

This commit is contained in:
Brad Fitzpatrick 2010-11-04 22:41:45 -07:00
parent ef78e3a15f
commit 5ef1b8969a
2 changed files with 15 additions and 6 deletions

4
clients/go/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.8
*.6
camliup

View File

@ -17,7 +17,8 @@ import (
)
var flagFile *string = flag.String("file", "", "file to upload")
var flagServer *string = flag.String("server", "http://localhost:3179/", "camlistore server")
var flagServer *string = flag.String("server", "http://localhost:3179/", "camlistore blob server")
var flagPassword *string = flag.String("password", "", "password for blob server")
type UploadHandle struct {
blobref string
@ -120,7 +121,7 @@ func blobName(contents io.ReadSeeker) string {
return fmt.Sprintf("sha1-%x", s1.Sum())
}
func uploadFile(agent *Agent, filename string) os.Error {
func (a *Agent) UploadFileName(filename string) os.Error {
file, err := os.Open(filename, os.O_RDONLY, 0)
if err != nil {
return err
@ -128,7 +129,7 @@ func uploadFile(agent *Agent, filename string) os.Error {
fmt.Println("blob is:", blobName(file))
handle := &UploadHandle{blobName(file), file}
agent.Upload(handle)
a.Upload(handle)
return nil
}
@ -140,11 +141,15 @@ func main() {
*flagServer = (*flagServer)[0 : len(*flagServer)-1]
}
agent := NewAgent(*flagServer)
if *flagFile != "" {
uploadFile(agent, *flagFile)
if *flagFile == "" {
fmt.Println("Usage: camliup -file=[filename]")
flag.PrintDefaults()
return
}
agent := NewAgent(*flagServer)
agent.UploadFileName(*flagFile)
stats := agent.Wait()
fmt.Println("Done uploading; stats:", stats)
}