2012-10-23 17:24:58 +00:00
|
|
|
''' Plugin provides fullscreen console '''
|
2012-09-12 13:18:58 +00:00
|
|
|
from Tank.Plugins.Aggregator import AggregatorPlugin, AggregateResultListener
|
2012-09-17 18:07:54 +00:00
|
|
|
from Tank.Plugins.ConsoleScreen import Screen
|
2012-10-03 16:49:13 +00:00
|
|
|
from tankcore import AbstractPlugin
|
2012-09-17 18:07:54 +00:00
|
|
|
import logging
|
2012-10-03 16:49:13 +00:00
|
|
|
import sys
|
|
|
|
import traceback
|
2012-09-12 13:18:58 +00:00
|
|
|
|
2012-09-17 18:07:54 +00:00
|
|
|
|
2012-09-12 13:18:58 +00:00
|
|
|
class ConsoleOnlinePlugin(AbstractPlugin, AggregateResultListener):
|
2012-10-23 17:24:58 +00:00
|
|
|
''' Console plugin '''
|
2012-09-12 13:18:58 +00:00
|
|
|
SECTION = 'console'
|
|
|
|
|
|
|
|
def __init__(self, core):
|
2012-09-13 10:19:33 +00:00
|
|
|
AbstractPlugin.__init__(self, core)
|
2012-09-12 13:18:58 +00:00
|
|
|
self.screen = None
|
2012-09-17 18:07:54 +00:00
|
|
|
self.render_exception = None
|
2012-10-03 12:37:15 +00:00
|
|
|
self.console_markup = None
|
2012-10-17 12:29:27 +00:00
|
|
|
self.remote_translator = None
|
2012-10-23 17:24:58 +00:00
|
|
|
self.info_panel_width = '33'
|
|
|
|
self.short_only = 0
|
2012-09-12 13:18:58 +00:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_key():
|
|
|
|
return __file__
|
|
|
|
|
|
|
|
def configure(self):
|
2012-10-23 17:24:58 +00:00
|
|
|
self.info_panel_width = self.get_option("info_panel_width", self.info_panel_width)
|
2012-09-13 10:19:33 +00:00
|
|
|
self.short_only = int(self.get_option("short_only", '0'))
|
2012-11-20 11:32:50 +00:00
|
|
|
if not int(self.get_option("disable_all_colors", '0')):
|
2012-10-17 12:29:27 +00:00
|
|
|
self.console_markup = RealConsoleMarkup()
|
|
|
|
else:
|
|
|
|
self.console_markup = NoConsoleMarkup()
|
|
|
|
for color in self.get_option("disable_colors", '').split(' '):
|
|
|
|
self.console_markup.__dict__[color] = ''
|
|
|
|
self.screen = Screen(self.info_panel_width, self.console_markup)
|
2012-10-03 12:37:15 +00:00
|
|
|
|
2012-10-22 11:11:19 +00:00
|
|
|
try:
|
|
|
|
aggregator = self.core.get_plugin_of_type(AggregatorPlugin)
|
|
|
|
aggregator.add_result_listener(self)
|
|
|
|
except KeyError:
|
|
|
|
self.log.debug("No aggregator for console")
|
2012-10-23 17:24:58 +00:00
|
|
|
self.screen.block_rows = []
|
|
|
|
self.screen.info_panel_percent = 100
|
2012-10-22 11:11:19 +00:00
|
|
|
|
2012-11-20 10:20:48 +00:00
|
|
|
|
2012-09-20 06:55:45 +00:00
|
|
|
def is_test_finished(self):
|
2012-10-17 12:29:27 +00:00
|
|
|
try:
|
|
|
|
console_view = self.screen.render_screen().encode('utf-8')
|
|
|
|
except Exception, ex:
|
|
|
|
self.log.warn("Exception inside render: %s", traceback.format_exc(ex))
|
|
|
|
self.render_exception = ex
|
|
|
|
console_view = ""
|
|
|
|
|
|
|
|
if console_view:
|
|
|
|
if not self.short_only:
|
2013-03-12 10:09:44 +00:00
|
|
|
self.log.debug("Writing console view to STDOUT")
|
2012-09-12 13:18:58 +00:00
|
|
|
sys.stdout.write(self.console_markup.clear)
|
2012-10-17 12:29:27 +00:00
|
|
|
sys.stdout.write(console_view)
|
2012-10-03 12:37:15 +00:00
|
|
|
sys.stdout.write(self.console_markup.TOTAL_RESET)
|
2012-10-17 12:29:27 +00:00
|
|
|
|
|
|
|
if self.remote_translator:
|
2012-11-20 10:20:48 +00:00
|
|
|
self.remote_translator.send_console(console_view)
|
2012-09-12 13:18:58 +00:00
|
|
|
|
2012-09-20 06:55:45 +00:00
|
|
|
return -1
|
|
|
|
|
2012-11-20 10:20:48 +00:00
|
|
|
|
2012-09-20 06:55:45 +00:00
|
|
|
def aggregate_second(self, second_aggregate_data):
|
2012-11-20 10:20:48 +00:00
|
|
|
self.screen.add_second_data(second_aggregate_data)
|
2012-09-20 06:55:45 +00:00
|
|
|
if self.short_only:
|
|
|
|
tpl = "Time: %s\tExpected RPS: %s\tActual RPS: %s\tActive Threads: %s\tAvg RT: %s"
|
2012-10-23 17:24:58 +00:00
|
|
|
ovr = second_aggregate_data.overall # just to see the next line in IDE
|
|
|
|
data = (second_aggregate_data.time, ovr.planned_requests, ovr.RPS,
|
|
|
|
ovr.active_threads, ovr.avg_response_time)
|
2012-09-20 06:55:45 +00:00
|
|
|
self.log.info(tpl % data)
|
2012-11-20 10:20:48 +00:00
|
|
|
|
2012-09-20 06:55:45 +00:00
|
|
|
|
2012-09-12 13:18:58 +00:00
|
|
|
def add_info_widget(self, widget):
|
2012-10-23 17:24:58 +00:00
|
|
|
''' add right panel widget '''
|
2012-09-12 13:18:58 +00:00
|
|
|
if not self.screen:
|
2012-10-18 10:46:50 +00:00
|
|
|
self.log.debug("No screen instance to add widget")
|
2012-09-12 13:18:58 +00:00
|
|
|
else:
|
|
|
|
self.screen.add_info_widget(widget)
|
|
|
|
|
2012-11-20 10:20:48 +00:00
|
|
|
|
2012-10-03 12:37:15 +00:00
|
|
|
# ======================================================
|
|
|
|
|
2012-11-20 10:20:48 +00:00
|
|
|
|
2012-10-03 12:37:15 +00:00
|
|
|
class RealConsoleMarkup(object):
|
|
|
|
'''
|
|
|
|
Took colors from here: https://www.siafoo.net/snippet/88
|
|
|
|
'''
|
|
|
|
WHITE_ON_BLACK = '\033[37;40m'
|
|
|
|
TOTAL_RESET = '\033[0m'
|
|
|
|
clear = "\x1b[2J\x1b[H"
|
|
|
|
new_line = "\n"
|
|
|
|
|
|
|
|
YELLOW = '\033[1;33m'
|
|
|
|
RED = '\033[1;31m'
|
|
|
|
RED_DARK = '\033[31;3m'
|
|
|
|
RESET = '\033[1;m'
|
|
|
|
CYAN = "\033[1;36m"
|
|
|
|
GREEN = "\033[1;32m"
|
|
|
|
WHITE = "\033[1;37m"
|
|
|
|
MAGENTA = '\033[1;35m'
|
|
|
|
BG_MAGENTA = '\033[1;45m'
|
|
|
|
BG_GREEN = '\033[1;42m'
|
|
|
|
BG_BROWN = '\033[1;43m'
|
|
|
|
BG_CYAN = '\033[1;46m'
|
|
|
|
|
|
|
|
def clean_markup(self, orig_str):
|
2012-10-23 17:24:58 +00:00
|
|
|
''' clean markup from string '''
|
2012-10-03 12:37:15 +00:00
|
|
|
for val in [self.YELLOW, self.RED, self.RESET,
|
|
|
|
self.CYAN, self.BG_MAGENTA, self.WHITE,
|
|
|
|
self.BG_GREEN, self.GREEN, self.BG_BROWN,
|
|
|
|
self.RED_DARK, self.MAGENTA, self.BG_CYAN]:
|
|
|
|
orig_str = orig_str.replace(val, '')
|
|
|
|
return orig_str
|
|
|
|
|
|
|
|
# ======================================================
|
2012-10-03 12:59:46 +00:00
|
|
|
# FIXME: 3 better way to have it?
|
2012-10-23 17:24:58 +00:00
|
|
|
|
2012-10-03 12:37:15 +00:00
|
|
|
class NoConsoleMarkup(RealConsoleMarkup):
|
2012-10-23 17:24:58 +00:00
|
|
|
''' all colors are disabled '''
|
2012-10-03 12:37:15 +00:00
|
|
|
WHITE_ON_BLACK = ''
|
|
|
|
TOTAL_RESET = ''
|
|
|
|
clear = ""
|
|
|
|
new_line = "\n"
|
|
|
|
|
|
|
|
YELLOW = ''
|
|
|
|
RED = ''
|
|
|
|
RED_DARK = ''
|
|
|
|
RESET = ''
|
|
|
|
CYAN = ""
|
|
|
|
GREEN = ""
|
|
|
|
WHITE = ""
|
|
|
|
MAGENTA = ''
|
|
|
|
BG_MAGENTA = ''
|
|
|
|
BG_GREEN = ''
|
|
|
|
BG_BROWN = ''
|
|
|
|
BG_CYAN = ''
|
|
|
|
|
|
|
|
# ======================================================
|
|
|
|
|
|
|
|
|
|
|
|
class AbstractInfoWidget:
|
2012-10-23 17:24:58 +00:00
|
|
|
''' parent class for all right panel widgets '''
|
2012-10-03 12:37:15 +00:00
|
|
|
def __init__(self):
|
|
|
|
self.log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
def render(self, screen):
|
2012-10-25 14:12:24 +00:00
|
|
|
raise NotImplementedError()
|
2012-10-03 12:37:15 +00:00
|
|
|
|
|
|
|
def get_index(self):
|
2012-10-23 17:24:58 +00:00
|
|
|
''' get vertical priority index '''
|
|
|
|
return 0
|
|
|
|
|
2012-10-03 12:37:15 +00:00
|
|
|
|