forked from ycrash/yc-data-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproc_windows.go
90 lines (86 loc) · 1.57 KB
/
proc_windows.go
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//go:build windows
// +build windows
package shell
import (
"bufio"
"bytes"
"os"
"strconv"
"strings"
)
func GetTopCpu() (pid int, err error) {
output, err := CommandCombinedOutput(ProcessTopCPU)
if err != nil {
return
}
scanner := bufio.NewScanner(bytes.NewReader(output))
cpid := os.Getpid()
Next:
for scanner.Scan() {
line := scanner.Text()
line = strings.TrimSpace(line)
p := strings.Index(line, "java")
if p >= 0 {
columns := strings.Split(line, " ")
var col []string
for _, column := range columns {
if len(column) > 0 {
col = append(col, column)
if len(col) > 6 {
break
}
}
}
if len(col) > 6 {
id := strings.TrimSpace(col[5])
pid, err = strconv.Atoi(id)
if err != nil {
continue Next
}
if pid == cpid {
continue Next
}
return
}
}
}
return
}
func GetTopMem() (pid int, err error) {
output, err := CommandCombinedOutput(ProcessTopMEM)
if err != nil {
return
}
scanner := bufio.NewScanner(bytes.NewReader(output))
cpid := os.Getpid()
Next:
for scanner.Scan() {
line := scanner.Text()
line = strings.TrimSpace(line)
p := strings.Index(line, "java")
if p >= 0 {
columns := strings.Split(line, " ")
var col []string
for _, column := range columns {
if len(column) > 0 {
col = append(col, column)
if len(col) > 6 {
break
}
}
}
if len(col) > 6 {
id := strings.TrimSpace(col[5])
pid, err = strconv.Atoi(id)
if err != nil {
continue Next
}
if pid == cpid {
continue Next
}
return
}
}
}
return
}