Sindbad~EG File Manager
3
\F!� @sDdZddlZddlmZddlZyddlZWnek
rDdZYnXddlmZddl m
Z
ddlmZddl
mZyddlmZWnek
r�dZYnXydd lmZWnek
r�dZYnXd
d�Zdd
�Zd!dd�Zd"dd�Zed#gdfed$gdfed%gdfed&gdfed'gdfegdfd�Zdd�Zd(dd �ZdS))zodistutils.archive_util
Utility functions for creating archive files (tarballs, zip files,
that sort of thing).�N)�warn)�DistutilsExecError)�spawn)�mkpath)�log)�getpwnam)�getgrnamcCsNtdks|dkrdSyt|�}Wntk
r8d}YnX|dk rJ|dSdS)z"Returns a gid, given a group name.N�)r�KeyError)�name�result�r
�./usr/lib64/python3.6/distutils/archive_util.py�_get_gids
rcCsNtdks|dkrdSyt|�}Wntk
r8d}YnX|dk rJ|dSdS)z"Returns an uid, given a user name.Nr )rr
)rrr
r
r�_get_uid+s
r�gzipcs.dddddd�}dddd d
�}|dk r:||j�kr:td��|d
} |dkrZ| |j|d�7} ttjj| �|d�ddl}
tj d�t
���t�������fdd�}|s�|
j| d||�}z|j
||d�Wd|j�X|dk�r*tdt�| ||}
tjdk�r|| |
g}n
|d| g}t||d�|
S| S)a=Create a (possibly compressed) tar file from all the files under
'base_dir'.
'compress' must be "gzip" (the default), "bzip2", "xz", "compress", or
None. ("compress" will be deprecated in Python 3.2)
'owner' and 'group' can be used to define an owner and a group for the
archive that is being built. If not provided, the current owner and group
will be used.
The output tar file will be named 'base_dir' + ".tar", possibly plus
the appropriate compression extension (".gz", ".bz2", ".xz" or ".Z").
Returns the output filename.
Zgz�bz2�xz�)r�bzip2rN�compressz.gzz.bz2z.xzz.Z)rrrrNzKbad value for 'compress': must be None, 'gzip', 'bzip2', 'xz' or 'compress'z.tarr)�dry_runrzCreating tar archivecs,�dk r�|_�|_�dk r(�|_�|_|S)N)�gidZgname�uid�uname)Ztarinfo)r�group�ownerrr
r�_set_uid_gidasz"make_tarball.<locals>._set_uid_gidzw|%s)�filterz'compress' will be deprecated.Zwin32z-f)�keys�
ValueError�getr�os�path�dirname�tarfiler�inforr�open�add�closer�PendingDeprecationWarning�sys�platformr)� base_name�base_dirr�verboserrrZtar_compressionZcompress_extZarchive_namer%r�tarZcompressed_name�cmdr
)rrrrr�make_tarball7s<
r2cCs�|d}ttjj|�|d�tdkrp|r.d}nd}ytd|||g|d�Wn tk
rjtd|��YnX�n:tjd||�|�s�ytj |d tj
d
�}Wn&tk
r�tj |d tjd
�}YnX|tj
kr�tjjtjj|d��}|j||�tjd|�x�tj|�D]�\}} }
x>| D]6}tjjtjj||d��}|j||�tjd|��qWxJ|
D]B}tjjtjj||��}tjj|��rV|j||�tjd|��qVW�qW|j�|S)
avCreate a zip file from all the files under 'base_dir'.
The output zip file will be named 'base_name' + ".zip". Uses either the
"zipfile" Python module (if available) or the InfoZIP "zip" utility
(if installed and found on the default search path). If neither tool is
available, raises DistutilsExecError. Returns the name of the output zip
file.
z.zip)rNz-rz-rq�zipzkunable to create zip file '%s': could neither import the 'zipfile' module nor find a standalone zip utilityz#creating '%s' and adding '%s' to it�w)Zcompressionrzadding '%s')rr"r#r$�zipfilerrrr&ZZipFileZZIP_DEFLATED�RuntimeErrorZ
ZIP_STORED�curdir�normpath�join�write�walk�isfiler))r-r.r/rZzip_filenameZ
zipoptionsr3r#�dirpathZdirnames� filenamesrr
r
r�make_zipfilesJ
r?rzgzip'ed tar-filerzbzip2'ed tar-filerzxz'ed tar-filezcompressed tar filezuncompressed tar filezZIP file)ZgztarZbztarZxztarZztarr0r3cCsx|D]}|tkr|SqWdS)zqReturns the first format from the 'format' list that is unknown.
If all formats are known, returns None
N)�ARCHIVE_FORMATS)Zformats�formatr
r
r�check_archive_formats�s
rBcCs�tj�}|dk r6tjd|�tjj|�}|s6tj|�|dkrDtj}d|i} yt|}
Wn t k
rxt
d|��YnX|
d}x|
dD]\}}
|
| |<q�W|dkr�|| d<|| d <z|||f| �}Wd|dk r�tjd
|�tj|�X|S)a�Create an archive file (eg. zip or tar).
'base_name' is the name of the file to create, minus any format-specific
extension; 'format' is the archive format: one of "zip", "tar", "gztar",
"bztar", "xztar", or "ztar".
'root_dir' is a directory that will be the root directory of the
archive; ie. we typically chdir into 'root_dir' before creating the
archive. 'base_dir' is the directory where we start archiving from;
ie. 'base_dir' will be the common prefix of all files and
directories in the archive. 'root_dir' and 'base_dir' both default
to the current directory. Returns the name of the archive file.
'owner' and 'group' are used when creating a tar archive. By default,
uses the current owner and group.
Nzchanging into '%s'rzunknown archive format '%s'r�r3rrzchanging back to '%s')r"�getcwdr�debugr#�abspath�chdirr7r@r
r )r-rAZroot_dirr.r/rrrZsave_cwd�kwargsZformat_info�func�arg�val�filenamer
r
r�make_archive�s2
rM)rrrNN)rr)rr)rr)rr)rr)rN)NNrrNN)�__doc__r"�warningsrr+r5�ImportErrorZdistutils.errorsrZdistutils.spawnrZdistutils.dir_utilrZ distutilsr�pwdrZgrprrrr2r?r@rBrMr
r
r
r�<module>sB
G
=
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists