Thomas Ahle
Thomas Ahle

Reputation: 31594

Python: when to use pty.fork() versus os.fork()

I'm uncertain whether to use pty.fork() or os.fork() when spawning external background processes from my app. (Such as chess engines)

I want the spawned processes to die if the parent is killed, as with spawning apps in a terminal.

What are the ups and downs between the two forks?

Upvotes: 14

Views: 6652

Answers (3)

pavlix
pavlix

Reputation: 21

Pseudotermials are necessary for some applications that really expect a terminal. An interactive shell is one of these examples but there are many other. The pty.fork option is not there as another os.fork but as a specific API to use a pseudoterminal.

Upvotes: 2

Denis Otkidach
Denis Otkidach

Reputation: 33180

The child process created with os.fork() inherits stdin/stdout/stderr from parent process, while the child created with pty.fork() is connected to new pseudo terminal. You need the later when you write a program like xterm: pty.fork() in parent process returns a descriptor to control terminal of child process, so you can visually represent data from it and translate user actions into terminal input sequences.

Update:

From pty(7) man page:

A process that expects to be connected to a terminal, can open the slave end of a pseudo-terminal and then be driven by a program that has opened the master end. Anything that is written on the master end is provided to the process on the slave end as though it was input typed on a terminal. For example, writing the interrupt character (usually control-C) to the master device would cause an interrupt signal (SIGINT) to be generated for the foreground process group that is connected to the slave. Conversely, anything that is written to the slave end of the pseudo-terminal can be read by the process that is connected to the master end.

Upvotes: 11

Bryan McLemore
Bryan McLemore

Reputation: 6493

In the past I've always used the subprocess module for this. It provides a good api for communicating with subprocesses.

You can use call(*popenargs, **kwargs) for blocking execution of them, and I believe using the Popen class can handle async execution.

Check out the docs for more info.

As far as using os.fork vs pty.fork, both are highly platform dependent, and neither will work (or at least is tested) with windows. The pty module seems to be the more constrained of the two by reading the docs. The main difference being the pseudo terminal aspect. So if you aren't willing to architect your code in such a way as to be able to use the subprocess module, I'd probably go with os.fork instead of pty.fork.

Upvotes: 4

Related Questions