2017-01-16 11:18:23 +00:00
#!/usr/bin/env python2
# -*-coding:UTF-8 -*
from asciimatics . widgets import Frame , ListBox , Layout , Divider , Text , \
Button , TextBox , Widget , Label
from asciimatics . effects import Cycle , Print , Stars
from asciimatics . scene import Scene
from asciimatics . screen import Screen
from asciimatics . exceptions import ResizeScreenError , NextScene , StopApplication
from asciimatics . event import Event
2017-01-17 13:31:06 +00:00
from asciimatics . event import KeyboardEvent , MouseEvent
2017-01-16 11:18:23 +00:00
import sys , os
import time , datetime
import argparse , ConfigParser
import json
import redis
2017-01-16 16:08:48 +00:00
import psutil
2017-01-17 13:31:06 +00:00
from subprocess import PIPE , Popen
2017-02-14 15:05:59 +00:00
from packages import Paste
2017-01-16 11:18:23 +00:00
# CONFIG VARIABLES
kill_retry_threshold = 60 #1m
log_filename = " ../logs/moduleInfo.log "
command_search_pid = " ps a -o pid,cmd | grep {} "
command_search_name = " ps a -o pid,cmd | grep {} "
command_restart_module = " screen -S \" Script \" -X screen -t \" {} \" bash -c \" ./ {} .py; read x \" "
printarrayGlob = [ None ] * 14
lastTimeKillCommand = { }
2017-01-17 13:31:06 +00:00
current_selected_value = 0
current_selected_queue = " "
2017-01-17 14:58:16 +00:00
current_selected_action = " "
current_selected_action = 0
2017-01-17 13:31:06 +00:00
PID_NAME_DICO = { }
TABLES = { " running " : [ ] , " idle " : [ ] , " notRunning " : [ ] , " logs " : [ ( " No events recorded yet " , 0 ) ] }
TABLES_TITLES = { " running " : " " , " idle " : " " , " notRunning " : " " , " logs " : " " }
TABLES_PADDING = { " running " : [ 12 , 23 , 8 , 8 , 23 , 10 , 55 , 11 , 11 , 12 ] , " idle " : [ 9 , 23 , 8 , 12 , 50 ] , " notRunning " : [ 9 , 23 , 35 ] , " logs " : [ 15 , 23 , 8 , 50 ] }
2017-01-16 14:30:33 +00:00
QUEUE_STATUS = { }
2017-01-16 16:08:48 +00:00
CPU_TABLE = { }
CPU_OBJECT_TABLE = { }
2017-01-16 11:18:23 +00:00
2017-02-14 15:05:59 +00:00
COMPLETE_PASTE_PATH_PER_PID = { }
2017-01-16 11:18:23 +00:00
class CListBox ( ListBox ) :
2017-01-16 13:41:02 +00:00
2017-01-16 11:18:23 +00:00
def __init__ ( self , queue_name , * args , * * kwargs ) :
self . queue_name = queue_name
super ( CListBox , self ) . __init__ ( * args , * * kwargs )
def update ( self , frame_no ) :
self . _options = TABLES [ self . queue_name ]
2017-01-16 13:41:02 +00:00
self . _draw_label ( )
# Calculate new visible limits if needed.
width = self . _w - self . _offset
height = self . _h
dx = dy = 0
# Clear out the existing box content
( colour , attr , bg ) = self . _frame . palette [ " field " ]
for i in range ( height ) :
self . _frame . canvas . print_at (
" " * width ,
self . _x + self . _offset + dx ,
self . _y + i + dy ,
colour , attr , bg )
# Don't bother with anything else if there are no options to render.
if len ( self . _options ) < = 0 :
return
# Render visible portion of the text.
self . _start_line = max ( 0 , max ( self . _line - height + 1 ,
min ( self . _start_line , self . _line ) ) )
2017-01-16 14:30:33 +00:00
for i , ( text , pid ) in enumerate ( self . _options ) :
2017-01-17 13:31:06 +00:00
if self . _start_line < = i < self . _start_line + height :
2017-01-16 13:41:02 +00:00
colour , attr , bg = self . _pick_colours ( " field " , i == self . _line )
self . _frame . canvas . print_at (
" { : {width} } " . format ( text , width = width ) ,
self . _x + self . _offset + dx ,
self . _y + i + dy - self . _start_line ,
colour , attr , bg )
2017-01-16 14:30:33 +00:00
if self . queue_name == " running " :
if QUEUE_STATUS [ pid ] == 2 :
queueStatus = Screen . COLOUR_RED
elif QUEUE_STATUS [ pid ] == 1 :
queueStatus = Screen . COLOUR_YELLOW
else :
queueStatus = Screen . COLOUR_GREEN
self . _frame . canvas . print_at ( " " ,
2017-01-16 16:08:48 +00:00
self . _x + 9 + dx ,
2017-01-16 14:30:33 +00:00
self . _y + i + dy - self . _start_line ,
colour , attr , queueStatus )
2017-01-16 13:41:02 +00:00
2017-01-16 11:18:23 +00:00
2017-01-17 13:31:06 +00:00
def process_event ( self , event ) :
if isinstance ( event , KeyboardEvent ) :
if len ( self . _options ) > 0 and event . key_code == Screen . KEY_UP :
# Move up one line in text - use value to trigger on_select.
self . _line = max ( 0 , self . _line - 1 )
self . value = self . _options [ self . _line ] [ 1 ]
elif len ( self . _options ) > 0 and event . key_code == Screen . KEY_DOWN :
# Move down one line in text - use value to trigger on_select.
self . _line = min ( len ( self . _options ) - 1 , self . _line + 1 )
self . value = self . _options [ self . _line ] [ 1 ]
elif len ( self . _options ) > 0 and event . key_code == ord ( ' ' ) :
global current_selected_value , current_selected_queue
2017-02-14 16:21:52 +00:00
if self . queue_name == " logs " :
return event
2017-01-17 13:31:06 +00:00
current_selected_value = self . value
current_selected_queue = self . queue_name
2017-01-17 14:58:16 +00:00
self . _frame . save ( )
raise NextScene ( " action_choice " )
2017-01-17 13:31:06 +00:00
else :
# Ignore any other key press.
return event
elif isinstance ( event , MouseEvent ) :
# Mouse event - rebase coordinates to Frame context.
new_event = self . _frame . rebase_event ( event )
if event . buttons != 0 :
if ( len ( self . _options ) > 0 and
self . is_mouse_over ( new_event , include_label = False ) ) :
# Use property to trigger events.
self . _line = min ( new_event . y - self . _y ,
len ( self . _options ) - 1 )
self . value = self . _options [ self . _line ] [ 1 ]
# If clicked on button <k>, kill the queue
if self . _x + 2 < = new_event . x < self . _x + 4 :
if self . queue_name in [ " running " , " idle " ] :
2017-01-17 14:58:16 +00:00
kill_module ( PID_NAME_DICO [ int ( self . value ) ] , self . value )
2017-01-17 13:31:06 +00:00
else :
restart_module ( self . value )
return
# Ignore other mouse events.
return event
else :
# Ignore other events
return event
2017-01-16 11:18:23 +00:00
class CLabel ( Label ) :
2017-01-17 13:31:06 +00:00
def __init__ ( self , label , listTitle = False ) :
2017-01-16 11:18:23 +00:00
super ( Label , self ) . __init__ ( None , tab_stop = False )
# Although this is a label, we don't want it to contribute to the layout
# tab calculations, so leave internal `_label` value as None.
self . _text = label
2017-01-17 13:31:06 +00:00
self . listTitle = listTitle
2017-01-16 11:18:23 +00:00
def set_layout ( self , x , y , offset , w , h ) :
# Do the usual layout work. then recalculate exact x/w values for the
# rendered button.
super ( Label , self ) . set_layout ( x , y , offset , w , h )
2017-01-17 13:31:06 +00:00
self . _x + = max ( 0 , ( self . _w - self . _offset - len ( self . _text ) ) / / 2 ) if not self . listTitle else 0
2017-01-16 11:18:23 +00:00
self . _w = min ( self . _w , len ( self . _text ) )
def update ( self , frame_no ) :
( colour , attr , bg ) = self . _frame . palette [ " title " ]
2017-01-17 13:31:06 +00:00
colour = Screen . COLOUR_YELLOW if not self . listTitle else colour
2017-01-16 11:18:23 +00:00
self . _frame . canvas . print_at (
self . _text , self . _x , self . _y , colour , attr , bg )
class ListView ( Frame ) :
def __init__ ( self , screen ) :
super ( ListView , self ) . __init__ ( screen ,
screen . height ,
screen . width ,
2017-01-16 13:41:02 +00:00
hover_focus = True ,
reduce_cpu = True )
2017-01-16 11:18:23 +00:00
self . _list_view_run_queue = CListBox (
" running " ,
screen . height / / 2 ,
2017-01-17 13:31:06 +00:00
[ ] , name = " LIST " )
2017-01-16 11:18:23 +00:00
self . _list_view_idle_queue = CListBox (
" idle " ,
screen . height / / 2 ,
2017-01-17 13:31:06 +00:00
[ ] , name = " LIST " )
2017-01-16 11:18:23 +00:00
self . _list_view_noRunning = CListBox (
" notRunning " ,
2017-01-17 13:31:06 +00:00
screen . height / / 5 ,
[ ] , name = " LIST " )
2017-01-16 11:18:23 +00:00
self . _list_view_Log = CListBox (
" logs " ,
screen . height / / 4 ,
2017-01-17 13:31:06 +00:00
[ ] , name = " LIST " )
#self._list_view_Log.disabled = True
2017-01-16 11:18:23 +00:00
#Running Queues
layout = Layout ( [ 100 ] )
self . add_layout ( layout )
text_rq = CLabel ( " Running Queues " )
layout . add_widget ( text_rq )
2017-01-17 13:31:06 +00:00
layout . add_widget ( CLabel ( TABLES_TITLES [ " running " ] , listTitle = True ) )
2017-01-16 11:18:23 +00:00
layout . add_widget ( self . _list_view_run_queue )
layout . add_widget ( Divider ( ) )
#Idling Queues
layout2 = Layout ( [ 1 , 1 ] )
self . add_layout ( layout2 )
text_iq = CLabel ( " Idling Queues " )
2017-01-17 13:31:06 +00:00
layout2 . add_widget ( text_iq , 0 )
layout2 . add_widget ( CLabel ( TABLES_TITLES [ " idle " ] , listTitle = True ) , 0 )
2017-01-16 11:18:23 +00:00
layout2 . add_widget ( self . _list_view_idle_queue , 0 )
#Non Running Queues
text_nq = CLabel ( " No Running Queues " )
layout2 . add_widget ( text_nq , 1 )
2017-01-17 13:31:06 +00:00
layout2 . add_widget ( CLabel ( TABLES_TITLES [ " notRunning " ] , listTitle = True ) , 1 )
2017-01-16 11:18:23 +00:00
layout2 . add_widget ( self . _list_view_noRunning , 1 )
layout2 . add_widget ( Divider ( ) , 1 )
#Log
text_l = CLabel ( " Logs " )
layout2 . add_widget ( text_l , 1 )
2017-01-17 13:31:06 +00:00
layout2 . add_widget ( CLabel ( TABLES_TITLES [ " logs " ] , listTitle = True ) , 1 )
2017-01-16 11:18:23 +00:00
layout2 . add_widget ( self . _list_view_Log , 1 )
self . fix ( )
@staticmethod
def _quit ( ) :
raise StopApplication ( " User pressed quit " )
2017-01-17 13:31:06 +00:00
class Confirm ( Frame ) :
def __init__ ( self , screen ) :
super ( Confirm , self ) . __init__ ( screen ,
screen . height * 1 / / 8 ,
2017-02-14 16:21:52 +00:00
screen . width * 1 / / 3 ,
2017-01-17 13:31:06 +00:00
hover_focus = True ,
on_load = self . _setValue ,
title = " Confirm action " ,
reduce_cpu = True )
# Create the form for displaying the list of contacts.
layout = Layout ( [ 100 ] , fill_frame = True )
self . add_layout ( layout )
2017-01-17 14:58:16 +00:00
self . label = CLabel ( " {} module {} {} ? " )
layout . add_widget ( Label ( " " ) )
2017-01-17 13:31:06 +00:00
layout . add_widget ( self . label )
layout2 = Layout ( [ 1 , 1 ] )
self . add_layout ( layout2 )
layout2 . add_widget ( Button ( " Ok " , self . _ok ) , 0 )
layout2 . add_widget ( Button ( " Cancel " , self . _cancel ) , 1 )
self . fix ( )
def _ok ( self ) :
2017-01-17 14:58:16 +00:00
global current_selected_value , current_selected_queue , current_selected_action , current_selected_amount
if current_selected_action == " KILL " :
kill_module ( PID_NAME_DICO [ int ( current_selected_value ) ] , current_selected_value )
2017-01-17 13:31:06 +00:00
else :
2017-01-17 14:58:16 +00:00
count = int ( current_selected_amount )
if current_selected_queue in [ " running " , " idle " ] :
restart_module ( PID_NAME_DICO [ int ( current_selected_value ) ] , count )
else :
restart_module ( current_selected_value , count )
2017-01-17 13:31:06 +00:00
current_selected_value = 0
2017-01-17 14:58:16 +00:00
current_selected_amount = 0
current_selected_action = " "
self . label . _text = " {} module {} {} ? "
self . save ( )
2017-01-17 13:31:06 +00:00
raise NextScene ( " dashboard " )
def _cancel ( self ) :
global current_selected_value
current_selected_value = 0
2017-01-17 14:58:16 +00:00
current_selected_amount = 0
current_selected_action = " "
self . label . _text = " {} module {} {} ? "
self . save ( )
2017-01-17 13:31:06 +00:00
raise NextScene ( " dashboard " )
def _setValue ( self ) :
2017-01-17 14:58:16 +00:00
global current_selected_value , current_selected_queue , current_selected_action , current_selected_amount
2017-01-17 13:31:06 +00:00
if current_selected_queue in [ " running " , " idle " ] :
2017-01-17 14:58:16 +00:00
action = current_selected_action if current_selected_action == " KILL " else current_selected_action + " " + str ( current_selected_amount ) + " x "
modulename = PID_NAME_DICO [ int ( current_selected_value ) ]
2017-01-17 13:31:06 +00:00
pid = current_selected_value
else :
2017-01-17 14:58:16 +00:00
action = current_selected_action + " " + str ( current_selected_amount ) + " x "
2017-01-17 13:31:06 +00:00
modulename = current_selected_value
pid = " "
self . label . _text = self . label . _text . format ( action , modulename , pid )
2017-01-17 14:58:16 +00:00
class Action_choice ( Frame ) :
def __init__ ( self , screen ) :
super ( Action_choice , self ) . __init__ ( screen ,
screen . height * 1 / / 8 ,
screen . width * 1 / / 2 ,
hover_focus = True ,
on_load = self . _setValue ,
title = " Confirm action " ,
reduce_cpu = True )
2017-01-17 13:31:06 +00:00
2017-01-17 14:58:16 +00:00
# Create the form for displaying the list of contacts.
layout = Layout ( [ 100 ] , fill_frame = True )
self . add_layout ( layout )
self . label = CLabel ( " Choose action on module {} {} " )
layout . add_widget ( self . label )
2017-02-14 15:05:59 +00:00
layout2 = Layout ( [ 1 , 1 , 1 , 1 ] )
2017-01-17 14:58:16 +00:00
self . add_layout ( layout2 )
layout2 . add_widget ( Button ( " Cancel " , self . _cancel ) , 0 )
2017-02-14 16:21:52 +00:00
self . _ShowPasteBtn = Button ( " Show current paste " , self . _showpaste )
layout2 . add_widget ( self . _ShowPasteBtn , 1 )
2017-01-17 14:58:16 +00:00
self . _killBtn = Button ( " KILL " , self . _kill )
2017-02-14 15:05:59 +00:00
layout2 . add_widget ( self . _killBtn , 2 )
layout2 . add_widget ( Button ( " START " , self . _start ) , 3 )
layout3 = Layout ( [ 1 , 1 , 1 , 1 ] )
2017-01-17 14:58:16 +00:00
self . add_layout ( layout3 )
self . textEdit = Text ( " Amount " , " amount " )
2017-02-14 15:05:59 +00:00
layout3 . add_widget ( self . textEdit , 3 )
2017-01-17 14:58:16 +00:00
self . fix ( )
def _kill ( self ) :
global current_selected_action
current_selected_action = " KILL "
self . label . _text = " Choose action on module {} {} "
self . save ( )
raise NextScene ( " confirm " )
def _start ( self ) :
global current_selected_action , current_selected_amount
current_selected_action = " START "
try :
count = int ( self . textEdit . value )
count = count if count < 20 else 1
except Exception :
count = 1
current_selected_amount = count
self . label . _text = " Choose action on module {} {} "
self . save ( )
raise NextScene ( " confirm " )
def _cancel ( self ) :
global current_selected_value
current_selected_value = 0
self . label . _text = " Choose action on module {} {} "
self . save ( )
raise NextScene ( " dashboard " )
2017-02-14 15:05:59 +00:00
def _showpaste ( self ) :
self . label . _text = " Choose action on module {} {} "
self . save ( )
raise NextScene ( " show_paste " )
2017-01-17 14:58:16 +00:00
def _setValue ( self ) :
self . _killBtn . disabled = False
2017-02-14 16:21:52 +00:00
self . _ShowPasteBtn . disabled = False
2017-01-17 14:58:16 +00:00
global current_selected_value , current_selected_queue
if current_selected_queue in [ " running " , " idle " ] :
modulename = PID_NAME_DICO [ int ( current_selected_value ) ]
pid = current_selected_value
else :
self . _killBtn . disabled = True
2017-02-14 16:21:52 +00:00
self . _ShowPasteBtn . disabled = True
2017-01-17 14:58:16 +00:00
modulename = current_selected_value
pid = " "
self . label . _text = self . label . _text . format ( modulename , pid )
2017-01-16 11:18:23 +00:00
2017-02-14 15:05:59 +00:00
class Show_paste ( Frame ) :
def __init__ ( self , screen ) :
super ( Show_paste , self ) . __init__ ( screen ,
screen . height ,
screen . width ,
hover_focus = True ,
on_load = self . _setValue ,
title = " Show current paste " ,
reduce_cpu = True )
# Create the form for displaying the list of contacts.
layout = Layout ( [ 100 ] , fill_frame = True )
self . layout = layout
self . add_layout ( layout )
self . label_list = [ ]
self . num_label = 41
for i in range ( self . num_label ) :
self . label_list + = [ Label ( " THE PASTE CONTENT " + str ( i ) ) ]
layout . add_widget ( self . label_list [ i ] )
layout2 = Layout ( [ 100 ] )
self . add_layout ( layout2 )
layout2 . add_widget ( Button ( " Ok " , self . _ok ) , 0 )
self . fix ( )
def _ok ( self ) :
global current_selected_value , current_selected_queue , current_selected_action , current_selected_amount
current_selected_value = 0
current_selected_amount = 0
current_selected_action = " "
self . save ( )
raise NextScene ( " dashboard " )
def _setValue ( self ) :
try :
#Verify that the module have a paste
if COMPLETE_PASTE_PATH_PER_PID [ current_selected_value ] is None :
self . label_list [ 0 ] . _text = " No paste for this module "
for i in range ( 1 , self . num_label ) :
self . label_list [ i ] . _text = " "
return
paste = Paste . Paste ( COMPLETE_PASTE_PATH_PER_PID [ current_selected_value ] )
old_content = paste . get_p_content ( ) [ 0 : 4000 ]
#Replace unprintable char by ?
content = " "
for i , c in enumerate ( old_content ) :
if ord ( c ) > 127 :
content + = ' ? '
else :
content + = c
#Print in the correct label
to_print = " "
i = 0
for line in content . split ( " \n " ) :
if i == self . num_label :
break
self . label_list [ i ] . _text = str ( i ) + " . " + line . replace ( " \r " , " " )
i + = 1
while i < self . num_label :
self . label_list [ i ] . _text = " "
i + = 1
except OSError as e :
self . label_list [ 0 ] . _text = " Error during parsing the filepath. Please, check manually "
2017-02-14 16:21:52 +00:00
self . label_list [ 1 ] . _text = COMPLETE_PASTE_PATH_PER_PID [ current_selected_value ]
for i in range ( 2 , self . num_label ) :
2017-02-14 15:05:59 +00:00
self . label_list [ i ] . _text = " "
except Exception as e :
self . label_list [ 0 ] . _text = " Error while displaying the paste: " + COMPLETE_PASTE_PATH_PER_PID [ current_selected_value ]
self . label_list [ 1 ] . _text = str ( e )
for i in range ( 2 , self . num_label ) :
self . label_list [ i ] . _text = " "
2017-01-16 11:18:23 +00:00
def demo ( screen ) :
2017-01-17 13:31:06 +00:00
dashboard = ListView ( screen )
confirm = Confirm ( screen )
2017-01-17 14:58:16 +00:00
action_choice = Action_choice ( screen )
2017-02-14 15:05:59 +00:00
show_paste = Show_paste ( screen )
2017-01-16 11:18:23 +00:00
scenes = [
2017-01-17 13:31:06 +00:00
Scene ( [ dashboard ] , - 1 , name = " dashboard " ) ,
2017-01-17 14:58:16 +00:00
Scene ( [ action_choice ] , - 1 , name = " action_choice " ) ,
2017-01-17 13:31:06 +00:00
Scene ( [ confirm ] , - 1 , name = " confirm " ) ,
2017-02-14 15:05:59 +00:00
Scene ( [ show_paste ] , - 1 , name = " show_paste " ) ,
2017-01-16 11:18:23 +00:00
]
# screen.play(scenes)
screen . set_scenes ( scenes )
time_cooldown = time . time ( )
global TABLES
while True :
2017-01-16 16:08:48 +00:00
if time . time ( ) - time_cooldown > args . refresh :
2017-01-17 13:31:06 +00:00
cleanRedis ( )
2017-01-16 11:18:23 +00:00
for key , val in fetchQueueData ( ) . iteritems ( ) :
TABLES [ key ] = val
2017-01-17 13:31:06 +00:00
TABLES [ " logs " ] = format_string ( printarrayGlob , TABLES_PADDING [ " logs " ] )
if current_selected_value == 0 :
dashboard . _update ( None )
screen . refresh ( )
2017-01-16 11:18:23 +00:00
time_cooldown = time . time ( )
2017-01-17 13:31:06 +00:00
screen . draw_next_frame ( )
2017-01-16 16:08:48 +00:00
time . sleep ( 0.02 )
2017-01-16 11:18:23 +00:00
def getPid ( module ) :
p = Popen ( [ command_search_pid . format ( module + " .py " ) ] , stdin = PIPE , stdout = PIPE , bufsize = 1 , shell = True )
for line in p . stdout :
print line
splittedLine = line . split ( )
if ' python2 ' in splittedLine :
return int ( splittedLine [ 0 ] )
return None
def clearRedisModuleInfo ( ) :
for k in server . keys ( " MODULE_* " ) :
server . delete ( k )
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , " * " , " - " , " Cleared redis module info " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
def cleanRedis ( ) :
for k in server . keys ( " MODULE_TYPE_* " ) :
moduleName = k [ 12 : ] . split ( ' _ ' ) [ 0 ]
for pid in server . smembers ( k ) :
flag_pid_valid = False
proc = Popen ( [ command_search_name . format ( pid ) ] , stdin = PIPE , stdout = PIPE , bufsize = 1 , shell = True )
for line in proc . stdout :
splittedLine = line . split ( )
if ( ' python2 ' in splittedLine or ' python ' in splittedLine ) and " ./ " + moduleName + " .py " in splittedLine :
flag_pid_valid = True
if not flag_pid_valid :
2017-01-17 13:31:06 +00:00
#print flag_pid_valid, 'cleaning', pid, 'in', k
2017-01-16 11:18:23 +00:00
server . srem ( k , pid )
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , moduleName , pid , " Cleared invalid pid in " + k ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
#time.sleep(5)
2017-01-17 14:58:16 +00:00
def restart_module ( module , count = 1 ) :
for i in range ( count ) :
p2 = Popen ( [ command_restart_module . format ( module , module ) ] , stdin = PIPE , stdout = PIPE , bufsize = 1 , shell = True )
time . sleep ( 0.2 )
2017-01-17 13:31:06 +00:00
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 14:58:16 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , " ? " , " Restarted " + str ( count ) + " x " ] , 0 ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . pop ( )
2017-01-16 11:18:23 +00:00
def kill_module ( module , pid ) :
2017-01-17 13:31:06 +00:00
#print ''
#print '-> trying to kill module:', module
2017-01-16 11:18:23 +00:00
if pid is None :
2017-01-17 13:31:06 +00:00
#print 'pid was None'
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , pid , " PID was None " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
pid = getPid ( module )
else : #Verify that the pid is at least in redis
if server . exists ( " MODULE_ " + module + " _ " + str ( pid ) ) == 0 :
return
lastTimeKillCommand [ pid ] = int ( time . time ( ) )
if pid is not None :
try :
2017-01-16 16:08:48 +00:00
#os.kill(pid, signal.SIGUSR1)
2017-01-17 13:31:06 +00:00
p = psutil . Process ( int ( pid ) )
2017-01-16 16:08:48 +00:00
p . terminate ( )
2017-01-17 13:31:06 +00:00
except Exception as e :
#print pid, 'already killed'
2017-01-16 11:18:23 +00:00
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , pid , " Already killed " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
return
2017-01-17 13:31:06 +00:00
time . sleep ( 0.2 )
if not p . is_running ( ) :
#print module, 'has been killed'
#print 'restarting', module, '...'
2017-01-16 11:18:23 +00:00
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , pid , " Killed " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
2017-01-17 14:58:16 +00:00
#restart_module(module)
2017-01-16 11:18:23 +00:00
else :
2017-01-17 13:31:06 +00:00
#print 'killing failed, retrying...'
2017-01-16 11:18:23 +00:00
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , pid , " Killing #1 failed. " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
2017-01-16 16:08:48 +00:00
#os.kill(pid, signal.SIGUSR1)
2017-01-17 13:31:06 +00:00
#time.sleep(1)
2017-01-16 16:08:48 +00:00
p . terminate ( )
2017-01-17 13:31:06 +00:00
if not p . is_running ( ) :
#print module, 'has been killed'
#print 'restarting', module, '...'
2017-01-16 11:18:23 +00:00
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , pid , " Killed " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
2017-01-17 14:58:16 +00:00
#restart_module(module)
2017-01-16 11:18:23 +00:00
else :
2017-01-17 13:31:06 +00:00
#print 'killing failed!'
2017-01-16 11:18:23 +00:00
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , pid , " Killing failed! " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
else :
2017-01-17 13:31:06 +00:00
#print 'Module does not exist'
2017-01-16 11:18:23 +00:00
inst_time = datetime . datetime . fromtimestamp ( int ( time . time ( ) ) )
2017-01-17 13:31:06 +00:00
printarrayGlob . insert ( 0 , ( [ str ( inst_time ) . split ( ' ' ) [ 1 ] , module , pid , " Killing failed, module not found " ] , 0 ) )
2017-01-16 11:18:23 +00:00
printarrayGlob . pop ( )
#time.sleep(5)
cleanRedis ( )
def fetchQueueData ( ) :
all_queue = set ( )
printarray1 = [ ]
printarray2 = [ ]
printarray3 = [ ]
for queue , card in server . hgetall ( " queues " ) . iteritems ( ) :
all_queue . add ( queue )
key = " MODULE_ " + queue + " _ "
keySet = " MODULE_TYPE_ " + queue
array_module_type = [ ]
for moduleNum in server . smembers ( keySet ) :
value = server . get ( key + str ( moduleNum ) )
2017-02-14 15:05:59 +00:00
complete_paste_path = server . get ( key + str ( moduleNum ) + " _PATH " )
COMPLETE_PASTE_PATH_PER_PID [ moduleNum ] = complete_paste_path
2017-01-16 11:18:23 +00:00
if value is not None :
timestamp , path = value . split ( " , " )
if timestamp is not None and path is not None :
startTime_readable = datetime . datetime . fromtimestamp ( int ( timestamp ) )
processed_time_readable = str ( ( datetime . datetime . now ( ) - startTime_readable ) ) . split ( ' . ' ) [ 0 ]
2017-01-16 14:30:33 +00:00
if ( ( datetime . datetime . now ( ) - startTime_readable ) . total_seconds ( ) ) > args . treshold :
QUEUE_STATUS [ moduleNum ] = 2
elif ( ( datetime . datetime . now ( ) - startTime_readable ) . total_seconds ( ) ) > args . treshold / 2 :
QUEUE_STATUS [ moduleNum ] = 1
else :
QUEUE_STATUS [ moduleNum ] = 0
2017-01-16 11:18:23 +00:00
if int ( card ) > 0 :
if int ( ( datetime . datetime . now ( ) - startTime_readable ) . total_seconds ( ) ) > args . treshold :
#log = open(log_filename, 'a')
#log.write(json.dumps([queue, card, str(startTime_readable), str(processed_time_readable), path]) + "\n")
try :
last_kill_try = time . time ( ) - lastTimeKillCommand [ moduleNum ]
except KeyError :
last_kill_try = kill_retry_threshold + 1
if args . autokill == 1 and last_kill_try > kill_retry_threshold :
kill_module ( queue , int ( moduleNum ) )
2017-01-16 16:08:48 +00:00
try :
cpu_percent = CPU_OBJECT_TABLE [ int ( moduleNum ) ] . cpu_percent ( )
CPU_TABLE [ moduleNum ] . insert ( 1 , cpu_percent )
cpu_avg = sum ( CPU_TABLE [ moduleNum ] ) / len ( CPU_TABLE [ moduleNum ] )
2017-01-17 13:31:06 +00:00
if len ( CPU_TABLE [ moduleNum ] ) > args . refresh * 10 :
CPU_TABLE [ moduleNum ] . pop ( )
mem_percent = CPU_OBJECT_TABLE [ int ( moduleNum ) ] . memory_percent ( )
2017-01-16 16:08:48 +00:00
except KeyError :
2017-01-17 13:31:06 +00:00
try :
CPU_OBJECT_TABLE [ int ( moduleNum ) ] = psutil . Process ( int ( moduleNum ) )
cpu_percent = CPU_OBJECT_TABLE [ int ( moduleNum ) ] . cpu_percent ( )
CPU_TABLE [ moduleNum ] = [ ]
cpu_avg = cpu_percent
mem_percent = CPU_OBJECT_TABLE [ int ( moduleNum ) ] . memory_percent ( )
except psutil . NoSuchProcess :
cpu_percent = 0
cpu_avg = cpu_percent
mem_percent = 0
2017-01-16 16:08:48 +00:00
array_module_type . append ( ( [ " <K> [ ] " , str ( queue ) , str ( moduleNum ) , str ( card ) , str ( startTime_readable ) , str ( processed_time_readable ) , str ( path ) , " {0:.2f} " . format ( cpu_percent ) + " % " , " {0:.2f} " . format ( mem_percent ) + " % " , " {0:.2f} " . format ( cpu_avg ) + " % " ] , moduleNum ) )
2017-01-16 11:18:23 +00:00
else :
2017-01-16 16:08:48 +00:00
printarray2 . append ( ( [ " <K> " , str ( queue ) , str ( moduleNum ) , str ( processed_time_readable ) , str ( path ) ] , moduleNum ) )
2017-01-17 14:58:16 +00:00
PID_NAME_DICO [ int ( moduleNum ) ] = str ( queue )
2017-01-16 11:18:23 +00:00
array_module_type . sort ( lambda x , y : cmp ( x [ 0 ] [ 4 ] , y [ 0 ] [ 4 ] ) , reverse = True )
for e in array_module_type :
printarray1 . append ( e )
for curr_queue in module_file_array :
if curr_queue not in all_queue :
2017-01-17 13:31:06 +00:00
printarray3 . append ( ( [ " <S> " , curr_queue , " Not running by default " ] , curr_queue ) )
2017-01-16 11:18:23 +00:00
else :
if len ( list ( server . smembers ( ' MODULE_TYPE_ ' + curr_queue ) ) ) == 0 :
if curr_queue not in no_info_modules :
no_info_modules [ curr_queue ] = int ( time . time ( ) )
2017-01-17 13:31:06 +00:00
printarray3 . append ( ( [ " <S> " , curr_queue , " No data " ] , curr_queue ) )
2017-01-16 11:18:23 +00:00
else :
#If no info since long time, try to kill
if args . autokill == 1 :
if int ( time . time ( ) ) - no_info_modules [ curr_queue ] > args . treshold :
kill_module ( curr_queue , None )
no_info_modules [ curr_queue ] = int ( time . time ( ) )
2017-01-17 13:31:06 +00:00
printarray3 . append ( ( [ " <S> " , curr_queue , " Stuck or idle, restarting in " + str ( abs ( args . treshold - ( int ( time . time ( ) ) - no_info_modules [ curr_queue ] ) ) ) + " s " ] , curr_queue ) )
2017-01-16 11:18:23 +00:00
else :
2017-01-17 13:31:06 +00:00
printarray3 . append ( ( [ " <S> " , curr_queue , " Stuck or idle, restarting disabled " ] , curr_queue ) )
2017-01-16 11:18:23 +00:00
printarray1 . sort ( key = lambda x : x [ 0 ] , reverse = False )
printarray2 . sort ( key = lambda x : x [ 0 ] , reverse = False )
2017-01-17 13:31:06 +00:00
printstring1 = format_string ( printarray1 , TABLES_PADDING [ " running " ] )
printstring2 = format_string ( printarray2 , TABLES_PADDING [ " idle " ] )
printstring3 = format_string ( printarray3 , TABLES_PADDING [ " notRunning " ] )
2017-01-16 11:18:23 +00:00
return { " running " : printstring1 , " idle " : printstring2 , " notRunning " : printstring3 }
2017-01-17 13:31:06 +00:00
def format_string ( tab , padding_row ) :
printstring = [ ]
for row in tab :
2017-01-16 16:08:48 +00:00
if row is None :
continue
2017-01-17 13:31:06 +00:00
the_array = row [ 0 ]
the_pid = row [ 1 ]
text = " "
for ite , elem in enumerate ( the_array ) :
2017-01-16 16:08:48 +00:00
if len ( elem ) > padding_row [ ite ] :
text + = " * " + elem [ - padding_row [ ite ] + 6 : ]
padd_off = " " * 5
else :
text + = elem
padd_off = " " * 0
text + = ( padding_row [ ite ] - len ( elem ) ) * " " + padd_off
2017-01-17 13:31:06 +00:00
printstring . append ( ( text , the_pid ) )
return printstring
2017-01-16 16:08:48 +00:00
2017-01-16 11:18:23 +00:00
if __name__ == " __main__ " :
parser = argparse . ArgumentParser ( description = ' Show info concerning running modules and log suspected stucked modules. May be use to automatically kill and restart stucked one. ' )
2017-01-17 13:31:06 +00:00
parser . add_argument ( ' -r ' , ' --refresh ' , type = int , required = False , default = 5 , help = ' Refresh rate ' )
2017-01-16 11:18:23 +00:00
parser . add_argument ( ' -t ' , ' --treshold ' , type = int , required = False , default = 60 * 10 * 1 , help = ' Refresh rate ' )
parser . add_argument ( ' -k ' , ' --autokill ' , type = int , required = False , default = 0 , help = ' Enable auto kill option (1 for TRUE, anything else for FALSE) ' )
parser . add_argument ( ' -c ' , ' --clear ' , type = int , required = False , default = 0 , help = ' Clear the current module information (Used to clear data from old launched modules) ' )
args = parser . parse_args ( )
configfile = os . path . join ( os . environ [ ' AIL_BIN ' ] , ' packages/config.cfg ' )
if not os . path . exists ( configfile ) :
raise Exception ( ' Unable to find the configuration file. \
Did you set environment variables ? \
Or activate the virtualenv . ' )
cfg = ConfigParser . ConfigParser ( )
cfg . read ( configfile )
# REDIS #
server = redis . StrictRedis (
host = cfg . get ( " Redis_Queues " , " host " ) ,
port = cfg . getint ( " Redis_Queues " , " port " ) ,
db = cfg . getint ( " Redis_Queues " , " db " ) )
if args . clear == 1 :
clearRedisModuleInfo ( )
lastTime = datetime . datetime . now ( )
module_file_array = set ( )
no_info_modules = { }
path_allmod = os . path . join ( os . environ [ ' AIL_HOME ' ] , ' doc/all_modules.txt ' )
with open ( path_allmod , ' r ' ) as module_file :
for line in module_file :
module_file_array . add ( line [ : - 1 ] )
2017-01-17 13:31:06 +00:00
cleanRedis ( )
2017-01-16 11:18:23 +00:00
2017-01-17 13:31:06 +00:00
TABLES_TITLES [ " running " ] = format_string ( [ ( [ " Action " , " Queue name " , " PID " , " # " , " S Time " , " R Time " , " Processed element " , " CPU % " , " Mem % " , " Avg CPU % " ] , 0 ) ] , TABLES_PADDING [ " running " ] ) [ 0 ] [ 0 ]
TABLES_TITLES [ " idle " ] = format_string ( [ ( [ " Action " , " Queue " , " PID " , " Idle Time " , " Last paste hash " ] , 0 ) ] , TABLES_PADDING [ " idle " ] ) [ 0 ] [ 0 ]
TABLES_TITLES [ " notRunning " ] = format_string ( [ ( [ " Action " , " Queue " , " State " ] , 0 ) ] , TABLES_PADDING [ " notRunning " ] ) [ 0 ] [ 0 ]
TABLES_TITLES [ " logs " ] = format_string ( [ ( [ " Time " , " Module " , " PID " , " Info " ] , 0 ) ] , TABLES_PADDING [ " logs " ] ) [ 0 ] [ 0 ]
2017-01-16 11:18:23 +00:00
2017-02-14 16:21:52 +00:00
try :
input ( " Press < ENTER > to launch the manager... " )
except SyntaxError :
pass
2017-01-16 11:18:23 +00:00
while True :
Screen . wrapper ( demo )
sys . exit ( 0 )