Threads real-time logging(线程实时记录)
问题描述
我正在编写一个用于调整照片大小的简单脚本.我想要一个带有文本字段的小部件,在调整每个文件大小后会在其中显示消息.
I'm writing a simple script for resizing photos. I'd like to have a widget with text-field in which messages appear after resizing each file.
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import time, sys
from PyQt5.QtCore import pyqtSignal, QThread
from PyQt5.QtWidgets import QApplication, QPushButton, QTextEdit, QWidget, QVBoxLayout
class Thread(QThread):
log = pyqtSignal(str)
def __init__(self, parent=None):
super(Thread, self).__init__(parent)
def test(self, i):
time.sleep(1)
self.log.emit(str(i))
class Widget(QWidget):
def __init__(self):
super().__init__()
self.ui()
def process(self):
self.toLog('some text...')
worker = Thread()
worker.log.connect(self.toLog)
for i in range(1, 5):
worker.test(i)
def ui(self):
self.LogOutputTxt = QTextEdit()
self.LogOutputTxt.setReadOnly(True)
startBtn = QPushButton('Start')
startBtn.clicked.connect(self.start)
layout = QVBoxLayout()
layout.addWidget(self.LogOutputTxt)
layout.addWidget(startBtn)
self.setLayout(layout)
self.resize(400, 300)
self.show()
def start(self):
self.toLog('start')
self.process()
def toLog(self, txt):
self.LogOutputTxt.append(txt)
if __name__ == '__main__':
app = QApplication(sys.argv)
ui = Widget()
sys.exit(app.exec_())
到目前为止,在调整所有文件大小后,所有消息都会立即显示.有没有办法一一做到(我的意思是文件大小调整、消息显示等)?
So far all the messages appear at once after all files are resized. Is there any way to do it one by one (I mean file resized, message displayed, etc.)?
推荐答案
下面是你想要的脚本的重写.
Below is a re-write of your script that should do want you want.
但请注意,这非常简单,并且不会太努力地确保线程安全.setItems
方法只是制作传递给它的数据的浅表副本 - 这仅适用于不可变对象列表.您还必须确保您永远不会在工作线程中执行任何 gui 操作,其中包括对像素图的操作.如果要操作图像,请使用 QImage
.(如果您想知道如何停止正在运行的线程,请参阅例如 this answer).
But note that this is quite simplistic, and doesn't try too hard to ensure thread-safety. The setItems
method just makes a shallow copy of the data passed to it - which is only really okay for a list of immutable objects. You also must make sure you never do any gui operations inside the worker thread, which includes operations on pixmaps. If you want to manipulate images, use QImage
. (And if you want to know how to stop a running thread, see for example this answer).
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import time, sys
from PyQt5.QtCore import pyqtSignal, QThread
from PyQt5.QtWidgets import (
QApplication, QPushButton, QTextEdit, QWidget, QVBoxLayout
)
class Thread(QThread):
log = pyqtSignal(str)
def __init__(self, parent=None):
super(Thread, self).__init__(parent)
self._items = []
def setItems(self, items):
if not self.isRunning():
self._items[:] = items
def run(self):
for item in self._items:
time.sleep(1)
self.log.emit('processing: %s' % item)
class Widget(QWidget):
def __init__(self):
super().__init__()
self.ui()
self._worker = Thread(self)
self._worker.log.connect(self.toLog)
self._worker.started.connect(lambda: self.toLog('start'))
self._worker.finished.connect(lambda: self.toLog('finished'))
def process(self):
items = ['Image%02d.png' % i for i in range(10)]
self._worker.setItems(items)
self._worker.start()
def ui(self):
self.LogOutputTxt = QTextEdit()
self.LogOutputTxt.setReadOnly(True)
startBtn = QPushButton('Start')
startBtn.clicked.connect(self.start)
layout = QVBoxLayout()
layout.addWidget(self.LogOutputTxt)
layout.addWidget(startBtn)
self.setLayout(layout)
self.resize(400, 300)
self.show()
def start(self):
if not self._worker.isRunning():
self.process()
def toLog(self, txt):
self.LogOutputTxt.append(txt)
if __name__ == '__main__':
app = QApplication(sys.argv)
ui = Widget()
sys.exit(app.exec_())
这篇关于线程实时记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:线程实时记录
基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 筛选NumPy数组 2022-01-01