Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 1 | % Manual text by Jaap Vermeulen |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 2 | \section{Built-in Module \sectcode{fcntl}} |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 3 | \bimodindex{fcntl} |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 4 | \indexii{\UNIX{}}{file control} |
| 5 | \indexii{\UNIX{}}{I/O control} |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 7 | This module performs file control and I/O control on file descriptors. |
| 8 | It is an interface to the \dfn{fcntl()} and \dfn{ioctl()} \UNIX{} routines. |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 9 | File descriptors can be obtained with the \dfn{fileno()} method of a |
| 10 | file or socket object. |
| 11 | |
| 12 | The module defines the following functions: |
| 13 | |
| 14 | \renewcommand{\indexsubitem}{(in module struct)} |
| 15 | |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 16 | \begin{funcdesc}{fcntl}{fd\, op\optional{\, arg}} |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 17 | Perform the requested operation on file descriptor \code{\var{fd}}. |
| 18 | The operation is defined by \code{\var{op}} and is operating system |
| 19 | dependent. Typically these codes can be retrieved from the library |
Guido van Rossum | 16d6e71 | 1994-08-08 12:30:22 +0000 | [diff] [blame] | 20 | module \code{FCNTL}. The argument \code{\var{arg}} is optional, and |
| 21 | defaults to the integer value \code{0}. When |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 22 | it is present, it can either be an integer value, or a string. With |
| 23 | the argument missing or an integer value, the return value of this |
| 24 | function is the integer return value of the real \code{fcntl()} |
| 25 | call. When the argument is a string it represents a binary |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 26 | structure, e.g.\ created by \code{struct.pack()}. The binary data is |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 27 | copied to a buffer whose address is passed to the real \code{fcntl()} |
| 28 | call. The return value after a successful call is the contents of |
Guido van Rossum | 6bb1adc | 1995-03-13 10:03:32 +0000 | [diff] [blame] | 29 | the buffer, converted to a string object. In case the |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 30 | \code{fcntl()} fails, an \code{IOError} will be raised. |
| 31 | \end{funcdesc} |
| 32 | |
| 33 | \begin{funcdesc}{ioctl}{fd\, op\, arg} |
| 34 | This function is identical to the \code{fcntl()} function, except |
| 35 | that the operations are typically defined in the library module |
| 36 | \code{IOCTL}. |
| 37 | \end{funcdesc} |
| 38 | |
Guido van Rossum | 50ec5c0 | 1996-06-26 19:20:33 +0000 | [diff] [blame] | 39 | \begin{funcdesc}{flock}{fd\, op} |
| 40 | Perform the lock operation \var{op} on file descriptor \var{fd}. |
| 41 | See the Unix manual for details. (On some systems, this function is |
| 42 | emulated using \code{fcntl}.) |
| 43 | \end{funcdesc} |
| 44 | |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 45 | If the library modules \code{FCNTL} or \code{IOCTL} are missing, you |
| 46 | can find the opcodes in the C include files \code{sys/fcntl} and |
| 47 | \code{sys/ioctl}. You can create the modules yourself with the h2py |
Guido van Rossum | 0bbbea1 | 1995-08-10 14:21:11 +0000 | [diff] [blame] | 48 | script, found in the \code{Tools/scripts} directory. |
| 49 | \stmodindex{FCNTL} |
| 50 | \stmodindex{IOCTL} |
Guido van Rossum | 7f61b35 | 1994-05-19 09:09:50 +0000 | [diff] [blame] | 51 | |
| 52 | Examples (all on a SVR4 compliant system): |
| 53 | |
| 54 | \bcode\begin{verbatim} |
| 55 | import struct, FCNTL |
| 56 | |
| 57 | file = open(...) |
| 58 | rv = fcntl(file.fileno(), FCNTL.O_NDELAY, 1) |
| 59 | |
| 60 | lockdata = struct.pack('hhllhh', FCNTL.F_WRLCK, 0, 0, 0, 0, 0) |
| 61 | rv = fcntl(file.fileno(), FCNTL.F_SETLKW, lockdata) |
| 62 | \end{verbatim}\ecode |
| 63 | |
| 64 | Note that in the first example the return value variable \code{rv} will |
| 65 | hold an integer value; in the second example it will hold a string |
Guido van Rossum | 50ec5c0 | 1996-06-26 19:20:33 +0000 | [diff] [blame] | 66 | value. The structure lay-out for the \var{lockadata} variable is |
| 67 | system dependent -- therefore using the \code{flock()} call may be |
| 68 | better. |