I'm trying to use the fileinput module to iterate over a bunch of files and replace a single line in them. This is how my code looks:

def main():
    for root, dirs, files in os.walk('target/generated-sources'):
        for line in fileinput.input([os.path.join(root, file) for file in files if file.endsWith('.java')], inplace=True):
            match = re.search(r'@Table\(name = "(.*)"\)', line)
            output = "".join(['@Table(name = "', PREFIX, match.group(1)[MAX_TABLENAME_LEN - len(PREFIX)], '")', '\n']) if match else line
            print output,

The problem I face is that I get no error, and the script somehow seems to block. I'm using Python 2.5.2.

link|improve this question

Do you also get no output? Does it only block in some GUI interpreter or also if run straight from the command line? What happens if you run it against just a single .java file? Show us a sample of the files you're matching against so we can run the program ourselves. – agf Aug 15 '11 at 8:41
1  
@Andrew it's not two for loops, it's a list comprehension as an argument to a function, and a for loop? Nothing wrong with that, I do it all the time. – agf Aug 15 '11 at 8:42
@agf, yes, I get no output when run from the commandline, and it seems to run forever. – Oliver Weiler Aug 15 '11 at 8:44
@agf oops, you're right of course. Too early... – Andrew Jaffe Aug 15 '11 at 8:45
1  
Also try moving the list comprehension to it's own line and generally adding more prints so you know what line it's blocking on. – agf Aug 15 '11 at 9:09
show 6 more comments
feedback

2 Answers

up vote 4 down vote accepted

Your list comprehension is returning empty lists when a root does not contain .java files. When your script passes an empty list to fileinput.input(), it reverts to the default expecting input from stdin. Since there is nothing coming in from stdin, your script blocks.

Try this instead:

def main():
    for root, dirs, files in os.walk('target/generated-sources'):
        java_files = [os.path.join(root, file) for file in files if file.endsWith('.java')]
        if not java_files:  # go to next iteration if list is empty
            continue
        for line in fileinput.input(java_files, inplace=True):
            match = re.search(r'@Table\(name = "(.*)"\)', line)
            output = "".join(['@Table(name = "', PREFIX, match.group(1)[MAX_TABLENAME_LEN - len(PREFIX)], '")', '\n']) if match else line
            print output,

Alternatively, split up the logic of the file discovery. The following creates a generator which produces a list of files which you can then use as an input to fileinput.

import os, fnmatch, fileinput

def find_files(directory, pattern):
    "Generator that returns files  within direction with name matching pattern"
    for root, dirs, files in os.walk(directory):
        for basename in fnmatch.filter(files, pattern):
            filename = os.path.join(root, basename)
            yield filename

for line in fileinput.input(find_files("target/generated-sources", "*.java")):
    match = re.search(r'@Table\(name = "(.*)"\)', line)
    output = "".join(['@Table(name = "', PREFIX, match.group(1)[MAX_TABLENAME_LEN - len(PREFIX)], '")', '\n']) if match else line
    print output,
link|improve this answer
1  
That's right! By default fileinput attaches to sys.stdin if filelist is empty! – Mihail Aug 15 '11 at 9:21
What does if not java_files: continue do? – Oliver Weiler Aug 15 '11 at 9:22
1  
That means that if java_files is empty, skip the rest of the loop and continue with the next iteration. – Shawn Chin Aug 15 '11 at 9:26
@Shawn Argh, yeah, of course. Thx, that was exactely my problem! – Oliver Weiler Aug 15 '11 at 9:29
feedback

If you want to know where the interpreter blocks, you can send signal SIGINT to the process. At least on unix like operating systems.

kill -sigint PID

Try to add some print or logging- lines, to see where your code hangs. Maybe fileinput works well, and the app blocks after that.

Some time ago I wrote a tool to do search+replace in several files: http://www.thomas-guettler.de/scripts/reprec.py.txt

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.