-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocesses.go
76 lines (65 loc) · 1.56 KB
/
processes.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
package main
import (
"fmt"
"os/user"
"strconv"
"github.com/go-errors/errors"
"github.com/shirou/gopsutil/v3/process"
)
func getRunningJupyterURLsForCurrentUser(notebookIP string) (pidURLMap map[int32]string, err error) {
pidURLMap = make(map[int32]string)
currentUser, err := user.Current()
if err != nil {
err = errors.Wrap(err, 0)
return
}
currentUserID, err := strconv.Atoi(currentUser.Uid)
if err != nil {
err = errors.Wrap(err, 0)
return
}
pids, err := process.Processes()
if err != nil {
err = errors.Wrap(err, 0)
return
}
for _, p := range pids {
// get the process name, verify that it's a jupyter process (by the name)
procName, err := p.Name()
if err != nil {
return pidURLMap, errors.Wrap(err, 0)
}
if procName != "jupyter-lab" {
continue
}
// get the username, verify that it's the current user
uids, err := p.Uids()
if err != nil {
return pidURLMap, errors.Wrap(err, 0)
}
if int(uids[0]) != currentUserID {
continue
}
// get all tcp connections that are listening and construct their URLs
conns, err := p.Connections()
if err != nil {
return pidURLMap, errors.Wrap(err, 0)
}
for _, conn := range conns {
if conn.Status == "LISTEN" && conn.Family == 2 { // TODO: Family == 2 is linux specific
var address string
if notebookIP != "" {
address = notebookIP
} else {
address = conn.Laddr.IP
}
pidURLMap[p.Pid] = fmt.Sprintf("%s:%d", address, conn.Laddr.Port)
}
// TODO: error if more than one found
}
}
if err != nil {
err = errors.Wrap(err, 0)
}
return
}