如何在Python中同时使用COM和多处理?

时间:2017-10-17 15:35:06

标签: python multiprocessing win32com

我试图制作两个流程并让它们相互通信。其中一个使用win32com通过COM库获取值,另一个只通过队列从第一个进程获取值并打印出来。我认为下面的代码没有问题,但它没有用(p2进程根本没有显示值)。如果我只是通过

在同一个过程中创建第一个进程打印队列值
item = self.q.get()
print(item)

它显示队列中的值。因此,我认为在队列中放置值没有问题,因此,使用queue

通过win32com交换值时可能会出现一些问题
import win32com.client
import os
import multiprocessing as mp
from PyQt4.QtGui import QApplication
from datetime import datetime, timedelta

global q
q = mp.Queue()          # A queue is used to send values from p1 to p2                                                        

class RealTrEventHandler(object):          
    def __init__(self):
        self.q = q                                                            

    def OnReceiveRealData(self,szTrCode):
        date = datetime.utcnow() + timedelta(hours=3)
        type = self.GetFieldData("OutBlock", "cgubun")

        appending_line = date + ', ' + type

        self.q.put(appending_line)
        #item = self.q.get()                     # it prints values out if these are not comments
        #print(item)

def ticker():
    loop = QApplication([])
    global instXASession, instXAReal
    print('TICKER: ', os.getpid() )

    # When an event occurs, it calls RealTrEventHandler class
    instXAReal = win32com.client.DispatchWithEvents("XA_DataSet.XAReal", RealTrEventHandler) 
    instXAReal.LoadFromResFile("C:\\eBEST\\xingAPI\\Res\\OVC.res")
    instXAReal.SetFieldData("InBlock", "symbol", "CLX17")

    loop.exec_() 

class listener(mp.Process):           # What listener does is only to get values via the queue and prints them out 
    def __init__(self):
        mp.Process.__init__(self)
        self.q = q

    def run(self):
        print('CSM PID: ', os.getpid() )
        while True:
            item = self.q.get()
            print(item)

if __name__ == '__main__':
    loop = QApplication([])     

    print('MAIN: ', os.getpid() )
    p1 = mp.Process( target = ticker, args=() )
    p1.start()

    p2 = listener()
    p2.start()

    mp.freeze_support()

    loop.exec_()                

有人能给我一些建议吗?

1 个答案:

答案 0 :(得分:1)

您是否尝试在侦听器和RealTrEventHandler类中显式声明q为全局? E.g:

class listener(mp.Process):
    global q
    def __init__(self):
        mp.Process.__init__(self)
        self.q=q

在(至少)线程之间传递变量的另一种方法是使用buildins-module,但我不确定多处理是否有太多不同。