| Server IP : 217.160.0.135 / Your IP : 216.73.217.85 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/pip/_vendor/cachecontrol/__pycache__/ |
Upload File : |
�
�/�cj � �6 � d dl mZ d dlZ G d� de� � ZdS )� )�NamedTemporaryFileNc �8 � e Zd ZdZd� Zd� Zd� Zd� Zd d�Zd� Z dS )
�CallbackFileWrappera
Small wrapper around a fp object which will tee everything read into a
buffer, and when that file is closed it will execute a callback with the
contents of that buffer.
All attributes are proxied to the underlying file object.
This class uses members with a double underscore (__) leading prefix so as
not to accidentally shadow an attribute.
The data is stored in a temporary file until it is all available. As long
as the temporary files directory is disk-based (sometimes it's a
memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory
pressure is high. For small files the disk usually won't be used at all,
it'll all be in the filesystem memory cache, so there should be no
performance impact.
c �N � t dd�� � | _ || _ || _ d S )Nzrb+T)�delete)r �_CallbackFileWrapper__buf�_CallbackFileWrapper__fp�_CallbackFileWrapper__callback)�self�fp�callbacks �F/usr/lib/python3/dist-packages/pip/_vendor/cachecontrol/filewrapper.py�__init__zCallbackFileWrapper.__init__ s( � �'��d�;�;�;��
��� �"����� c �L � | � d� � }t ||� � S )Nr )�__getattribute__�getattr)r �namer s r �__getattr__zCallbackFileWrapper.__getattr__! s( � � �
"�
"�#=�
>�
>���r�4� � � r c �~ � | j j d u S # t $ r Y nw xY w | j j S # t $ r Y nw xY wdS )NF)r r �AttributeError�closed)r s r �__is_fp_closedz"CallbackFileWrapper.__is_fp_closed- sm � � ��9�<�4�'�'��� � � ��D� ���� ��9�#�#��� � � ��D� ����
�us �
�
��- �
:�:c �~ � | j r�| j � � � dk rd}n`| j � dd� � t t j | j � � � dt
j �� � � � }| � |� � d | _ | j � � � d S )Nr r )�access) r
r �tell�seek�
memoryview�mmap�fileno�ACCESS_READ�close)r �results r �_closezCallbackFileWrapper._close>