dbfdg 3 .]P@sddlZddlZddlZddlZddlZddlmZmZmZddl m Z m Z m Z ej ddkZerfeneZGdddeZGdd d eZdS) N)ExceptionPexpectEOFTIMEOUT)Expectersearcher_string searcher_rec@s,eZdZdZedddZed ddZdS) _NullCoderzPass bytes through unchanged.FcCs|S)N)bfinalr r /usr/lib/python3.6/spawnbase.pyencodesz_NullCoder.encodecCs|S)Nr )r r r r rdecodesz_NullCoder.decodeN)F)F)__name__ __module__ __qualname____doc__ staticmethodrrr r r rr s  r c@seZdZdZdZdZdZd0ddZd d Zd d Z d dZ d1ddZ ddZ ddZ d4ddZd7ddZd:ddZd=ddZd?ddZdAd d!Zd"d#ZdCd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/ZdS)D SpawnBasezA base class providing the backwards-compatible spawn API for Pexpect. This should not be instantiated directly: use :class:`pexpect.spawn` or :class:`pexpect.fdpexpect.fdspawn`. NFstrictcCstj|_tj|_tj|_d|_d|_d|_d|_d|_d|_ d|_ d|_ d|_ d|_ d|_||_t|_||_d|_d|_||_|dkrtnt|_||_d|_d|_d|_d|_d|_dt|d|_ d|_!||_"||_#|dkrJt$|_%|_&t|_'d |_(t)r.tt*f|_+t,j-j.d |_-d d }||_/nt0f|_+t,j-|_-tjj1|_/n\t2j3|||_%t2j4|||_&t|_'d |_(tf|_+t)rt,j-|_-nt,j-j5d |_-tjj1|_/d|_6dS)NFTrg?g?g-C6?<>s asciic Ss8ytjjj|Stk r2tjj|jddSXdS)Nrreplace)sysstdoutbufferwriteAttributeErrorr)r r r rwrite_to_stdout^sz+SpawnBase.__init__..write_to_stdoutz )7rstdinrstderrsearcher ignorecasebeforeaftermatchZ match_indexZ terminatedZ exitstatusZ signalstatusZstatuschild_fdtimeoutr delimiterlogfile logfile_read logfile_sendmaxreadbytes text_typer searchwindowsizeZdelaybeforesendZdelayaftercloseZdelayafterterminateZdelayafterreadZ softspacereprnameclosedencoding codec_errorsr Z_encoder_decoder string_typecrlfPY3strallowed_string_typesoslineseprr#Z basestringr!codecsgetincrementalencodergetincrementaldecoderrZasync_pw_transport)selfr-r2r5r/r9r:r#r r r__init__ sj     zSpawnBase.__init__cCsR|jdk r |jj||jj|dkr.|jn|j}|dk rN|j||jdS)Nsend)r/r!flushr1r0)rFs directionZ second_logr r r_logys    zSpawnBase._logcCs$|jdkr t|t r |jdS|S)Nr)r9 isinstancer3r)rFrJr r r_coerce_expect_strings zSpawnBase._coerce_expect_stringcCs$|jdkr t|t r |jdS|S)Nzutf-8)r9rMr3r)rFrJr r r_coerce_send_strings zSpawnBase._coerce_send_stringrcCsytj|j|}WnBtk rT}z&|jdtjkrBd|_tdWYdd}~XnX|dkrld|_td|j j |dd}|j |d |S) zThis reads data from the file descriptor. This is a simple implementation suitable for a regular file. Subclasses using ptys or pipes should override it. The timeout parameter is ignored. rTz,End Of File (EOF). Exception style platform.Nz/End Of File (EOF). Empty string style platform.F)r read) rArQr,OSErrorargserrnoZEIOflag_eofrr;rrL)rFsizer-rJerrr r rread_nonblockings zSpawnBase.read_nonblockingcCs.tdjt||djdd|jDddS)Nz`got {badtype} ({badobj!r}) as pattern, must be one of: {goodtypes}, pexpect.EOF, pexpect.TIMEOUTz, cSsg|] }t|qSr )r?).0Zastr r r sz/SpawnBase._pattern_type_err..)ZbadtypeZbadobjZ goodtypes) TypeErrorformattypejoinr@)rFpatternr r r_pattern_type_errs  zSpawnBase._pattern_type_errcCs|dkr gSt|ts|g}tj}|jr2|tjB}g}xt|D]\}}t||jrr|j|}|j tj ||q@|t kr|j t q@|t kr|j t q@t|t tj dr|j |q@|j|q@W|S)aThis compiles a pattern-string or a list of pattern-strings. Patterns must be a StringType, EOF, TIMEOUT, SRE_Pattern, or a list of those. Patterns may also be None which results in an empty list (you might do this if waiting for an EOF or TIMEOUT condition without expecting any pattern). This is used by expect() when calling expect_list(). Thus expect() is nothing more than:: cpl = self.compile_pattern_list(pl) return self.expect_list(cpl, timeout) If you are using expect() within a loop it may be more efficient to compile the patterns first and then call expect_list(). This avoid calls in a loop to compile_pattern_list():: cpl = self.compile_pattern_list(my_pattern) while some_condition: ... i = self.expect_list(cpl, timeout) ... N)rMlistreDOTALLr( IGNORECASE enumerater@rNappendcompilerrr]r`)rFZpatternsZ compile_flagscompiled_pattern_listidxpr r rcompile_pattern_lists(       zSpawnBase.compile_pattern_listcKs>d|kr|jd}|r$tdj||j|}|j||||S)aThis seeks through the stream until a pattern is matched. The pattern is overloaded and may take several types. The pattern can be a StringType, EOF, a compiled re, or a list of any of those types. Strings will be compiled to re types. This returns the index into the pattern list. If the pattern was not a list this returns index 0 on a successful match. This may raise exceptions for EOF or TIMEOUT. To avoid the EOF or TIMEOUT exceptions add EOF or TIMEOUT to the pattern list. That will cause expect to match an EOF or TIMEOUT condition instead of raising an exception. If you pass a list of patterns and more than one matches, the first match in the stream is chosen. If more than one pattern matches at that point, the leftmost in the pattern list is chosen. For example:: # the input is 'foobar' index = p.expect(['bar', 'foo', 'foobar']) # returns 1('foo') even though 'foobar' is a "better" match Please note, however, that buffering can affect this behavior, since input arrives in unpredictable chunks. For example:: # the input is 'foobar' index = p.expect(['foobar', 'foo']) # returns 0('foobar') if all input is available at once, # but returs 1('foo') if parts of the final 'bar' arrive late When a match is found for the given pattern, the class instance attribute *match* becomes an re.MatchObject result. Should an EOF or TIMEOUT pattern match, then the match attribute will be an instance of that exception class. The pairing before and after class instance attributes are views of the data preceding and following the matching pattern. On general exception, class attribute *before* is all data received up to the exception, while *match* and *after* attributes are value None. When the keyword argument timeout is -1 (default), then TIMEOUT will raise after the default value specified by the class timeout attribute. When None, TIMEOUT will not be raised and may block indefinitely until match. When the keyword argument searchwindowsize is -1 (default), then the value specified by the class maxread attribute is used. A list entry may be EOF or TIMEOUT instead of a string. This will catch these exceptions and return the index of the list entry instead of raising the exception. The attribute 'after' will be set to the exception type. The attribute 'match' will be None. This allows you to write code like this:: index = p.expect(['good', 'bad', pexpect.EOF, pexpect.TIMEOUT]) if index == 0: do_something() elif index == 1: do_something_else() elif index == 2: do_some_other_thing() elif index == 3: do_something_completely_different() instead of code like this:: try: index = p.expect(['good', 'bad']) if index == 0: do_something() elif index == 1: do_something_else() except EOF: do_some_other_thing() except TIMEOUT: do_something_completely_different() These two forms are equivalent. It all depends on what you want. You can also just expect the EOF if you are waiting for all output of a child to finish. For example:: p = pexpect.spawn('/bin/ls') p.expect(pexpect.EOF) print p.before If you are trying to optimize for speed then see expect_list(). On Python 3.4, or Python 3.3 with asyncio installed, passing ``async_=True`` will make this return an :mod:`asyncio` coroutine, which you can yield from to get the same result that this method would normally give directly. So, inside a coroutine, you can replace this code:: index = p.expect(patterns) With this non-blocking form:: index = yield from p.expect(patterns, async_=True) asynczUnknown keyword arguments: {})popr[r\rl expect_list)rFr_r-r5async_kwrir r rexpects^  zSpawnBase.expectcKsj|dkr|j}d|kr |jd}|r2tdj|t|t||}|r\ddlm}|||S|j|SdS)amThis takes a list of compiled regular expressions and returns the index into the pattern_list that matched the child output. The list may also contain EOF or TIMEOUT(which are not compiled regular expressions). This method is similar to the expect() method except that expect_list() does not recompile the pattern list on every call. This may help if you are trying to optimize for speed, otherwise just use the expect() method. This is called by expect(). Like :meth:`expect`, passing ``async_=True`` will make this return an asyncio coroutine. rrmzUnknown keyword arguments: {}) expect_asyncNr$) r-rnr[r\rr_asyncrs expect_loop)rF pattern_listr-r5rprqexprsr r rroIs   zSpawnBase.expect_listc s|d krj}d|kr |jd}|r2tdj|t|jsJ|ttfkrP|g}fddy t|}Wntk rj |YnXfdd|D}t t ||}|rddl m }|||S|j|Sd S) aThis is similar to expect(), but uses plain string matching instead of compiled regular expressions in 'pattern_list'. The 'pattern_list' may be a string; a list or other sequence of strings; or TIMEOUT and EOF. This call might be faster than expect() for two reasons: string searching is faster than RE matching and it is possible to limit the search to just the end of the input buffer. This method is also useful when you don't want to have to worry about escaping regular expression characters that you want to match. Like :meth:`expect`, passing ``async_=True`` will make this return an asyncio coroutine. rrmzUnknown keyword arguments: {}cs4|ttfkr|St|jr&j|Sj|dS)N)rrrMr@rNr`)r_)rFr rprepare_patterns    z/SpawnBase.expect_exact..prepare_patterncsg|] }|qSr r )rYrk)rxr rrZsz*SpawnBase.expect_exact..)rsNr$)r-rnr[r\rMr@rriterr`rrrtrsru)rFrvr-r5rprqrwrsr )rxrFr expect_exactes(       zSpawnBase.expect_exactcCst|||}|j|S)aThis is the common loop used inside expect. The 'searcher' should be an instance of searcher_re or searcher_string, which describes how and what to search for in the input. See expect() for other arguments, return value and exceptions. )rru)rFr'r-r5rwr r rrus zSpawnBase.expect_loopcCsf|dkr|jS|dkr*|j|j|jStj|jd|tj}|j||jg}|dkr`|jS|jS)aDThis reads at most "size" bytes from the file (less if the read hits EOF before obtaining size bytes). If the size argument is negative or omitted, read all data until EOF is reached. The bytes are returned as a string object. An empty string is returned when EOF is encountered immediately. rz.{%d}) r<rrr.r)rcrhrNrdr*)rFrVZcreindexr r rrQs  zSpawnBase.readcCs@|dkr|jS|j|j|jg}|dkr6|j|jS|jSdS)alThis reads and returns one entire line. The newline at the end of line is returned as part of the string, unless the file ends without a newline. An empty string is returned if EOF is encountered immediately. This looks for a newline as a CR/LF pair (\r\n) even on UNIX because this is what the pseudotty device returns. So contrary to what you may expect you will receive newlines as \r\n. If the size argument is 0 then an empty string is returned. In all other cases the size argument is ignored, which is not standard behavior for a file-like object. rN)r<rrr=r.r))rFrVr{r r rreadlines  zSpawnBase.readlinecCst|j|jS)z>This is to support iterators over a file-like object. )ryr|r<)rFr r r__iter__szSpawnBase.__iter__cCs&g}x|j}|sP|j|qW|S)aThis reads until EOF using readline() and returns a list containing the lines thus read. The optional 'sizehint' argument is ignored. Remember, because this reads until EOF that means the child process should have closed its stdout. If you run this method on a child that is still running with its stdout open then this method will block until it timesout.)r|rg)rFsizehintlinesliner r r readlinesszSpawnBase.readlinescCs|jS)z9Expose file descriptor for a file-like interface )r,)rFr r rfilenoszSpawnBase.filenocCsdS)zWThis does nothing. It is here to support the interface for a File-like object. Nr )rFr r rrIszSpawnBase.flushcCsdS)z Overridden in subclass using ttyFr )rFr r risattyszSpawnBase.isattycCs|S)Nr )rFr r r __enter__szSpawnBase.__enter__cCs |jdS)N)close)rFetypeZevaluetbr r r__exit__szSpawnBase.__exit__)rrNNNr)rNr$r$)r$r$Fr$r$)r$r$Fr$r$)r$r$Fr$r$)r$r$r$)r$r$)r$r$)r$)rrrrr9pidrUrGrLrNrOrXr`rlrrrorzrurQr|r}rrrIrrrr r r rrs6 X   0 g  0   r)rCrArrcrT exceptionsrrrrrrrr version_infor>r?Zunicoder4objectr rr r r rs