3 Pfk" @sdZddlmZddlZddlZddlmZmZddlm Z m Z ddZ dd d Z dd d Z ddZddZddZeryddlZeZWnek reZYnXddZdS)zd This code was taken from https://github.com/ActiveState/appdirs and modified to suit our purposes. )absolute_importN)WINDOWS expanduser)PY2 text_typecCstr 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.6/appdirs.pyuser_cache_dirs rFcCshtr,|r dpd}tjjtjjt||}n8tjdkrJtjjtd|}ntjjtj dtd|}|S)aS 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/ 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_APPDATArrz~/Library/Application Support/Z XDG_DATA_HOMEz~/.local/share) rr r rr r rrrr)rroamingconstr rrr user_data_dir>s  rTcCsHtrt||d}n2tjdkr&t|}ntjdtd}tjj||}|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/". )rrZXDG_CONFIG_HOMEz ~/.config) rrrrr rrr r)rrr rrruser_config_dirjs  rcstr&tjjtd}tjj|g}nVtjdkrBtjjdg}n:tjdd}|rnfdd|j tj D}ng}|j 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_APPDATArz/Library/Application SupportZXDG_CONFIG_DIRSz/etc/xdgcsg|]}tjjt|qSr)r r rr).0x)rrr sz$site_config_dirs..z/etc) rr r r r rrrrsplitpathsepappend)rr ZpathlistZxdg_config_dirsr)rrsite_config_dirss    r#cCs:ddl}dddd|}|j|jd}|j||\}}|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 AppData)rrrz@Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders)_winregOpenKeyHKEY_CURRENT_USERZ QueryValueEx) csidl_namer$Zshell_folder_namekeyZ directoryZ_typerrr_get_win_folder_from_registrysr)cCsdddd|}tjd}tjjjd|dd|d}x|D]}t|dkr:d }Pq:W|rztjd}tjjj|j|drz|}|jS) N#)rrrirFT) ctypesZcreate_unicode_bufferZwindllZshell32ZSHGetFolderPathWordZkernel32ZGetShortPathNameWvalue)r'Z csidl_constZbufZ has_high_charcZbuf2rrr_get_win_folder_with_ctypess     r2c Cs6x0dD](}y |j|Sttfk r,YqXqW|S)aEncode Windows paths to bytes. Only used on Python 2. Motivation is to be consistent with other operating systems where paths are also returned as bytes. This avoids problems mixing bytes and Unicode elsewhere in the codebase. For more details and discussion see . If encoding using ASCII and MBCS fails, return the original Unicode path. ASCIIMBCS)r3r4)encodeUnicodeEncodeError LookupError)r encodingrrrrs   r)F)T)__doc__Z __future__rr rZ pip.compatrrZpip._vendor.sixrrrrrr#r)r2r.r ImportErrorrrrrrs$ 0 , !(