1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-24 13:48:56 +08:00
shirou_gopsutil/cpu/cpu_freebsd.go

170 lines
4.5 KiB
Go
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2014-12-30 22:09:05 +09:00
package cpu
2014-04-18 16:34:47 +09:00
2014-04-23 11:37:00 +09:00
import (
2017-12-31 15:25:49 +09:00
"context"
2014-11-02 01:14:38 +01:00
"fmt"
"reflect"
2014-05-16 18:39:17 +09:00
"regexp"
"runtime"
2014-04-23 11:37:00 +09:00
"strconv"
2014-05-16 18:39:17 +09:00
"strings"
"unsafe"
"github.com/shirou/gopsutil/v4/internal/common"
"github.com/tklauser/go-sysconf"
"golang.org/x/sys/unix"
2014-04-23 11:37:00 +09:00
)
2021-12-22 21:54:41 +00:00
var (
ClocksPerSec = float64(128)
cpuMatch = regexp.MustCompile(`^CPU:`)
originMatch = regexp.MustCompile(`Origin\s*=\s*"(.+)"\s+Id\s*=\s*(.+)\s+Family\s*=\s*(.+)\s+Model\s*=\s*(.+)\s+Stepping\s*=\s*(.+)`)
featuresMatch = regexp.MustCompile(`Features=.+<(.+)>`)
featuresMatch2 = regexp.MustCompile(`Features2=[a-f\dx]+<(.+)>`)
cpuEnd = regexp.MustCompile(`^Trying to mount root`)
cpuCores = regexp.MustCompile(`FreeBSD/SMP: (\d*) package\(s\) x (\d*) core\(s\)`)
cpuTimesSize int
emptyTimes cpuTimes
)
2015-07-17 21:46:26 +09:00
func init() {
clkTck, err := sysconf.Sysconf(sysconf.SC_CLK_TCK)
2015-07-17 21:46:26 +09:00
// ignore errors
if err == nil {
ClocksPerSec = float64(clkTck)
2015-07-17 21:46:26 +09:00
}
}
2014-04-23 11:37:00 +09:00
func timeStat(name string, t *cpuTimes) *TimesStat {
return &TimesStat{
User: float64(t.User) / ClocksPerSec,
Nice: float64(t.Nice) / ClocksPerSec,
System: float64(t.Sys) / ClocksPerSec,
Idle: float64(t.Idle) / ClocksPerSec,
Irq: float64(t.Intr) / ClocksPerSec,
CPU: name,
2014-09-20 10:22:41 +09:00
}
}
2014-04-23 11:37:00 +09:00
func Times(percpu bool) ([]TimesStat, error) {
2017-12-31 15:25:49 +09:00
return TimesWithContext(context.Background(), percpu)
}
func TimesWithContext(ctx context.Context, percpu bool) ([]TimesStat, error) {
if percpu {
buf, err := unix.SysctlRaw("kern.cp_times")
2014-11-02 01:14:38 +01:00
if err != nil {
return nil, err
2014-11-02 01:14:38 +01:00
}
2014-04-23 11:37:00 +09:00
// We can't do this in init due to the conflict with cpu.init()
if cpuTimesSize == 0 {
cpuTimesSize = int(reflect.TypeOf(cpuTimes{}).Size())
2014-11-02 01:14:38 +01:00
}
ncpus := len(buf) / cpuTimesSize
ret := make([]TimesStat, 0, ncpus)
for i := 0; i < ncpus; i++ {
times := (*cpuTimes)(unsafe.Pointer(&buf[i*cpuTimesSize]))
if *times == emptyTimes {
// CPU not present
continue
}
ret = append(ret, *timeStat(fmt.Sprintf("cpu%d", len(ret)), times))
2014-11-02 01:14:38 +01:00
}
return ret, nil
}
2014-11-02 01:14:38 +01:00
buf, err := unix.SysctlRaw("kern.cp_time")
if err != nil {
return nil, err
2014-11-02 01:14:38 +01:00
}
2014-04-23 11:37:00 +09:00
times := (*cpuTimes)(unsafe.Pointer(&buf[0]))
return []TimesStat{*timeStat("cpu-total", times)}, nil
2014-04-18 16:34:47 +09:00
}
2014-05-16 18:39:17 +09:00
// Returns only one InfoStat on FreeBSD. The information regarding core
// count, however is accurate and it is assumed that all InfoStat attributes
// are the same across CPUs.
func Info() ([]InfoStat, error) {
2017-12-31 15:25:49 +09:00
return InfoWithContext(context.Background())
}
func InfoWithContext(ctx context.Context) ([]InfoStat, error) {
const dmesgBoot = "/var/run/dmesg.boot"
2014-05-16 18:39:17 +09:00
c, num, err := parseDmesgBoot(dmesgBoot)
if err != nil {
return nil, err
}
var u32 uint32
if u32, err = unix.SysctlUint32("hw.clockrate"); err != nil {
return nil, err
}
c.Mhz = float64(u32)
if u32, err = unix.SysctlUint32("hw.ncpu"); err != nil {
return nil, err
}
c.Cores = int32(u32)
if c.ModelName, err = unix.Sysctl("hw.model"); err != nil {
return nil, err
}
ret := make([]InfoStat, num)
for i := 0; i < num; i++ {
ret[i] = c
}
return ret, nil
}
func parseDmesgBoot(fileName string) (InfoStat, int, error) {
c := InfoStat{}
lines, _ := common.ReadLines(fileName)
cpuNum := 1 // default cpu num is 1
2014-05-16 18:39:17 +09:00
for _, line := range lines {
if matches := cpuEnd.FindStringSubmatch(line); matches != nil {
break
} else if matches := originMatch.FindStringSubmatch(line); matches != nil {
2014-05-16 18:39:17 +09:00
c.VendorID = matches[1]
c.Family = matches[3]
c.Model = matches[4]
2014-09-20 00:15:35 +09:00
t, err := strconv.ParseInt(matches[5], 10, 32)
if err != nil {
2017-03-15 22:43:20 +09:00
return c, 0, fmt.Errorf("unable to parse FreeBSD CPU stepping information from %q: %v", line, err)
2014-09-20 00:15:35 +09:00
}
c.Stepping = int32(t)
} else if matches := featuresMatch.FindStringSubmatch(line); matches != nil {
2014-05-16 18:39:17 +09:00
for _, v := range strings.Split(matches[1], ",") {
c.Flags = append(c.Flags, strings.ToLower(v))
}
} else if matches := featuresMatch2.FindStringSubmatch(line); matches != nil {
2014-05-16 18:39:17 +09:00
for _, v := range strings.Split(matches[1], ",") {
c.Flags = append(c.Flags, strings.ToLower(v))
}
} else if matches := cpuCores.FindStringSubmatch(line); matches != nil {
t, err := strconv.ParseInt(matches[1], 10, 32)
if err != nil {
2017-03-15 22:43:20 +09:00
return c, 0, fmt.Errorf("unable to parse FreeBSD CPU Nums from %q: %v", line, err)
}
cpuNum = int(t)
t2, err := strconv.ParseInt(matches[2], 10, 32)
if err != nil {
2017-03-15 22:43:20 +09:00
return c, 0, fmt.Errorf("unable to parse FreeBSD CPU cores from %q: %v", line, err)
}
c.Cores = int32(t2)
2014-05-16 18:39:17 +09:00
}
}
return c, cpuNum, nil
2014-05-16 18:39:17 +09:00
}
func CountsWithContext(ctx context.Context, logical bool) (int, error) {
return runtime.NumCPU(), nil
}