forked from jaypipes/ghw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpu_windows.go
57 lines (51 loc) · 1.59 KB
/
cpu_windows.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
// +build !linux
// Use and distribution licensed under the Apache license version 2.
//
// See the COPYING file in the root project directory for full text.
//
package ghw
import (
"github.com/StackExchange/wmi"
)
const wmqlProcessor = "SELECT Manufacturer, Name, NumberOfLogicalProcessors, NumberOfCores, LoadPercentage FROM Win32_Processor"
type win32Processor struct {
Manufacturer string
Name string
NumberOfLogicalProcessors uint32
NumberOfCores uint32
LoadPercentage uint16
}
func (ctx *context) cpuFillInfo(info *CPUInfo) error {
// Getting info from WMI
var win32descriptions []win32Processor
if err := wmi.Query(wmqlProcessor, &win32descriptions); err != nil {
return err
}
// Converting into standard structures
info.Processors = ctx.processorsGet(win32descriptions)
var totCores uint32
var totThreads uint32
for _, p := range info.Processors {
totCores += p.NumCores
totThreads += p.NumThreads
}
info.TotalCores = totCores
info.TotalThreads = totThreads
return nil
}
func (ctx *context) processorsGet(win32descriptions []win32Processor) []*Processor {
var procs []*Processor
// Converting into standard structures
for index, description := range win32descriptions {
p := &Processor{
Id: index, // TODO: how to get a decent "Physical ID" to use ?
Model: description.Name,
Vendor: description.Manufacturer,
NumCores: description.NumberOfCores,
NumThreads: description.NumberOfLogicalProcessors,
Load: description.LoadPercentage,
}
procs = append(procs, p)
}
return procs
}