message.py 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. #!/usr/bin/env python
  2. # -*- Mode: Python -*-
  3. # GObject-Introspection - a framework for introspecting GObject libraries
  4. # Copyright (C) 2010 Red Hat, Inc.
  5. # Copyright (C) 2010 Johan Dahlin
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  20. # 02110-1301, USA.
  21. #
  22. from __future__ import absolute_import
  23. from __future__ import division
  24. from __future__ import print_function
  25. from __future__ import unicode_literals
  26. import os
  27. import sys
  28. import operator
  29. from . import utils
  30. (WARNING,
  31. ERROR,
  32. FATAL) = range(3)
  33. class Position(object):
  34. """
  35. Represents a position in the source file which we
  36. want to inform about.
  37. """
  38. __slots__ = ('filename', 'line', 'column')
  39. def __init__(self, filename=None, line=None, column=None):
  40. self.filename = filename
  41. self.line = line
  42. self.column = column
  43. def _compare(self, other, op):
  44. return op((self.filename, self.line, self.column),
  45. (other.filename, other.line, other.column))
  46. def __lt__(self, other):
  47. return self._compare(other, operator.lt)
  48. def __gt__(self, other):
  49. return self._compare(other, operator.gt)
  50. def __ge__(self, other):
  51. return self._compare(other, operator.ge)
  52. def __le__(self, other):
  53. return self._compare(other, operator.le)
  54. def __eq__(self, other):
  55. return self._compare(other, operator.eq)
  56. def __ne__(self, other):
  57. return self._compare(other, operator.ne)
  58. def __hash__(self):
  59. return hash((self.filename, self.line, self.column))
  60. def __repr__(self):
  61. return '<Position %s:%d:%d>' % (os.path.basename(self.filename),
  62. self.line or -1,
  63. self.column or -1)
  64. def format(self, cwd):
  65. filename = os.path.realpath(self.filename)
  66. cwd = os.path.realpath(cwd)
  67. common_prefix = os.path.commonprefix((filename, cwd))
  68. if common_prefix:
  69. filename = os.path.relpath(filename, common_prefix)
  70. if self.column is not None:
  71. return '%s:%d:%d' % (filename, self.line, self.column)
  72. elif self.line is not None:
  73. return '%s:%d' % (filename, self.line, )
  74. else:
  75. return '%s:' % (filename, )
  76. class MessageLogger(object):
  77. _instance = None
  78. def __init__(self, namespace=None, output=None):
  79. if output is None:
  80. output = sys.stderr
  81. self._cwd = os.getcwd()
  82. self._output = output
  83. self._namespace = namespace
  84. self._enable_warnings = []
  85. self._warning_count = 0
  86. self._error_count = 0
  87. @classmethod
  88. def get(cls, *args, **kwargs):
  89. if cls._instance is None:
  90. cls._instance = cls(*args, **kwargs)
  91. return cls._instance
  92. def enable_warnings(self, log_types):
  93. self._enable_warnings = log_types
  94. def get_warning_count(self):
  95. return self._warning_count
  96. def get_error_count(self):
  97. return self._error_count
  98. def log(self, log_type, text, positions=None, prefix=None, marker_pos=None, marker_line=None):
  99. """
  100. Log a warning, using optional file positioning information.
  101. If the warning is related to a ast.Node type, see log_node().
  102. """
  103. utils.break_on_debug_flag('warning')
  104. self._warning_count += 1
  105. if log_type not in self._enable_warnings:
  106. return
  107. if type(positions) == set:
  108. positions = list(positions)
  109. if isinstance(positions, Position):
  110. positions = [positions]
  111. if not positions:
  112. positions = [Position('<unknown>')]
  113. for position in positions[:-1]:
  114. self._output.write("%s:\n" % (position.format(cwd=self._cwd), ))
  115. last_position = positions[-1].format(cwd=self._cwd)
  116. if log_type == WARNING:
  117. error_type = "Warning"
  118. elif log_type == ERROR:
  119. error_type = "Error"
  120. self._error_count += 1
  121. elif log_type == FATAL:
  122. error_type = "Fatal"
  123. if marker_pos is not None and marker_line is not None:
  124. text = '%s\n%s\n%s' % (text, marker_line, ' ' * marker_pos + '^')
  125. if prefix:
  126. if self._namespace:
  127. text = ('%s: %s: %s: %s: %s\n' % (last_position, error_type,
  128. self._namespace.name, prefix, text))
  129. else:
  130. text = ('%s: %s: %s: %s\n' % (last_position, error_type,
  131. prefix, text))
  132. else:
  133. if self._namespace:
  134. text = ('%s: %s: %s: %s\n' % (last_position, error_type,
  135. self._namespace.name, text))
  136. else:
  137. text = ('%s: %s: %s\n' % (last_position, error_type, text))
  138. self._output.write(text)
  139. if log_type == FATAL:
  140. utils.break_on_debug_flag('fatal')
  141. raise SystemExit(text)
  142. def log_node(self, log_type, node, text, context=None, positions=None):
  143. """
  144. Log a warning, using information about file positions from
  145. the given node. The optional context argument, if given, should be
  146. another ast.Node type which will also be displayed. If no file position
  147. information is available from the node, the position data from the
  148. context will be used.
  149. """
  150. if positions:
  151. pass
  152. elif getattr(node, 'file_positions', None):
  153. positions = node.file_positions
  154. elif context and context.file_positions:
  155. positions = context.file_positions
  156. else:
  157. positions = set()
  158. if context:
  159. text = "%s: %s" % (getattr(context, 'symbol', context.name), text)
  160. elif not positions and hasattr(node, 'name'):
  161. text = "(%s)%s: %s" % (node.__class__.__name__, node.name, text)
  162. self.log(log_type, text, positions)
  163. def log_symbol(self, log_type, symbol, text):
  164. """Log a warning in the context of the given symbol."""
  165. self.log(log_type, text, symbol.position,
  166. prefix="symbol='%s'" % (symbol.ident, ))
  167. def log_node(log_type, node, text, context=None, positions=None):
  168. ml = MessageLogger.get()
  169. ml.log_node(log_type, node, text, context=context, positions=positions)
  170. def warn(text, positions=None, prefix=None, marker_pos=None, marker_line=None):
  171. ml = MessageLogger.get()
  172. ml.log(WARNING, text, positions, prefix, marker_pos, marker_line)
  173. def warn_node(node, text, context=None, positions=None):
  174. log_node(WARNING, node, text, context=context, positions=positions)
  175. def error_node(node, text, context=None, positions=None):
  176. log_node(ERROR, node, text, context=context, positions=positions)
  177. def warn_symbol(symbol, text):
  178. ml = MessageLogger.get()
  179. ml.log_symbol(WARNING, symbol, text)
  180. def error(text, positions=None, prefix=None, marker_pos=None, marker_line=None):
  181. ml = MessageLogger.get()
  182. ml.log(ERROR, text, positions, prefix, marker_pos, marker_line)
  183. def fatal(text, positions=None, prefix=None, marker_pos=None, marker_line=None):
  184. ml = MessageLogger.get()
  185. ml.log(FATAL, text, positions, prefix, marker_pos, marker_line)