-
Notifications
You must be signed in to change notification settings - Fork 10
/
flags.go
84 lines (77 loc) · 2.41 KB
/
flags.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
package main
import (
"flag"
"fmt"
"os"
)
var (
flagDevObjName string
flagDevicePriority int
flagDevicePolicy int
flagMsiSupported int
flagMessageNumberLimit int
flagCPU string
flagRestart bool
flagRestartOnChange bool
flagHelp bool
CLIMode bool
)
func init() {
flag.StringVar(&flagDevObjName, "devobj", "", "\\Device\\00000123")
flag.StringVar(&flagCPU, "cpu", "", "e.g. 0,1,2,4")
flag.IntVar(&flagDevicePriority, "priority", -1, "0=Undefined, 1=Low, 2=Normal, 3=High")
flag.IntVar(&flagDevicePolicy, "policy", -1, "0=Default, 1=All Close Proc, 2=One Close Proc, 3=All Proc in Machine, 4=Specified Proc, 5=Spread Messages Across All Proc")
flag.IntVar(&flagMsiSupported, "msisupported", -1, "0=Off, 1=On")
flag.IntVar(&flagMessageNumberLimit, "msilimit", -1, "Message Signaled Interrupt Limit")
flag.BoolVar(&flagRestart, "restart", false, "Restart target device")
flag.BoolVar(&flagRestartOnChange, "restart-on-change", false, "Restart target device on change")
flag.BoolVar(&flagHelp, "help", false, "Print Defaults")
flag.Parse()
if flagHelp {
fmt.Printf("Usage: %s [OPTIONS] argument ...\n", os.Args[0])
flag.PrintDefaults()
os.Exit(0)
}
if flagDevObjName != "" || flagDevicePriority != -1 || flagDevicePolicy != -1 || flagMsiSupported != -1 || flagMessageNumberLimit != -1 || flagRestart || flagRestartOnChange {
CLIMode = true
}
if flagDevObjName != "" {
fmt.Println("DevObjName:", flagDevObjName)
}
if flagDevicePriority != -1 {
var prio string
switch flagDevicePriority {
case 0:
prio = "Undefined"
case 1:
prio = "Low"
case 2:
prio = "Normal"
case 3:
prio = "High"
default:
prio = fmt.Sprintf("%d", flagDevicePriority)
}
fmt.Println("DevicePriority:", prio)
}
if flagDevicePolicy != -1 {
var policy string
switch flagDevicePolicy {
case IrqPolicyMachineDefault: // 0x00
policy = "Default"
case IrqPolicyAllCloseProcessors: // 0x01
policy = "All Close Proc"
case IrqPolicyOneCloseProcessor: // 0x02
policy = "One Close Proc"
case IrqPolicyAllProcessorsInMachine: // 0x03
policy = "All Proc in Machine"
case IrqPolicySpecifiedProcessors: // 0x04
policy = "Specified Proc"
case IrqPolicySpreadMessagesAcrossAllProcessors: // 0x05
policy = "Spread Messages Across All Proc"
default:
policy = fmt.Sprintf("%d", flagDevicePolicy)
}
fmt.Println("DevicePolicy:", policy)
}
}