third_party.pylibs.pylint.src/reporters/guireporter.py

33 lines
964 B
Python
Raw Normal View History

""" reporter used by gui.py """
import sys
from pylint.interfaces import IReporter
from pylint.reporters import BaseReporter
from logilab.common.ureports import TextWriter
class GUIReporter(BaseReporter):
"""saves messages"""
__implements__ = IReporter
extension = ''
2010-05-12 06:59:15 +00:00
def __init__(self, gui, output=sys.stdout):
"""init"""
BaseReporter.__init__(self, output)
self.msgs = []
self.gui = gui
def add_message(self, msg_id, location, msg):
"""manage message of different type and in the context of path"""
filename, module, obj, line, col_offset = location
2013-07-31 07:05:01 +00:00
msg = Message(self, msg_id, location, msg)
full_msg = [msg.C, msg_id, filename, module, obj, str(line), msg]
self.msgs += [[sigle, module, obj, str(line)]]
self.gui.msg_queue.put(full_msg)
2010-05-12 06:59:15 +00:00
def _display(self, layout):
"""launch layouts display"""
TextWriter().format(layout, self.out)