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 |
| 6 | for line in fileinput.input(): |
| 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 |
| 11 | is also replaced by sys.stdin. To specify an alternative list of |
| 12 | filenames, pass it as the argument to input(). A single file name is |
| 13 | also allowed. |
| 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. |
| 66 | |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 67 | Performance: this module is unfortunately one of the slower ways of |
| 68 | processing large numbers of input lines. Nevertheless, a significant |
| 69 | speed-up has been obtained by using readlines(bufsize) instead of |
| 70 | readline(). A new keyword argument, bufsize=N, is present on the |
| 71 | input() function and the FileInput() class to override the default |
| 72 | buffer size. |
| 73 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 74 | XXX Possible additions: |
| 75 | |
| 76 | - optional getopt argument processing |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 77 | - isatty() |
| 78 | - read(), read(size), even readlines() |
| 79 | |
| 80 | """ |
| 81 | |
Walter Dörwald | 294bbf3 | 2002-06-06 09:48:13 +0000 | [diff] [blame] | 82 | import sys, os |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 83 | |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 84 | __all__ = ["input", "close", "nextfile", "filename", "lineno", "filelineno", |
| 85 | "isfirstline", "isstdin", "FileInput"] |
Skip Montanaro | eccd02a | 2001-01-20 23:34:12 +0000 | [diff] [blame] | 86 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 87 | _state = None |
| 88 | |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 89 | DEFAULT_BUFSIZE = 8*1024 |
| 90 | |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 91 | def input(files=None, inplace=False, backup="", bufsize=0, |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 92 | mode="r", openhook=None): |
Terry Jan Reedy | 70d2c71 | 2013-06-28 18:59:28 -0400 | [diff] [blame] | 93 | """Return an instance of the FileInput class, which can be iterated. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 94 | |
Terry Jan Reedy | 70d2c71 | 2013-06-28 18:59:28 -0400 | [diff] [blame] | 95 | The parameters are passed to the constructor of the FileInput class. |
| 96 | The returned instance, in addition to being an iterator, |
| 97 | keeps global state for the functions of this module,. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 98 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 99 | global _state |
| 100 | if _state and _state._file: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 101 | raise RuntimeError("input() already active") |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 102 | _state = FileInput(files, inplace, backup, bufsize, mode, openhook) |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 103 | return _state |
| 104 | |
| 105 | def close(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 106 | """Close the sequence.""" |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 107 | global _state |
| 108 | state = _state |
| 109 | _state = None |
| 110 | if state: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 111 | state.close() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 112 | |
| 113 | def nextfile(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 114 | """ |
| 115 | Close the current file so that the next iteration will read the first |
| 116 | line from the next file (if any); lines not read from the file will |
| 117 | not count towards the cumulative line count. The filename is not |
| 118 | changed until after the first line of the next file has been read. |
| 119 | Before the first line has been read, this function has no effect; |
| 120 | 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] | 121 | last file has been read, this function has no effect. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 122 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 123 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 124 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 125 | return _state.nextfile() |
| 126 | |
| 127 | def filename(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 128 | """ |
| 129 | Return the name of the file currently being read. |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 130 | Before the first line has been read, returns None. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 131 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 132 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 133 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 134 | return _state.filename() |
| 135 | |
| 136 | def lineno(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 137 | """ |
| 138 | Return the cumulative line number of the line that has just been read. |
| 139 | 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] | 140 | 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] | 141 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 142 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 143 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 144 | return _state.lineno() |
| 145 | |
| 146 | def filelineno(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 147 | """ |
| 148 | Return the line number in the current file. Before the first line |
| 149 | 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] | 150 | been read, returns the line number of that line within the file. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 151 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 152 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 153 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 154 | return _state.filelineno() |
| 155 | |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 156 | def fileno(): |
| 157 | """ |
| 158 | Return the file number of the current file. When no file is currently |
| 159 | opened, returns -1. |
| 160 | """ |
| 161 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 162 | raise RuntimeError("no active input()") |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 163 | return _state.fileno() |
| 164 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 165 | def isfirstline(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 166 | """ |
| 167 | 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] | 168 | otherwise returns false. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 169 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 170 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 171 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 172 | return _state.isfirstline() |
| 173 | |
| 174 | def isstdin(): |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 175 | """ |
| 176 | Returns true if the last line was read from sys.stdin, |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 177 | otherwise returns false. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 178 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 179 | if not _state: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 180 | raise RuntimeError("no active input()") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 181 | return _state.isstdin() |
| 182 | |
| 183 | class FileInput: |
Terry Jan Reedy | 70d2c71 | 2013-06-28 18:59:28 -0400 | [diff] [blame] | 184 | """FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]]) |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 185 | |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 186 | Class FileInput is the implementation of the module; its methods |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 187 | filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(), |
| 188 | nextfile() and close() correspond to the functions of the same name |
| 189 | in the module. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 190 | In addition it has a readline() method which returns the next |
| 191 | input line, and a __getitem__() method which implements the |
| 192 | sequence behavior. The sequence must be accessed in strictly |
Tim Peters | 8ac1495 | 2002-05-23 15:15:30 +0000 | [diff] [blame] | 193 | sequential order; random access and readline() cannot be mixed. |
Raymond Hettinger | d1fa3db | 2002-05-15 02:56:03 +0000 | [diff] [blame] | 194 | """ |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 195 | |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 196 | def __init__(self, files=None, inplace=False, backup="", bufsize=0, |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 197 | mode="r", openhook=None): |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 198 | if isinstance(files, str): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 199 | files = (files,) |
| 200 | else: |
Guido van Rossum | 2516b39 | 2000-04-10 17:16:12 +0000 | [diff] [blame] | 201 | if files is None: |
| 202 | files = sys.argv[1:] |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 203 | if not files: |
Guido van Rossum | 2516b39 | 2000-04-10 17:16:12 +0000 | [diff] [blame] | 204 | files = ('-',) |
| 205 | else: |
| 206 | files = tuple(files) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 207 | self._files = files |
| 208 | self._inplace = inplace |
| 209 | self._backup = backup |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 210 | self._bufsize = bufsize or DEFAULT_BUFSIZE |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 211 | self._savestdout = None |
| 212 | self._output = None |
| 213 | self._filename = None |
| 214 | self._lineno = 0 |
| 215 | self._filelineno = 0 |
| 216 | self._file = None |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 217 | self._isstdin = False |
Guido van Rossum | 0aec9fb | 1998-07-20 15:49:28 +0000 | [diff] [blame] | 218 | self._backupfilename = None |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 219 | self._buffer = [] |
| 220 | self._bufindex = 0 |
Georg Brandl | c029f87 | 2006-02-19 14:12:34 +0000 | [diff] [blame] | 221 | # restrict mode argument to reading modes |
| 222 | if mode not in ('r', 'rU', 'U', 'rb'): |
| 223 | raise ValueError("FileInput opening mode must be one of " |
| 224 | "'r', 'rU', 'U' and 'rb'") |
Serhiy Storchaka | 6787a38 | 2013-11-23 22:12:06 +0200 | [diff] [blame] | 225 | if 'U' in mode: |
| 226 | import warnings |
Serhiy Storchaka | 2480c2e | 2013-11-24 23:13:26 +0200 | [diff] [blame] | 227 | warnings.warn("'U' mode is deprecated", |
Serhiy Storchaka | 6787a38 | 2013-11-23 22:12:06 +0200 | [diff] [blame] | 228 | DeprecationWarning, 2) |
Georg Brandl | c029f87 | 2006-02-19 14:12:34 +0000 | [diff] [blame] | 229 | self._mode = mode |
Florent Xicluna | 5d1155c | 2011-10-28 14:45:05 +0200 | [diff] [blame] | 230 | if openhook: |
| 231 | if inplace: |
| 232 | raise ValueError("FileInput cannot use an opening hook in inplace mode") |
| 233 | if not callable(openhook): |
| 234 | raise ValueError("FileInput openhook must be callable") |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 235 | self._openhook = openhook |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 236 | |
| 237 | def __del__(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 238 | self.close() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 239 | |
| 240 | def close(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 241 | self.nextfile() |
| 242 | self._files = () |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 243 | |
Georg Brandl | 6cb7b65 | 2010-07-31 20:08:15 +0000 | [diff] [blame] | 244 | def __enter__(self): |
| 245 | return self |
| 246 | |
| 247 | def __exit__(self, type, value, traceback): |
| 248 | self.close() |
| 249 | |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 250 | def __iter__(self): |
| 251 | return self |
| 252 | |
Georg Brandl | a18af4e | 2007-04-21 15:47:16 +0000 | [diff] [blame] | 253 | def __next__(self): |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 254 | try: |
| 255 | line = self._buffer[self._bufindex] |
| 256 | except IndexError: |
| 257 | pass |
| 258 | else: |
| 259 | self._bufindex += 1 |
| 260 | self._lineno += 1 |
| 261 | self._filelineno += 1 |
| 262 | return line |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 263 | line = self.readline() |
| 264 | if not line: |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 265 | raise StopIteration |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 266 | return line |
Tim Peters | 863ac44 | 2002-04-16 01:38:40 +0000 | [diff] [blame] | 267 | |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 268 | def __getitem__(self, i): |
| 269 | if i != self._lineno: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 270 | raise RuntimeError("accessing lines out of order") |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 271 | try: |
Georg Brandl | a18af4e | 2007-04-21 15:47:16 +0000 | [diff] [blame] | 272 | return self.__next__() |
Neil Schemenauer | 908632a | 2002-03-26 20:28:40 +0000 | [diff] [blame] | 273 | except StopIteration: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 274 | raise IndexError("end of input reached") |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 275 | |
| 276 | def nextfile(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 277 | savestdout = self._savestdout |
| 278 | self._savestdout = 0 |
| 279 | if savestdout: |
| 280 | sys.stdout = savestdout |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 281 | |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 282 | output = self._output |
| 283 | self._output = 0 |
| 284 | if output: |
| 285 | output.close() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 286 | |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 287 | file = self._file |
| 288 | self._file = 0 |
| 289 | if file and not self._isstdin: |
| 290 | file.close() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 291 | |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 292 | backupfilename = self._backupfilename |
| 293 | self._backupfilename = 0 |
| 294 | if backupfilename and not self._backup: |
| 295 | try: os.unlink(backupfilename) |
Skip Montanaro | cffac66 | 2002-08-14 02:58:16 +0000 | [diff] [blame] | 296 | except OSError: pass |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 297 | |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 298 | self._isstdin = False |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 299 | self._buffer = [] |
| 300 | self._bufindex = 0 |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 301 | |
| 302 | def readline(self): |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 303 | try: |
| 304 | line = self._buffer[self._bufindex] |
| 305 | except IndexError: |
| 306 | pass |
| 307 | else: |
| 308 | self._bufindex += 1 |
| 309 | self._lineno += 1 |
| 310 | self._filelineno += 1 |
| 311 | return line |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 312 | if not self._file: |
| 313 | if not self._files: |
| 314 | return "" |
| 315 | self._filename = self._files[0] |
| 316 | self._files = self._files[1:] |
| 317 | self._filelineno = 0 |
| 318 | self._file = None |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 319 | self._isstdin = False |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 320 | self._backupfilename = 0 |
| 321 | if self._filename == '-': |
| 322 | self._filename = '<stdin>' |
Serhiy Storchaka | 946cfc3 | 2014-05-14 21:08:33 +0300 | [diff] [blame] | 323 | if 'b' in self._mode: |
| 324 | self._file = sys.stdin.buffer |
| 325 | else: |
| 326 | self._file = sys.stdin |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 327 | self._isstdin = True |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 328 | else: |
| 329 | if self._inplace: |
| 330 | self._backupfilename = ( |
Skip Montanaro | 7a98be2 | 2007-08-16 14:35:24 +0000 | [diff] [blame] | 331 | self._filename + (self._backup or ".bak")) |
Andrew Svetlov | ad28c7f | 2012-12-18 22:02:39 +0200 | [diff] [blame] | 332 | try: |
| 333 | os.unlink(self._backupfilename) |
| 334 | except OSError: |
| 335 | pass |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 336 | # The next few lines may raise OSError |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 337 | os.rename(self._filename, self._backupfilename) |
Georg Brandl | c029f87 | 2006-02-19 14:12:34 +0000 | [diff] [blame] | 338 | self._file = open(self._backupfilename, self._mode) |
Guido van Rossum | dcb8583 | 1999-10-18 21:41:43 +0000 | [diff] [blame] | 339 | try: |
Walter Dörwald | 294bbf3 | 2002-06-06 09:48:13 +0000 | [diff] [blame] | 340 | perm = os.fstat(self._file.fileno()).st_mode |
Skip Montanaro | cffac66 | 2002-08-14 02:58:16 +0000 | [diff] [blame] | 341 | except OSError: |
Guido van Rossum | dcb8583 | 1999-10-18 21:41:43 +0000 | [diff] [blame] | 342 | self._output = open(self._filename, "w") |
| 343 | else: |
Guido van Rossum | 6203d8f | 2007-10-29 17:39:59 +0000 | [diff] [blame] | 344 | mode = os.O_CREAT | os.O_WRONLY | os.O_TRUNC |
| 345 | if hasattr(os, 'O_BINARY'): |
| 346 | mode |= os.O_BINARY |
| 347 | |
| 348 | fd = os.open(self._filename, mode, perm) |
Guido van Rossum | dcb8583 | 1999-10-18 21:41:43 +0000 | [diff] [blame] | 349 | self._output = os.fdopen(fd, "w") |
| 350 | try: |
Jack Jansen | 52941a8 | 2003-01-08 16:33:16 +0000 | [diff] [blame] | 351 | if hasattr(os, 'chmod'): |
| 352 | os.chmod(self._filename, perm) |
Skip Montanaro | cffac66 | 2002-08-14 02:58:16 +0000 | [diff] [blame] | 353 | except OSError: |
Guido van Rossum | dcb8583 | 1999-10-18 21:41:43 +0000 | [diff] [blame] | 354 | pass |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 355 | self._savestdout = sys.stdout |
| 356 | sys.stdout = self._output |
| 357 | else: |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 358 | # This may raise OSError |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 359 | if self._openhook: |
| 360 | self._file = self._openhook(self._filename, self._mode) |
| 361 | else: |
| 362 | self._file = open(self._filename, self._mode) |
Guido van Rossum | 4795524 | 2001-01-05 14:44:39 +0000 | [diff] [blame] | 363 | self._buffer = self._file.readlines(self._bufsize) |
| 364 | self._bufindex = 0 |
| 365 | if not self._buffer: |
| 366 | self.nextfile() |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 367 | # Recursive call |
| 368 | return self.readline() |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 369 | |
| 370 | def filename(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 371 | return self._filename |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 372 | |
| 373 | def lineno(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 374 | return self._lineno |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 375 | |
| 376 | def filelineno(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 377 | return self._filelineno |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 378 | |
Georg Brandl | 67e9fb9 | 2006-02-19 13:56:17 +0000 | [diff] [blame] | 379 | def fileno(self): |
| 380 | if self._file: |
| 381 | try: |
| 382 | return self._file.fileno() |
| 383 | except ValueError: |
| 384 | return -1 |
| 385 | else: |
| 386 | return -1 |
| 387 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 388 | def isfirstline(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 389 | return self._filelineno == 1 |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 390 | |
| 391 | def isstdin(self): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 392 | return self._isstdin |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 393 | |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 394 | |
| 395 | def hook_compressed(filename, mode): |
| 396 | ext = os.path.splitext(filename)[1] |
| 397 | if ext == '.gz': |
| 398 | import gzip |
| 399 | return gzip.open(filename, mode) |
| 400 | elif ext == '.bz2': |
| 401 | import bz2 |
| 402 | return bz2.BZ2File(filename, mode) |
| 403 | else: |
| 404 | return open(filename, mode) |
| 405 | |
| 406 | |
| 407 | def hook_encoded(encoding): |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 408 | def openhook(filename, mode): |
Florent Xicluna | a011e2b | 2011-11-07 19:43:07 +0100 | [diff] [blame] | 409 | return open(filename, mode, encoding=encoding) |
Georg Brandl | c98eeed | 2006-02-19 14:57:47 +0000 | [diff] [blame] | 410 | return openhook |
| 411 | |
| 412 | |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 413 | def _test(): |
| 414 | import getopt |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 415 | inplace = False |
| 416 | backup = False |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 417 | opts, args = getopt.getopt(sys.argv[1:], "ib:") |
| 418 | for o, a in opts: |
Georg Brandl | ef0a865 | 2009-05-17 12:22:57 +0000 | [diff] [blame] | 419 | if o == '-i': inplace = True |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 420 | if o == '-b': backup = a |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 421 | for line in input(args, inplace=inplace, backup=backup): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 422 | if line[-1:] == '\n': line = line[:-1] |
| 423 | if line[-1:] == '\r': line = line[:-1] |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 424 | print("%d: %s[%d]%s %s" % (lineno(), filename(), filelineno(), |
| 425 | isfirstline() and "*" or "", line)) |
| 426 | print("%d: %s[%d]" % (lineno(), filename(), filelineno())) |
Guido van Rossum | 7d5b99d | 1997-11-21 17:12:59 +0000 | [diff] [blame] | 427 | |
| 428 | if __name__ == '__main__': |
| 429 | _test() |