|
|
|
@ -118,62 +118,95 @@ def deal_command(str_r, ssh):
|
|
|
|
|
"""
|
|
|
|
|
处理命令中特殊字符
|
|
|
|
|
"""
|
|
|
|
|
t = time.time()
|
|
|
|
|
str_r = re.sub('\x07','',str_r) #删除响铃
|
|
|
|
|
patch_char = re.compile('\x08\x1b\[C') #删除方向左右一起的按键
|
|
|
|
|
while patch_char.search(str_r):
|
|
|
|
|
str_r = patch_char.sub('', str_r.rstrip())
|
|
|
|
|
|
|
|
|
|
result_command = '' #最后的结果
|
|
|
|
|
pattern_str = '' #模式中间中的字符串
|
|
|
|
|
backspace_num = 0 #光标移动的个数
|
|
|
|
|
backspace_list = []
|
|
|
|
|
reach_backspace_flag = False #没有检测到光标键则为true
|
|
|
|
|
end_flag = False
|
|
|
|
|
reach_backspace_second_flag = False
|
|
|
|
|
pattern_list = []
|
|
|
|
|
pattern_str=''
|
|
|
|
|
while str_r:
|
|
|
|
|
tmp = re.match(r'\w', str_r)
|
|
|
|
|
tmp = re.match(r'\s*\w+\s*', str_r) #获取字符串,其它特殊字符匹配暂时还不知道。。
|
|
|
|
|
if tmp:
|
|
|
|
|
if reach_backspace_flag :
|
|
|
|
|
if not reach_backspace_second_flag:
|
|
|
|
|
pattern_str +=str(tmp.group(0))
|
|
|
|
|
str_r = str_r[1:]
|
|
|
|
|
else:
|
|
|
|
|
pattern_list.append(pattern_str)
|
|
|
|
|
pattern_str=str(tmp.group(0))
|
|
|
|
|
reach_backspace_second_flag=False
|
|
|
|
|
str_r = str_r[len(str(tmp.group(0))):]
|
|
|
|
|
continue
|
|
|
|
|
else:
|
|
|
|
|
result_command += str(tmp.group(0))
|
|
|
|
|
str_r = str_r[1:]
|
|
|
|
|
str_r = str_r[len(str(tmp.group(0))):]
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
tmp = re.match(r'\x1b\[K[\x08]*', str_r)
|
|
|
|
|
tmp = re.match(r'\x1b\[K[\x08]*', str_r) #遇到删除确认符,确定删除数据
|
|
|
|
|
if tmp:
|
|
|
|
|
for x in backspace_list:
|
|
|
|
|
backspace_num += int(x)
|
|
|
|
|
if backspace_num > 0:
|
|
|
|
|
if backspace_num > len(result_command) :
|
|
|
|
|
result_command += ''.join(pattern_list)
|
|
|
|
|
result_command += pattern_str
|
|
|
|
|
result_command = result_command[0:-backspace_num]
|
|
|
|
|
else:
|
|
|
|
|
result_command = result_command[0:-backspace_num]
|
|
|
|
|
result_command += ''.join(pattern_list)
|
|
|
|
|
result_command += pattern_str
|
|
|
|
|
del_len = len(str(tmp.group(0)))-3
|
|
|
|
|
if del_len > 0:
|
|
|
|
|
result_command = result_command[0:-del_len]
|
|
|
|
|
reach_backspace_flag = False
|
|
|
|
|
reach_backspace_second_flag =False
|
|
|
|
|
backspace_num =0
|
|
|
|
|
del pattern_list[:]
|
|
|
|
|
del backspace_list[:]
|
|
|
|
|
pattern_str=''
|
|
|
|
|
str_r = str_r[len(str(tmp.group(0))):]
|
|
|
|
|
continue
|
|
|
|
|
if re.match(r'\x08', str_r):
|
|
|
|
|
backspace_num += 1
|
|
|
|
|
|
|
|
|
|
tmp = re.match(r'\x08+', str_r) #将遇到的退格数字存放到队列中
|
|
|
|
|
if tmp:
|
|
|
|
|
if reach_backspace_flag:
|
|
|
|
|
reach_backspace_second_flag = True
|
|
|
|
|
else:
|
|
|
|
|
reach_backspace_flag = True
|
|
|
|
|
str_r = str_r[1:]
|
|
|
|
|
if len(str_r) == 0:
|
|
|
|
|
end_flag = True
|
|
|
|
|
str_r = str_r[len(str(tmp.group(0))):]
|
|
|
|
|
if len(str_r) != 0: #如果退格键在最后,则放弃
|
|
|
|
|
backspace_list.append(len(str(tmp.group(0))))
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
if reach_backspace_flag :
|
|
|
|
|
if not reach_backspace_second_flag:
|
|
|
|
|
pattern_str +=str_r[0]
|
|
|
|
|
else:
|
|
|
|
|
pattern_list.append(pattern_str)
|
|
|
|
|
pattern_str=str_r[0]
|
|
|
|
|
reach_backspace_second_flag=False
|
|
|
|
|
else :
|
|
|
|
|
result_command += str_r[0]
|
|
|
|
|
str_r = str_r[1:]
|
|
|
|
|
|
|
|
|
|
if backspace_num > 0 and not end_flag:
|
|
|
|
|
result_command = result_command[:-backspace_num]
|
|
|
|
|
result_command += pattern_str
|
|
|
|
|
if pattern_str !='':
|
|
|
|
|
pattern_list.append(pattern_str)
|
|
|
|
|
|
|
|
|
|
#退格队列中还有腿哥键,则进行删除操作
|
|
|
|
|
if len(backspace_list) > 0 :
|
|
|
|
|
for backspace in backspace_list:
|
|
|
|
|
if int(backspace) >= len(result_command):
|
|
|
|
|
result_command = pattern_list[0]
|
|
|
|
|
else:
|
|
|
|
|
result_command = result_command[:-int(backspace)]
|
|
|
|
|
result_command += pattern_list[0]
|
|
|
|
|
pattern_list = pattern_list[1:]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
control_char = re.compile(r"""
|
|
|
|
@ -189,7 +222,7 @@ def deal_command(str_r, ssh):
|
|
|
|
|
global VIM_FLAG
|
|
|
|
|
global VIM_COMMAND
|
|
|
|
|
if not VIM_FLAG:
|
|
|
|
|
if result_command.startswith('vim') or result_command.startswith('vi') :
|
|
|
|
|
if result_command.startswith('vi'):
|
|
|
|
|
VIM_FLAG = True
|
|
|
|
|
VIM_COMMAND = result_command
|
|
|
|
|
return result_command.decode('utf8',"ignore")
|
|
|
|
@ -197,6 +230,8 @@ def deal_command(str_r, ssh):
|
|
|
|
|
if check_vim_status(VIM_COMMAND, ssh):
|
|
|
|
|
VIM_FLAG = False
|
|
|
|
|
VIM_COMMAND=''
|
|
|
|
|
if result_command.endswith(':wq') or result_command.endswith(':wq!') or result_command.endswith(':q!'):
|
|
|
|
|
return ''
|
|
|
|
|
return result_command.decode('utf8',"ignore")
|
|
|
|
|
else:
|
|
|
|
|
return ''
|
|
|
|
|