1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-07-02 22:36:54 +02:00
Files
STARK/Command/Command.py

222 lines
7.9 KiB
Python
Raw Normal View History

# Abstract class Command
# Command - parent of all command classes
# command - object (class instance)
# Command.list - list of all commands
# Command.find() - recognize command from a string, return command object
# must return dict like {'cmd': cmd, 'params': params}
# this - object (class instance) pointer
# abstract this.start() - required method for all commands
# abstract this.confirm() - Return True/False (User responce)
# this.keywords - dictionary of arrays keywords
# like {
# (int)weight : ['word1', 'word2', 'word3'],
# (int)weight1 : ['word3', 'word4'],
# (int)weight2 : ['word5', 'word6', 'word7', 'word8', 'word9'],
# }
#
from abc import ABC, abstractmethod # for abstract class and methods
2020-06-24 02:12:41 +03:00
from fuzzywuzzy import fuzz
from threading import Thread, Event
import re
class RThread(Thread):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self._return = None
def run(self):
if self._target is not None:
self._return = self._target(*self._args, **self._kwargs)
def join(self, *args, **kwargs):
super().join(*args, **kwargs)
return self._return
class Command(ABC):
_list = [] # list of all commands
_patterns = {
'word': '([A-Za-zА-ЯЁа-яё0-9])+',
'quest' : '(кто|что|как|какой|какая|какое|где|зачем|почему|сколько|чей|куда|когда)',
}
_regex = {
# stars *
'([A-Za-zА-ЯЁа-яё0-9\(\)\[\]\{\}]+)\*([A-Za-zА-ЯЁа-яё0-9\(\)\[\]\{\}]+)': r'\\b\1.*\2\\b', # 'te*xt'
'\*([A-Za-zА-ЯЁа-яё0-9\(\)\[\]\{\}]+)': r'\\b.*\1', # '*text'
'([A-Za-zА-ЯЁа-яё0-9\(\)\[\]\{\}]+)\*': r'\1.*\\b', # 'text*'
'(^|\s)\*($|\s)': r'.*', # '*' ' * '
# one of the list (a|b|c)
'\(((?:.*\|)*.*)\)': r'(?:\1)',
# 0 or 1 the of list [abc]
'\[((?:.*\|?)*?.*?)\]': r'(?:\1)??',
# one or more of the list, without order {a|b|c}
'\{((?:.*\|?)*?.*?)\}': r'(?:\1)+?',
}
2020-07-31 19:38:20 +03:00
def __init__(this, name, keywords = {}, patterns = []): # initialisation of new command
this._name = name
this._keywords = keywords
this._patterns = patterns
2020-07-31 19:38:20 +03:00
Command.append(this)
def __str__(this):
str = f'{this.__class__.__name__}.{this.getName()}:\n'
for key, value in this._keywords.items():
str += f'\t{key}:\t{value}\n'
return str
# control keywords
def _getKeyword(this, string): # return position of keyword
for weight, array in this._keywords.items():
index = 0
for word in array:
if string == word:
return (weight, index)
index += 1
return None # if not found
def removeKeyword(this, string):
position = this._getKeyword(string)
if(position): del this._keywords[ position[0] ][ position[1] ]
def addKeyword(this, weight, string):
if this._getKeyword(string): return
if( this._keywords.get(weight) ): this._keywords[weight].append(string)
2020-07-31 19:38:20 +03:00
else: this._keywords[weight] = [string]
def changeKeyword(this, weight, string):
this.removeKeyword(string)
this.addKeyword(weight, string)
# setters
def setStart(this, function): # define start (required)
this.start = function
def setConfirm(this, function): # define confirm (optional)
this.confirm = function
# getters
def getName(this):
return this._name
def getKeywords(this):
return this._keywords
def getPatterns(this):
return this._patterns
# abstract
@abstractmethod
def start(this, params): # main method
pass
@abstractmethod
def confirm(this): # optional method
pass
# static
@staticmethod
def getList():
return Command._list
2020-07-31 19:38:20 +03:00
@staticmethod
def getRegexDict():
return Command._regex
2020-07-31 19:38:20 +03:00
@staticmethod
def getPatternsDict():
return Command._patterns
@staticmethod
def append(obj):
Command._list.append(obj)
@staticmethod
2020-07-31 19:38:20 +03:00
def getCommand(name):
for obj in Command.getList():
if obj.getName() == name: return obj
@staticmethod
def ratio(string, word):
return ( fuzz.WRatio(string, word) + fuzz.ratio(string, word) ) / 2
@staticmethod
def compilePattern(pattern):
# transform patterns to regexp
for ptrn, regex in Command.getRegexDict().items():
pattern = re.sub(re.compile(ptrn), regex, pattern)
# find links like $Pattern
link = re.search(re.compile('\$[A-Za-zА-ЯЁа-яё0-9]+'), pattern)
if link: pattern = re.sub('\\'+link[0], f'(?P<{link[0][1:]}>{Command.compilePattern( Command.getPatternsDict()[ link[0][1:] ] )})', pattern)
# return compiled regexp
return pattern
@staticmethod
def find(string):
string = string.lower()
chances = {}
list = Command.getList()
# calculate chances of every command
for i, obj in enumerate( list ):
chances[i] = 0
k = 1 / ( sum( [int(w)*len(kw) for w, kw in obj.getKeywords().items()] ) or 1 )
for weight, kws in obj.getKeywords().items():
for kw in kws:
chances[i] += Command.ratio(string, kw) * weight * k
# find command with the biggest chance
if( sum( chances.values() ) ):
top = max( chances.values() ) / sum( chances.values() ) * 100
else: # if all chances is 0
return {
2020-07-31 19:38:20 +03:00
'cmd': Command.QA,
'params': {'string':string,},
}
#if( max( chances.values() ) < 800 or top < 50): return list[0]
# find top command obj
for i, chance in chances.items():
if chance == max( chances.values() ):
return {
2020-07-31 19:38:20 +03:00
'cmd': Command.QA, #dialog mode
'params': {'string':string,},
}
@staticmethod
def reg_find(string):
string = string.lower()
list = Command.getList()
2020-07-31 19:38:20 +03:00
if not string: return {
'cmd': Command.getCommand('Hello'),
'params': {'string':string,},
}
# find command obj by pattern
for obj in list:
for pattern in obj.getPatterns():
if match := re.search(re.compile(Command.compilePattern(pattern)), string):
return {
'cmd': obj,
'params': match.groupdict(),
}
2020-07-31 19:38:20 +03:00
# return QA-system if command not found
return {
2020-07-31 19:38:20 +03:00
'cmd': Command.QA,
'params': {'string':string,},
}
@staticmethod
def background(answer = '', voice = ''):
def decorator(cmd): #wrapper of wrapper (decorator of decorator)
def wrapper(text):
finish_event = Event()
thread = RThread(target=cmd, args=(text, finish_event))
thread.start()
return {
'type': 'background',
'text': answer,
'voice': voice,
'thread': {
'thread': thread,
'finish_event': finish_event,
}
}
return wrapper
return decorator