o
    _Zh                      @   s~   d dl Z d dlZd dlZd dlZd dlmZ d dlmZ d dlm	Z	 e
dZG dd deZdd	 Z	
				dddZdS )    N)MutableMapping)cached_property)	url_to_fszfsspec.mappingc                   @   s   e Zd ZdZd%ddZedd Zdd	 Zd&ddZdd Z	dd Z
dd Zdd Zd'ddZd'ddZdd Zdd Zdd Zdd  Zd!d" Zd#d$ ZdS )(FSMapa  Wrap a FileSystem instance as a mutable wrapping.

    The keys of the mapping become files under the given root, and the
    values (which must be bytes) the contents of those files.

    Parameters
    ----------
    root: string
        prefix for all the files
    fs: FileSystem instance
    check: bool (=True)
        performs a touch at the location, to check for write access.

    Examples
    --------
    >>> fs = FileSystem(**parameters)  # doctest: +SKIP
    >>> d = FSMap('my-data/path/', fs)  # doctest: +SKIP
    or, more likely
    >>> d = fs.get_mapper('my-data/path/')

    >>> d['loc1'] = b'Hello World'  # doctest: +SKIP
    >>> list(d.keys())  # doctest: +SKIP
    ['loc1']
    >>> d['loc1']  # doctest: +SKIP
    b'Hello World'
    FNc                 C   s   || _ ||| _|t|dd d | _|d u r tttf}|| _	|| _
|| _|r7| j |s7| j | |rY| j |sGtd| d| j |d  | j |d  d S d S )NxzPath z9 does not exist. Create  with the ``create=True`` keywordz/a)fsZ_strip_protocolroot	posixpathjoin_root_key_to_strFileNotFoundErrorIsADirectoryErrorNotADirectoryErrormissing_exceptionscheckcreateexistsmkdir
ValueErrortouchrm)selfr	   r   r   r   r    r   =/var/www/auris/lib/python3.10/site-packages/fsspec/mapping.py__init__)   s,   
zFSMap.__init__c                 C   s   ddl m} || j| jdS )z@dirfs instance that can be used with the same keys as the mapper   )DirFileSystem)pathr   )Zimplementations.dirfsr   r   r   )r   r   r   r   r   dirfsB   s   zFSMap.dirfsc                 C   s@   t d| j z| j| jd | j| j W dS    Y dS )z0Remove all keys below root - empties out mappingzClear mapping at %sTN)loggerinfor	   r   r   r   r   r   r   r   clearI   s   zFSMap.clearraisec              
      s   fdd|D } dkr nd}zj j||dttr%|d iW n jy6 } zt|d}~ww fdd	 D  fd
d	t||D S )a  Fetch multiple items from the store

        If the backend is async-able, this might proceed concurrently

        Parameters
        ----------
        keys: list(str)
            They keys to be fetched
        on_error : "raise", "omit", "return"
            If raise, an underlying exception will be raised (converted to KeyError
            if the type is in self.missing_exceptions); if omit, keys with exception
            will simply not be included in the output; if "return", all keys are
            included in the output, but the value will be bytes or an exception
            instance.

        Returns
        -------
        dict(key, bytes|exception)
        c                       g | ]}  |qS r   _key_to_str.0kr"   r   r   
<listcomp>f       z"FSMap.getitems.<locals>.<listcomp>r$   return)on_errorr   Nc                    s(   i | ]\}}|t | jrt n|qS r   )
isinstancer   KeyErrorr)   r*   vr"   r   r   
<dictcomp>n   s    z"FSMap.getitems.<locals>.<dictcomp>c                    sH   i | ] \}} d kst | ts| dkr| n|t|qS )r-   r$   )r/   BaseExceptiongetr0   )r)   keyZk2)r.   outr   r   r3   r   s
     )r   catr/   bytesr   r0   itemszip)r   keysr.   keys2Zoeer   )r.   r7   r   r   getitemsR   s"   

zFSMap.getitemsc                    s&    fdd|  D } j| dS )zSet the values of multiple items in the store

        Parameters
        ----------
        values_dict: dict(str, bytes)
        c                    s    i | ]\}}  |t|qS r   )r'   maybe_convertr1   r"   r   r   r3      s     z"FSMap.setitems.<locals>.<dictcomp>N)r:   r   pipe)r   Zvalues_dictvaluesr   r"   r   setitemsx   s   zFSMap.setitemsc                    s    j  fdd|D  dS )z#Remove multiple keys from the storec                    r%   r   r&   r(   r"   r   r   r+      r,   z"FSMap.delitems.<locals>.<listcomp>N)r   r   )r   r<   r   r"   r   delitems   s   zFSMap.delitemsc                 C   sD   t |tstdt t |trt|}t|}| j | dS )zGenerate full path for the keyzAfrom fsspec 2023.5 onward FSMap non-str keys will raise TypeError/)	r/   strwarningswarnDeprecationWarninglisttupler   rstrip)r   r6   r   r   r   r'      s   

zFSMap._key_to_strc                 C   s   |t | jd dS )zStrip path of to leave key nameNrE   )lenr	   lstrip)r   sr   r   r   _str_to_key   s   zFSMap._str_to_keyc              
   C   sZ   |  |}z	| j|}W |S  | jy, } z|dur#|W  Y d}~S t||d}~ww )zRetrieve dataN)r'   r   r8   r   r0   )r   r6   defaultr*   resultexcr   r   r   __getitem__   s   

zFSMap.__getitem__c                 C   s.   |  ||}z| |= W |S  ty   Y |S w )zPop data)rT   r0   )r   r6   rQ   rR   r   r   r   pop   s   z	FSMap.popc                 C   s8   |  |}| jj| j|dd | j|t| dS )zStore value in keyT)exist_okN)r'   r   Zmkdirs_parentZ	pipe_filer@   )r   r6   valuer   r   r   __setitem__   s   
zFSMap.__setitem__c                    s    fdd j  jD S )Nc                 3   s    | ]}  |V  qd S N)rP   )r)   r   r"   r   r   	<genexpr>   s    z!FSMap.__iter__.<locals>.<genexpr>)r   findr	   r"   r   r"   r   __iter__   s   zFSMap.__iter__c                 C   s   t | j| jS rZ   )rM   r   r\   r	   r"   r   r   r   __len__   s   zFSMap.__len__c              
   C   s8   z| j | | W dS  ty } zt|d}~ww )z
Remove keyN)r   r   r'   	Exceptionr0   )r   r6   rS   r   r   r   __delitem__   s   zFSMap.__delitem__c                 C   s   |  |}| j|S )zDoes key exist in mapping?)r'   r   isfile)r   r6   r   r   r   r   __contains__   s   
zFSMap.__contains__c                 C   s   t | j| jdd| jffS )NF)r   r	   r   r   r"   r   r   r   
__reduce__   s   zFSMap.__reduce__)FFN)r$   rZ   )__name__
__module____qualname____doc__r   r   r   r#   r?   rC   rD   r'   rP   rT   rU   rY   r]   r^   r`   rb   rc   r   r   r   r   r      s&    


	&


	r   c                 C   sF   t | tjst| dr!t| dr| jjdv r| d} tt| } | S )NZ	__array__dtypeZMmZint64)r/   arrayhasattrrh   kindviewr9   
memoryview)rX   r   r   r   r@      s
   
r@    Fc           	      K   s6   t | fi |\}}|dur|n|}t|||||dS )a  Create key-value interface for given URL and options

    The URL will be of the form "protocol://location" and point to the root
    of the mapper required. All keys will be file-names below this location,
    and their values the contents of each key.

    Also accepts compound URLs like zip::s3://bucket/file.zip , see ``fsspec.open``.

    Parameters
    ----------
    url: str
        Root URL of mapping
    check: bool
        Whether to attempt to read from the location before instantiation, to
        check that the mapping does exist
    create: bool
        Whether to make the directory corresponding to the root before
        instantiating
    missing_exceptions: None or tuple
        If given, these exception types will be regarded as missing keys and
        return KeyError when trying to read data. By default, you get
        (FileNotFoundError, IsADirectoryError, NotADirectoryError)
    alternate_root: None or str
        In cases of complex URLs, the parser may fail to pick the correct part
        for the mapper root, so this arg can override

    Returns
    -------
    ``FSMap`` instance, the dict-like key-value store.
    N)r   )r   r   )	urlr   r   r   Zalternate_rootkwargsr   Zurlpathr	   r   r   r   
get_mapper   s   'rq   )rn   FFNN)ri   loggingr
   rG   collections.abcr   	functoolsr   Zfsspec.corer   	getLoggerr    r   r@   rq   r   r   r   r   <module>   s"    
 ;