Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

Commit

Permalink
Use old 'ps' parsing method on freebsd
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbassi committed Dec 14, 2018
1 parent a28e811 commit f608f63
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 70 deletions.
55 changes: 0 additions & 55 deletions src/widgets/proc_darwin.go

This file was deleted.

56 changes: 56 additions & 0 deletions src/widgets/proc_linux.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
package widgets

import (
"log"
"os/exec"
"strconv"
"strings"
)

func (self *Proc) update() {
processes := Processes()
// have to iterate like this in order to actually change the value
for i := range processes {
processes[i].CPU /= self.cpuCount
}

self.ungroupedProcs = processes
self.groupedProcs = Group(processes)

self.Sort()
}

func Processes() []Process {
output, err := exec.Command("ps", "-axo", "pid:10,comm:50,pcpu:5,pmem:5,args").Output()
if err != nil {
log.Printf("failed to execute 'ps' command: %v", err)
}

// converts to []string, removing trailing newline and header
processStrArr := strings.Split(strings.TrimSuffix(string(output), "\n"), "\n")[1:]

processes := []Process{}
for _, line := range processStrArr {
pid, err := strconv.Atoi(strings.TrimSpace(line[0:10]))
if err != nil {
log.Printf("failed to convert PID to int: %v. line: %v", err, line)
}
cpu, err := strconv.ParseFloat(strings.TrimSpace(line[63:68]), 64)
if err != nil {
log.Printf("failed to convert CPU usage to float: %v. line: %v", err, line)
}
mem, err := strconv.ParseFloat(strings.TrimSpace(line[69:74]), 64)
if err != nil {
log.Printf("failed to convert Mem usage to float: %v. line: %v", err, line)
}
process := Process{
PID: pid,
Command: strings.TrimSpace(line[11:61]),
CPU: cpu,
Mem: mem,
Args: line[74:],
}
processes = append(processes, process)
}
return processes
}
29 changes: 14 additions & 15 deletions src/widgets/proc_other.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// +build linux freebsd
// +build freebsd darwin

package widgets

Expand All @@ -23,34 +23,33 @@ func (self *Proc) update() {
}

func Processes() []Process {
output, err := exec.Command("ps", "-axo", "pid:10,comm:50,pcpu:5,pmem:5,args").Output()
output, err := exec.Command("ps", "-axo", "pid,comm,pcpu,pmem,args").Output()
if err != nil {
log.Printf("failed to execute 'ps' command: %v", err)
}

// converts to []string, removing trailing newline and header
processStrArr := strings.Split(strings.TrimSuffix(string(output), "\n"), "\n")[1:]

// converts to []string and removes the header
strOutput := strings.Split(strings.TrimSpace(string(output)), "\n")[1:]
processes := []Process{}
for _, line := range processStrArr {
pid, err := strconv.Atoi(strings.TrimSpace(line[0:10]))
for _, line := range strOutput {
split := strings.Fields(line)
pid, err := strconv.Atoi(split[0])
if err != nil {
log.Printf("failed to convert PID to int: %v. line: %v", err, line)
log.Printf("failed to convert first field to int: %v. split: %v", err, split)
}
cpu, err := strconv.ParseFloat(strings.TrimSpace(line[63:68]), 64)
cpu, err := strconv.ParseFloat(split[2], 64)
if err != nil {
log.Printf("failed to convert CPU usage to float: %v. line: %v", err, line)
log.Printf("failed to convert third field to float: %v. split: %v", err, split)
}
mem, err := strconv.ParseFloat(strings.TrimSpace(line[69:74]), 64)
mem, err := strconv.ParseFloat(split[3], 64)
if err != nil {
log.Printf("failed to convert Mem usage to float: %v. line: %v", err, line)
log.Printf("failed to convert fourth field to float: %v. split: %v", err, split)
}
process := Process{
PID: pid,
Command: strings.TrimSpace(line[11:61]),
Command: split[1],
CPU: cpu,
Mem: mem,
Args: line[74:],
Args: strings.Join(split[4:], " "),
}
processes = append(processes, process)
}
Expand Down

0 comments on commit f608f63

Please sign in to comment.