-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.go
90 lines (73 loc) · 1.82 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package main
import (
"flag"
"fmt"
"os"
"github.com/Sirupsen/logrus"
"github.com/cpuguy83/kvfs/fs"
"github.com/docker/docker/pkg/signal"
"github.com/docker/libkv/store"
"github.com/docker/libkv/store/boltdb"
"github.com/docker/libkv/store/consul"
"github.com/docker/libkv/store/etcd"
"github.com/docker/libkv/store/zookeeper"
)
func init() {
consul.Register()
boltdb.Register()
etcd.Register()
zookeeper.Register()
}
type stringsFlag []string
func (s *stringsFlag) String() string {
return fmt.Sprintf("%v", *s)
}
func (s *stringsFlag) Set(val string) error {
*s = append(*s, val)
return nil
}
func (s *stringsFlag) GetAll() []string {
var out []string
for _, i := range *s {
out = append(out, i)
}
return out
}
var (
flAddrs stringsFlag
flMountpoint = flag.String("to", "", "Set the mount point to use")
flStore = flag.String("store", "", "Set the KV store type to use")
flDebug = flag.Bool("debug", false, "enable debug logging")
flRoot = flag.String("root", "", "set the root node for the store")
)
func main() {
flag.Var(&flAddrs, "addr", "List of address to KV store")
flag.Parse()
if len(flAddrs) == 0 {
logrus.Fatal("need at least one addr to connect to kv store")
}
if *flMountpoint == "" {
logrus.Fatal("invalid mount point, must set the `-to` flag")
}
if _, err := os.Stat(*flMountpoint); err != nil {
logrus.Fatalf("error with specified mountpoint %s: %v", *flMountpoint, err)
}
if *flStore == "" {
logrus.Fatal("must specify a valid KV store")
}
if *flDebug {
logrus.SetLevel(logrus.DebugLevel)
}
fs, err := fs.NewKVFS(fs.Options{*flStore, flAddrs.GetAll(), *flRoot, store.Config{}})
if err != nil {
logrus.Fatal(err)
}
srv, err := fs.NewServer(*flMountpoint)
if err != nil {
logrus.Fatal(err)
}
signal.Trap(func() {
srv.Unmount()
})
srv.Serve()
}