I'm writing an application in which there are two continuously running processes: a wx.python application event loop for the gui, and a crawler class run loop which is used to trigger web-crawling events on an hourly basis. I have decided to implement communication between the processes through a set of global objects which can be used by both threads (all of these objects have associated semaphores to avoid shared-state issues). From my understanding of the multiprocessing module, Managers are used to handle objects of that sort. The issue I am having arrises when I try to implement the manager. Here is the code for my toplevel script:
from multiprocessing import Process,Pipe
from multiprocessing.managers import BaseManager
from wx import App
import crawler._main
import file
import source
import gui._main
class ObjectManager(BaseManager):
pass
ObjectManager.register('gui',gui._main.app)
ObjectManager.register('file_manager',file.manager)
ObjectManager.register('source_manager',source.manager)
ObjectManager.register('crawler',crawler._main.crawler)
def main():
main = ObjectManager()
main.start()
file_manager = main.file_manager()
source_manager = main.source_manager(file_manager)
main_crawler = main.crawler(source_manager,file_manager)
main_gui = main.gui(main_crawler,source_manager,file_manager)
main_crawler.set_gui(main_gui)
crawl_process = Process(target = main.crawler.run)
main_gui.MainLoop()
crawl_process.start()
if __name__ == '__main__': main()
The error raised by this code is:
Traceback (most recent call last):
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 162, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/runpy.py", line 72, in _run_code
exec code in run_globals
File "/Users/julianchaidez/Desktop/person_pitch/__main__.py", line 35, in <module>
if __name__ == '__main__': main()
File "/Users/julianchaidez/Desktop/person_pitch/__main__.py", line 29, in main
main_gui = main.gui(main_crawler,source_manager,file_manager)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/managers.py", line 641, in temp
token, exp = self._create(typeid, *args, **kwds)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/managers.py", line 541, in _create
id, exposed = dispatch(conn, None, 'create', (typeid,)+args, kwds)
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/multiprocessing/managers.py", line 76, in dispatch
kind, result = c.recv()
EOFError
The error appears to be raised when I try to instantiate the app. More specifically within the app, I know that an instance of wx.Frame causes the issue (the app has an attribute app.window which is a frame). The code that initializes that subclass for the app is as follows:
#where app = self
self.window = gui.menu._main.window(main_crawler,source_manager,file_manager)
The window code is below:
class window(wx.Frame):
def __init__(self,crawler,src_manager,file_manager):
wx.Frame.__init__(self,None,-1,'Person Pitch',size = wx.Size(600,400))
self.display = display(self,crawler,src_manager,file_manager)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.display,1,wx.ALIGN_CENTER_HORIZONTAL)
self.SetSizer(sizer)
self.SetAutoLayout(True)
self.Layout()
That's pretty much all I can say about the issue. I would like to know how to resolve the issue, or if there is another system I could use to accomplish what I am attempting. If you propose something else, please provide an example.
Thanks, J