U .e&&@sdZddlmZddlZddlZddlmZmZddlm Z m Z ddl m Z e r\ddl mZdd Zdd d ZdddZddZddZddZe rzddlZeZWnek reZYnXddZdS)zd This code was taken from https://github.com/ActiveState/appdirs and modified to suit our purposes. )absolute_importN)PY2 text_type)WINDOWS expanduser)MYPY_CHECK_RUNNING)ListcCstr Unix: ~/.cache/ (XDG default) Windows: C:\Users\\AppData\Local\\Cache On Windows the only suggestion in the MSDN docs is that local settings go in the `CSIDL_LOCAL_APPDATA` directory. This is identical to the non-roaming app data dir (the default returned by `user_data_dir`). Apps typically put cache data somewhere *under* the given dir here. Some examples: ...\Mozilla\Firefox\Profiles\\Cache ...\Acme\SuperApp\Cache\1.0 OPINION: This function appends "Cache" to the `CSIDL_LOCAL_APPDATA` value. CSIDL_LOCAL_APPDATAZCachedarwinz~/Library/CachesZXDG_CACHE_HOMEz~/.cache)rospathnormpath_get_win_folderr isinstancer_win_path_to_bytesjoinsysplatformrgetenv)appnamer r?/usr/lib/python3.8/site-packages/pip/_internal/utils/appdirs.pyuser_cache_dirs rFcCstr,|r dpd}tjtjt||}ndtjdkrvtjtjt d|rbtjt d|ntjt d|}ntjt dt d|}|S)a Return full path to the user-specific data dir for this application. "appname" is the name of application. If None, just the system directory is returned. "roaming" (boolean, default False) can be set True to use the Windows roaming appdata directory. That means that for users on a Windows network setup for roaming profiles, this user data will be sync'd on login. See for a discussion of issues. Typical user data directories are: macOS: ~/Library/Application Support/ if it exists, else ~/.config/ Unix: ~/.local/share/ # or in $XDG_DATA_HOME, if defined Win XP (not roaming): C:\Documents and Settings\\ ... ...Application Data\ Win XP (roaming): C:\Documents and Settings\\Local ... ...Settings\Application Data\ Win 7 (not roaming): C:\\Users\\AppData\Local\ Win 7 (roaming): C:\\Users\\AppData\Roaming\ For Unix, we follow the XDG spec and support $XDG_DATA_HOME. That means, by default "~/.local/share/". CSIDL_APPDATAr r z~/Library/Application Support/z ~/.config/Z XDG_DATA_HOMEz~/.local/share) rr r rr rrrisdirrr)rroamingconstr rrr user_data_dirHs,    rTcCsHtrt||d}n2tjdkr&t|}ntdtd}tj||}|S)arReturn full path to the user-specific config dir for this application. "appname" is the name of application. If None, just the system directory is returned. "roaming" (boolean, default True) can be set False to not use the Windows roaming appdata directory. That means that for users on a Windows network setup for roaming profiles, this user data will be sync'd on login. See for a discussion of issues. Typical user data directories are: macOS: same as user_data_dir Unix: ~/.config/ Win *: same as user_data_dir For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME. That means, by default "~/.config/". )rr ZXDG_CONFIG_HOMEz ~/.config) rrrrr rrr r)rrr rrruser_config_dir}s  rcstr&tjtd}tj|g}nVtjdkrBtjdg}n:tdd}|rnfdd| tj D}ng}| d|S) aReturn a list of potential user-shared config dirs for this application. "appname" is the name of application. Typical user config directories are: macOS: /Library/Application Support// Unix: /etc or $XDG_CONFIG_DIRS[i]// for each value in $XDG_CONFIG_DIRS Win XP: C:\Documents and Settings\All Users\Application ... ...Data\\ Vista: (Fail! "C:\ProgramData" is a hidden *system* directory on Vista.) Win 7: Hidden, but writeable on Win 7: C:\ProgramData\\ CSIDL_COMMON_APPDATAr z/Library/Application SupportZXDG_CONFIG_DIRSz/etc/xdgcsg|]}tjt|qSr)r r rr).0xrrr sz$site_config_dirs..z/etc) rr r r rrrrrsplitpathsepappend)rr ZpathlistZxdg_config_dirsrr"rsite_config_dirss     r'cCs:ddl}dddd|}||jd}|||\}}|S)z This is a fallback technique at best. I'm not sure if using the registry for this guarantees us the correct answer for all CSIDL_* names. rNZAppDatazCommon AppDataz Local AppDatarrr z@Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders)_winregOpenKeyHKEY_CURRENT_USERZ QueryValueEx) csidl_namer)Zshell_folder_namekeyZ directoryZ_typerrr_get_win_folder_from_registrysr.cCsdddd|}td}tj}|jd|dd|d}|D]}t|dkr. If encoding using ASCII and MBCS fails, return the original Unicode path. )ASCIIZMBCS)encodeUnicodeEncodeError LookupError)r encodingrrrrs r)F)T)__doc__Z __future__rr rZpip._vendor.sixrrZpip._internal.utils.compatrrZpip._internal.utils.typingrtypingrrrrr'r.r8r3r ImportErrorrrrrrs*   1 5 ")