This repository was archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathmrr.go
115 lines (108 loc) · 2.43 KB
/
mrr.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package main
import (
"fmt"
"github.com/codegangsta/cli"
"os"
"runtime"
"strings"
)
//MrRedisFW IP and Port number
var MrRedisFW string
//Init simply loads the scheduler's endpoint from the .MrRedis before performing any subcommand
func Init() {
var confFilePath string
if runtime.GOOS == "windows" {
confFilePath = ".MrRedis"
} else {
confFilePath = "/tmp/.MrRedis"
}
//Check if we have a ~/.MrRedis config file in the system already,
f, err := os.Open(confFilePath)
if err != nil {
fmt.Printf("Cli is not initalized err=%v\n", err)
fmt.Printf("$mrr init <http://MrRedisEndPoint>\n")
return
}
//If yes then open it and read the content (first line)
d := make([]byte, 512)
if c, err := f.Read(d); err != nil && c != 0 {
fmt.Printf("Unable to read the config file err=%v\n", err)
return
}
//It should have IP:Port format
//MrRedisFW = string(d)
MrRedisFW = strings.Trim(string(d), "\x00")
f.Close()
return
}
func main() {
Init()
app := cli.NewApp()
app.Name = "mrr"
app.Usage = "MrRedis Command Line Interface"
app.HideVersion = true
app.Action = func(c *cli.Context) {
println("MrRedis Command Line")
}
app.Commands = []cli.Command{
{
Name: "init",
Aliases: []string{"i"},
Usage: "$mrr init <http://MrRedisEndPoint>",
Action: InitCmd,
},
{
Name: "create",
Aliases: []string{"c"},
Usage: "Create a Redis Instance",
Action: CreateCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "name, n",
Usage: "Name of the Redis Instance",
},
cli.IntFlag{
Name: "memory, m",
Usage: "Memory in MB",
},
cli.IntFlag{
Name: "slaves, s",
Usage: "Number of Slaves",
},
cli.BoolFlag{
Name: "wait, w",
Usage: "Wait for the Instance to be created (by default the command is async)",
},
cli.StringFlag{
Name: "file, f",
Usage: "Location of the config file for this instance, to specify Distribution Value",
},
},
},
{
Name: "status",
Aliases: []string{"s"},
Usage: "Status of a Redis Instance",
Action: StatusCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "name, n",
Usage: "Name of the Redis Instance",
},
},
},
{
Name: "delete",
Aliases: []string{"d"},
Usage: "Delete a Redis Instance",
Action: DeleteCmd,
Flags: []cli.Flag{
cli.StringFlag{
Name: "name, n",
Usage: "Name of the Redis Instance",
},
},
},
}
app.Run(os.Args)
}