This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathroot.go
118 lines (103 loc) · 4.69 KB
/
root.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
116
117
118
// Copyright © 2016 Sidharth Kshatriya
//
// 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 cmd
import (
"fmt"
"github.com/fatih/color"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"os"
)
const (
dontbugDefaultMaxStackDepth = 256
)
var (
cfgFile string
gInstallLocationFlag string
gRRExecutableFlag string
)
// RootCmd represents the base command when called without any subcommands
var RootCmd = &cobra.Command{
Use: "dontbug",
Short: "Dontbug is a reversible debugger for PHP\nVersion 0.1\nCopyright (c) Sidharth Kshatriya 2016",
}
// Execute adds all child commands to the root command sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
if err := RootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(-1)
}
}
func init() {
cobra.OnInitialize(initConfig)
RootCmd.PersistentFlags().BoolP("verbose", "v", false, "print more messages to know what dontbug is doing")
RootCmd.PersistentFlags().StringVarP(&cfgFile, "config", "c", "", "config file (default is $HOME/.dontbug.yaml)")
RootCmd.PersistentFlags().StringVarP(&gInstallLocationFlag, "install-location", "l", "", "location of dontbug src folder (default is $GOPATH/src/github.com/sidkshatriya/dontbug)")
RootCmd.PersistentFlags().StringVar(&gRRExecutableFlag, "with-rr", "", "the rr (>= 4.3.0) executable (default is to assume rr is in $PATH)")
}
// initConfig reads in config file and ENV variables if set.
func initConfig() {
if cfgFile != "" {
// enable ability to specify config file via flag
viper.SetConfigFile(cfgFile)
}
viper.SetConfigName(".dontbug") // name of config file (without extension)
viper.AddConfigPath("$HOME") // adding home directory as first search path
viper.AutomaticEnv() // read in environment variables that match
viper.SetConfigType("yaml")
viper.BindPFlag("record-port", recordCmd.Flags().Lookup("record-port"))
viper.BindPFlag("server-port", recordCmd.Flags().Lookup("server-port"))
viper.BindPFlag("server-listen", recordCmd.Flags().Lookup("server-listen"))
viper.BindPFlag("max-stack-depth", recordCmd.Flags().Lookup("max-stack-depth"))
viper.BindPFlag("with-php", recordCmd.Flags().Lookup("with-php"))
viper.BindPFlag("php-cli-script", recordCmd.Flags().Lookup("php-cli-script"))
viper.BindPFlag("args", recordCmd.Flags().Lookup("args"))
viper.BindPFlag("take-snapshot", recordCmd.Flags().Lookup("take-snapshot"))
viper.BindPFlag("replay-host", replayCmd.Flags().Lookup("replay-host"))
viper.BindPFlag("replay-port", replayCmd.Flags().Lookup("replay-port"))
viper.BindPFlag("gdb-notify", replayCmd.Flags().Lookup("gdb-notify"))
viper.BindPFlag("gdb-remote-port", replayCmd.Flags().Lookup("gdb-remote-port"))
viper.BindPFlag("with-gdb", replayCmd.Flags().Lookup("with-gdb"))
viper.BindPFlag("install-location", RootCmd.Flags().Lookup("install-location"))
viper.BindPFlag("with-rr", RootCmd.Flags().Lookup("with-rr"))
viper.BindPFlag("verbose", RootCmd.Flags().Lookup("verbose"))
viper.SetDefault("with-rr", "rr")
viper.SetDefault("with-gdb", "gdb")
viper.SetDefault("with-php", "php")
viper.SetDefault("php-cli-script", false)
viper.SetDefault("args", "")
viper.RegisterAlias("record_port", "record-port")
viper.RegisterAlias("server_port", "server-port")
viper.RegisterAlias("server_listen", "server-listen")
viper.RegisterAlias("gdb_notify", "gdb-notify")
viper.RegisterAlias("replay_host", "replay-host")
viper.RegisterAlias("replay_port", "replay-port")
viper.RegisterAlias("max_stack_depth", "max-stack-depth")
viper.RegisterAlias("install_location", "install-location")
viper.RegisterAlias("gdb_remote_port", "gdb-remote-port")
viper.RegisterAlias("with_gdb", "with-gdb")
viper.RegisterAlias("with_rr", "with-rr")
viper.RegisterAlias("with_php", "with-php")
viper.RegisterAlias("php_cli_script", "php-cli-script")
viper.RegisterAlias("arguments", "args")
viper.RegisterAlias("argument", "args")
viper.RegisterAlias("arg", "args")
viper.RegisterAlias("take_snapshot", "take-snapshot")
viper.RegisterAlias("snapshot", "take-snapshot")
// If a config file is found, read it in.
if err := viper.ReadInConfig(); err == nil {
color.Yellow("dontbug: Using config file:%v", viper.ConfigFileUsed())
}
}