vfs/vfs.go

101 lines
2.4 KiB
Go
Raw Normal View History

2015-05-08 09:28:53 +00:00
/*
* Copyright (c) 2015 Alex Yatskov <alex@foosoft.net>
* Author: Alex Yatskov <alex@foosoft.net>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
2015-05-08 09:01:24 +00:00
package main
2015-05-10 07:15:17 +00:00
import (
2015-05-18 02:12:22 +00:00
"flag"
"fmt"
2015-05-10 07:15:17 +00:00
"log"
2015-05-18 02:12:22 +00:00
"os"
2015-06-17 11:18:55 +00:00
"bazil.org/fuse"
"bazil.org/fuse/fs"
2015-06-23 08:43:22 +00:00
// _ "bazil.org/fuse/fs/fstestutil"
2015-05-10 07:15:17 +00:00
)
2015-05-18 02:12:22 +00:00
func usage() {
2015-06-23 08:43:22 +00:00
fmt.Fprintf(os.Stderr, "Usage: %s [options] database [mountpoint]\n\n", os.Args[0])
2015-05-18 02:12:22 +00:00
fmt.Fprintf(os.Stderr, "Parameters:\n")
flag.PrintDefaults()
}
2015-05-08 09:01:24 +00:00
func main() {
2015-06-23 09:27:16 +00:00
version := flag.Uint("version", 0, "version index (0 for head)")
2015-06-23 08:55:42 +00:00
readonly := flag.Bool("readonly", false, "mount filesystem as readonly")
2015-05-18 02:12:22 +00:00
flag.Usage = usage
flag.Parse()
2015-06-23 08:43:22 +00:00
if flag.NArg() < 1 {
2015-05-18 02:12:22 +00:00
usage()
os.Exit(2)
}
2015-06-24 03:42:36 +00:00
mountable := flag.NArg() > 1
mutable := mountable && !*readonly && *version == 0
2015-05-18 02:12:22 +00:00
2015-06-24 03:42:36 +00:00
db, err := newDatabase(flag.Arg(0))
2015-05-10 07:15:17 +00:00
if err != nil {
log.Fatal(err)
}
2015-06-24 03:42:36 +00:00
if mutable {
if err := db.createNewVer(); err != nil {
log.Fatal(err)
2015-06-23 08:55:42 +00:00
}
2015-06-24 03:42:36 +00:00
}
if err := db.load(*version); err != nil {
log.Fatal(err)
}
2015-06-23 08:55:42 +00:00
2015-06-24 03:42:36 +00:00
if mountable {
2015-06-23 08:43:22 +00:00
var options []fuse.MountOption
2015-06-24 03:42:36 +00:00
if !mutable {
2015-06-23 08:43:22 +00:00
options = append(options, fuse.ReadOnly())
}
2015-06-23 08:43:22 +00:00
conn, err := fuse.Mount(flag.Arg(1), options...)
if err != nil {
log.Fatal(err)
}
defer conn.Close()
2015-06-24 03:42:36 +00:00
if err := fs.Serve(conn, db); err != nil {
2015-06-23 08:43:22 +00:00
log.Fatal(err)
}
2015-06-16 09:08:30 +00:00
2015-06-23 08:43:22 +00:00
<-conn.Ready
if err := conn.MountError; err != nil {
log.Fatal(err)
}
2015-06-24 03:42:36 +00:00
if mutable {
if err := db.save(); err != nil {
log.Fatal(err)
}
}
2015-06-23 08:43:22 +00:00
} else {
db.dump()
2015-06-16 09:08:30 +00:00
}
2015-05-08 09:01:24 +00:00
}