1
0
mirror of https://github.com/cjbassi/gotop.git synced 2025-04-25 13:49:00 +08:00

Create separate file for FreeBSD

This commit is contained in:
Matthias Gamsjager 2019-05-14 11:08:46 +02:00
parent 21cd642424
commit 68d38a61d7
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 Keywords 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)
}
processList := Keywords{}
err = json.Unmarshal(output, &processList)
if err != nil {
return nil, fmt.Errorf("failed to unmarshal json. %s", err)
} else {
return nil, fmt.Errorf("Success to unmarshal json. %s", output)
}
procs := []Proc{}
for _, process := range processList.ProcessInformation.Process {
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 package widgets