Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 1 | """Helper class to quickly write a loop over all standard input files. |
| 2 | |
| 3 | Typical use is: |
| 4 | |
| 5 | import fileinput |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 6 | for line in fileinput.input(encoding="utf-8"): |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 7 | process(line) |
| 8 | |
| 9 | This iterates over the lines of all files listed in sys.argv[1:], |
| 10 | defaulting to sys.stdin if the list is empty. If a filename is '-' it |
Michele Angrisano | aca273e | 2019-06-02 23:01:49 +0200 | [diff] [blame] | 11 | is also replaced by sys.stdin and the optional arguments mode and |
| 12 | openhook are ignored. To specify an alternative list of filenames, |
| 13 | pass it as the argument to input(). A single file name is also allowed. |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 14 | |
| 15 | Functions filename(), lineno() return the filename and cumulative line |
| 16 | number of the line that has just been read; filelineno() returns its |
| 17 | line number in the current file; isfirstline() returns true iff the |
| 18 | line just read is the first line of its file; isstdin() returns true |
| 19 | iff the line was read from sys.stdin. Function nextfile() closes the |
| 20 | current file so that the next iteration will read the first line from |
| 21 | the next file (if any); lines not read from the file will not count |
| 22 | towards the cumulative line count; the filename is not changed until |
| 23 | after the first line of the next file has been read. Function close() |
| 24 | closes the sequence. |
| 25 | |
| 26 | Before any lines have been read, filename() returns None and both line |
| 27 | numbers are zero; nextfile() has no effect. After all lines have been |
| 28 | read, filename() and the line number functions return the values |
| 29 | pertaining to the last line read; nextfile() has no effect. |
| 30 | |
Georg Brandl | c029f87 | 2006-02-19 14:12:34 +0000 | [diff] [blame] | 31 | All files are opened in text mode by default, you can override this by |
| 32 | setting the mode parameter to input() or FileInput.__init__(). |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 33 | If an I/O error occurs during opening or reading a file, the OSError |
Georg Brandl | c029f87 | 2006-02-19 14:12:34 +0000 | [diff] [blame] | 34 | exception is raised. |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 35 | |
| 36 | If sys.stdin is used more than once, the second and further use will |
| 37 | return no lines, except perhaps for interactive use, or if it has been |
| 38 | explicitly reset (e.g. using sys.stdin.seek(0)). |
| 39 | |
| 40 | Empty files are opened and immediately closed; the only time their |
| 41 | presence in the list of filenames is noticeable at all is when the |
| 42 | last file opened is empty. |
| 43 | |
| 44 | It is possible that the last line of a file doesn't end in a newline |
| 45 | character; otherwise lines are returned including the trailing |
| 46 | newline. |
| 47 | |
| 48 | Class FileInput is the implementation; its methods filename(), |
| 49 | lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close() |
| 50 | correspond to the functions in the module. In addition it has a |
| 51 | readline() method which returns the next input line, and a |
| 52 | __getitem__() method which implements the sequence behavior. The |
| 53 | sequence must be accessed in strictly sequential order; sequence |
| 54 | access and readline() cannot be mixed. |
| 55 | |
| 56 | Optional in-place filtering: if the keyword argument inplace=1 is |
| 57 | passed to input() or to the FileInput constructor, the file is moved |
| 58 | to a backup file and standard output is directed to the input file. |
| 59 | This makes it possible to write a filter that rewrites its input file |
| 60 | in place. If the keyword argument backup=".<some extension>" is also |
| 61 | given, it specifies the extension for the backup file, and the backup |
| 62 | file remains around; by default, the extension is ".bak" and it is |
| 63 | deleted when the output file is closed. In-place filtering is |
| 64 | disabled when standard input is read. XXX The current implementation |
| 65 | does not work for MS-DOS 8+3 filesystems. |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 66 | """ |
| 67 | |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 68 | import io |
Walter Dörwald | 294bbf3 | 2002-06-06 09:48:13 +0000 | [diff] [blame] | 69 | import sys, os |
Ethan Smith | e3ec44d | 2020-04-09 21:47:31 -0700 | [diff] [blame] | 70 | from types import GenericAlias |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 71 | |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 72 | __all__ = ["input", "close", "nextfile", "filename", "lineno", "filelineno", |
Martin Panter | 7978e10 | 2016-01-16 06:26:54 +0000 | [diff] [blame] | 73 | "fileno", "isfirstline", "isstdin", "FileInput", "hook_compressed", |
| 74 | "hook_encoded"] |
Skip Montanaro | eccd02a | 2001-01-20 23:34:12 +0000 | [diff] [blame] | 75 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 76 | _state = None |
| 77 | |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 78 | def input(files=None, inplace=False, backup="", *, mode="r", openhook=None, |
| 79 | encoding=None, errors=None): |
Terry Jan Reedy | 70d2c71 | 2013-06-28 18:59:28 -0400 | [diff] [blame] | 80 | """Return an instance of the FileInput class, which can be iterated. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 81 | |
Terry Jan Reedy | 70d2c71 | 2013-06-28 18:59:28 -0400 | [diff] [blame] | 82 | The parameters are passed to the constructor of the FileInput class. |
| 83 | The returned instance, in addition to being an iterator, |
| 84 | keeps global state for the functions of this module,. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 85 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 86 | global _state |
| 87 | if _state and _state._file: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 88 | raise RuntimeError("input() already active") |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 89 | _state = FileInput(files, inplace, backup, mode=mode, openhook=openhook, |
| 90 | encoding=encoding, errors=errors) |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 91 | return _state |
| 92 | |
| 93 | def close(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 94 | """Close the sequence.""" |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 95 | global _state |
| 96 | state = _state |
| 97 | _state = None |
| 98 | if state: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 99 | state.close() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 100 | |
| 101 | def nextfile(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 102 | """ |
| 103 | Close the current file so that the next iteration will read the first |
| 104 | line from the next file (if any); lines not read from the file will |
| 105 | not count towards the cumulative line count. The filename is not |
| 106 | changed until after the first line of the next file has been read. |
| 107 | Before the first line has been read, this function has no effect; |
| 108 | it cannot be used to skip the first file. After the last line of the |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 109 | last file has been read, this function has no effect. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 110 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 111 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 112 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 113 | return _state.nextfile() |
| 114 | |
| 115 | def filename(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 116 | """ |
| 117 | Return the name of the file currently being read. |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 118 | Before the first line has been read, returns None. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 119 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 120 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 121 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 122 | return _state.filename() |
| 123 | |
| 124 | def lineno(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 125 | """ |
| 126 | Return the cumulative line number of the line that has just been read. |
| 127 | Before the first line has been read, returns 0. After the last line |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 128 | of the last file has been read, returns the line number of that line. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 129 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 130 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 131 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 132 | return _state.lineno() |
| 133 | |
| 134 | def filelineno(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 135 | """ |
| 136 | Return the line number in the current file. Before the first line |
| 137 | has been read, returns 0. After the last line of the last file has |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 138 | been read, returns the line number of that line within the file. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 139 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 140 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 141 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 142 | return _state.filelineno() |
| 143 | |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 144 | def fileno(): |
| 145 | """ |
| 146 | Return the file number of the current file. When no file is currently |
| 147 | opened, returns -1. |
| 148 | """ |
| 149 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 150 | raise RuntimeError("no active input()") |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 151 | return _state.fileno() |
| 152 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 153 | def isfirstline(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 154 | """ |
| 155 | Returns true the line just read is the first line of its file, |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 156 | otherwise returns false. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 157 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 158 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 159 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 160 | return _state.isfirstline() |
| 161 | |
| 162 | def isstdin(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 163 | """ |
| 164 | Returns true if the last line was read from sys.stdin, |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 165 | otherwise returns false. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 166 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 167 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 168 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 169 | return _state.isstdin() |
| 170 | |
| 171 | class FileInput: |
Matthias Bussonnier | 1a3faf9 | 2019-05-20 13:44:11 -0700 | [diff] [blame] | 172 | """FileInput([files[, inplace[, backup]]], *, mode=None, openhook=None) |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 173 | |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 174 | Class FileInput is the implementation of the module; its methods |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 175 | filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(), |
| 176 | nextfile() and close() correspond to the functions of the same name |
| 177 | in the module. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 178 | In addition it has a readline() method which returns the next |
| 179 | input line, and a __getitem__() method which implements the |
| 180 | sequence behavior. The sequence must be accessed in strictly |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 181 | sequential order; random access and readline() cannot be mixed. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 182 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 183 | |
Matthias Bussonnier | 1a3faf9 | 2019-05-20 13:44:11 -0700 | [diff] [blame] | 184 | def __init__(self, files=None, inplace=False, backup="", *, |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 185 | mode="r", openhook=None, encoding=None, errors=None): |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 186 | if isinstance(files, str): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 187 | files = (files,) |
Roy Williams | 002665a | 2017-05-22 22:24:17 -0700 | [diff] [blame] | 188 | elif isinstance(files, os.PathLike): |
| 189 | files = (os.fspath(files), ) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 190 | else: |
Guido van Rossum | 2516b39 | 2000-04-10 17:16:12 +0000 | [diff] [blame] | 191 | if files is None: |
| 192 | files = sys.argv[1:] |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 193 | if not files: |
Guido van Rossum | 2516b39 | 2000-04-10 17:16:12 +0000 | [diff] [blame] | 194 | files = ('-',) |
| 195 | else: |
| 196 | files = tuple(files) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 197 | self._files = files |
| 198 | self._inplace = inplace |
| 199 | self._backup = backup |
| 200 | self._savestdout = None |
| 201 | self._output = None |
| 202 | self._filename = None |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 203 | self._startlineno = 0 |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 204 | self._filelineno = 0 |
| 205 | self._file = None |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 206 | self._isstdin = False |
Guido van Rossum | 0aec9fb | 1998-07-20 15:49:28 +0000 | [diff] [blame] | 207 | self._backupfilename = None |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 208 | self._encoding = encoding |
| 209 | self._errors = errors |
| 210 | |
| 211 | # We can not use io.text_encoding() here because old openhook doesn't |
| 212 | # take encoding parameter. |
Inada Naoki | 878bc8b | 2021-04-27 15:47:16 +0900 | [diff] [blame] | 213 | if (sys.flags.warn_default_encoding and |
| 214 | "b" not in mode and encoding is None and openhook is None): |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 215 | import warnings |
| 216 | warnings.warn("'encoding' argument not specified.", |
| 217 | EncodingWarning, 2) |
| 218 | |
Georg Brandl | c029f87 | 2006-02-19 14:12:34 +0000 | [diff] [blame] | 219 | # restrict mode argument to reading modes |
Victor Stinner | 942f7a2 | 2020-03-04 18:50:22 +0100 | [diff] [blame] | 220 | if mode not in ('r', 'rU', 'U', 'rb'): |
| 221 | raise ValueError("FileInput opening mode must be one of " |
| 222 | "'r', 'rU', 'U' and 'rb'") |
| 223 | if 'U' in mode: |
| 224 | import warnings |
| 225 | warnings.warn("'U' mode is deprecated", |
| 226 | DeprecationWarning, 2) |
Georg Brandl | c029f87 | 2006-02-19 14:12:34 +0000 | [diff] [blame] | 227 | self._mode = mode |
Victor Stinner | 942f7a2 | 2020-03-04 18:50:22 +0100 | [diff] [blame] | 228 | self._write_mode = mode.replace('r', 'w') if 'U' not in mode else 'w' |
Florent Xicluna | 5d1155c | 2011-10-28 14:45:05 +0200 | [diff] [blame] | 229 | if openhook: |
| 230 | if inplace: |
| 231 | raise ValueError("FileInput cannot use an opening hook in inplace mode") |
| 232 | if not callable(openhook): |
| 233 | raise ValueError("FileInput openhook must be callable") |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 234 | self._openhook = openhook |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 235 | |
| 236 | def __del__(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 237 | self.close() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 238 | |
| 239 | def close(self): |
Serhiy Storchaka | 7e7a3db | 2015-04-10 13:24:41 +0300 | [diff] [blame] | 240 | try: |
| 241 | self.nextfile() |
| 242 | finally: |
| 243 | self._files = () |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 244 | |
Georg Brandl | 6cb7b65 | 2010-07-31 20:08:15 +0000 | [diff] [blame] | 245 | def __enter__(self): |
| 246 | return self |
| 247 | |
| 248 | def __exit__(self, type, value, traceback): |
| 249 | self.close() |
| 250 | |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 251 | def __iter__(self): |
| 252 | return self |
| 253 | |
Georg Brandl | a18af4e | 2007-04-21 15:47:16 +0000 | [diff] [blame] | 254 | def __next__(self): |
Serhiy Storchaka | 0554d83 | 2016-03-08 23:35:35 +0200 | [diff] [blame] | 255 | while True: |
| 256 | line = self._readline() |
| 257 | if line: |
| 258 | self._filelineno += 1 |
| 259 | return line |
| 260 | if not self._file: |
| 261 | raise StopIteration |
| 262 | self.nextfile() |
| 263 | # repeat with next file |
Tim Peters | 863ac44 | 2002-04-16 01:38:40 +0000 | [diff] [blame] | 264 | |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 265 | def __getitem__(self, i): |
Berker Peksag | 84a13fb | 2018-08-11 09:05:04 +0300 | [diff] [blame] | 266 | import warnings |
| 267 | warnings.warn( |
| 268 | "Support for indexing FileInput objects is deprecated. " |
| 269 | "Use iterator protocol instead.", |
| 270 | DeprecationWarning, |
| 271 | stacklevel=2 |
| 272 | ) |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 273 | if i != self.lineno(): |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 274 | raise RuntimeError("accessing lines out of order") |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 275 | try: |
Georg Brandl | a18af4e | 2007-04-21 15:47:16 +0000 | [diff] [blame] | 276 | return self.__next__() |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 277 | except StopIteration: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 278 | raise IndexError("end of input reached") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 279 | |
| 280 | def nextfile(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 281 | savestdout = self._savestdout |
Serhiy Storchaka | 2116b12 | 2015-04-10 13:29:28 +0300 | [diff] [blame] | 282 | self._savestdout = None |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 283 | if savestdout: |
| 284 | sys.stdout = savestdout |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 285 | |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 286 | output = self._output |
Serhiy Storchaka | 2116b12 | 2015-04-10 13:29:28 +0300 | [diff] [blame] | 287 | self._output = None |
Serhiy Storchaka | 7e7a3db | 2015-04-10 13:24:41 +0300 | [diff] [blame] | 288 | try: |
| 289 | if output: |
| 290 | output.close() |
| 291 | finally: |
| 292 | file = self._file |
Serhiy Storchaka | 2116b12 | 2015-04-10 13:29:28 +0300 | [diff] [blame] | 293 | self._file = None |
Serhiy Storchaka | 0554d83 | 2016-03-08 23:35:35 +0200 | [diff] [blame] | 294 | try: |
| 295 | del self._readline # restore FileInput._readline |
| 296 | except AttributeError: |
| 297 | pass |
Serhiy Storchaka | 7e7a3db | 2015-04-10 13:24:41 +0300 | [diff] [blame] | 298 | try: |
| 299 | if file and not self._isstdin: |
| 300 | file.close() |
| 301 | finally: |
| 302 | backupfilename = self._backupfilename |
Serhiy Storchaka | 2116b12 | 2015-04-10 13:29:28 +0300 | [diff] [blame] | 303 | self._backupfilename = None |
Serhiy Storchaka | 7e7a3db | 2015-04-10 13:24:41 +0300 | [diff] [blame] | 304 | if backupfilename and not self._backup: |
| 305 | try: os.unlink(backupfilename) |
| 306 | except OSError: pass |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 307 | |
Serhiy Storchaka | 7e7a3db | 2015-04-10 13:24:41 +0300 | [diff] [blame] | 308 | self._isstdin = False |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 309 | |
| 310 | def readline(self): |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 311 | while True: |
| 312 | line = self._readline() |
| 313 | if line: |
| 314 | self._filelineno += 1 |
| 315 | return line |
| 316 | if not self._file: |
| 317 | return line |
| 318 | self.nextfile() |
| 319 | # repeat with next file |
| 320 | |
Serhiy Storchaka | 0554d83 | 2016-03-08 23:35:35 +0200 | [diff] [blame] | 321 | def _readline(self): |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 322 | if not self._files: |
| 323 | if 'b' in self._mode: |
| 324 | return b'' |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 325 | else: |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 326 | return '' |
| 327 | self._filename = self._files[0] |
| 328 | self._files = self._files[1:] |
| 329 | self._startlineno = self.lineno() |
| 330 | self._filelineno = 0 |
| 331 | self._file = None |
| 332 | self._isstdin = False |
| 333 | self._backupfilename = 0 |
Inada Naoki | 878bc8b | 2021-04-27 15:47:16 +0900 | [diff] [blame] | 334 | |
| 335 | # EncodingWarning is emitted in __init__() already |
| 336 | if "b" not in self._mode: |
| 337 | encoding = self._encoding or "locale" |
| 338 | else: |
| 339 | encoding = None |
| 340 | |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 341 | if self._filename == '-': |
| 342 | self._filename = '<stdin>' |
| 343 | if 'b' in self._mode: |
| 344 | self._file = getattr(sys.stdin, 'buffer', sys.stdin) |
| 345 | else: |
| 346 | self._file = sys.stdin |
| 347 | self._isstdin = True |
| 348 | else: |
| 349 | if self._inplace: |
| 350 | self._backupfilename = ( |
Zhiming Wang | 06de1ae | 2017-09-05 01:37:24 +0800 | [diff] [blame] | 351 | os.fspath(self._filename) + (self._backup or ".bak")) |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 352 | try: |
| 353 | os.unlink(self._backupfilename) |
| 354 | except OSError: |
| 355 | pass |
| 356 | # The next few lines may raise OSError |
| 357 | os.rename(self._filename, self._backupfilename) |
Inada Naoki | 878bc8b | 2021-04-27 15:47:16 +0900 | [diff] [blame] | 358 | self._file = open(self._backupfilename, self._mode, encoding=encoding) |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 359 | try: |
| 360 | perm = os.fstat(self._file.fileno()).st_mode |
| 361 | except OSError: |
Inada Naoki | 878bc8b | 2021-04-27 15:47:16 +0900 | [diff] [blame] | 362 | self._output = open(self._filename, self._write_mode, encoding=encoding) |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 363 | else: |
| 364 | mode = os.O_CREAT | os.O_WRONLY | os.O_TRUNC |
| 365 | if hasattr(os, 'O_BINARY'): |
| 366 | mode |= os.O_BINARY |
| 367 | |
| 368 | fd = os.open(self._filename, mode, perm) |
Inada Naoki | 878bc8b | 2021-04-27 15:47:16 +0900 | [diff] [blame] | 369 | self._output = os.fdopen(fd, self._write_mode, encoding=encoding) |
Andrew Svetlov | ad28c7f | 2012-12-18 22:02:39 +0200 | [diff] [blame] | 370 | try: |
Anthony Sottile | 8377cd4 | 2019-02-25 14:32:27 -0800 | [diff] [blame] | 371 | os.chmod(self._filename, perm) |
Andrew Svetlov | ad28c7f | 2012-12-18 22:02:39 +0200 | [diff] [blame] | 372 | except OSError: |
| 373 | pass |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 374 | self._savestdout = sys.stdout |
| 375 | sys.stdout = self._output |
| 376 | else: |
| 377 | # This may raise OSError |
| 378 | if self._openhook: |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 379 | # Custom hooks made previous to Python 3.10 didn't have |
| 380 | # encoding argument |
| 381 | if self._encoding is None: |
| 382 | self._file = self._openhook(self._filename, self._mode) |
| 383 | else: |
| 384 | self._file = self._openhook( |
| 385 | self._filename, self._mode, encoding=self._encoding, errors=self._errors) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 386 | else: |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 387 | self._file = open(self._filename, self._mode, encoding=encoding, errors=self._errors) |
Serhiy Storchaka | 0554d83 | 2016-03-08 23:35:35 +0200 | [diff] [blame] | 388 | self._readline = self._file.readline # hide FileInput._readline |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 389 | return self._readline() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 390 | |
| 391 | def filename(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 392 | return self._filename |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 393 | |
| 394 | def lineno(self): |
Serhiy Storchaka | cc2dbc5 | 2016-03-08 18:28:36 +0200 | [diff] [blame] | 395 | return self._startlineno + self._filelineno |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 396 | |
| 397 | def filelineno(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 398 | return self._filelineno |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 399 | |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 400 | def fileno(self): |
| 401 | if self._file: |
| 402 | try: |
| 403 | return self._file.fileno() |
| 404 | except ValueError: |
| 405 | return -1 |
| 406 | else: |
| 407 | return -1 |
| 408 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 409 | def isfirstline(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 410 | return self._filelineno == 1 |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 411 | |
| 412 | def isstdin(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 413 | return self._isstdin |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 414 | |
Ethan Smith | e3ec44d | 2020-04-09 21:47:31 -0700 | [diff] [blame] | 415 | __class_getitem__ = classmethod(GenericAlias) |
| 416 | |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 417 | |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 418 | def hook_compressed(filename, mode, *, encoding=None, errors=None): |
| 419 | if encoding is None: # EncodingWarning is emitted in FileInput() already. |
| 420 | encoding = "locale" |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 421 | ext = os.path.splitext(filename)[1] |
| 422 | if ext == '.gz': |
| 423 | import gzip |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 424 | stream = gzip.open(filename, mode) |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 425 | elif ext == '.bz2': |
| 426 | import bz2 |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 427 | stream = bz2.BZ2File(filename, mode) |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 428 | else: |
Inada Naoki | 333d10c | 2021-04-14 14:12:58 +0900 | [diff] [blame] | 429 | return open(filename, mode, encoding=encoding, errors=errors) |
| 430 | |
| 431 | # gzip and bz2 are binary mode by default. |
| 432 | if "b" not in mode: |
| 433 | stream = io.TextIOWrapper(stream, encoding=encoding, errors=errors) |
| 434 | return stream |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 435 | |
| 436 | |
Serhiy Storchaka | b275210 | 2016-04-27 23:13:46 +0300 | [diff] [blame] | 437 | def hook_encoded(encoding, errors=None): |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 438 | def openhook(filename, mode): |
Serhiy Storchaka | b275210 | 2016-04-27 23:13:46 +0300 | [diff] [blame] | 439 | return open(filename, mode, encoding=encoding, errors=errors) |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 440 | return openhook |
| 441 | |
| 442 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 443 | def _test(): |
| 444 | import getopt |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 445 | inplace = False |
| 446 | backup = False |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 447 | opts, args = getopt.getopt(sys.argv[1:], "ib:") |
| 448 | for o, a in opts: |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 449 | if o == '-i': inplace = True |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 450 | if o == '-b': backup = a |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 451 | for line in input(args, inplace=inplace, backup=backup): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 452 | if line[-1:] == '\n': line = line[:-1] |
| 453 | if line[-1:] == '\r': line = line[:-1] |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 454 | print("%d: %s[%d]%s %s" % (lineno(), filename(), filelineno(), |
| 455 | isfirstline() and "*" or "", line)) |
| 456 | print("%d: %s[%d]" % (lineno(), filename(), filelineno())) |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 457 | |
| 458 | if __name__ == '__main__': |
| 459 | _test() |