-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathswitch.go
80 lines (66 loc) · 1.47 KB
/
switch.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
package subcmd
import (
"flag"
"os"
"path/filepath"
"github.com/pkg/errors"
"github.com/utahta/pythonbrew/flagset"
"github.com/utahta/pythonbrew/log"
"github.com/utahta/pythonbrew/path"
)
type (
// Switch command
Switch struct {
flagSet *flag.FlagSet
opts SwitchOptions
log log.Logger
}
// SwitchOptions flag set
SwitchOptions struct {
ShowHelp bool
}
)
// NewSwitch returns Switch command
func NewSwitch() *Switch {
c := &Switch{log: log.NewLogger()}
c.flagSet = flagset.New(c.Name(), "[OPTIONS] VERSION")
c.flagSet.BoolVar(&c.opts.ShowHelp, "h", false, "Show command usage")
return c
}
// Name returns command name
func (c *Switch) Name() string {
return "switch"
}
// Summary returns command summary
func (c *Switch) Summary() string {
return "Use a specific Python version permanently"
}
// Usage shows command usage
func (c *Switch) Usage() {
c.flagSet.Usage()
}
// Run runs switch command
func (c *Switch) Run(args []string) error {
const tag = "switch.run"
c.flagSet.Parse(args[1:])
if c.opts.ShowHelp {
c.Usage()
return nil
}
if c.flagSet.NArg() == 0 {
c.log.Noticef("A version is missing")
c.Usage()
return nil
}
name := c.flagSet.Arg(0)
dir := filepath.Join(path.InstallDir(), name)
if _, err := os.Stat(dir); err != nil {
c.log.Warnf("%s is not installed", name)
return nil
}
if err := writeEnvPython(path.EnvPermanent(), dir); err != nil {
return errors.Wrap(err, tag)
}
c.log.Infof("Switch to %s", name)
return nil
}