blob: 21c2d1f9bb7604780aab22973fd4e1cff3bd3f4e [file] [log] [blame]
Guido van Rossum7d5b99d1997-11-21 17:12:59 +00001"""Helper class to quickly write a loop over all standard input files.
2
3Typical use is:
4
5 import fileinput
6 for line in fileinput.input():
7 process(line)
8
9This iterates over the lines of all files listed in sys.argv[1:],
10defaulting to sys.stdin if the list is empty. If a filename is '-' it
11is also replaced by sys.stdin. To specify an alternative list of
12filenames, pass it as the argument to input(). A single file name is
13also allowed.
14
15Functions filename(), lineno() return the filename and cumulative line
16number of the line that has just been read; filelineno() returns its
17line number in the current file; isfirstline() returns true iff the
18line just read is the first line of its file; isstdin() returns true
19iff the line was read from sys.stdin. Function nextfile() closes the
20current file so that the next iteration will read the first line from
21the next file (if any); lines not read from the file will not count
22towards the cumulative line count; the filename is not changed until
23after the first line of the next file has been read. Function close()
24closes the sequence.
25
26Before any lines have been read, filename() returns None and both line
27numbers are zero; nextfile() has no effect. After all lines have been
28read, filename() and the line number functions return the values
29pertaining to the last line read; nextfile() has no effect.
30
Georg Brandlc029f872006-02-19 14:12:34 +000031All files are opened in text mode by default, you can override this by
32setting the mode parameter to input() or FileInput.__init__().
33If an I/O error occurs during opening or reading a file, the IOError
34exception is raised.
Guido van Rossum7d5b99d1997-11-21 17:12:59 +000035
36If sys.stdin is used more than once, the second and further use will
37return no lines, except perhaps for interactive use, or if it has been
38explicitly reset (e.g. using sys.stdin.seek(0)).
39
40Empty files are opened and immediately closed; the only time their
41presence in the list of filenames is noticeable at all is when the
42last file opened is empty.
43
44It is possible that the last line of a file doesn't end in a newline
45character; otherwise lines are returned including the trailing
46newline.
47
48Class FileInput is the implementation; its methods filename(),
49lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
50correspond to the functions in the module. In addition it has a
51readline() method which returns the next input line, and a
52__getitem__() method which implements the sequence behavior. The
53sequence must be accessed in strictly sequential order; sequence
54access and readline() cannot be mixed.
55
56Optional in-place filtering: if the keyword argument inplace=1 is
57passed to input() or to the FileInput constructor, the file is moved
58to a backup file and standard output is directed to the input file.
59This makes it possible to write a filter that rewrites its input file
60in place. If the keyword argument backup=".<some extension>" is also
61given, it specifies the extension for the backup file, and the backup
62file remains around; by default, the extension is ".bak" and it is
63deleted when the output file is closed. In-place filtering is
64disabled when standard input is read. XXX The current implementation
65does not work for MS-DOS 8+3 filesystems.
66
Guido van Rossum47955242001-01-05 14:44:39 +000067Performance: this module is unfortunately one of the slower ways of
68processing large numbers of input lines. Nevertheless, a significant
69speed-up has been obtained by using readlines(bufsize) instead of
70readline(). A new keyword argument, bufsize=N, is present on the
71input() function and the FileInput() class to override the default
72buffer size.
73
Guido van Rossum7d5b99d1997-11-21 17:12:59 +000074XXX Possible additions:
75
76- optional getopt argument processing
Guido van Rossum7d5b99d1997-11-21 17:12:59 +000077- isatty()
78- read(), read(size), even readlines()
79
80"""
81
Walter Dörwald294bbf32002-06-06 09:48:13 +000082import sys, os
Guido van Rossum7d5b99d1997-11-21 17:12:59 +000083
Skip Montanaroeccd02a2001-01-20 23:34:12 +000084__all__ = ["input","close","nextfile","filename","lineno","filelineno",
85 "isfirstline","isstdin","FileInput"]
86
Guido van Rossum7d5b99d1997-11-21 17:12:59 +000087_state = None
88
Guido van Rossum47955242001-01-05 14:44:39 +000089DEFAULT_BUFSIZE = 8*1024
90
Tim Peters200a5802006-02-19 21:26:07 +000091def input(files=None, inplace=0, backup="", bufsize=0,
Georg Brandlc98eeed2006-02-19 14:57:47 +000092 mode="r", openhook=None):
Terry Jan Reedy35115e62013-06-28 18:59:19 -040093 """Return an instance of the FileInput class, which can be iterated.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +000094
Terry Jan Reedy35115e62013-06-28 18:59:19 -040095 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 Hettingerd1fa3db2002-05-15 02:56:03 +000098 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +000099 global _state
100 if _state and _state._file:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000101 raise RuntimeError, "input() already active"
Georg Brandlc98eeed2006-02-19 14:57:47 +0000102 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000103 return _state
104
105def close():
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000106 """Close the sequence."""
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000107 global _state
108 state = _state
109 _state = None
110 if state:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000111 state.close()
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000112
113def nextfile():
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000114 """
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 Peters8ac14952002-05-23 15:15:30 +0000121 last file has been read, this function has no effect.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000122 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000123 if not _state:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000124 raise RuntimeError, "no active input()"
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000125 return _state.nextfile()
126
127def filename():
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000128 """
129 Return the name of the file currently being read.
Tim Peters8ac14952002-05-23 15:15:30 +0000130 Before the first line has been read, returns None.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000131 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000132 if not _state:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000133 raise RuntimeError, "no active input()"
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000134 return _state.filename()
135
136def lineno():
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000137 """
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 Peters8ac14952002-05-23 15:15:30 +0000140 of the last file has been read, returns the line number of that line.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000141 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000142 if not _state:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000143 raise RuntimeError, "no active input()"
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000144 return _state.lineno()
145
146def filelineno():
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000147 """
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 Peters8ac14952002-05-23 15:15:30 +0000150 been read, returns the line number of that line within the file.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000151 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000152 if not _state:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000153 raise RuntimeError, "no active input()"
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000154 return _state.filelineno()
155
Georg Brandl67e9fb92006-02-19 13:56:17 +0000156def 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:
162 raise RuntimeError, "no active input()"
163 return _state.fileno()
164
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000165def isfirstline():
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000166 """
167 Returns true the line just read is the first line of its file,
Tim Peters8ac14952002-05-23 15:15:30 +0000168 otherwise returns false.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000169 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000170 if not _state:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000171 raise RuntimeError, "no active input()"
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000172 return _state.isfirstline()
173
174def isstdin():
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000175 """
176 Returns true if the last line was read from sys.stdin,
Tim Peters8ac14952002-05-23 15:15:30 +0000177 otherwise returns false.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000178 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000179 if not _state:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000180 raise RuntimeError, "no active input()"
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000181 return _state.isstdin()
182
183class FileInput:
Terry Jan Reedy35115e62013-06-28 18:59:19 -0400184 """FileInput([files[, inplace[, backup[, bufsize[, mode[, openhook]]]]]])
Tim Peters8ac14952002-05-23 15:15:30 +0000185
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000186 Class FileInput is the implementation of the module; its methods
Georg Brandl67e9fb92006-02-19 13:56:17 +0000187 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
188 nextfile() and close() correspond to the functions of the same name
189 in the module.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000190 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 Peters8ac14952002-05-23 15:15:30 +0000193 sequential order; random access and readline() cannot be mixed.
Raymond Hettingerd1fa3db2002-05-15 02:56:03 +0000194 """
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000195
Tim Peters200a5802006-02-19 21:26:07 +0000196 def __init__(self, files=None, inplace=0, backup="", bufsize=0,
Georg Brandlc98eeed2006-02-19 14:57:47 +0000197 mode="r", openhook=None):
Georg Brandle4662172006-02-19 09:51:27 +0000198 if isinstance(files, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000199 files = (files,)
200 else:
Guido van Rossum2516b392000-04-10 17:16:12 +0000201 if files is None:
202 files = sys.argv[1:]
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000203 if not files:
Guido van Rossum2516b392000-04-10 17:16:12 +0000204 files = ('-',)
205 else:
206 files = tuple(files)
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000207 self._files = files
208 self._inplace = inplace
209 self._backup = backup
Guido van Rossum47955242001-01-05 14:44:39 +0000210 self._bufsize = bufsize or DEFAULT_BUFSIZE
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000211 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 Rossum8ca162f2002-04-07 06:36:23 +0000217 self._isstdin = False
Guido van Rossum0aec9fb1998-07-20 15:49:28 +0000218 self._backupfilename = None
Guido van Rossum47955242001-01-05 14:44:39 +0000219 self._buffer = []
220 self._bufindex = 0
Georg Brandlc029f872006-02-19 14:12:34 +0000221 # 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'")
225 self._mode = mode
Georg Brandlc98eeed2006-02-19 14:57:47 +0000226 if inplace and openhook:
227 raise ValueError("FileInput cannot use an opening hook in inplace mode")
Brett Cannon36bed8a2008-08-03 23:52:32 +0000228 elif openhook and not hasattr(openhook, '__call__'):
Georg Brandlc98eeed2006-02-19 14:57:47 +0000229 raise ValueError("FileInput openhook must be callable")
230 self._openhook = openhook
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000231
232 def __del__(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000233 self.close()
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000234
235 def close(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000236 self.nextfile()
237 self._files = ()
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000238
Neil Schemenauer908632a2002-03-26 20:28:40 +0000239 def __iter__(self):
240 return self
241
242 def next(self):
Guido van Rossum47955242001-01-05 14:44:39 +0000243 try:
244 line = self._buffer[self._bufindex]
245 except IndexError:
246 pass
247 else:
248 self._bufindex += 1
249 self._lineno += 1
250 self._filelineno += 1
251 return line
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000252 line = self.readline()
253 if not line:
Neil Schemenauer908632a2002-03-26 20:28:40 +0000254 raise StopIteration
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000255 return line
Tim Peters863ac442002-04-16 01:38:40 +0000256
Neil Schemenauer908632a2002-03-26 20:28:40 +0000257 def __getitem__(self, i):
258 if i != self._lineno:
259 raise RuntimeError, "accessing lines out of order"
260 try:
261 return self.next()
262 except StopIteration:
263 raise IndexError, "end of input reached"
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000264
265 def nextfile(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000266 savestdout = self._savestdout
267 self._savestdout = 0
268 if savestdout:
269 sys.stdout = savestdout
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000270
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000271 output = self._output
272 self._output = 0
273 if output:
274 output.close()
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000275
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000276 file = self._file
277 self._file = 0
278 if file and not self._isstdin:
279 file.close()
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000280
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000281 backupfilename = self._backupfilename
282 self._backupfilename = 0
283 if backupfilename and not self._backup:
284 try: os.unlink(backupfilename)
Skip Montanarocffac662002-08-14 02:58:16 +0000285 except OSError: pass
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000286
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000287 self._isstdin = False
Guido van Rossum47955242001-01-05 14:44:39 +0000288 self._buffer = []
289 self._bufindex = 0
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000290
291 def readline(self):
Guido van Rossum47955242001-01-05 14:44:39 +0000292 try:
293 line = self._buffer[self._bufindex]
294 except IndexError:
295 pass
296 else:
297 self._bufindex += 1
298 self._lineno += 1
299 self._filelineno += 1
300 return line
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000301 if not self._file:
302 if not self._files:
303 return ""
304 self._filename = self._files[0]
305 self._files = self._files[1:]
306 self._filelineno = 0
307 self._file = None
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000308 self._isstdin = False
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000309 self._backupfilename = 0
310 if self._filename == '-':
311 self._filename = '<stdin>'
312 self._file = sys.stdin
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000313 self._isstdin = True
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000314 else:
315 if self._inplace:
316 self._backupfilename = (
Guido van Rossume2ae77b2001-10-24 20:42:55 +0000317 self._filename + (self._backup or os.extsep+"bak"))
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000318 try: os.unlink(self._backupfilename)
319 except os.error: pass
Guido van Rossumdcb85831999-10-18 21:41:43 +0000320 # The next few lines may raise IOError
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000321 os.rename(self._filename, self._backupfilename)
Georg Brandlc029f872006-02-19 14:12:34 +0000322 self._file = open(self._backupfilename, self._mode)
Guido van Rossumdcb85831999-10-18 21:41:43 +0000323 try:
Walter Dörwald294bbf32002-06-06 09:48:13 +0000324 perm = os.fstat(self._file.fileno()).st_mode
Skip Montanarocffac662002-08-14 02:58:16 +0000325 except OSError:
Guido van Rossumdcb85831999-10-18 21:41:43 +0000326 self._output = open(self._filename, "w")
327 else:
328 fd = os.open(self._filename,
329 os.O_CREAT | os.O_WRONLY | os.O_TRUNC,
330 perm)
331 self._output = os.fdopen(fd, "w")
332 try:
Jack Jansen52941a82003-01-08 16:33:16 +0000333 if hasattr(os, 'chmod'):
334 os.chmod(self._filename, perm)
Skip Montanarocffac662002-08-14 02:58:16 +0000335 except OSError:
Guido van Rossumdcb85831999-10-18 21:41:43 +0000336 pass
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000337 self._savestdout = sys.stdout
338 sys.stdout = self._output
339 else:
340 # This may raise IOError
Georg Brandlc98eeed2006-02-19 14:57:47 +0000341 if self._openhook:
342 self._file = self._openhook(self._filename, self._mode)
343 else:
344 self._file = open(self._filename, self._mode)
Guido van Rossum47955242001-01-05 14:44:39 +0000345 self._buffer = self._file.readlines(self._bufsize)
346 self._bufindex = 0
347 if not self._buffer:
348 self.nextfile()
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000349 # Recursive call
350 return self.readline()
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000351
352 def filename(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000353 return self._filename
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000354
355 def lineno(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000356 return self._lineno
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000357
358 def filelineno(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000359 return self._filelineno
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000360
Georg Brandl67e9fb92006-02-19 13:56:17 +0000361 def fileno(self):
362 if self._file:
363 try:
364 return self._file.fileno()
365 except ValueError:
366 return -1
367 else:
368 return -1
369
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000370 def isfirstline(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000371 return self._filelineno == 1
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000372
373 def isstdin(self):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000374 return self._isstdin
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000375
Georg Brandlc98eeed2006-02-19 14:57:47 +0000376
377def hook_compressed(filename, mode):
378 ext = os.path.splitext(filename)[1]
379 if ext == '.gz':
380 import gzip
381 return gzip.open(filename, mode)
382 elif ext == '.bz2':
383 import bz2
384 return bz2.BZ2File(filename, mode)
385 else:
386 return open(filename, mode)
387
388
389def hook_encoded(encoding):
Serhiy Storchaka68b8a942014-02-26 20:59:08 +0200390 import io
Georg Brandlc98eeed2006-02-19 14:57:47 +0000391 def openhook(filename, mode):
Serhiy Storchaka68b8a942014-02-26 20:59:08 +0200392 mode = mode.replace('U', '').replace('b', '') or 'r'
393 return io.open(filename, mode, encoding=encoding, newline='')
Georg Brandlc98eeed2006-02-19 14:57:47 +0000394 return openhook
395
396
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000397def _test():
398 import getopt
399 inplace = 0
400 backup = 0
401 opts, args = getopt.getopt(sys.argv[1:], "ib:")
402 for o, a in opts:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000403 if o == '-i': inplace = 1
404 if o == '-b': backup = a
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000405 for line in input(args, inplace=inplace, backup=backup):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000406 if line[-1:] == '\n': line = line[:-1]
407 if line[-1:] == '\r': line = line[:-1]
408 print "%d: %s[%d]%s %s" % (lineno(), filename(), filelineno(),
409 isfirstline() and "*" or "", line)
Guido van Rossum7d5b99d1997-11-21 17:12:59 +0000410 print "%d: %s[%d]" % (lineno(), filename(), filelineno())
411
412if __name__ == '__main__':
413 _test()