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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
#!/usr/bin/env python3
from asciimatics.event import KeyboardEvent
from asciimatics.widgets import Frame, Layout, MultiColumnListBox, Widget, Label, TextBox
from asciimatics.scene import Scene
from asciimatics.screen import Screen
from asciimatics.exceptions import ResizeScreenError, StopApplication
from asciimatics.parsers import AsciimaticsParser
import sys
from collections import defaultdict
try:
import psutil
except ImportError:
print("This sample requires the psutil package.")
print("Please run `pip install psutil` and try again.")
sys.exit(0)
def readable_mem(mem):
for suffix in ["", "K", "M", "G", "T"]:
if mem < 10000:
return "{}{}".format(int(mem), suffix)
mem /= 1024
return "{}P".format(int(mem))
def readable_pc(percent):
if percent < 100:
return str(round(percent * 10, 0) / 10)
else:
return str(int(percent))
class DemoFrame(Frame):
def __init__(self, screen):
super(DemoFrame, self).__init__(screen,
screen.height,
screen.width,
has_border=False,
name="My Form")
# Internal state required for doing periodic updates
self._last_frame = 0
self._sort = 5
self._reverse = True
# Create the basic form layout...
layout = Layout([1], fill_frame=True)
self._header = TextBox(1, as_string=True)
self._header.disabled = True
self._header.custom_colour = "label"
self._list = MultiColumnListBox(
Widget.FILL_FRAME,
[">6", 10, ">4", ">7", ">7", ">5", ">5", "100%"],
[],
titles=["PID", "USER", "NI", "VIRT", "RSS", "CPU%", "MEM%", "CMD"],
name="mc_list",
parser=AsciimaticsParser())
self.add_layout(layout)
layout.add_widget(self._header)
layout.add_widget(self._list)
layout.add_widget(
Label("Press `<`/`>` to change sort, `r` to toggle order, or `q` to quit."))
self.fix()
# Add my own colour palette
self.palette = defaultdict(
lambda: (Screen.COLOUR_WHITE, Screen.A_NORMAL, Screen.COLOUR_BLACK))
for key in ["selected_focus_field", "label"]:
self.palette[key] = (Screen.COLOUR_WHITE, Screen.A_BOLD, Screen.COLOUR_BLACK)
self.palette["title"] = (Screen.COLOUR_BLACK, Screen.A_NORMAL, Screen.COLOUR_WHITE)
def process_event(self, event):
# Do the key handling for this Frame.
if isinstance(event, KeyboardEvent):
if event.key_code in [ord('q'), ord('Q'), Screen.ctrl("c")]:
raise StopApplication("User quit")
elif event.key_code in [ord("r"), ord("R")]:
self._reverse = not self._reverse
elif event.key_code == ord("<"):
self._sort = max(0, self._sort - 1)
elif event.key_code == ord(">"):
self._sort = min(7, self._sort + 1)
# Force a refresh for improved responsiveness
self._last_frame = 0
# Now pass on to lower levels for normal handling of the event.
return super(DemoFrame, self).process_event(event)
def _update(self, frame_no):
# Refresh the list view if needed
if frame_no - self._last_frame >= self.frame_update_count or self._last_frame == 0:
self._last_frame = frame_no
# Create the data to go in the multi-column list...
last_selection = self._list.value
last_start = self._list.start_line
list_data = []
for process in psutil.process_iter():
try:
memory = process.memory_info()
data = [
process.pid,
process.username(),
int(process.nice()),
memory.vms,
memory.rss,
process.cpu_percent(),
process.memory_percent(),
(" ".join(process.cmdline()) if process.cmdline() else
"[{}]".format(process.name()))
]
list_data.append(data)
except psutil.AccessDenied:
# Some platforms don't allow querying of all processes...
pass
# Apply current sort and reformat for humans
list_data = sorted(list_data,
key=lambda f: f[self._sort],
reverse=self._reverse)
new_data = [
([
str(x[0]),
x[1],
str(x[2]),
readable_mem(x[3]),
readable_mem(x[4]),
readable_pc(x[5]),
readable_pc(x[6]),
x[7]
], x[0]) for x in list_data
]
# Add colours...
coloured_data = []
for cols, val in new_data:
cpu = float(cols[5])
if cpu < 40:
colour = ""
elif cpu < 60:
colour = "${3}"
elif cpu < 80:
colour = "${1}"
else:
colour = "${1,1}"
coloured_data.append(([colour + x for x in cols], val))
# Update the list and try to reset the last selection.
self._list.options = coloured_data
self._list.value = last_selection
self._list.start_line = last_start
self._header.value = (
"CPU usage: {}% Memory available: {}M".format(
str(round(psutil.cpu_percent() * 10, 0) / 10),
str(int(psutil.virtual_memory().available / 1024 / 1024))))
# Now redraw as normal
super(DemoFrame, self)._update(frame_no)
@property
def frame_update_count(self):
# Refresh once every 2 seconds by default.
return 40
def demo(screen):
screen.play([Scene([DemoFrame(screen)], -1)], stop_on_resize=True)
while True:
try:
Screen.wrapper(demo, catch_interrupt=True)
sys.exit(0)
except ResizeScreenError:
pass
|