Merge pull request #143 from mgamsjager/freebsd-proc

FreeBSD process support
This commit is contained in:
Caleb Bassi 2019-05-15 16:44:11 -07:00 committed by GitHub
commit d734634a5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 67 additions and 1 deletions

View File

@ -0,0 +1,66 @@
// +build freebsd
package widgets
import (
"encoding/json"
"fmt"
"log"
"os/exec"
"strconv"
"strings"
)
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("failed to execute 'ps' command: %v", err)
}
list := processList{}
err = json.Unmarshal(output, &list)
if err != nil {
return nil, fmt.Errorf("failed to unmarshal json. %s", err)
}
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("failed to convert first field to int: %v. split: %v", err, process)
}
cpu, err := strconv.ParseFloat(process.Cpu, 64)
if err != nil {
log.Printf("failed to convert third field to float: %v. split: %v", err, process)
}
mem, err := strconv.ParseFloat(process.Mem, 64)
if err != nil {
log.Printf("failed to convert fourth field to float: %v. split: %v", err, process)
}
proc := Proc{
Pid: pid,
CommandName: process.Comm,
Cpu: cpu,
Mem: mem,
FullCommand: process.Args,
}
procs = append(procs, proc)
}
return procs, nil
}

View File

@ -1,4 +1,4 @@
// +build freebsd darwin openbsd
// +build darwin openbsd
package widgets