[#2889] Fixes for 'Too many files open' error

* Ensure all file descriptors are closed. Using the with statement ensures
   closure.
 * The main problem was with thousands of unclosed file desciptors from
   tracker_icons mkstemp.
 * Use a prefix 'deluge_ticon.' to identify created tracker_icon tmp files.
This commit is contained in:
Calum Lind 2016-10-11 11:26:52 +01:00
parent 58835eeb2e
commit 9dd3b1617d
31 changed files with 237 additions and 193 deletions

View file

@ -114,7 +114,8 @@ def make(filename, outfile):
outfile = os.path.splitext(infile)[0] + '.mo'
try:
lines = open(infile).readlines()
with open(infile) as _file:
lines = _file.readlines()
except IOError, msg:
print >> sys.stderr, msg
sys.exit(1)
@ -181,7 +182,8 @@ def make(filename, outfile):
output = generate()
try:
open(outfile, "wb").write(output)
with open(outfile, "wb") as _file:
_file.write(output)
except IOError, msg:
print >> sys.stderr, msg