Changeset b5f052a0 in trunk
- Timestamp:
- 2010-07-26T22:19:04Z (15 years ago)
- Branches:
- master
- Children:
- 1a5a338
- Parents:
- ec6a674
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/windows/fixups.py ¶
rec6a674 rb5f052a0 10 10 11 11 original_stderr = sys.stderr 12 13 # If any exception occurs in this code, we'll probably try to print it on stderr, 14 # which makes for frustrating debugging if stderr is directed to our wrapper. 15 # So be paranoid about catching errors and reporting them to original_stderr, 16 # so that we can at least see them. 17 def _complain(message): 18 print >>original_stderr, isinstance(message, str) and message or repr(message) 19 log.msg(message, level=log.WEIRD) 20 12 21 import codecs, re 13 22 from ctypes import WINFUNCTYPE, windll, POINTER, byref, c_int … … 79 88 (("WriteConsoleW", windll.kernel32)) 80 89 81 # If any exception occurs in this code, we'll probably try to print it on stderr,82 # which makes for frustrating debugging if stderr is directed to this code.83 # So be paranoid about catching errors and reporting them to original_stderr,84 # so that we can at least see them.85 86 90 class UnicodeOutput: 87 91 def __init__(self, hConsole, stream, fileno, name): … … 95 99 self.name = name 96 100 if hasattr(stream, 'encoding') and canonical_encoding(stream.encoding) != 'utf-8': 97 log.msg("%s (%r)had encoding %r, but we're going to write UTF-8 to it" %101 log.msg("%s: %r had encoding %r, but we're going to write UTF-8 to it" % 98 102 (name, stream, stream.encoding), level=log.CURIOUS) 99 103 self.flush() … … 111 115 self._stream.flush() 112 116 except Exception, e: 113 print >>original_stderr, repr(e)117 _complain("%s.flush: %r from %r" % (self.name, e, self._stream)) 114 118 raise 115 119 … … 128 132 retval = WriteConsoleW(self._hConsole, text, remaining, byref(n), None) 129 133 if retval == 0 or n.value == 0: 130 raise IOError("could not write to %s [WriteConsoleW returned %r, n.value = %r]" 131 % (self.name, retval, n.value)) 134 raise IOError("WriteConsoleW returned %r, n.value = %r" % (retval, n.value)) 132 135 remaining -= n.value 133 136 if remaining == 0: break 134 137 text = text[n.value:] 135 138 except Exception, e: 136 print >>original_stderr, repr(e)139 _complain("%s.write: %r" % (self.name, e)) 137 140 raise 138 141 … … 142 145 self.write(line) 143 146 except Exception, e: 144 print >>original_stderr, repr(e)147 _complain("%s.writelines: %r" % (self.name, e)) 145 148 raise 146 149 … … 155 158 sys.stderr = UnicodeOutput(None, sys.stderr, old_stderr_fileno, '<Unicode redirected stderr>') 156 159 except Exception, e: 157 print >>original_stderr, "exception %r while fixing up sys.stdout and sys.stderr" % (e,) 158 log.msg("exception %r while fixing up sys.stdout and sys.stderr" % (e,), log.WEIRD) 160 _complain("exception %r while fixing up sys.stdout and sys.stderr" % (e,)) 159 161 160 162 # Unmangle command-line arguments. … … 172 174 sys.argv = [unmangle(argv_unicode[i]).encode('utf-8') for i in xrange(1, argc.value)] 173 175 except Exception, e: 174 print >>sys.stderr, "%s: could not unmangle Unicode arguments" % (sys.argv[0],)175 print >>sys.stderr, [argv_unicode[i] for i in xrange(1, argc.value)]176 _complain("%s: could not unmangle Unicode arguments.\n%r" 177 % (sys.argv[0], [argv_unicode[i] for i in xrange(1, argc.value)])) 176 178 raise 177 179
Note: See TracChangeset
for help on using the changeset viewer.