summaryrefslogtreecommitdiffstats
path: root/widgets/proc_freebsd.go
blob: a938636239a9bc4d704b7f46f9ec1d5c9d4557cf (plain)
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
package widgets

import (
	"encoding/json"
	"fmt"
	"log"
	"os/exec"
	"strconv"
	"strings"

	"github.com/xxxserxxx/gotop/v4/utils"
)

type processList struct {
	ProcessInformation struct {
		Process []struct {
			Pid  string `json:"pid"`
			Comm string `json:"command"`
			CPU  string `json:"percent-cpu" `
			Mem  string `json:"percent-memory" `
			Args string `json:"arguments" `
		} `json:"process"`
	} `json:"process-information"`
}

func getProcs() ([]Proc, error) {
	output, err := exec.Command("ps", "-axo pid,comm,%cpu,%mem,args", "--libxo", "json").Output()
	if err != nil {
		return nil, fmt.Errorf(tr.Value("widget.proc.err.ps", err.Error()))
	}

	list := processList{}
	err = json.Unmarshal(output, &list)
	if err != nil {
		return nil, fmt.Errorf(tr.Value("widget.proc.err.parse", err.Error()))
	}
	procs := []Proc{}

	for _, process := range list.ProcessInformation.Process {
		if process.Comm == "idle" {
			continue
		}
		pid, err := strconv.Atoi(strings.TrimSpace(process.Pid))
		if err != nil {
			log.Printf(tr.Value("widget.proc.err.pidconv", err.Error(), process))
		}
		cpu, err := strconv.ParseFloat(utils.ConvertLocalizedString(process.CPU), 32)
		if err != nil {
			log.Printf(tr.Value("widget.proc.err.cpuconv", err.Error(), process))
		}
		mem, err := strconv.ParseFloat(utils.ConvertLocalizedString(process.Mem), 32)
		if err != nil {
			log.Printf(tr.Value("widget.proc.err.memconv", err.Error(), process))
		}
		proc := Proc{
			Pid:         pid,
			CommandName: process.Comm,
			CPU:         cpu,
			Mem:         mem,
			FullCommand: process.Args,
		}
		procs = append(procs, proc)
	}

	return procs, nil
}