e fW@sdZddddddddd d d g Zd d lZd d lZd d lZd d lZ d d l Z d d l Z d dlmZd d lZyd d lZWnek rd d lZYnXejZe je jBe jBZee dree jOZneZee dr&ee jOZnee drAe j Z ndZ dZ!eZ"ee drqe j#Z$n'ee dre j%Z$n ddZ$ddZ&GdddZ'ddZ(ddZ)d a*dd Z+d!d"Z,d#d Z-d a.d$d Z/d%e!d d&d'dZ0d%e!d d(dZ1d%e!d d)dZ2Gd*d+d+Z3Gd,d-d-Z4d.d7d d d%e!d d0d1dZ5e j6d2kse j7j8d3kre5Z9n!d.d8d d d%e!d d4dZ9Gd5ddZ:Gd6dde;Z<d S)9aTemporary files. This module provides generic, low- and high-level interfaces for creating temporary files and directories. All of the interfaces provided by this module can be used without fear of race conditions except for 'mktemp'. 'mktemp' is subject to race conditions and should not be used; it is provided for backward compatibility only. This module also provides some data items to the user: TMP_MAX - maximum number of names that will be tried before giving up. tempdir - If this is set to a string before the first use of any routine from this module, it will be considered as another candidate location to store temporary files. NamedTemporaryFile TemporaryFileSpooledTemporaryFileTemporaryDirectorymkstempmkdtempmktempTMP_MAX gettempprefixtempdir gettempdirN)Random O_NOFOLLOWO_BINARYi'ZtmplstatstatcCs&tj|tj}tj|dS)N)_osopenO_RDONLYclose)fnfdr-/opt/alt/python34/lib64/python3.4/tempfile.py_statIsrc Cs/yt|Wntk r&dSYnXdSdS)NFT)rOSError)rrrr_existsMs   rc@sFeZdZdZdZeddZddZddZd S) _RandomNameSequencea*An instance of _RandomNameSequence generates an endless sequence of unpredictable strings which can safely be incorporated into file names. Each string is six characters long. Multiple threads can safely use the same instance at the same time. _RandomNameSequence is an iterator.Z%abcdefghijklmnopqrstuvwxyz0123456789_cCsCtj}|t|ddkr<t|_||_n|jS)N_rng_pid)rgetpidgetattr_RandomZ_rngr)selfZcur_pidrrrrng_s    z_RandomNameSequence.rngcCs|S)Nr)r"rrr__iter__gsz_RandomNameSequence.__iter__csD|j|jjfddtdD}dj|S)Ncsg|]}qSrr).0Zdummy)cchooserr ms z0_RandomNameSequence.__next__..) charactersr#Zchoicerangejoin)r"Zlettersr)r&r'r__next__js  "z_RandomNameSequence.__next__N) __name__ __module__ __qualname____doc__r+propertyr#r$r.rrrrrUs  rc Csg}x3d D]+}tj|}|r |j|q q Wtjdkrg|jddddgn|jd d d gy|jtjWn(ttfk r|jtjYnX|S) z[Generate a list of candidate temporary directories which _get_default_tempdir will try.TMPDIRTEMPTMPntzc:\tempzc:\tmpz\tempz\tmpz/tmpz/var/tmpz/usr/tmp)r4r5r6) rgetenvappendnameextendgetcwdAttributeErrorrcurdir)dirlistZenvnamedirnamerrr_candidate_tempdir_listps rAcCst}t}xT|D]L}|tjkrCtjj|}nxtdD]}t|}tjj||}yutj |t d}zGz2t j |ddd}|j dWdQXWdtj |XWdtj|X|SWqPtk rYqPtk rNtjdkrItjj|rItj|tjrIwPnPYqPtk r`PYqPXqPWqWttjd |dS) aqCalculate the default directory to use for temporary files. This routine should be called exactly once. We determine whether or not a candidate temp dir is usable by trying to create and write to a file in that directory. If this is successful, the test file is deleted. To prevent denial of service, the name of the test file must be randomized.diwbclosefdFsblatNr7z)No usable temporary directory found in %s)rrArr>pathabspathr,nextr-r_bin_openflags_iowriterunlinkFileExistsErrorPermissionErrorr:isdiraccessW_OKrFileNotFoundError_errnoENOENT)Znamerr?dirseqr:filenamerfprrr_get_default_tempdirs:      !  rXc CsGtdkrCtjztdkr1tanWdtjXntS)z7Common setup sequence for all user-callable interfaces.N)_name_sequence _once_lockacquirerreleaserrrr_get_candidate_namess   r]c Cst}xttD]}t|}tjj||||}y/tj||d}|tjj|fSWqt k rwYqt k rtj dkrtjj |rtj |tjrwnYqXqWt tjddS)z>Code common to mkstemp, TemporaryFile, and NamedTemporaryFile.ir7z#No usable temporary file name foundN)r]r,rrGrrEr-rrFrLrMr:rNrOrPrREEXIST) rTZpreZsufflagsnamesrUr:filerrrr_mkstemp_inners     !  rbcCstS)zAccessor for tempdir.template.)templaterrrrr sc CsGtdkrCtjztdkr1tanWdtjXntS)zAccessor for tempfile.tempdir.N)r rZr[rXr\rrrrr s   r*FcCs@|dkrt}n|r't}nt}t||||S)a'User-callable function to create and return a unique temporary file. The return value is a pair (fd, name) where fd is the file descriptor returned by os.open, and name is the filename. If 'suffix' is specified, the file name will end with that suffix, otherwise there will be no suffix. If 'prefix' is specified, the file name will begin with that prefix, otherwise a default prefix is used. If 'dir' is specified, the file will be created in that directory, otherwise a default directory is used. If 'text' is specified and true, the file is opened in text mode. Else (the default) the file is opened in binary mode. On some operating systems, this makes no difference. The file is readable and writable only by the creating user ID. If the operating system uses permission bits to indicate whether a file is executable, the file is executable by no one. The file descriptor is not inherited by children of this process. Caller is responsible for deleting the file when done with it. N)r _text_openflagsrHrb)suffixprefixrTtextr_rrrrs    c Cs|dkrt}nt}xttD]}t|}tjj||||}ytj|d|SWq.t k rw.Yq.t k rtj dkrtjj |rtj |tjrw.nYq.Xq.Wt tjddS)aUser-callable function to create and return a unique temporary directory. The return value is the pathname of the directory. Arguments are as for mkstemp, except that the 'text' argument is not accepted. The directory is readable, writable, and searchable only by the creating user. Caller is responsible for deleting the directory when done with it. Nir7z(No usable temporary directory name found)r r]r,rrGrrEr-mkdirrLrMr:rNrOrPrRr^)rerfrTr`rUr:rarrrrs$      !  cCs|dkrt}nt}xMttD]?}t|}tjj||||}t|s.|Sq.Wt t j ddS)aUser-callable function to return a unique temporary file name. The file is not created. Arguments are as for mkstemp, except that the 'text' argument is not accepted. This function is unsafe and should not be used. The file name refers to a file that did not exist at some point, but by the time you get around to creating it, someone else may have beaten you to the punch. Nz"No usable temporary filename found) r r]r,rrGrrEr-rrLrRr^)rerfrTr`rUr:rarrrr?s      c@smeZdZdZdZdZdddZejdkr]ej dd Z d d Z n d d Z dS) _TemporaryFileCloserzA separate object allowing proper closing of a temporary file's underlying file object, without adding a __del__ method to the temporary file.NFTcCs||_||_||_dS)N)rar:delete)r"rar:rjrrr__init__fs  z_TemporaryFileCloser.__init__r7c CsW|j rS|jdk rSd|_z|jjWd|jrO||jnXndS)NT) close_calledrarrjr:)r"rKrrrrus   z_TemporaryFileCloser.closecCs|jdS)N)r)r"rrr__del__sz_TemporaryFileCloser.__del__cCs&|js"d|_|jjndS)NT)rlrar)r"rrrrs  ) r/r0r1r2rarlrkrr:rKrrmrrrrri^s  ric@saeZdZdZdddZddZddZd d Zd d Zd dZ dS)_TemporaryFileWrapperzTemporary file wrapper This class provides a wrapper around files opened for temporary use. In particular, it seeks to automatically remove the file when it is no longer needed. TcCs4||_||_||_t||||_dS)N)rar:rjri_closer)r"rar:rjrrrrks   z_TemporaryFileWrapper.__init__cs|jd}t||}t|drg|tjfdd}|j|_|}nt|tst|||n|S)Nra__call__cs ||S)Nr)argskwargs)funcrr func_wrappersz7_TemporaryFileWrapper.__getattr__..func_wrapper) __dict__r hasattr _functoolswrapsro isinstanceintsetattr)r"r:raartr)rsr __getattr__s !  z!_TemporaryFileWrapper.__getattr__cCs|jj|S)N)ra __enter__)r"rrrr~s z_TemporaryFileWrapper.__enter__cCs&|jj|||}|j|S)N)ra__exit__r)r"excvaluetbresultrrrrs z_TemporaryFileWrapper.__exit__cCs|jjdS)zA Close the temporary file, possibly deleting it. N)ror)r"rrrrsz_TemporaryFileWrapper.closeccsx|jD] }|Vq WdS)N)ra)r"linerrrr$sz_TemporaryFileWrapper.__iter__N) r/r0r1r2rkr}r~rrr$rrrrrns     rnzw+bTc Cs|dkrt}nt}tjdkrC|rC|tjO}nt||||\} } y8tj| |d|d|d|} t| | |SWn"t k rtj | YnXdS)aCreate and return a temporary file. Arguments: 'prefix', 'suffix', 'dir' -- as for mkstemp. 'mode' -- the mode argument to io.open (default "w+b"). 'buffering' -- the buffer size argument to io.open (default -1). 'encoding' -- the encoding argument to io.open (default None) 'newline' -- the newline argument to io.open (default None) 'delete' -- whether the file is deleted on close (default True). The file is created as mkstemp() would do it. Returns an object with a file-like interface; the name of the file is accessible as file.name. The file will be automatically deleted when it is closed unless the 'delete' argument is set to False. Nr7 bufferingnewlineencoding) r rHrr:Z O_TEMPORARYrbrIrrn Exceptionr) moderrrrerfrTrjr_rr:rarrrrs    posixcygwinc Cs|dkrt}nt}t||||\}} y3tj| tj||d|d|d|SWntj|YnXdS)a>Create and return a temporary file. Arguments: 'prefix', 'suffix', 'dir' -- as for mkstemp. 'mode' -- the mode argument to io.open (default "w+b"). 'buffering' -- the buffer size argument to io.open (default -1). 'encoding' -- the encoding argument to io.open (default None) 'newline' -- the newline argument to io.open (default None) The file is created as mkstemp() would do it. Returns an object with a file-like interface. The file has no name, and will cease to exist when it is closed. Nrrr)r rHrbrrKrIrr) rrrrrerfrTr_rr:rrrrs    c @s{eZdZdZdZddd8dddeddd Zd d Zd d ZddZ ddZ ddZ ddZ e ddZe ddZddZddZddZe d d!Ze d"d#Ze d$d%Zd&d'Zd(d)Zd*d+Zd,d-Ze d.d/Zd0d1Zdd2d3Zd4d5Zd6d7ZdS)9rzTemporary file wrapper, specialized to switch from BytesIO or StringIO to a real file when it exceeds a certain size or when a fileno is needed. Fr zw+brNr*c Csd|krtj|_ntjdd|_||_d|_i|d6|d6|d6|d6|d 6|d6|d 6|_dS) Nbr FrrrerfrrT)rIBytesIO_fileStringIO _max_size_rolled_TemporaryFileArgs) r"max_sizerrrrrerfrTrrrrks   zSpooledTemporaryFile.__init__cCs?|jr dS|j}|r;|j|kr;|jndS)N)rrtellrollover)r"rarrrr_check*s   zSpooledTemporaryFile._checkcCsh|jr dS|j}t|j}|_|`|j|j|j|jdd|_dS)Nr T)rrrrrJgetvalueseekr)r"raZnewfilerrrr0s  zSpooledTemporaryFile.rollovercCs|jjrtdn|S)Nz%Cannot enter context with closed file)rclosed ValueError)r"rrrr~As zSpooledTemporaryFile.__enter__cCs|jjdS)N)rr)r"rrrrrrrFszSpooledTemporaryFile.__exit__cCs |jjS)N)rr$)r"rrrr$JszSpooledTemporaryFile.__iter__cCs|jjdS)N)rr)r"rrrrMszSpooledTemporaryFile.closecCs |jjS)N)rr)r"rrrrPszSpooledTemporaryFile.closedc CsKy|jjSWn6tk rFd|jdkr7n|jdSYnXdS)Nrrr)rrr=r)r"rrrrTs  zSpooledTemporaryFile.encodingcCs|j|jjS)N)rrfileno)r"rrrr]s zSpooledTemporaryFile.filenocCs|jjdS)N)rflush)r"rrrraszSpooledTemporaryFile.flushcCs |jjS)N)risatty)r"rrrrdszSpooledTemporaryFile.isattyc Cs2y|jjSWntk r-|jdSYnXdS)Nr)rrr=r)r"rrrrgs zSpooledTemporaryFile.modec Cs+y|jjSWntk r&dSYnXdS)N)rr:r=)r"rrrr:ns zSpooledTemporaryFile.namec CsKy|jjSWn6tk rFd|jdkr7n|jdSYnXdS)Nrrr)rnewlinesr=r)r"rrrrus  zSpooledTemporaryFile.newlinescGs|jj|S)N)rread)r"rqrrrr~szSpooledTemporaryFile.readcGs|jj|S)N)rreadline)r"rqrrrrszSpooledTemporaryFile.readlinecGs|jj|S)N)r readlines)r"rqrrrrszSpooledTemporaryFile.readlinescGs|jj|dS)N)rr)r"rqrrrrszSpooledTemporaryFile.seekcCs |jjS)N)r softspace)r"rrrrszSpooledTemporaryFile.softspacecCs |jjS)N)rr)r"rrrrszSpooledTemporaryFile.tellcCsL|dkr|jjn,||jkr8|jn|jj|dS)N)rtruncaterr)r"sizerrrrs   zSpooledTemporaryFile.truncatecCs)|j}|j|}|j||S)N)rrJr)r"srarvrrrrJs  zSpooledTemporaryFile.writecCs)|j}|j|}|j||S)N)r writelinesr)r"iterablerarrrrrs  zSpooledTemporaryFile.writelines)r/r0r1r2rrcrkrrr~rr$rr3rrrrrrr:rrrrrrrrrJrrrrrrs8                 c@smeZdZdZdedddZeddZdd Zd d Z d d Z ddZ dS)ra+Create and return a temporary directory. This has the same behavior as mkdtemp but can be used as a context manager. For example: with TemporaryDirectory() as tmpdir: ... Upon exiting the context, the directory and everything contained in it are removed. r*NcCsFt||||_tj||j|jddj||_dS)N warn_messagezImplicitly cleaning up {!r})rr:_weakreffinalize_cleanupformat _finalizer)r"rerfrTrrrrkszTemporaryDirectory.__init__cCs!tj|tj|tdS)N)_shutilrmtree _warningswarnResourceWarning)clsr:rrrrrs zTemporaryDirectory._cleanupcCsdj|jj|jS)Nz <{} {!r}>)r __class__r/r:)r"rrr__repr__szTemporaryDirectory.__repr__cCs|jS)N)r:)r"rrrr~szTemporaryDirectory.__enter__cCs|jdS)N)cleanup)r"rrrrrrrszTemporaryDirectory.__exit__cCs&|jjr"tj|jndS)N)rdetachrrr:)r"rrrrszTemporaryDirectory.cleanup) r/r0r1r2rcrk classmethodrrr~rrrrrrrs    rr)=r2__all__ functoolsrwwarningsriorIosrZshutilrerrnorRZrandomr r!weakrefr_thread ImportErrorZ _dummy_thread allocate_lockZ_allocate_lockO_RDWRO_CREATO_EXCLrdrvrrHrrrcrZrrrrrrArXrYr]rbr r r rrrrirnrr:sysplatformrrobjectrrrrrsx                  -    %&+?  $!