select — Waiting for I/O completion¶
This module provides access to the select() and poll() functions
available in most operating systems, devpoll() available on
Solaris and derivatives, epoll() available on Linux 2.5+ and
kqueue() available on most BSD.
Note that on Windows, it only works for sockets; on other operating systems,
it also works for other file types (in particular, on Unix, it works on pipes).
It cannot be used on regular files to determine whether a file has grown since
it was last read.
Примітка
The selectors module allows high-level and efficient I/O
multiplexing, built upon the select module primitives. Users are
encouraged to use the selectors module instead, unless they want
precise control over the OS-level primitives used.
Availability: not WASI.
This module does not work or is not available on WebAssembly. See WebAssembly platforms for more information.
Модуль визначає наступне:
- select.devpoll()¶
Returns a
/dev/pollpolling object; see section /dev/poll polling objects below for the methods supported by devpoll objects.devpoll()objects are linked to the number of file descriptors allowed at the time of instantiation. If your program reduces this value,devpoll()will fail. If your program increases this value,devpoll()may return an incomplete list of active file descriptors.Новий файловий дескриптор не успадковується.
Added in version 3.3.
Змінено в версії 3.4: Новий файловий дескриптор тепер не успадковується.
Availability: Solaris.
- select.epoll(sizehint=-1, flags=0)¶
Return an edge polling object, which can be used as Edge or Level Triggered interface for I/O events.
sizehint informs epoll about the expected number of events to be registered. It must be positive, or
-1to use the default. It is only used on older systems where epoll_create1(2) is not available; otherwise it has no effect (though its value is still checked).flags застаріло та повністю ігнорується. Однак, коли надається, його значення має бути
0абоselect.EPOLL_CLOEXEC, інакшеOSErrorвикликається.Перегляньте розділ Edge and level trigger polling (epoll) objects нижче, щоб дізнатися про методи, які підтримуються об’єктами електронного опитування.
Об’єкти
epollпідтримують протокол керування контекстом: при використанні в операторіwithновий дескриптор файлу автоматично закривається в кінці блоку.Новий файловий дескриптор не успадковується.
Змінено в версії 3.3: Додано параметр flags.
Змінено в версії 3.4: Додано підтримку оператора
with. Новий файловий дескриптор тепер не успадковується.Застаріло починаючи з версії 3.4: Параметр flags.
select.EPOLL_CLOEXECзараз використовується за умовчанням. Використовуйтеos.set_inheritable(), щоб зробити дескриптор файлу спадковим.Змінено в версії 3.15: When CPython is built, this function may be disabled using
--disable-epoll.Availability: Linux >= 2.5.44.
- select.poll()¶
Returns a polling object, which supports registering and unregistering file descriptors, and then polling them for I/O events; see section Polling objects below for the methods supported by polling objects.
Availability: Unix.
- select.kqueue()¶
Returns a kernel queue object; see section Kqueue objects below for the methods supported by kqueue objects.
Новий файловий дескриптор не успадковується.
Змінено в версії 3.4: Новий файловий дескриптор тепер не успадковується.
Availability: BSD, macOS.
- select.kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0)¶
Returns a kernel event object; see section Kevent objects below for the methods supported by kevent objects.
Availability: BSD, macOS.
- select.select(rlist, wlist, xlist, timeout=None)¶
This is a straightforward interface to the Unix
select()system call. The first three arguments are iterables of „waitable objects“: either integers representing file descriptors or objects with a parameterless method namedfileno()returning such an integer:rlist: дочекатися готовності до читання
wlist: дочекатися готовності до запису
xlist: зачекайте на «виняткову умову» (перегляньте сторінку посібника щодо того, що ваша система вважає такою умовою)
Empty iterables are allowed, but acceptance of three empty iterables is platform-dependent. (It is known to work on Unix but not on Windows.) The optional timeout argument specifies a time-out in seconds; it may be a non-integer to specify fractions of seconds. When the timeout argument is omitted or
None, the function blocks until at least one file descriptor is ready. A time-out value of zero specifies a poll and never blocks.Повернене значення — це трійка списків готових об’єктів: підмножини перших трьох аргументів. Коли час очікування досягнуто, а дескриптор файлу не готовий, повертаються три порожні списки.
Серед прийнятних типів об’єктів у ітераціях є файлові об’єкти Python (наприклад,
sys.stdinабо об’єкти, повернутіopen()абоos.popen()), сокет об’єкти, які повертаєsocket.socket(). Ви також можете визначити клас wrapper самостійно, за умови, що він має відповідний методfileno()(який дійсно повертає дескриптор файлу, а не просто випадкове ціле число).Примітка
File objects on Windows are not acceptable, but sockets are. On Windows, the underlying
select()function is provided by the WinSock library, and does not handle file descriptors that don’t originate from WinSock.Змінено в версії 3.5: Функція тепер виконується повторно з переобчисленим тайм-аутом, якщо її перериває сигнал, за винятком випадків, коли обробник сигналу викликає виняток (перегляньте PEP 475 для обґрунтування), замість того, щоб викликати
InterruptedError.Змінено в версії 3.15: Accepts any real number as timeout, not only integer or float.
- select.PIPE_BUF¶
The minimum number of bytes which can be written without blocking to a pipe when the pipe has been reported as ready for writing by
select(),poll()or another interface in this module. This doesn’t apply to other kinds of file-like objects such as sockets.POSIX гарантує, що це значення буде не менше 512.
Availability: Unix
Added in version 3.2.
/dev/poll polling objects¶
Solaris and derivatives have /dev/poll. While select() is
O(highest file descriptor) and poll() is O(number of file
descriptors), /dev/poll is O(active file descriptors).
/dev/poll behaviour is very close to the standard poll()
object.
- devpoll.close()¶
Закрийте файловий дескриптор об’єкта опитування.
Added in version 3.4.
- devpoll.closed¶
True, якщо об’єкт опитування закрито.Added in version 3.4.
- devpoll.fileno()¶
Повертає номер дескриптора файлу об’єкта опитування.
Added in version 3.4.
- devpoll.register(fd[, eventmask])¶
Зареєструйте дескриптор файлу з об’єктом опитування. Подальші виклики методу
poll()перевірятимуть, чи є в дескрипторі файлу будь-які незавершені події введення/виведення. fd може бути або цілим числом, або об’єктом із методомfileno(), який повертає ціле число. Файлові об’єкти реалізуютьfileno(), тому їх також можна використовувати як аргумент.eventmask is an optional bitmask describing the type of events you want to check for. The constants are the same as with
poll()object. The default value is a combination of the constantsPOLLIN,POLLPRI, andPOLLOUT.Попередження
Registering a file descriptor that’s already registered is not an error, but the result is undefined. The appropriate action is to unregister or modify it first. This is an important difference compared with
poll().
- devpoll.modify(fd[, eventmask])¶
This method does an
unregister()followed by aregister(). It is (a bit) more efficient than doing the same explicitly.
- devpoll.unregister(fd)¶
Видаліть дескриптор файлу, який відстежується об’єктом опитування. Як і метод
register(), fd може бути цілим числом або об’єктом із методомfileno(), який повертає ціле число.Спроба видалити дескриптор файлу, який ніколи не був зареєстрований, безпечно ігнорується.
- devpoll.poll([timeout])¶
Polls the set of registered file descriptors, and returns a possibly empty list containing
(fd, event)2-tuples for the descriptors that have events or errors to report. fd is the file descriptor, and event is a bitmask with bits set for the reported events for that descriptor —POLLINfor waiting input,POLLOUTto indicate that the descriptor can be written to, and so forth. An empty list indicates that the call timed out and no file descriptors had any events to report. If timeout is given, it specifies the length of time in milliseconds which the system will wait for events before returning. If timeout is omitted, -1, orNone, the call will block until there is an event for this poll object.Змінено в версії 3.5: Функція тепер виконується повторно з переобчисленим тайм-аутом, якщо її перериває сигнал, за винятком випадків, коли обробник сигналу викликає виняток (перегляньте PEP 475 для обґрунтування), замість того, щоб викликати
InterruptedError.Змінено в версії 3.15: Accepts any real number as timeout, not only integer or float.
Edge and level trigger polling (epoll) objects¶
https://linux.die.net/man/4/epoll
The eventmask is a bit mask using the following constants:
Постійний
Значення
EPOLLINAvailable for read.
EPOLLOUTAvailable for write.
EPOLLPRIUrgent data for read.
EPOLLERRError condition happened on the associated fd.
EPOLLHUPHang up happened on the associated fd.
EPOLLETSet Edge Trigger behavior, the default is Level Trigger behavior.
EPOLLONESHOTSet one-shot behavior. After one event is pulled out, the fd is internally disabled.
EPOLLEXCLUSIVEWake only one epoll object when the associated fd has an event. The default (if this flag is not set) is to wake all epoll objects polling on an fd.
EPOLLRDHUPПотоковий сокет закрив однорангове з’єднання або завершив запис половини з’єднання.
EPOLLRDNORMЕквівалент
EPOLLIN
EPOLLRDBANDСмугу пріоритетних даних можна зчитувати.
EPOLLWRNORMEquivalent to
EPOLLOUT.
EPOLLWRBANDПріоритетні дані можуть бути записані.
EPOLLMSGІгнорується.
EPOLLWAKEUPPrevents sleep during event waiting.
Added in version 3.6:
EPOLLEXCLUSIVEдодано. Він підтримується лише ядром Linux 4.5 або новішої версії.Added in version 3.14:
EPOLLWAKEUPwas added. It’s only supported by Linux Kernel 3.5 or later.
- epoll.close()¶
Закрийте дескриптор керуючого файлу об’єкта epoll.
- epoll.closed¶
True, якщо об’єкт epoll закрито.
- epoll.fileno()¶
Повертає номер дескриптора файлу елемента керування fd.
- epoll.fromfd(fd)¶
Створіть об’єкт epoll із заданого файлового дескриптора.
- epoll.register(fd[, eventmask])¶
Register a file descriptor fd with the epoll object.
- epoll.modify(fd, eventmask)¶
Modify a registered file descriptor fd.
- epoll.unregister(fd)¶
Видаліть зареєстрований дескриптор файлу з об’єкта epoll.
Змінено в версії 3.9: Метод більше не ігнорує помилку
EBADF.
- epoll.poll(timeout=None, maxevents=-1)¶
Wait for events. If timeout is given, it specifies the length of time in seconds (may be non-integer) which the system will wait for events before returning.
Змінено в версії 3.5: Функція тепер виконується повторно з переобчисленим тайм-аутом, якщо її перериває сигнал, за винятком випадків, коли обробник сигналу викликає виняток (перегляньте PEP 475 для обґрунтування), замість того, щоб викликати
InterruptedError.Змінено в версії 3.15: Accepts any real number as timeout, not only integer or float.
Polling objects¶
The poll() system call, supported on most Unix systems, provides better
scalability for network servers that service many, many clients at the same
time. poll() scales better because the system call only requires listing
the file descriptors of interest, while select() builds a bitmap, turns
on bits for the fds of interest, and then afterward the whole bitmap has to be
linearly scanned again. select() is O(highest file descriptor), while
poll() is O(number of file descriptors).
- poll.register(fd[, eventmask])¶
Зареєструйте дескриптор файлу з об’єктом опитування. Подальші виклики методу
poll()перевірятимуть, чи є в дескрипторі файлу будь-які незавершені події введення/виведення. fd може бути або цілим числом, або об’єктом із методомfileno(), який повертає ціле число. Файлові об’єкти реалізуютьfileno(), тому їх також можна використовувати як аргумент.eventmask — це необов’язкова бітова маска, що описує тип подій, які ви хочете перевірити, і може бути комбінацією констант
POLLIN,POLLPRIіPOLLOUT, описаних у таблицю нижче. Якщо не вказано, значення за умовчанням перевірятиме всі 3 типи подій.Постійний
Значення
POLLINThere is data to read.
POLLPRIThere is urgent data to read.
POLLOUTReady for output: writing will not block.
POLLERRError condition of some sort.
POLLHUPHung up.
POLLRDHUPStream socket peer closed connection, or shut down writing half of connection.
POLNVALInvalid request: descriptor not open.
Реєстрація дескриптора файлу, який уже зареєстровано, не є помилкою та має той самий ефект, що й одноразова реєстрація дескриптора.
- poll.modify(fd, eventmask)¶
Змінює вже зареєстрований fd. Це має той самий ефект, що й
register(fd, eventmask). Спроба змінити дескриптор файлу, який ніколи не був зареєстрований, викликає винятокOSErrorз errnoENOENT.
- poll.unregister(fd)¶
Видаліть дескриптор файлу, який відстежується об’єктом опитування. Як і метод
register(), fd може бути цілим числом або об’єктом із методомfileno(), який повертає ціле число.Спроба видалити дескриптор файлу, який ніколи не був зареєстрований, викликає виняток
KeyError.
- poll.poll([timeout])¶
Polls the set of registered file descriptors, and returns a possibly empty list containing
(fd, event)2-tuples for the descriptors that have events or errors to report. fd is the file descriptor, and event is a bitmask with bits set for the reported events for that descriptor —POLLINfor waiting input,POLLOUTto indicate that the descriptor can be written to, and so forth. An empty list indicates that the call timed out and no file descriptors had any events to report. If timeout is given, it specifies the length of time in milliseconds which the system will wait for events before returning. If timeout is omitted, negative, orNone, the call will block until there is an event for this poll object.Змінено в версії 3.5: Функція тепер виконується повторно з переобчисленим тайм-аутом, якщо її перериває сигнал, за винятком випадків, коли обробник сигналу викликає виняток (перегляньте PEP 475 для обґрунтування), замість того, щоб викликати
InterruptedError.Змінено в версії 3.15: Accepts any real number as timeout, not only integer or float. If
ppoll()function is available, timeout has a resolution of1ns (1e-6ms) instead of1ms.
Kqueue objects¶
- kqueue.close()¶
Закрийте дескриптор керуючого файлу об’єкта kqueue.
- kqueue.closed¶
True, якщо об’єкт kqueue закрито.
- kqueue.fileno()¶
Повертає номер дескриптора файлу елемента керування fd.
- kqueue.fromfd(fd)¶
Створіть об’єкт kqueue із заданого файлового дескриптора.
- kqueue.control(changelist, max_events[, timeout]) eventlist¶
Низькорівневий інтерфейс для kevent
список змін має бути ітерованим об’єктами kevent або
Nonemax_events має бути 0 або додатним цілим числом
timeout in seconds (non-integers are possible); the default is
None, to wait forever
Змінено в версії 3.5: Функція тепер виконується повторно з переобчисленим тайм-аутом, якщо її перериває сигнал, за винятком випадків, коли обробник сигналу викликає виняток (перегляньте PEP 475 для обґрунтування), замість того, щоб викликати
InterruptedError.Змінено в версії 3.15: Accepts any real number as timeout, not only integer or float.
Kevent objects¶
https://man.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2
- kevent.ident¶
Значення, що використовується для ідентифікації події. Інтерпретація залежить від фільтра, але зазвичай це дескриптор файлу. У конструкторі ident може бути або int, або об’єктом із методом
fileno(). kevent зберігає ціле число всередині.
- kevent.filter¶
Назва фільтра ядра.
Постійний
Значення
KQ_FILTER_READTakes a descriptor and returns whenever there is data available to read.
KQ_FILTER_WRITETakes a descriptor and returns whenever there is data available to write.
KQ_FILTER_AIOAIO requests.
KQ_FILTER_VNODEReturns when one or more of the requested events watched in fflag occurs.
KQ_FILTER_PROCWatch for events on a process ID.
KQ_FILTER_NETDEVWatch for events on a network device (not available on macOS).
KQ_FILTER_SIGNALReturns whenever the watched signal is delivered to the process.
KQ_FILTER_TIMEREstablishes an arbitrary timer.
- kevent.flags¶
Дія фільтра.
Постійний
Значення
KQ_EV_ADDAdds or modifies an event.
KQ_EV_DELETERemoves an event from the queue.
KQ_EV_ENABLEPermits control() to return the event.
KQ_EV_DISABLEDisables event.
KQ_EV_ONESHOTRemoves event after first occurrence.
KQ_EV_CLEARReset the state after an event is retrieved.
KQ_EV_SYSFLAGSInternal event.
KQ_EV_FLAG1Internal event.
KQ_EV_EOFFilter-specific EOF condition.
KQ_EV_ERRORSee return values.
- kevent.fflags¶
Filter-specific flags.
KQ_FILTER_READіKQ_FILTER_WRITEпозначки фільтрів:Постійний
Значення
KQ_NOTE_LOWATLow water mark of a socket buffer.
KQ_FILTER_VNODEпозначки фільтра:Постійний
Значення
KQ_NOTE_DELETEunlink() was called.
KQ_NOTE_WRITEA write occurred.
KQ_NOTE_EXTENDThe file was extended.
KQ_NOTE_ATTRIBAn attribute was changed.
KQ_NOTE_LINKThe link count has changed.
KQ_NOTE_RENAMEThe file was renamed.
KQ_NOTE_REVOKEAccess to the file was revoked.
KQ_FILTER_PROCпозначки фільтра:Постійний
Значення
KQ_NOTE_EXITThe process has exited.
KQ_NOTE_FORKThe process has called fork().
KQ_NOTE_EXECThe process has executed a new process.
KQ_NOTE_PCTRLMASKInternal filter flag.
KQ_NOTE_PDATAMASKInternal filter flag.
KQ_NOTE_TRACKFollow a process across fork().
KQ_NOTE_CHILDReturned on the child process for NOTE_TRACK.
KQ_NOTE_TRACKERRUnable to attach to a child.
KQ_FILTER_NETDEVпозначки фільтра (недоступні в macOS):Постійний
Значення
KQ_NOTE_LINKUPLink is up.
KQ_NOTE_LINKDOWNLink is down.
KQ_NOTE_LINKINVLink state is invalid.
- kevent.data¶
Filter-specific data.
- kevent.udata¶
User-defined value.