Skip to content

Commit eaedb85

Browse files
committed
增加了exec -p选项,用于输出指定属性,同时进一步优化了自动补全功能
1 parent e915ad5 commit eaedb85

File tree

2 files changed

+23
-14
lines changed

2 files changed

+23
-14
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
__pycache__/
2+
.vscode/
23
*.ui

plugins/debugger_cmd.py

+22-14
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
from typing import IO, Any
77
from libs import *
88
from cmd import Cmd
9-
from keyword import kwlist
109

1110
__name__ = "开发者命令行"
1211
__author__ = "此程序开发者"
13-
__version__ = "1.1.0"
12+
__version__ = "1.2.0"
1413

1514
public = {"info": "这是一个公共字典,可以在其中存储变量"}
1615

@@ -41,10 +40,11 @@ def do_exec(self, args: str):
4140
"""
4241
运行代码。
4342
44-
用法:exec [[-l command] | -i]
43+
用法:exec [-l command] [-i] [-p attr]
4544
4645
-l command 运行单行代码。
4746
-i 启动多行输入模式,运行多段代码。
47+
-p attr 输出指定的属性。
4848
4949
多行输入模式命令: [#run] [#rewrite line] [#show] [#exit]
5050
@@ -103,32 +103,40 @@ def do_exec(self, args: str):
103103
for i in e.args[1:]:
104104
print(i)
105105
print()
106+
elif args[0] == "-p":
107+
print(eval(args[1]))
106108
else:
107109
print("无效参数%s。"%args[0])
108110

109-
def get_widget_names(self, widget):
111+
def get_ui_attr(self, widget):
110112
names = []
111-
for child in widget.children():
112-
names.append("calculator.ui." + child.objectName())
113-
if isinstance(child, QWidget):
114-
names.extend(self.get_widget_names(child))
113+
for i in dir(widget):
114+
if not i.startswith("__"):
115+
names.append("calculator.ui." + i)
116+
for i in names:
117+
try:
118+
for j in dir(eval(i)):
119+
if not j.startswith("__"):
120+
names.append(i + "." + j)
121+
except:
122+
break
115123
return names
116124

117-
def get_class_functions(self, _class):
125+
def get_class_attr(self, _class):
118126
functions = []
119127
for i in dir(_class):
120128
if not i.startswith("_"):
121129
functions.append("calculator." + i)
122130
return functions
123131

124132
def complete_exec(self, text: str, line: str, begidx: int, endidx: int):
125-
if line.startswith("exec -l"):
126-
widgets = self.get_widget_names(calculator)
127-
functions = self.get_class_functions(calculator)
133+
if line.startswith("exec -l") or line.startswith("exec -p"):
134+
widgets = self.get_ui_attr(calculator.ui)
135+
functions = self.get_class_attr(calculator)
128136
complete = widgets + functions
129-
return [i for i in complete if i.lower().startswith(text)]
137+
return [i for i in complete if i.startswith(text)]
130138
if line.startswith("exec"):
131-
return ["-l", "-i"]
139+
return ["-l", "-i", "-p"]
132140

133141
debuggerCmd = DebuggerCmd()
134142

0 commit comments

Comments
 (0)