forked from xueqiu/rdr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
87 lines (79 loc) · 2.36 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
// Copyright 2017 XUEQIU.COM
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"os"
"github.com/urfave/cli"
"fmt"
"github.com/xueqiu/rdr/decoder"
"github.com/xueqiu/rdr/dump"
)
//go:generate go-bindata -prefix "static/" -o=static/static.go -pkg=static -ignore static.go static/...
//go:generate go-bindata -prefix "views/" -o=views/views.go -pkg=views -ignore views.go views/...
// keys is function for command `keys`
// output all keys in rdbfile(s) get from args
func keys(c *cli.Context) {
if c.NArg() < 1 {
fmt.Fprintln(c.App.ErrWriter, "keys requires at least 1 argument")
cli.ShowCommandHelp(c, "keys")
return
}
for _, filepath := range c.Args() {
decoder := decoder.NewDecoder()
go dump.Decode(c, decoder, filepath)
for e := range decoder.Entries {
fmt.Fprintf(c.App.Writer, "%v\n", e.Key)
}
}
}
func main() {
app := cli.NewApp()
app.Name = "rdr"
app.Usage = "a tool to parse redis rdbfile"
app.Version = "v0.0.1"
app.Writer = os.Stdout
app.ErrWriter = os.Stderr
app.Commands = []cli.Command{
cli.Command{
Name: "dump",
Usage: "dump statistical information of rdbfile to STDOUT",
ArgsUsage: "FILE1 [FILE2] [FILE3]...",
Action: dump.ToCliWriter,
},
cli.Command{
Name: "show",
Usage: "show statistical information of rdbfile by webpage",
ArgsUsage: "DIR1 [DIR2] [DIR3] or FILE1 [FILE2] [FILE3]...",
Flags: []cli.Flag{
cli.UintFlag{
Name: "port, p",
Value: 8080,
Usage: "Port for rdr to listen",
},
},
Action: dump.Show,
},
cli.Command{
Name: "keys",
Usage: "get all keys from rdbfile",
ArgsUsage: "FILE1 [FILE2] [FILE3]...",
Action: keys,
},
}
app.CommandNotFound = func(c *cli.Context, command string) {
fmt.Fprintf(c.App.ErrWriter, "command %q can not be found.\n", command)
cli.ShowAppHelp(c)
}
app.Run(os.Args)
}