forked from spddl/GoInterruptPolicy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dialog.go
395 lines (366 loc) · 10.8 KB
/
dialog.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
package main
import (
"log"
"os"
"os/exec"
"sort"
"strings"
"github.com/lxn/walk"
"golang.org/x/sys/windows/registry"
//lint:ignore ST1001 standard behavior lxn/walk
. "github.com/lxn/walk/declarative"
)
type IrqPolicys struct {
Enums float64
Name string
}
type IrqPrioritys struct {
Enums float64
Name string
}
func IrqPolicy() []*IrqPolicys {
return []*IrqPolicys{
{IrqPolicyMachineDefault, "IrqPolicyMachineDefault"},
{IrqPolicyAllCloseProcessors, "IrqPolicyAllCloseProcessors"},
{IrqPolicyOneCloseProcessor, "IrqPolicyOneCloseProcessor"},
{IrqPolicyAllProcessorsInMachine, "IrqPolicyAllProcessorsInMachine"},
{IrqPolicySpecifiedProcessors, "IrqPolicySpecifiedProcessors"},
{IrqPolicySpreadMessagesAcrossAllProcessors, "IrqPolicySpreadMessagesAcrossAllProcessors"},
}
}
func IrqPriority() []*IrqPrioritys {
return []*IrqPrioritys{
{0, "Undefined"},
{1, "Low"},
{2, "Normal"},
{3, "High"},
}
}
func RunDialog(owner walk.Form, device *Device) (int, error) {
var dlg *walk.Dialog
var db *walk.DataBinder
var acceptPB, cancelPB *walk.PushButton
var cpuArrayCom *walk.Composite
var devicePolicyCB, devicePriorityCB *walk.ComboBox
var deviceMessageNumberLimitNE *walk.NumberEdit
return Dialog{
AssignTo: &dlg,
Title: Bind("'Device Policy' + (device.DeviceDesc == '' ? '' : ' - ' + device.DeviceDesc)"),
DefaultButton: &acceptPB,
CancelButton: &cancelPB,
DataBinder: DataBinder{
AssignTo: &db,
Name: "device",
DataSource: device,
ErrorPresenter: ToolTipErrorPresenter{},
},
MinSize: Size{
Width: 300,
Height: 300,
},
Layout: VBox{
MarginsZero: true,
},
Children: []Widget{
Composite{
Layout: Grid{Columns: 2},
Children: []Widget{
Composite{
Layout: Grid{
Columns: 2,
},
Children: []Widget{
Label{
Text: "Name:",
},
Label{
Text: Bind("device.DeviceDesc == '' ? 'N/A' : device.DeviceDesc"),
},
Label{
Text: "Location Info:",
},
Label{
Text: Bind("device.LocationInformation == '' ? 'N/A' : device.LocationInformation"),
},
Label{
Text: "DevObj Name:",
},
LineEdit{
Text: Bind("device.DevObjName == '' ? 'N/A' : device.DevObjName"),
ReadOnly: true,
},
},
},
GroupBox{
Title: "Message Signaled-Based Interrupts",
Visible: device.MsiSupported != 2,
Layout: Grid{Columns: 1},
Children: []Widget{
CheckBox{
Name: "MsiSupported",
Text: "MSI Mode:",
TextOnLeftSide: true,
Checked: device.MsiSupported == 1,
// Checked: Bind("eq(device.MsiSupported, 1, 'MsiSupported')"), // dont work, idk
OnClicked: func() {
if device.MsiSupported == 0 {
device.MsiSupported = 1
deviceMessageNumberLimitNE.SetEnabled(true)
device.MessageNumberLimit = uint32(deviceMessageNumberLimitNE.Value())
} else {
device.MsiSupported = 0
deviceMessageNumberLimitNE.SetEnabled(false)
}
},
},
Composite{
Layout: Grid{
Columns: 3,
MarginsZero: true,
},
Children: []Widget{
LinkLabel{
Text: `MSI Limit: <a href="https://forums.guru3d.com/threads/windows-line-based-vs-message-signaled-based-interrupts-msi-tool.378044/">?</a>`,
OnLinkActivated: func(link *walk.LinkLabelLink) {
// https://stackoverflow.com/a/12076082
exec.Command("rundll32.exe", "url.dll,FileProtocolHandler", link.URL()).Start()
},
},
NumberEdit{
SpinButtonsVisible: true,
AssignTo: &deviceMessageNumberLimitNE,
Enabled: device.MsiSupported == 1,
MinValue: 1,
MaxValue: hasMsiX(device.InterruptTypeMap),
Value: Bind("device.MessageNumberLimit < 1.0 ? 1.0 : device.MessageNumberLimit"),
OnValueChanged: func() {
device.MessageNumberLimit = uint32(deviceMessageNumberLimitNE.Value())
},
},
},
},
Label{
Text: "Interrupt Type: " + interruptType(device.InterruptTypeMap),
},
Label{
Text: Bind("device.MaxMSILimit == 0 ? '' : 'Max MSI Limit: ' + device.MaxMSILimit"),
},
},
},
GroupBox{
Title: "Advanced Policies",
Layout: Grid{Columns: 2},
Children: []Widget{
Composite{
Layout: Grid{
Columns: 2,
MarginsZero: true,
},
Children: []Widget{
LinkLabel{
Text: `Device Priority: <a href="https://docs.microsoft.com/en-us/windows-hardware/drivers/ddi/miniport/ne-miniport-_irq_priority">?</a>`,
OnLinkActivated: func(link *walk.LinkLabelLink) {
// https://stackoverflow.com/a/12076082
exec.Command("rundll32.exe", "url.dll,FileProtocolHandler", link.URL()).Start()
},
},
ComboBox{
AssignTo: &devicePriorityCB,
Value: Bind("device.DevicePriority"),
BindingMember: "Enums",
DisplayMember: "Name",
Model: IrqPriority(),
OnCurrentIndexChanged: func() {
device.DevicePriority = uint32(devicePriorityCB.CurrentIndex())
},
},
LinkLabel{
Text: `Device Policy: <a href="https://docs.microsoft.com/en-us/windows-hardware/drivers/ddi/miniport/ne-miniport-_irq_device_policy">?</a>`,
OnLinkActivated: func(link *walk.LinkLabelLink) {
// https://stackoverflow.com/a/12076082
exec.Command("rundll32.exe", "url.dll,FileProtocolHandler", link.URL()).Start()
},
},
ComboBox{
AssignTo: &devicePolicyCB,
Value: Bind("device.DevicePolicy"),
BindingMember: "Enums",
DisplayMember: "Name",
Model: IrqPolicy(),
OnCurrentIndexChanged: func() {
device.DevicePolicy = uint32(devicePolicyCB.CurrentIndex())
if device.DevicePolicy == 4 {
cpuArrayCom.SetVisible(true)
} else {
cpuArrayCom.SetVisible(false)
}
},
},
},
},
Composite{
Alignment: AlignHCenterVCenter,
AssignTo: &cpuArrayCom,
Visible: Bind("device.DevicePolicy == 4"),
Layout: Grid{Columns: 2},
Children: CheckBoxList(CPUArray, &device.AssignmentSetOverride),
},
},
},
GroupBox{
Title: "Registry",
Layout: HBox{},
Children: []Widget{
PushButton{
Text: "Open Device",
OnClicked: func() {
regPath, err := GetRegistryLocation(uintptr(device.reg))
if err != nil {
walk.MsgBox(dlg, "NtQueryKey Error", err.Error(), walk.MsgBoxOK)
}
k, err := registry.OpenKey(registry.CURRENT_USER, `Software\Microsoft\Windows\CurrentVersion\Applets\Regedit`, registry.SET_VALUE)
if err != nil {
log.Fatal(err)
}
defer k.Close()
if err := k.SetStringValue("LastKey", regPath); err == nil {
exec.Command("regedit", "-m").Start()
}
},
},
PushButton{
Text: "Export current settings",
OnClicked: func() {
regPath, err := GetRegistryLocation(uintptr(device.reg))
if err != nil {
walk.MsgBox(dlg, "NtQueryKey Error", err.Error(), walk.MsgBoxOK)
}
path, err := os.Getwd()
if err != nil {
log.Println(err)
}
filePath, cancel, err := saveFileExplorer(dlg, path, strings.ReplaceAll(device.DeviceDesc, " ", "_")+".reg", "Save current settings", "Registry File (*.reg)|*.reg")
if !cancel || err != nil {
file, err := os.Create(filePath)
if err != nil {
return
}
defer file.Close()
file.WriteString(createRegFile(regPath, device))
}
},
},
HSpacer{},
},
},
},
Functions: map[string]func(args ...interface{}) (interface{}, error){
"checkIrqPolicy": func(args ...interface{}) (interface{}, error) {
for _, v := range IrqPolicy() {
if v.Enums == args[0].(float64) {
return v.Name, nil
}
}
return "", nil
},
"viewAsHex": func(args ...interface{}) (interface{}, error) {
if args[0].(Bits) == ZeroBit {
return "N/A", nil
}
bits := args[0].(Bits)
var result []string
for bit, cpu := range CPUMap {
if Has(bit, bits) {
result = append(result, cpu)
}
}
return strings.Join(result, ", "), nil
},
"eq": func(args ...interface{}) (interface{}, error) {
if len(args) != 2 {
log.Println("len(args) != 2")
return false, nil
}
switch v := args[0].(type) {
case float64:
if v == args[1].(float64) {
return true, nil
}
case Bits:
if v == Bits(args[1].(float64)) {
return true, nil
}
default:
log.Printf("I don't know about type %T!\n", v)
}
return false, nil
},
},
},
VSpacer{},
Composite{
Layout: HBox{},
Children: []Widget{
HSpacer{},
PushButton{
AssignTo: &acceptPB,
Text: "OK",
OnClicked: func() {
if device.DevicePolicy == 4 && device.AssignmentSetOverride == ZeroBit {
walk.MsgBox(dlg, "Invalid Option", "The affinity mask must contain at least one processor.", walk.MsgBoxIconError)
} else {
if err := db.Submit(); err != nil {
return
}
dlg.Accept()
}
},
},
PushButton{
AssignTo: &cancelPB,
Text: "Cancel",
OnClicked: func() { dlg.Cancel() },
},
},
},
},
}.Run(owner)
}
func CheckBoxList(names []string, bits *Bits) []Widget {
bs := make([]*walk.CheckBox, len(names))
children := []Widget{}
for i, name := range names {
bs[i] = new(walk.CheckBox)
local_CPUBits := CPUBits[i]
children = append(children, CheckBox{
AssignTo: &bs[i],
Text: "CPU " + name,
Checked: Has(*bits, local_CPUBits),
OnClicked: func() {
*bits = Toggle(local_CPUBits, *bits)
},
})
}
return children
}
// https://docs.microsoft.com/de-de/windows-hardware/drivers/kernel/enabling-message-signaled-interrupts-in-the-registry
func hasMsiX(b Bits) float64 {
if Has(b, Bits(4)) {
return 2048 // MSIX
} else {
return 16 // MSI
}
}
func interruptType(b Bits) string {
if b == ZeroBit {
return ""
}
var types []string
for bit, name := range InterruptTypeMap {
if Has(b, bit) {
types = append(types, name)
}
}
sort.Strings(types)
return strings.Join(types, ", ")
}