Changeset b5f052a0 in trunk


Ignore:
Timestamp:
2010-07-26T22:19:04Z (15 years ago)
Author:
david-sarah <david-sarah@…>
Branches:
master
Children:
1a5a338
Parents:
ec6a674
Message:

windows/fixups.py: make errors reported to original_stderr have enough information to debug even if we can't see the traceback.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/windows/fixups.py

    rec6a674 rb5f052a0  
    1010
    1111    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
    1221    import codecs, re
    1322    from ctypes import WINFUNCTYPE, windll, POINTER, byref, c_int
     
    7988                                (("WriteConsoleW", windll.kernel32))
    8089
    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 
    8690            class UnicodeOutput:
    8791                def __init__(self, hConsole, stream, fileno, name):
     
    9599                    self.name = name
    96100                    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" %
    98102                                (name, stream, stream.encoding), level=log.CURIOUS)
    99103                    self.flush()
     
    111115                            self._stream.flush()
    112116                        except Exception, e:
    113                             print >>original_stderr, repr(e)
     117                            _complain("%s.flush: %r from %r" % (self.name, e, self._stream))
    114118                            raise
    115119
     
    128132                                retval = WriteConsoleW(self._hConsole, text, remaining, byref(n), None)
    129133                                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))
    132135                                remaining -= n.value
    133136                                if remaining == 0: break
    134137                                text = text[n.value:]
    135138                    except Exception, e:
    136                         print >>original_stderr, repr(e)
     139                        _complain("%s.write: %r" % (self.name, e))
    137140                        raise
    138141
     
    142145                            self.write(line)
    143146                    except Exception, e:
    144                         print >>original_stderr, repr(e)
     147                        _complain("%s.writelines: %r" % (self.name, e))
    145148                        raise
    146149
     
    155158                sys.stderr = UnicodeOutput(None, sys.stderr, old_stderr_fileno, '<Unicode redirected stderr>')
    156159    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,))
    159161
    160162    # Unmangle command-line arguments.
     
    172174        sys.argv = [unmangle(argv_unicode[i]).encode('utf-8') for i in xrange(1, argc.value)]
    173175    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)]))
    176178        raise
    177179
Note: See TracChangeset for help on using the changeset viewer.