PyQt5 and multiprocessing - multiple processes create multiple windows incorrectly

匆匆过客 提交于 2020-01-15 09:51:27

问题


Trying to implement multiprocessing within a PyQt5 GUI framework to process multiple files in a parallel process, preferably in a QThread() background. Running the code below seems to create the multiple processes but has additional issue that multiple GUI windows appear and everything seems locked out at that point.

import multiprocess as mp
from PyQt5.QtWidgets import QMainWindow

class MyApp(QMainWindow, myUiMainWindow):

    def __init__(self):
        super(self.__class__, self).__init()
        self.setupUI(self) 
        self.pushButton.clicked.connect(self.doMyStuff)

    def consumer(self, inQ, outQ):
        val = inQ.get()
        ret = self.process_single(val)
        outQ.put(ret)

    def process_single(self, f):
        <process each file f>
        <update progress bar>
        return f

    def doMyStuff(self):
        <get file_list from GUI Widget>
        n_w = len(file_list) if len(file_list) < 5 else 5
        inQ = mp.Queue()
        outQ = mp.Queue()

        workers = [mp.Process(target=consumer, args=(inQ, outQ) for i in range(n_w)]
        [w.start() for w in workers]
        [inQ.put(f) for f in file_list]
        [inQ.put(None) for i in range(n_w)]

        completed_files = []
        while len(completed_files) != len(file_list):
            completed_files.append(outQ.get())

        [w.join() for w in workers]

回答1:


Guess what...

implement the following to build the GUI only once:

    import multiprocess as mp
    from PyQt5 import QtWidgets
    from QtWidgets import QMainWindow

    ... snippet ... your script code ...

    if __name__ == '__main__':

        app = QtWidgets.QApplication(sys.argv)
        window = MyApp()
        window.setGeometry(300, 100, 600, 600)   # adjustable (left,top,width,height)
        window.show()
        sys.exit(app.exec_())

... you probably figured this one out by now ;p



来源:https://stackoverflow.com/questions/43983105/pyqt5-and-multiprocessing-multiple-processes-create-multiple-windows-incorrect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!