命令行信号量实用程序
我想编写一个命令行实用程序,可用于同步不同控制台中的程序执行。
Console A:
$ first_program && semaphore -signal
Console B:
$ semaphore -wait && second_program
第一个节目需要很长时间才能完成。只有当第一个程序完成后,第二个程序才能开始。
我需要哪个同步对象来实现这个?
I want to write a command line utility that can be used to synchronize the execution off programs in different consoles.
Console A:
$ first_program && semaphore -signal
Console B:
$ semaphore -wait && second_program
The first program takes a long take to complete. The second program can only start when the first program has finished.
Which synchronization object do I need to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要为此使用 Python。考虑到您使用的是 Unix,请尝试以下操作:
首先,为信号量创建一个管道。
然后,程序:
实际上,这个方法是双向的。读取将阻塞,直到有写入为止,反之亦然。
You don't need to use Python for this. Considering you are using Unix, try this:
First, create a pipe for the semaphore.
Then, the programs:
Actually, this method works both ways. The read will block until there is a write, and vice versa.
如果它们位于同一台计算机上,第一个程序可以访问临时文件。
python 中有一个 Gamin 模块,它可以让你的第二个程序坐在那里等待,而不占用资源。这不是一个忙碌的等待,也不是做任何与睡眠或类似的事情。
If they're on the same machine the first program can touch a temporary file.
There is a Gamin module in python that will allow your second program to sit there and wait while not tying up resources. It isn't a busy wait, or doing anything with sleep or stuff like that.