什么相当于使用python的Windows中的sigusr1-2信号?

时间:2013-05-07 22:16:12

标签: python windows signals ipc

我需要一些帮助。我正在努力在Windows中的两个python进程之间发送通知。

我查看了信号模块,但不幸的是,Windows中不支持用户定义的信号。

Windows使用其他称为消息的东西,但我不知道它是如何工作的或如何在python中使用它。如果有人有想法或起点在python中的进程之间发送消息,那将是值得赞赏的。

3 个答案:

答案 0 :(得分:1)

Windows平台中没有SIGUSR1SIGUSR2。您可以通过以下操作进行确认:

C:\>python
Python 3.7.0 (default, Jun 28 2018, 08:04:48) [MSC v.1912 64 bit (AMD64)] :: Anaconda custom (64-bit) on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import signal
>>> dir(signal)
['CTRL_BREAK_EVENT', 'CTRL_C_EVENT', 'Handlers', 'NSIG', 'SIGABRT', 'SIGBREAK', 'SIGFPE', 'SIGILL', 'SIGINT', 'SIGSEGV', 'SIGTERM', 'SIG_DFL', 'SIG_IGN', 'Signals', '_IntEnum', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', '_enum_to_int', '_int_to_enum', '_signal', 'default_int_handler', 'getsignal', 'set_wakeup_fd', 'signal']

1是Windows的官方文档。

答案 1 :(得分:0)

这实际上取决于您正在寻找的内容 - 您是否希望控制消息,非阻塞消息或捕获外部信号的能力,就像您通常使用signal模块一样。

由于你想在两个python进程之间发送“通知”,我推荐使用multiprocessing.connection模块的Client和Listener类,以获得一对非常简单的面向消息的连接对象:

http://docs.python.org/2/library/multiprocessing.html#module-multiprocessing.connection

在流程A中:

listener = Listener(('localhost', 9000)) # local TCP connections on port 9000
remote_conn = listener.accept()
listener.close()
print remote_conn.recv()
# prints 'a pickle-able object'
print remote_conn.recv()
# prints "['another', 'pickle-able', 'object']"

在流程B中:

client = Client(('localhost', 9000))
client.send('a pickle-able object')
client.send(['another', 'pickle-able', 'object'])

这些类是内置的这一事实让我感到高兴 - 无需安装!请注意遵循有关安全性和取消数据的文档指南。

答案 2 :(得分:-2)

尝试zeromq通过套接字进行进程间通信。