o
    Ëý°jþ  ã                   @  sˆ   d dl m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j
 d¡r-d dlmZ nddd„ZG dd„ de	ƒZddd„ZdgZdS )é    )ÚannotationsN)ÚConfigParser)ÚPathé   )ÚPlatformDirsABCÚlinux)ÚgetuidÚreturnÚintc                   C  s   t dƒ‚)Nzshould only be used on Linux)ÚRuntimeError© r   r   ú�/root/aizidognhua/tmp/workspace/projects/ec89d86c-575f-41c9-af57-ac45cbdbf775/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.pyr      s   r   c                   @  s¾   e Zd ZdZed"dd„ƒZed"dd„ƒZd#d	d
„Zed"dd„ƒZed"dd„ƒZ	ed"dd„ƒZ
ed"dd„ƒZed"dd„ƒZed"dd„ƒZed"dd„ƒZed$dd„ƒZed$dd„ƒZd%dd „Zd!S )&ÚUnixaD  
    On Unix/Linux, we follow the
    `XDG Basedir Spec <https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html>`_. The spec allows
    overriding directories with environment variables. The examples show are the default values, alongside the name of
    the environment variable that overrides them. Makes use of the
    `appname <platformdirs.api.PlatformDirsABC.appname>`,
    `version <platformdirs.api.PlatformDirsABC.version>`,
    `multipath <platformdirs.api.PlatformDirsABC.multipath>`,
    `opinion <platformdirs.api.PlatformDirsABC.opinion>`.
    r	   Ústrc                 C  ó,   t j dd¡}| ¡ st j d¡}|  |¡S )z–
        :return: data directory tied to the user, e.g. ``~/.local/share/$appname/$version`` or
         ``$XDG_DATA_HOME/$appname/$version``
        ÚXDG_DATA_HOMEÚ z~/.local/share©ÚosÚenvironÚgetÚstripÚpathÚ
expanduserÚ_append_app_name_and_version©Úselfr   r   r   r   Úuser_data_dir   ó   
zUnix.user_data_dirc                 C  s.   t j dd¡}| ¡ sdt j› d�}|  |¡S )aY  
        :return: data directories shared by users (if `multipath <platformdirs.api.PlatformDirsABC.multipath>` is
         enabled and ``XDG_DATA_DIR`` is set and a multi path the response is also a multi path separated by the OS
         path separator), e.g. ``/usr/local/share/$appname/$version`` or ``/usr/share/$appname/$version``
        ÚXDG_DATA_DIRSr   z/usr/local/sharez
/usr/share)r   r   r   r   ÚpathsepÚ_with_multi_pathr   r   r   r   Úsite_data_dir)   s   
zUnix.site_data_dirr   c                   s<   |  tj¡}ˆ js|dd… }‡ fdd„|D ƒ}tj |¡S )Nr   r   c                   s   g | ]}ˆ   tj |¡¡‘qS r   )r   r   r   r   )Ú.0Úp©r   r   r   Ú
<listcomp>:   s    z)Unix._with_multi_path.<locals>.<listcomp>)Úsplitr   r    Ú	multipathÚjoin)r   r   Ú	path_listr   r%   r   r!   6   s
   zUnix._with_multi_pathc                 C  r   )z•
        :return: config directory tied to the user, e.g. ``~/.config/$appname/$version`` or
         ``$XDG_CONFIG_HOME/$appname/$version``
        ÚXDG_CONFIG_HOMEr   z	~/.configr   r   r   r   r   Úuser_config_dir=   r   zUnix.user_config_dirc                 C  s$   t j dd¡}| ¡ sd}|  |¡S )a/  
        :return: config directories shared by users (if `multipath <platformdirs.api.PlatformDirsABC.multipath>`
         is enabled and ``XDG_DATA_DIR`` is set and a multi path the response is also a multi path separated by the OS
         path separator), e.g. ``/etc/xdg/$appname/$version``
        ÚXDG_CONFIG_DIRSr   z/etc/xdg)r   r   r   r   r!   r   r   r   r   Úsite_config_dirH   s   
zUnix.site_config_dirc                 C  r   )z”
        :return: cache directory tied to the user, e.g. ``~/.cache/$appname/$version`` or
         ``~/$XDG_CACHE_HOME/$appname/$version``
        ÚXDG_CACHE_HOMEr   z~/.cacher   r   r   r   r   Úuser_cache_dirU   r   zUnix.user_cache_dirc                 C  r   )z˜
        :return: state directory tied to the user, e.g. ``~/.local/state/$appname/$version`` or
         ``$XDG_STATE_HOME/$appname/$version``
        ÚXDG_STATE_HOMEr   z~/.local/stater   r   r   r   r   Úuser_state_dir`   r   zUnix.user_state_dirc                 C  s   | j }| jrtj |d¡}|S )zx
        :return: log directory tied to the user, same as `user_data_dir` if not opinionated else ``log`` in it
        Úlog)r0   Úopinionr   r   r)   r   r   r   r   Úuser_log_dirk   s   zUnix.user_log_dirc                 C  s6   t dƒ}|du rtj dd¡ ¡ }|stj d¡}|S )zU
        :return: documents directory tied to the user, e.g. ``~/Documents``
        ÚXDG_DOCUMENTS_DIRNr   z~/Documents)Ú_get_user_dirs_folderr   r   r   r   r   r   )r   Údocuments_dirr   r   r   Úuser_documents_diru   s   zUnix.user_documents_dirc                 C  s,   t j dd¡}| ¡ sdtƒ › �}|  |¡S )zŸ
        :return: runtime directory tied to the user, e.g. ``/run/user/$(id -u)/$appname/$version`` or
         ``$XDG_RUNTIME_DIR/$appname/$version``
        ÚXDG_RUNTIME_DIRr   z
/run/user/)r   r   r   r   r   r   r   r   r   r   Úuser_runtime_dir‚   r   zUnix.user_runtime_dirr   c                 C  ó   |   | j¡S )zd:return: data path shared by users. Only return first item, even if ``multipath`` is set to ``True``)Ú _first_item_as_path_if_multipathr"   r%   r   r   r   Úsite_data_path�   ó   zUnix.site_data_pathc                 C  r<   )zj:return: config path shared by the users. Only return first item, even if ``multipath`` is set to ``True``)r=   r.   r%   r   r   r   Úsite_config_path’   r?   zUnix.site_config_pathÚ	directoryc                 C  s   | j r| tj¡d }t|ƒS )Nr   )r(   r'   r   r    r   )r   rA   r   r   r   r=   —   s   z%Unix._first_item_as_path_if_multipathN)r	   r   )r   r   r	   r   )r	   r   )rA   r   r	   r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__Úpropertyr   r"   r!   r,   r.   r0   r2   r5   r9   r;   r>   r@   r=   r   r   r   r   r      s4    




	
r   Úkeyr   ú
str | Nonec                 C  sž   t j tƒ jd¡}t j |¡rMtƒ }t|ƒ�}| d| 	¡ › �¡ W d  ƒ n1 s+w   Y  | |d vr8dS |d |   
d¡}| dt j d¡¡}|S dS )zjReturn directory from user-dirs.dirs config file. See https://freedesktop.org/wiki/Software/xdg-user-dirs/zuser-dirs.dirsz[top]
NÚtopú"z$HOMEú~)r   r   r)   r   r,   Úexistsr   ÚopenÚread_stringÚreadr   Úreplacer   )rG   Úuser_dirs_config_pathÚparserÚstreamr   r   r   r   r7   ž   s   
þr7   )r	   r
   )rG   r   r	   rH   )Ú
__future__r   r   ÚsysÚconfigparserr   Úpathlibr   Úapir   ÚplatformÚ
startswithr   r   r7   Ú__all__r   r   r   r   Ú<module>   s    
 
ÿ