WcN=dZddlZddlZddlZddlmZgdZdaddddddd Zd Z d Z d Z d Z dZ dZdZdZGddZddddZddZdZedkr edSdS)a Helper class to quickly write a loop over all standard input files. Typical use is: import fileinput for line in fileinput.input(encoding="utf-8"): process(line) This iterates over the lines of all files listed in sys.argv[1:], defaulting to sys.stdin if the list is empty. If a filename is '-' it is also replaced by sys.stdin and the optional arguments mode and openhook are ignored. To specify an alternative list of filenames, pass it as the argument to input(). A single file name is also allowed. Functions filename(), lineno() return the filename and cumulative line number of the line that has just been read; filelineno() returns its line number in the current file; isfirstline() returns true iff the line just read is the first line of its file; isstdin() returns true iff the line was read from sys.stdin. Function nextfile() closes the current file so that the next iteration will read the first line from the next file (if any); lines not read from the file will not count towards the cumulative line count; the filename is not changed until after the first line of the next file has been read. Function close() closes the sequence. Before any lines have been read, filename() returns None and both line numbers are zero; nextfile() has no effect. After all lines have been read, filename() and the line number functions return the values pertaining to the last line read; nextfile() has no effect. All files are opened in text mode by default, you can override this by setting the mode parameter to input() or FileInput.__init__(). If an I/O error occurs during opening or reading a file, the OSError exception is raised. If sys.stdin is used more than once, the second and further use will return no lines, except perhaps for interactive use, or if it has been explicitly reset (e.g. using sys.stdin.seek(0)). Empty files are opened and immediately closed; the only time their presence in the list of filenames is noticeable at all is when the last file opened is empty. It is possible that the last line of a file doesn't end in a newline character; otherwise lines are returned including the trailing newline. Class FileInput is the implementation; its methods filename(), lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close() correspond to the functions in the module. In addition it has a readline() method which returns the next input line, and a __getitem__() method which implements the sequence behavior. The sequence must be accessed in strictly sequential order; sequence access and readline() cannot be mixed. Optional in-place filtering: if the keyword argument inplace=1 is passed to input() or to the FileInput constructor, the file is moved to a backup file and standard output is directed to the input file. This makes it possible to write a filter that rewrites its input file in place. If the keyword argument backup="." is also given, it specifies the extension for the backup file, and the backup file remains around; by default, the extension is ".bak" and it is deleted when the output file is closed. In-place filtering is disabled when standard input is read. XXX The current implementation does not work for MS-DOS 8+3 filesystems. N) GenericAlias) inputclosenextfilefilenamelineno filelinenofileno isfirstlineisstdin FileInputhook_compressed hook_encodedFrmodeopenhookencodingerrorsc trtjr tdt|||||||atS)aReturn an instance of the FileInput class, which can be iterated. The parameters are passed to the constructor of the FileInput class. The returned instance, in addition to being an iterator, keeps global state for the functions of this module,. zinput() already activer)_state_file RuntimeErrorr )filesinplacebackuprrrrs "/usr/lib64/python3.12/fileinput.pyrrNs@v&,,,344 ugvD8 (99F McBt}da|r|jdSdS)zClose the sequence.N)rr)states rrr]s) E F u  urcVts tdtjS)a Close the current file so that the next iteration will read the first line from the next file (if any); lines not read from the file will not count towards the cumulative line count. The filename is not changed until after the first line of the next file has been read. Before the first line has been read, this function has no effect; it cannot be used to skip the first file. After the last line of the last file has been read, this function has no effect. no active input())rrrrrrres" 6.// ?? rcVts tdtjS)zr Return the name of the file currently being read. Before the first line has been read, returns None. r#)rrrr$rrrrss" 6.// ?? rcVts tdtjS)z Return the cumulative line number of the line that has just been read. Before the first line has been read, returns 0. After the last line of the last file has been read, returns the line number of that line. r#)rrrr$rrrr|s! 6.// ==?rcVts tdtjS)z Return the line number in the current file. Before the first line has been read, returns 0. After the last line of the last file has been read, returns the line number of that line within the file. r#)rrr r$rrr r s$ 6.//    rcVts tdtjS)zg Return the file number of the current file. When no file is currently opened, returns -1. r#)rrr r$rrr r s! 6.// ==?rcVts tdtjS)ze Returns true the line just read is the first line of its file, otherwise returns false. r#)rrr r$rrr r s$ 6.//    rcVts tdtjS)z] Returns true if the last line was read from sys.stdin, otherwise returns false. r#)rrr r$rrr r s" 6.// >> rceZdZdZdddddddZdZd Zd Zd Zd Z d Z dZ dZ dZ dZdZdZdZdZdZeeZdS)r a;FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None) Class FileInput is the implementation of the module; its methods filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(), nextfile() and close() correspond to the functions of the same name in the module. In addition it has a readline() method which returns the next input line, and a __getitem__() method which implements the sequence behavior. The sequence must be accessed in strictly sequential order; random access and readline() cannot be mixed. NFrrrct|tr|f}n^t|tjrtj|f}n(|t j dd}|sd}n t|}||_||_ ||_ d|_ d|_ d|_ d|_d|_d|_d|_d|_||_||_t j*j,r%d|vr!||ddl}|j1dt2d|dvr t5d ||_|j9d d |_|r)|r t5d t=|s t5d ||_dS)N)-rFbz"'encoding' argument not specified.)rrbz*FileInput opening mode must be 'r' or 'rb'rwz4FileInput cannot use an opening hook in inplace modez#FileInput openhook must be callable) isinstancestrosPathLikefspathsysargvtuple_files_inplace_backup _savestdout_output _filename _startlineno _filelinenor_isstdin_backupfilename _encoding_errorsflagswarn_default_encodingwarningswarnEncodingWarning ValueError_modereplace _write_modecallable _openhook) selfrrrrrrrrIs r__init__zFileInput.__init__sv eS ! !HEE r{{ + +YYu%(EE} 5e       #!  II + + +4H$49I OOO MM>)1 . . { " "IJ J <<S1 8w !WXXH%% !FGG!rc(|jdSNrrRs r__del__zFileInput.__del__ rcP |jd|_dS#d|_wxYw)Nr$)rr;rWs rrzFileInput.closes0  MMOODKKK"DK    s %c|SrUr$rWs r __enter__zFileInput.__enter__ rc(|jdSrUrV)rRtypevalue tracebacks r__exit__zFileInput.__exit__rYrc|SrUr$rWs r__iter__zFileInput.__iter__r]rc |j}|r|xjdz c_|S|jst|j ONTr-) _readlinerBr StopIterationrrRlines r__next__zFileInput.__next__sQ>>#Dt   A%   :::## MMOOrc|j}d|_|r |t_|j}d|_ |r|j |j }d|_ |` |r|js|j |j}d|_ |r#|jstj|d|_dS#t$rYmwxYw#t$rY%wxYw#|j}d|_ |rB|js6tj|d|_w#t$r Yd|_wwxYwd|_wxYw#|j }d|_ |`n#t$rYnwxYw |r|js|j |j}d|_ |rB|js6tj|d|_w#t$r Yd|_wwxYwd|_w#|j}d|_ |rB|js6tj|d|_w#t$r Yd|_wwxYwd|_wxYwxYw)NF)r>r8stdoutr?rrrgAttributeErrorrCrDr=r5unlinkOSError)rR savestdoutoutputfilebackupfilenames rrzFileInput.nextfiles%%  :#CJ  &v ::DDJ N &4 JJLL!%!5!5'+$!>$,,,>22!& "    #(((DD( "&!5!5'+$!>$,,,>22!& %#(((D % %) % %%%%!::DDJ NN!     &4 JJLL!%!5!5'+$!>$,,,>22!&  &#(((D %  &) %  &"&!5!5'+$!>$,,,>22!& %#(((D % %) % %%%% & & &sEC C C C  C  CC "ED!E! D5+ E4D55 EI EI  E(%I 'E((I ,G* !I ,G I  G I G I *"I  H+#I + H? 5 I >H? ? I  I c |j}|r|xjdz c_|S|js|S|jJrf)rgrBrrris rreadlinezFileInput.readline"sP>>#Dt   A%   ::: MMOOrc|jsd|jvrdSdS|jd|_|jdd|_|j|_d|_d|_d|_d|_d|jvr|jpd}nd}|jdkrgd |_d|jvr3ttjd tj|_ntj|_d |_n|jrtj|j|j pd z|_ tj"|jtj&|j|jt)|j|j||j* |_ tj,|j j/j0}tj2tj4ztj6z}t9tdr|tj:z}tj(|j||}tj<||j>||j* |_ tjB|j|tjD|_#|j@t_"n|jHr}|j-|jI|j|j|_nx|jI|j|j|j|j* |_n4t)|j|j||j* |_|j jJ|_&|jMS#t$$rYwxYw#t$$rY4wxYw#t$$r8t)|j|j>||j* |_ YywxYw)Nr/rrrr-Flocaler.zbufferTz.bakrrO_BINARY)'r;rMr@rrArBrrCrDrEgetattrr8stdinr<r5r7r=rorprenameopenrFfstatr st_modeO_CREATO_WRONLYO_TRUNChasattrr{fdopenrOr?chmodrmr>rQrvrg)rRrpermrfds rrgzFileInput._readline-s{{{djj  srQkk!"o  KKM    djj ~~1HHH >>S &DNdjj  $SYY#))D  YY  DMM}}}IIdnn-1GH$IId2233 $..$*>*>??!$"6"6 +3DLLJJ 88DJJ$5$5$78@@D :: 3bjj@Dr:.. +tt||$U$UDL66$':: !\\ >>>~~-%)^^DNNDJJ%O %)^^ NNDJJX\XdXd&4&f "&dnndjj8\`\h\h!i!iDJ,,~~MD*#PPP#'8H8H19$,,$P$PDLLLPs6!O=:P"P= P  P  PP>Q! Q!c|jSrU)r@rWs rrzFileInput.filenamevs ~~rc4|j|jzSrU)rArBrWs rrzFileInput.linenoys  4#3#333rc|jSrUrBrWs rr zFileInput.filelineno|srcx|jr |jjSdS#t$rYdSwxYw)N)rr rLrWs rr zFileInput.filenosN ::: zz((**2   rr s + 99c"|jdkS)Nr-rrWs rr zFileInput.isfirstlines1$$rc|jSrU)rCrWs rr zFileInput.isstdins }}rNFr)__name__ __module__ __qualname____doc__rSrXrr\rbrdrkrrvrgrrr r r r classmethodr__class_getitem__r$rrr r s6  -"D4-"-"-"-"-"^ &&&<G G G R444   %%%$ L1rr rzc2|d}tjj|d}|dkrddl}|j ||}n/|dkrddl}|j ||}nt ||||Sd|vrtj|||}|S)Nrxr-z.gzrz.bz2rzr/) r5pathsplitextgziprbz2BZ2Fileio TextIOWrapper)rrrrextrstreamrs rrrs ''  8 $Q 'C e|| 8T*  Xt,HdXfEEE $!!&8FKK Mrcfd}|S)Nc&t||S)Nrz)r)rrrrs rrzhook_encoded..openhooksHdXfEEErr$)rrrs`` rrrs-FFFFFF Orc ddl}d}d}|jtjddd\}}|D]\}}|dkrd}|dks|}t|||D]_}|d dd kr|dd }|d dd kr|dd }t d t t ttrd pd|fzat dt t tfzdS)NrFr-zib:z-iTz-b)rrr  z%d: %s[%d]%s %s*rz %d: %s[%d]) getoptr8r9rprintrrr r )rrroptsargsoarjs r_testrsMMMG Fsxx|U3JD$!!1 99g 99qffdGF;;GG 9  T#2Yd 9  T#2Yd 68XZ#.=#8S#>B#FF G G G ,&(HJ = =>>>>r__main__rrU)rrr8r5typesr__all__rrrrrrr r r r r rrrrr$rrrsAAF      d           c2c2c2c2c2c2c2L15T& ? ? ? z EGGGGr