pyHook和wxPython - 应用程序在自行输入时冻结

时间:2014-03-28 15:58:54

标签: wxpython deadlock pyhook lockup

我有一个小的python应用程序,它创建一个wxPython框架然后使用pyHook挂钩键盘。 Frame包含TextCtrl。当控件中的文本发生更改时,会创建一个线程来执行某个过程(在这种情况下,只是一个大循环来模拟一个长过程)。

如果我专注于TextCtrl并混搭键盘,应用程序会完全锁定。如果我删除pyHook代码,应用程序不会锁定。如果我将较长的过程缩短(例如,仅循环10次迭代),则应用程序不会锁定。

在创建它的同一个应用程序中输入时,似乎有一些使用pyHook的东西。

请注意,如果我创建了键盘钩子并从主线程调用PumpMessages,则应用程序不会锁定,但我理想地想在单独的线程上创建钩子。

有什么想法吗?

由于 麦克

import threading
import pyHook
import pythoncom
import wx

class LargeTaskProcessor(object):

    def do_task(self):
        iterations = 1000000
        # Simulate some large process
        for i in range(iterations):
            pass

class TestFrame(wx.Frame):

    def __init__(self):
        wx.Frame.__init__(self, None, 1, 'Title', size=(400, 400))

        global_sizer = wx.BoxSizer(wx.VERTICAL)

        self.test_textbox = wx.TextCtrl(self, style=wx.TE_PROCESS_ENTER)
        self.Bind(wx.EVT_TEXT, self._event_happened, self.test_textbox)
        global_sizer.Add(self.test_textbox)

        self.SetAutoLayout(True)
        self.SetSizer(global_sizer)
        global_sizer.Fit(self)
        global_sizer.SetSizeHints(self)
        self.Layout()

    def _event_happened(self, event=None):
        action_thread = threading.Thread(target=obj.do_task)
        action_thread.start()

def hook_the_keyboard():
    hookManager = pyHook.HookManager()
    hookManager.HookKeyboard()
    pythoncom.PumpMessages()

if __name__ == '__main__':
    app = wx.App()

    obj = LargeTaskProcessor()

    dialog_instance = TestFrame()
    dialog_instance.Show()
    dialog_instance.Raise()

    # Create the hook manager and call PumpMessages on a separate thread
    theThread = threading.Thread(target=hook_the_keyboard)
    theThread.start()
    app.MainLoop()

1 个答案:

答案 0 :(得分:1)

尝试删除pythoncom.PumpMessages()

来自pyHook turorial说:

  

运行时,此程序处于空闲状态并等待Windows事件。如果您使用的是GUI工具包(例如wxPython),则此循环是不必要的,因为工具包提供了自己的工具包。