Mercurial > lcfOS
view python/ppci/errors.py @ 194:b01429a5d695
Fixed test
author | Windel Bouwman |
---|---|
date | Wed, 29 May 2013 22:36:37 +0200 |
parents | 6b2bec5653f1 |
children | 5e391d9a3381 |
line wrap: on
line source
""" Error handling routines Diagnostic utils """ from . import SourceLocation class CompilerError(Exception): def __init__(self, msg, loc): self.msg = msg self.loc = loc assert type(loc) is SourceLocation, '{0} must be SourceLocation'.format(type(loc)) def __repr__(self): return 'Compilererror {0} at row {1}'.format(self.msg, self.loc.row) def printError(source, e): def printLine(row, txt): print(str(row)+':'+txt) if e.loc.row == 0: print('Error: {0}'.format(e.msg)) else: lines = source.split('\n') ro, co = e.loc.row, e.loc.col prerow = ro - 2 if prerow < 1: prerow = 1 afterrow = ro + 3 if afterrow > len(lines): afterrow = len(lines) # print preceding source lines: for r in range(prerow, ro): printLine(r, lines[r-1]) # print source line containing error: printLine(ro, lines[ro-1]) print(' '*(len(str(ro)+':')+co-1) + '^ Error: {0}'.format(e.msg)) # print trailing source line: for r in range(ro+1, afterrow+1): printLine(r, lines[r-1]) class DiagnosticsManager: def __init__(self): self.diags = [] def addDiag(self, d): self.diags.append(d) def error(self, msg, loc): self.addDiag(CompilerError(msg, loc)) def clear(self): del self.diags[:] def printErrors(self, src): if len(self.diags) > 0: print('{0} Errors'.format(len(self.diags))) for d in self.diags: printError(src, d)