-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPackage_tool.py
200 lines (162 loc) · 7.43 KB
/
Package_tool.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
import sys
import os
from PyQt5.QtWidgets import (
QApplication, QMainWindow, QVBoxLayout, QWidget, QPushButton,
QListWidget, QTextEdit, QHBoxLayout, QMessageBox, QAbstractItemView, QProgressDialog
)
from PyQt5.QtCore import Qt, QProcess, QThread, pyqtSignal, QTimer
from PIL import Image
import io
class WorkerThread(QThread):
log_signal = pyqtSignal(str)
finished_signal = pyqtSignal()
cancel_signal = pyqtSignal()
def __init__(self, command):
super().__init__()
self.command = command
self._process = None
def run(self):
self._process = QProcess()
self._process.setProcessChannelMode(QProcess.MergedChannels)
self._process.readyReadStandardOutput.connect(self.handle_output)
self._process.start(self.command)
self._process.waitForFinished(-1) # Wait indefinitely
if self._process.state() != QProcess.NotRunning:
self._process.kill()
self.finished_signal.emit()
def handle_output(self):
output = self._process.readAllStandardOutput().data().decode()
self.log_signal.emit(output)
def cancel(self):
if self._process and self._process.state() == QProcess.Running:
self._process.kill()
self.log_signal.emit("打包任务已取消")
self.cancel_signal.emit()
class PyInstallerGUI(QMainWindow):
def __init__(self):
super().__init__()
self.setWindowTitle("打包工具")
self.setGeometry(300, 300, 600, 400)
self.central_widget = QWidget()
self.setCentralWidget(self.central_widget)
self.layout = QVBoxLayout(self.central_widget)
self.file_list = QListWidget()
self.file_list.setSelectionMode(QAbstractItemView.NoSelection)
self.layout.addWidget(self.file_list)
self.log_output = QTextEdit()
self.log_output.setReadOnly(True)
self.layout.addWidget(self.log_output)
self.button_layout = QHBoxLayout()
self.package_button = QPushButton("开始打包")
self.package_button.clicked.connect(self.start_packaging)
self.button_layout.addWidget(self.package_button)
self.clear_button = QPushButton("清空列表")
self.clear_button.clicked.connect(self.clear_list)
self.button_layout.addWidget(self.clear_button)
self.layout.addLayout(self.button_layout)
self.file_list.setDragEnabled(True)
self.file_list.viewport().setAcceptDrops(True)
self.file_list.setDropIndicatorShown(True)
self.file_list.setDragDropMode(QListWidget.DragDrop)
self.additional_icon_file = None
self.threads = []
self.setAcceptDrops(True)
self.tasks_in_progress = 0
self.progress_dialog = None
self.timer = QTimer()
self.timer.timeout.connect(self.update_progress)
self.progress_value = 0
def start_packaging(self):
if self.file_list.count() == 0:
QMessageBox.warning(self, "警告", "没有文件可以打包!")
return
self.tasks_in_progress = self.file_list.count()
self.progress_dialog = QProgressDialog("打包进行中...", "取消", 0, 100, self)
self.progress_dialog.setWindowModality(Qt.WindowModal)
self.progress_dialog.canceled.connect(self.cancel_packaging)
self.progress_dialog.show()
self.progress_value = 0
self.timer.start(150)
for index in range(self.file_list.count()):
file_path = self.file_list.item(index).text()
if self.additional_icon_file:
icon_path = self.convert_to_ico(self.additional_icon_file)
command = f"pyinstaller --onefile --noconsole --icon={icon_path} {file_path}"
else:
command = f"pyinstaller --onefile --noconsole {file_path}"
self.log_output.append(f"正在执行: {command}")
thread = WorkerThread(command)
thread.log_signal.connect(self.update_log)
thread.finished_signal.connect(self.on_task_finished)
thread.cancel_signal.connect(self.on_task_canceled)
thread.start()
self.threads.append(thread)
def convert_to_ico(self, image_path):
try:
img = Image.open(image_path)
ico_path = os.path.splitext(image_path)[0] + '.ico'
img.save(ico_path, format='ICO')
self.log_output.append(f"图片已转换为ICO格式: {ico_path}")
return ico_path
except Exception as e:
self.log_output.append(f"转换图片到ICO格式时出错: {str(e)}")
return image_path # 如果转换失败,返回原始路径
def update_progress(self):
if self.progress_value < 85:
self.progress_value += 1
self.progress_dialog.setValue(self.progress_value)
def update_log(self, log):
self.log_output.append(log)
def on_task_finished(self):
self.tasks_in_progress -= 1
if self.tasks_in_progress == 0:
self.timer.stop()
self.progress_dialog.setValue(100)
self.progress_dialog.close()
QMessageBox.information(self, "完成", "所有打包任务已完成!")
def on_task_canceled(self):
self.timer.stop()
self.progress_dialog.close()
QMessageBox.information(self, "取消", "打包任务已取消!")
def cancel_packaging(self):
for thread in self.threads:
thread.cancel()
def clear_list(self):
self.file_list.clear()
self.log_output.clear()
self.additional_icon_file = None
def dragEnterEvent(self, event):
if event.mimeData().hasUrls():
event.acceptProposedAction()
def dragMoveEvent(self, event):
if event.mimeData().hasUrls():
event.acceptProposedAction()
def dropEvent(self, event):
if event.mimeData().hasUrls():
urls = event.mimeData().urls()
for url in urls:
file_path = url.toLocalFile()
if self.file_list.count() < 5:
if file_path.endswith('.py') and not self.is_duplicate(file_path):
self.file_list.addItem(file_path)
elif file_path.lower().endswith(('.png', '.jpg', '.ico', '.svg')):
if self.additional_icon_file:
QMessageBox.warning(self, "图标冲突", "已经有图标文件了,请删除后再拖入新的图标文件。")
else:
self.additional_icon_file = file_path
self.log_output.append(f"使用用户提供的图标文件: {file_path}")
else:
QMessageBox.warning(self, "文件类型错误", "只能拖入.py文件或图标文件")
else:
QMessageBox.warning(self, "数量限制", "最多只能拖入5个文件")
break
def is_duplicate(self, file_path):
for i in range(self.file_list.count()):
if self.file_list.item(i).text() == file_path:
return True
return False
if __name__ == '__main__':
app = QApplication(sys.argv)
window = PyInstallerGUI()
window.show()
sys.exit(app.exec_())