#!/bin/python # -*- coding: utf-8 -*- import difflib import textwrap import time import re #import fenrir.utils.debug class screen(): def __init__(self, device='/dev/vcsa'): self.vcsaDevicePath = device self.textWrapper = textwrap.TextWrapper() self.textWrapper.drop_whitespace = False def analyzeScreen(self, environment): # set new "old" values environment['screenData']['oldContentBytes'] = environment['screenData']['newContentBytes'] environment['screenData']['oldContentText'] = environment['screenData']['newContentText'] environment['screenData']['oldContentTextAttrib'] = environment['screenData']['newContentAttrib'] environment['screenData']['oldCursor']['x'] = environment['screenData']['newCursor']['x'] environment['screenData']['oldCursor']['y'] = environment['screenData']['newCursor']['y'] environment['screenData']['oldTTY'] = environment['screenData']['newTTY'] environment['screenData']['oldDelta'] = environment['screenData']['newDelta'] # read screen currTTY = open('/sys/devices/virtual/tty/tty0/active','r') environment['screenData']['newTTY'] = currTTY.read()[3:-1] currTTY.close() try: vcsa = open(self.vcsaDevicePath + environment['screenData']['newTTY'] ,'rb',0) environment['screenData']['newContentBytes'] = vcsa.read() vcsa.close() if len(environment['screenData']['newContentBytes']) < 5: return environment except: return environment # get metadata like cursor or screensize environment['screenData']['lines'] = int( environment['screenData']['newContentBytes'][0]) environment['screenData']['columns'] = int( environment['screenData']['newContentBytes'][1]) environment['screenData']['newCursor']['x'] = int( environment['screenData']['newContentBytes'][2]) environment['screenData']['newCursor']['y'] = int( environment['screenData']['newContentBytes'][3]) # analyze content environment['screenData']['newContentText'] = str(environment['screenData']['newContentBytes'][4:][::2].decode('WINDOWS-1250')) environment['screenData']['newContentAttrib'] = environment['screenData']['newContentBytes'][5:][::2] environment['screenData']['newContentText'] = '\n'.join(self.textWrapper.wrap(environment['screenData']['newContentText'], ))[:-2] if environment['screenData']['newTTY'] != environment['screenData']['oldTTY']: self.textWrapper.width = environment['screenData']['columns'] environment['screenData']['oldContentBytes'] = b'' environment['screenData']['oldContentAttrib'] = b'' environment['screenData']['oldContentText'] = '' environment['screenData']['oldCursor']['x'] = 0 environment['screenData']['oldCursor']['y'] = 0 environment['screenData']['oldDelta'] = '' environment['screenData']['newDelta'] = '' # changes on the screen if (environment['screenData']['oldContentText'] != environment['screenData']['newContentText']) and \ (len(environment['screenData']['newContentText']) > 0): diff = difflib.ndiff(" ".join(environment['screenData']['oldContentText'].split()), " ".join(environment['screenData']['newContentText'].split())) environment['screenData']['newDelta'] = ''.join(x[2:] for x in diff if x.startswith('+ ')) return environment