-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathis-lisp-running.py
executable file
·126 lines (115 loc) · 3.5 KB
/
is-lisp-running.py
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env python
# -----------------------------------------------------------------------------
#
# Copyright 2013-2019 lispers.net - Dino Farinacci <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# -----------------------------------------------------------------------------
#
# is-lisp-running.py
#
# This script checks to see if there is any LISP processes running on the
# local system.
#
# Usage: python -O is-lisp-running.pyo
#
#------------------------------------------------------------------------------
from __future__ import print_function
from __future__ import division
from future import standard_library
standard_library.install_aliases()
from past.utils import old_div
from subprocess import getoutput
import os
def bold(string):
return("\033[1m" + string + "\033[0m")
#enddef
#
# Add title.
#
version = getoutput("cat lisp-version.txt")
rv = getoutput("head -1 logs/lisp-core.log")
py = "(py2)" if os.path.exists("./is-lisp-running.pyo") else "(py3)"
if (rv.find("version") != -1):
rv = rv.split("version ")[1]
rv = rv.split(",")[0]
rv = ", release {} running".format(bold(rv))
else:
rv = None
#endif
#
# Get data.
#
command = "ps auxww | egrep 'lisp-' |" + \
"egrep -v 'grep|is-lisp-running|tee|pslisp|sudo|log'"
output = getoutput(command)
if (output == None or output == ""):
print("No lispers.net code running, release {} installed".format(version))
exit(0)
#endif
if (rv == None): rv = ""
print("--- lispers.net release {} installed {}{} ---".format \
(bold(version), py, rv))
lines = output.split("\n")
#
# Special case Alpine Linux. It has different ps output.
#
if (os.path.exists("/etc/alpine-release")):
pid = "PID".ljust(8)
cpu = "TIME".ljust(8)
process = "Process"
print("{}{}{}".format(pid, cpu, process))
for line in lines:
items = line.split()
pid = items[0].ljust(8)
cpu = items[2].ljust(8)
process = items[3] if (items[3].find("lisp-ztr") != -1) else items[-1]
if (process.isdigit()): process = items[-2] + " " + process
print("{}{}{}".format(pid, cpu, process))
#endfor
exit(0)
#endif
#
# All other Linux variants.
#
pid = "PID".ljust(8)
cpu = "%CPU".ljust(8)
mem = "%MEM".ljust(8)
mb = "MEM".ljust(8)
process = "Process"
print("{}{}{}{}{}".format(pid, cpu, mem, mb, process))
for line in lines:
items = line.split()
pid = items[1].ljust(8)
cpu = items[2].ljust(8)
mem = items[3].ljust(8)
mb = old_div(int(items[4]), 1000)
gm = "M"
if (mb >= 1000):
mb = round(float(mb) / 1000, 1)
gm = "G"
#endif
mb = "{}{}".format(mb, gm).ljust(8)
if (line.find("lisp-core.py") != -1):
process = items[-2] + " " + items[-1]
elif (line.find("lisp-join.py") != -1):
group = items[-1]
if (group.count(".") != 3): group = items[-2] + " " + group
process = "lisp-join.py " + group
else:
process = items[-1]
#endif
print("{}{}{}{}{}".format(pid, cpu, mem, mb, process))
#endfor
exit(0)