Efc@sdZddlZddlZddlZddlmZddlZddlZddlZyddl m Z Wne k rdZ nXyddl mZWne k rdZnXdddd d d d d dddddddddgZdefdYZdefdYZdefdYZyeWnek rVdZnXd?dZdZdZdZd Zd!Zd"Zd#Zedd$Zedd%Z d&Z!d'Z"d(Z#d)Z$d*Z%d+d,d,dddd-Z&eed.Z'd,d,dd/Z(ie&d@gd1fd26e&dAgd4fd56e&dBgd6fd76e(gd8fd96Z)d:Z*dd;d<Z+d=Z,ddd,d,dddd>Z-dS(CsUtility functions for copying and archiving files and directory trees. XXX The functions here don't copy the resource fork or other metadata on Mac. iN(tabspath(tgetpwnam(tgetgrnamt copyfileobjtcopyfiletcopymodetcopystattcopytcopy2tcopytreetmovetrmtreetErrortSpecialFileErrort ExecErrort make_archivetget_archive_formatstregister_archive_formattunregister_archive_formattignore_patternscBseZRS((t__name__t __module__(((s/usr/lib64/python2.7/shutil.pyR scBseZdZRS(s|Raised when trying to do a kind of operation (e.g. copying) which is not supported on a special file (e.g. a named pipe)(RRt__doc__(((s/usr/lib64/python2.7/shutil.pyR "scBseZdZRS(s+Raised when a command could not be executed(RRR(((s/usr/lib64/python2.7/shutil.pyR&siicCs0x)|j|}|sPn|j|qdS(s=copy data from file-like object fsrc to file-like object fdstN(treadtwrite(tfsrctfdsttlengthtbuf((s/usr/lib64/python2.7/shutil.pyR.s cCs{ttjdrAytjj||SWqAtk r=tSXntjjtjj|tjjtjj|kS(Ntsamefile(thasattrtostpathRtOSErrortFalsetnormcaseR(tsrctdst((s/usr/lib64/python2.7/shutil.pyt _samefile6s c Cst||r(td||fnx`||gD]R}ytj|}Wntk raq5Xtj|jr5td|q5q5Wt|d,}t|d}t ||WdQXWdQXdS(sCopy data from src to dsts`%s` and `%s` are the same files`%s` is a named pipetrbtwbN( R&R RtstatR!tS_ISFIFOtst_modeR topenR(R$R%tfntstRR((s/usr/lib64/python2.7/shutil.pyRBs cCsGttdrCtj|}tj|j}tj||ndS(sCopy mode bits from src to dsttchmodN(RRR)tS_IMODER+R/(R$R%R.tmode((s/usr/lib64/python2.7/shutil.pyRVscCstj|}tj|j}ttdrOtj||j|jfnttdrqtj||nttdrt|drytj ||j Wqt k r}x@dD]1}tt |r|j t t |krPqqWqXndS( sCCopy all stat info (mode bits, atime, mtime, flags) from src to dsttutimeR/tchflagstst_flagst EOPNOTSUPPtENOTSUPN(R5R6(RR)R0R+RR2tst_atimetst_mtimeR/R3R4R!terrnotgetattr(R$R%R.R1twhyterr((s/usr/lib64/python2.7/shutil.pyR]s 'cCsTtjj|r6tjj|tjj|}nt||t||dS(sVCopy data and mode bits ("cp src dst"). The destination may be a directory. N(RR tisdirtjointbasenameRR(R$R%((s/usr/lib64/python2.7/shutil.pyRos$ cCsTtjj|r6tjj|tjj|}nt||t||dS(s]Copy data and all stat info ("cp -p src dst"). The destination may be a directory. N(RR R=R>R?RR(R$R%((s/usr/lib64/python2.7/shutil.pyRzs$ csfd}|S(sFunction that can be used as copytree() ignore parameter. Patterns is a sequence of glob-style patterns that are used to exclude filescs:g}x'D]}|jtj||q Wt|S(N(textendtfnmatchtfiltertset(R tnamest ignored_namestpattern(tpatterns(s/usr/lib64/python2.7/shutil.pyt_ignore_patternss ((RGRH((RGs/usr/lib64/python2.7/shutil.pyRsc Cstj|}|dk r-|||}n t}tj|g}x|D] }||krhqPntjj||}tjj||} ys|rtjj|rtj|} tj | | n5tjj |rt || ||n t || WqPt k r.} |j| jdqPtk r\} |j|| t| fqPXqPWyt||WnMtk r} tdk rt| trq|j||t| fnX|rt |ndS(sRecursively copy a directory tree using copy2(). The destination directory must not already exist. If exception(s) occur, an Error is raised with a list of reasons. If the optional symlinks flag is true, symbolic links in the source tree result in symbolic links in the destination tree; if it is false, the contents of the files pointed to by symbolic links are copied. The optional ignore argument is a callable. If given, it is called with the `src` parameter, which is the directory being visited by copytree(), and `names` which is the list of `src` contents, as returned by os.listdir(): callable(src, names) -> ignored_names Since copytree() is called recursively, the callable will be called once for each directory that is copied. It returns a list of names relative to the `src` directory that should not be copied. XXX Consider this example code rather than the ultimate tool. iN(RtlistdirtNoneRCtmakedirsR R>tislinktreadlinktsymlinkR=R RR R@targstEnvironmentErrortappendtstrRR!t WindowsErrort isinstance( R$R%tsymlinkstignoreRDREterrorstnametsrcnametdstnametlinktoR<R;((s/usr/lib64/python2.7/shutil.pyR s<     $ cCs|rd}n|dkr*d}ny%tjj|rNtdnWn.tk r|tjj|tjdSXg}ytj|}Wn/tjk r}|tj|tjnXx|D]}tjj ||}ytj |j }Wntjk rd}nXt j |rBt|||qytj|Wqtjk r}|tj|tjqXqWytj|Wn-tjk r|tj|tjnXdS(sRecursively delete a directory tree. If ignore_errors is set, errors are ignored; otherwise, if onerror is set, it is called to handle the error with arguments (func, path, exc_info) where func is os.listdir, os.remove, or os.rmdir; path is the argument to that function that caused it to fail; and exc_info is a tuple returned by sys.exc_info(). If ignore_errors is false and onerror is None, an exception is raised. cWsdS(N((RO((s/usr/lib64/python2.7/shutil.pytonerrorscWsdS(N((RO((s/usr/lib64/python2.7/shutil.pyR\ss%Cannot call rmtree on a symbolic linkNi(RJRR RLR!tsystexc_infoRIterrorR>tlstatR+R)tS_ISDIRR tremovetrmdir(R t ignore_errorsR\RDR<RXtfullnameR1((s/usr/lib64/python2.7/shutil.pyR s>       !cCstjj|jtjjS(N(RR R?trstriptsep(R ((s/usr/lib64/python2.7/shutil.pyt _basenamescCs|}tjj|r{t||r;tj||dStjj|t|}tjj|r{td|q{nytj||Wnt k rtjj|rt ||rtd||fnt ||dt t |qt||tj|nXdS(sRecursively move a file or directory to another location. This is similar to the Unix "mv" command. If the destination is a directory or a symlink to a directory, the source is moved inside the directory. The destination path must not already exist. If the destination already exists but is not a directory, it may be overwritten depending on os.rename() semantics. If the destination is on our current filesystem, then rename() is used. Otherwise, src is copied to the destination and then removed. A lot more could be done here... A look at a mv.c shows a lot of the issues this implementation glosses over. Ns$Destination path '%s' already existss.Cannot move a directory '%s' into itself '%s'.RU(RR R=R&trenameR>RhtexistsR R!t _destinsrcR tTrueR Rtunlink(R$R%treal_dst((s/usr/lib64/python2.7/shutil.pyR s$   cCsut|}t|}|jtjjs@|tjj7}n|jtjjsh|tjj7}n|j|S(N(RtendswithRR Rgt startswith(R$R%((s/usr/lib64/python2.7/shutil.pyRk0s  cCs^tdks|dkrdSyt|}Wntk rEd}nX|dk rZ|dSdS(s"Returns a gid, given a group name.iN(RRJtKeyError(RXtresult((s/usr/lib64/python2.7/shutil.pyt_get_gid9s   cCs^tdks|dkrdSyt|}Wntk rEd}nX|dk rZ|dSdS(s"Returns an uid, given a user name.iN(RRJRq(RXRr((s/usr/lib64/python2.7/shutil.pyt_get_uidEs   tgzipicssidd6dd6dd 6}idd6dd6} |d k rY|| jkrYtdn|d | j|d} tjj| } tjj| s|d k r|jd | n|stj | qnd d l } |d k r|jd nt t fd} |so| j | d||}z|j|d| Wd |jXn| S(sCreate a (possibly compressed) tar file from all the files under 'base_dir'. 'compress' must be "gzip" (the default), "bzip2", or None. '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_name' + ".tar", possibly plus the appropriate compression extension (".gz", or ".bz2"). Returns the output filename. tgzRutbz2tbzip2ts.gzs.bz2s9bad value for 'compress': must be None, 'gzip' or 'bzip2's.tars creating %siNsCreating tar archivecsFdk r!|_|_ndk rB|_|_n|S(N(RJtgidtgnametuidtuname(ttarinfo(RztgrouptownerR|(s/usr/lib64/python2.7/shutil.pyt _set_uid_gid|s      sw|%sRB(RJtkeyst ValueErrortgetRR tdirnameRjtinfoRKttarfileRtRsR,taddtclose(t base_nametbase_dirtcompresstverbosetdry_runRRtloggerttar_compressiont compress_extt archive_namet archive_dirRRttar((RzRRR|s/usr/lib64/python2.7/shutil.pyt _make_tarballQs0       cCsz|rd}nd}ddlm}ddlm}y |d|||gd|Wn|k rutd|nXdS( Ns-rs-rqi(tDistutilsExecError(tspawntzipRskunable to create zip file '%s': could neither import the 'zipfile' module nor find a standalone zip utility(tdistutils.errorsRtdistutils.spawnRR(Rt zip_filenameRRt zipoptionsRR((s/usr/lib64/python2.7/shutil.pyt_call_external_zips   c CsF|d}tjj|}tjj|sf|dk rM|jd|n|sftj|qfnyddl}Wntk rd}nX|dkrt ||||n|dk r|jd||n|sB|j |dd|j H}tjj |} |j | | |dk r9|jd| nxtj|D]\} } } xdt| D]V} tjj tjj| | } |j | | |dk re|jd| qeqeWxs| D]k} tjj tjj| | } tjj| r|j | | |dk r1|jd| q1qqWqIWWdQXn|S( smCreate 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 ExecError. Returns the name of the output zip file. s.zips creating %siNs#creating '%s' and adding '%s' to ittwt compressions adding '%s'(RR RRjRJRRKtzipfilet ImportErrorRtZipFilet ZIP_DEFLATEDtnormpathRtwalktsortedR>tisfile(RRRRRRRRtzfR tdirpathtdirnamest filenamesRX((s/usr/lib64/python2.7/shutil.pyt _make_zipfilesH         !  ! 'Rsgzip'ed tar-filetgztarRxsbzip2'ed tar-filetbztarsuncompressed tar fileRsZIP fileRcCs=gtjD]\}}||df^q }|j|S(sReturns a list of supported formats for archiving and unarchiving. Each element of the returned sequence is a tuple (name, description) i(t_ARCHIVE_FORMATStitemstsort(RXtregistrytformats((s/usr/lib64/python2.7/shutil.pyRs, RycCs|dkrg}nt|tjs:td|nt|ttfs^tdnxE|D]=}t|ttf st|dkretdqeqeW|||ft|sp                   A1  ( <6