2016-09-14 18:04:52 -04:00
|
|
|
#!/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-09-19 16:15:58 -04:00
|
|
|
# Fenrir TTY screen reader
|
|
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
|
2016-09-14 18:04:52 -04:00
|
|
|
import difflib
|
2016-11-01 17:03:38 -04:00
|
|
|
import re
|
2016-09-16 19:04:03 -04:00
|
|
|
import subprocess
|
2016-12-15 04:31:03 -05:00
|
|
|
import fcntl
|
|
|
|
import termios
|
|
|
|
import time
|
2017-02-22 17:48:37 -05:00
|
|
|
import dbus
|
2016-09-19 16:15:58 -04:00
|
|
|
from core import debug
|
2016-10-29 10:50:51 -04:00
|
|
|
from utils import screen_utils
|
2016-09-14 18:04:52 -04:00
|
|
|
|
|
|
|
class driver():
|
|
|
|
def __init__(self):
|
|
|
|
self.vcsaDevicePath = '/dev/vcsa'
|
2017-02-26 09:17:08 -05:00
|
|
|
self.ListSessions = None
|
2016-09-14 18:04:52 -04:00
|
|
|
def initialize(self, environment):
|
2016-09-21 17:17:54 -04:00
|
|
|
self.env = environment
|
|
|
|
def shutdown(self):
|
2016-09-17 15:13:43 -04:00
|
|
|
pass
|
2016-09-14 18:04:52 -04:00
|
|
|
def getCurrScreen(self):
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['oldTTY'] = self.env['screen']['newTTY']
|
2016-09-14 18:04:52 -04:00
|
|
|
try:
|
|
|
|
currScreenFile = open('/sys/devices/virtual/tty/tty0/active','r')
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['newTTY'] = str(currScreenFile.read()[3:-1])
|
2016-09-14 18:04:52 -04:00
|
|
|
currScreenFile.close()
|
|
|
|
except Exception as e:
|
2016-09-21 17:17:54 -04:00
|
|
|
self.env['runtime']['debug'].writeDebugOut(str(e),debug.debugLevel.ERROR)
|
2016-12-15 04:36:10 -05:00
|
|
|
def injectTextToScreen(self, text, screen = None):
|
2017-04-24 16:40:18 -04:00
|
|
|
useScreen = "/dev/tty" + self.env['screen']['newTTY']
|
2016-12-15 04:36:10 -05:00
|
|
|
if screen != None:
|
|
|
|
useScreen = screen
|
|
|
|
with open(useScreen, 'w') as fd:
|
2016-12-15 04:31:03 -05:00
|
|
|
for c in text:
|
|
|
|
fcntl.ioctl(fd, termios.TIOCSTI, c)
|
|
|
|
|
2016-09-27 17:17:46 -04:00
|
|
|
def getCurrApplication(self):
|
2016-09-20 12:00:22 -04:00
|
|
|
apps = []
|
|
|
|
try:
|
2017-04-24 16:40:18 -04:00
|
|
|
currScreen = self.env['screen']['newTTY']
|
2016-09-23 05:25:19 -04:00
|
|
|
apps = subprocess.Popen('ps -t tty' + currScreen + ' -o comm,tty,stat', shell=True, stdout=subprocess.PIPE).stdout.read().decode()[:-1].split('\n')
|
2016-09-20 12:00:22 -04:00
|
|
|
except Exception as e:
|
2016-10-22 06:55:21 -04:00
|
|
|
self.env['runtime']['debug'].writeDebugOut(str(e),debug.debugLevel.ERROR)
|
2016-10-02 17:24:50 -04:00
|
|
|
return
|
2016-09-23 05:15:42 -04:00
|
|
|
try:
|
|
|
|
for i in apps:
|
|
|
|
i = i.upper()
|
|
|
|
i = i.split()
|
|
|
|
i[0] = i[0]
|
|
|
|
i[1] = i[1]
|
|
|
|
if '+' in i[2]:
|
|
|
|
if i[0] != '':
|
|
|
|
if not "GREP" == i[0] and \
|
|
|
|
not "SH" == i[0] and \
|
|
|
|
not "PS" == i[0]:
|
|
|
|
if "TTY"+currScreen in i[1]:
|
2017-04-24 16:40:18 -04:00
|
|
|
if self.env['screen']['newApplication'] != i[0]:
|
|
|
|
self.env['screen']['newApplication'] = i[0]
|
2016-10-02 18:29:24 -04:00
|
|
|
return
|
2016-10-02 17:24:50 -04:00
|
|
|
except Exception as e:
|
2016-10-22 06:58:34 -04:00
|
|
|
self.env['runtime']['debug'].writeDebugOut(str(e),debug.debugLevel.ERROR)
|
2016-09-20 12:00:22 -04:00
|
|
|
|
2017-02-22 17:48:37 -05:00
|
|
|
def getSessionInformation(self):
|
2017-04-30 16:08:35 -04:00
|
|
|
try:
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
if not self.ListSessions:
|
|
|
|
obj = bus.get_object('org.freedesktop.login1', '/org/freedesktop/login1')
|
|
|
|
inf = dbus.Interface(obj, 'org.freedesktop.login1.Manager')
|
|
|
|
self.ListSessions = inf.get_dbus_method('ListSessions')
|
|
|
|
|
|
|
|
sessions = self.ListSessions()
|
2017-04-30 16:14:19 -04:00
|
|
|
self.env['screen']['autoIgnoreScreens'] = []
|
2017-04-30 16:08:35 -04:00
|
|
|
for session in sessions:
|
|
|
|
obj = bus.get_object('org.freedesktop.login1', session[4])
|
|
|
|
inf = dbus.Interface(obj, 'org.freedesktop.DBus.Properties')
|
|
|
|
sessionType = inf.Get('org.freedesktop.login1.Session', 'Type')
|
|
|
|
screen = str(inf.Get('org.freedesktop.login1.Session', 'VTNr'))
|
|
|
|
if screen == '':
|
|
|
|
screen = str(inf.Get('org.freedesktop.login1.Session', 'TTY'))
|
|
|
|
screen = screen[screen.upper().find('TTY') + 3:]
|
|
|
|
if screen == '':
|
|
|
|
self.env['runtime']['debug'].writeDebugOut('No TTY found for session:' + session[4],debug.debugLevel.ERROR)
|
|
|
|
return
|
|
|
|
if sessionType.upper() == 'X11':
|
|
|
|
self.env['screenData']['autoIgnoreScreens'].append(screen)
|
|
|
|
if screen == self.env['screenData']['newTTY'] :
|
|
|
|
if self.env['generalInformation']['currUser'] != session[2]:
|
|
|
|
self.env['generalInformation']['prevUser'] = self.env['generalInformation']['currUser']
|
|
|
|
self.env['generalInformation']['currUser'] = session[2]
|
|
|
|
except Exception as e:
|
|
|
|
self.env['runtime']['debug'].writeDebugOut('getSessionInformation: Maybe no LoginD:' + str(e),debug.debugLevel.ERROR)
|
2017-04-30 16:14:19 -04:00
|
|
|
self.env['screen']['autoIgnoreScreens'] = []
|
2016-09-20 12:00:22 -04:00
|
|
|
|
2016-10-02 18:01:52 -04:00
|
|
|
def update(self, trigger='onUpdate'):
|
2016-09-14 18:04:52 -04:00
|
|
|
newContentBytes = b''
|
|
|
|
try:
|
|
|
|
# read screen
|
2017-04-24 16:40:18 -04:00
|
|
|
vcsa = open(self.vcsaDevicePath + self.env['screen']['newTTY'],'rb',0)
|
2016-09-14 18:04:52 -04:00
|
|
|
newContentBytes = vcsa.read()
|
|
|
|
vcsa.close()
|
|
|
|
if len(newContentBytes) < 5:
|
2016-09-19 16:15:58 -04:00
|
|
|
return
|
2016-09-14 18:04:52 -04:00
|
|
|
except Exception as e:
|
2016-09-21 17:17:54 -04:00
|
|
|
self.env['runtime']['debug'].writeDebugOut(str(e),debug.debugLevel.ERROR)
|
2016-09-19 16:15:58 -04:00
|
|
|
return
|
2016-09-21 17:17:54 -04:00
|
|
|
screenEncoding = self.env['runtime']['settingsManager'].getSetting('screen', 'encoding')
|
2016-09-14 18:04:52 -04:00
|
|
|
# set new "old" values
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['oldContentBytes'] = self.env['screen']['newContentBytes']
|
|
|
|
self.env['screen']['oldContentText'] = self.env['screen']['newContentText']
|
|
|
|
self.env['screen']['oldContentAttrib'] = self.env['screen']['newContentAttrib']
|
|
|
|
self.env['screen']['oldCursor'] = self.env['screen']['newCursor'].copy()
|
|
|
|
if self.env['screen']['newCursorAttrib']:
|
|
|
|
self.env['screen']['oldCursorAttrib'] = self.env['screen']['newCursorAttrib'].copy()
|
|
|
|
self.env['screen']['oldDelta'] = self.env['screen']['newDelta']
|
|
|
|
self.env['screen']['oldAttribDelta'] = self.env['screen']['newAttribDelta']
|
|
|
|
self.env['screen']['oldNegativeDelta'] = self.env['screen']['newNegativeDelta']
|
|
|
|
self.env['screen']['newContentBytes'] = newContentBytes
|
2016-09-14 18:04:52 -04:00
|
|
|
# get metadata like cursor or screensize
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['lines'] = int( self.env['screen']['newContentBytes'][0])
|
|
|
|
self.env['screen']['columns'] = int( self.env['screen']['newContentBytes'][1])
|
|
|
|
self.env['screen']['newCursor']['x'] = int( self.env['screen']['newContentBytes'][2])
|
|
|
|
self.env['screen']['newCursor']['y'] = int( self.env['screen']['newContentBytes'][3])
|
2016-09-14 18:04:52 -04:00
|
|
|
# analyze content
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['newContentText'] = self.env['screen']['newContentBytes'][4:][::2].decode(screenEncoding, "replace").encode('utf-8').decode('utf-8')
|
|
|
|
self.env['screen']['newContentText'] = screen_utils.removeNonprintable(self.env['screen']['newContentText'])
|
|
|
|
self.env['screen']['newContentAttrib'] = self.env['screen']['newContentBytes'][5:][::2]
|
|
|
|
self.env['screen']['newContentText'] = screen_utils.insertNewlines(self.env['screen']['newContentText'], self.env['screen']['columns'])
|
2016-09-14 18:04:52 -04:00
|
|
|
|
2017-04-24 16:40:18 -04:00
|
|
|
if self.env['screen']['newTTY'] != self.env['screen']['oldTTY']:
|
|
|
|
self.env['screen']['oldContentBytes'] = b''
|
|
|
|
self.env['screen']['oldContentAttrib'] = b''
|
|
|
|
self.env['screen']['oldContentText'] = ''
|
|
|
|
self.env['screen']['oldCursor']['x'] = 0
|
|
|
|
self.env['screen']['oldCursor']['y'] = 0
|
|
|
|
self.env['screen']['oldDelta'] = ''
|
|
|
|
self.env['screen']['oldAttribDelta'] = ''
|
|
|
|
self.env['screen']['oldCursorAttrib'] = None
|
|
|
|
self.env['screen']['newCursorAttrib'] = None
|
|
|
|
self.env['screen']['oldNegativeDelta'] = ''
|
2016-10-29 10:50:51 -04:00
|
|
|
# initialize current deltas
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['newNegativeDelta'] = ''
|
|
|
|
self.env['screen']['newDelta'] = ''
|
|
|
|
self.env['screen']['newAttribDelta'] = ''
|
2016-10-29 18:27:07 -04:00
|
|
|
|
2016-09-14 18:04:52 -04:00
|
|
|
# changes on the screen
|
2017-04-24 16:40:18 -04:00
|
|
|
oldScreenText = re.sub(' +',' ',self.env['runtime']['screenManager'].getWindowAreaInText(self.env['screen']['oldContentText']))
|
|
|
|
newScreenText = re.sub(' +',' ',self.env['runtime']['screenManager'].getWindowAreaInText(self.env['screen']['newContentText']))
|
2016-10-18 09:17:20 -04:00
|
|
|
typing = False
|
2017-04-24 16:40:18 -04:00
|
|
|
if (self.env['screen']['oldContentText'] != self.env['screen']['newContentText']) and \
|
|
|
|
(self.env['screen']['newContentText'] != '' ):
|
2016-10-23 20:01:18 -04:00
|
|
|
if oldScreenText == '' and\
|
2016-09-24 17:42:16 -04:00
|
|
|
newScreenText != '':
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['newDelta'] = newScreenText
|
2016-09-14 18:04:52 -04:00
|
|
|
else:
|
2017-04-24 16:40:18 -04:00
|
|
|
cursorLineStart = self.env['screen']['newCursor']['y'] * self.env['screen']['columns'] + self.env['screen']['newCursor']['y']
|
|
|
|
cursorLineEnd = cursorLineStart + self.env['screen']['columns']
|
|
|
|
if self.env['screen']['oldCursor']['x'] != self.env['screen']['newCursor']['x'] and \
|
|
|
|
self.env['screen']['oldCursor']['y'] == self.env['screen']['newCursor']['y'] and \
|
|
|
|
self.env['screen']['newContentText'][:cursorLineStart] == self.env['screen']['oldContentText'][:cursorLineStart]:
|
2016-10-23 20:01:18 -04:00
|
|
|
|
2017-04-24 16:40:18 -04:00
|
|
|
oldScreenText = self.env['screen']['oldContentText'][cursorLineStart:cursorLineEnd]
|
2016-09-30 18:11:32 -04:00
|
|
|
oldScreenText = re.sub(' +',' ',oldScreenText)
|
2017-04-24 16:40:18 -04:00
|
|
|
newScreenText = self.env['screen']['newContentText'][cursorLineStart:cursorLineEnd]
|
2016-09-30 18:11:32 -04:00
|
|
|
newScreenText = re.sub(' +',' ',newScreenText)
|
2016-10-18 09:17:20 -04:00
|
|
|
diff = difflib.ndiff(oldScreenText, newScreenText)
|
|
|
|
typing = True
|
2016-09-14 18:04:52 -04:00
|
|
|
else:
|
2016-09-30 17:35:12 -04:00
|
|
|
diff = difflib.ndiff( oldScreenText.split('\n'),\
|
|
|
|
newScreenText.split('\n'))
|
2016-09-14 18:04:52 -04:00
|
|
|
|
2016-09-24 17:59:23 -04:00
|
|
|
diffList = list(diff)
|
|
|
|
|
2016-10-18 09:17:20 -04:00
|
|
|
if self.env['runtime']['settingsManager'].getSetting('general', 'newLinePause') and not typing:
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['newDelta'] = '\n'.join(x[2:] for x in diffList if x[0] == '+')
|
2016-10-18 09:17:20 -04:00
|
|
|
else:
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['newDelta'] = ''.join(x[2:] for x in diffList if x[0] == '+')
|
|
|
|
self.env['screen']['newNegativeDelta'] = ''.join(x[2:] for x in diffList if x[0] == '-')
|
2016-10-29 18:27:07 -04:00
|
|
|
|
|
|
|
# track highlighted
|
2017-04-24 16:40:18 -04:00
|
|
|
if self.env['screen']['oldContentAttrib'] != self.env['screen']['newContentAttrib']:
|
2016-11-04 19:11:54 -04:00
|
|
|
if self.env['runtime']['settingsManager'].getSettingAsBool('focus', 'highlight'):
|
2017-04-24 16:40:18 -04:00
|
|
|
self.env['screen']['newAttribDelta'], self.env['screen']['newCursorAttrib'] = screen_utils.trackHighlights(self.env['screen']['oldContentAttrib'], self.env['screen']['newContentAttrib'], self.env['screen']['newContentText'], self.env['screen']['columns'])
|
2016-10-18 09:17:20 -04:00
|
|
|
|