2014-01-13 14:08:43 -05:00
|
|
|
# Copyright (C) 2013 Google Inc.
|
2014-01-04 17:28:27 -05:00
|
|
|
#
|
|
|
|
# This file is part of YouCompleteMe.
|
|
|
|
#
|
|
|
|
# YouCompleteMe is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# YouCompleteMe is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-02-27 19:12:24 -05:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from __future__ import print_function
|
|
|
|
from __future__ import division
|
|
|
|
from __future__ import absolute_import
|
2017-03-09 09:57:27 -05:00
|
|
|
# Not installing aliases from python-future; it's unreliable and slow.
|
2016-02-27 19:12:24 -05:00
|
|
|
from builtins import * # noqa
|
|
|
|
|
|
|
|
from future.utils import itervalues, iteritems
|
2014-09-13 14:15:40 -04:00
|
|
|
from collections import defaultdict, namedtuple
|
2014-01-04 17:28:27 -05:00
|
|
|
from ycm import vimsupport
|
2016-10-23 10:29:54 -04:00
|
|
|
from ycm.diagnostic_filter import DiagnosticFilter, CompileLevel
|
2014-01-04 17:28:27 -05:00
|
|
|
|
|
|
|
|
|
|
|
class DiagnosticInterface( object ):
|
2017-06-05 14:14:51 -04:00
|
|
|
def __init__( self, bufnr, user_options ):
|
|
|
|
self._bufnr = bufnr
|
2014-01-08 21:43:17 -05:00
|
|
|
self._user_options = user_options
|
2017-04-30 17:17:20 -04:00
|
|
|
self._diagnostics = []
|
2016-10-22 18:37:13 -04:00
|
|
|
self._diag_filter = DiagnosticFilter.CreateFromOptions( user_options )
|
2014-01-04 19:45:34 -05:00
|
|
|
# Line and column numbers are 1-based
|
2017-06-05 14:14:51 -04:00
|
|
|
self._line_to_diags = defaultdict( list )
|
|
|
|
self._placed_signs = []
|
2014-01-04 17:28:27 -05:00
|
|
|
self._next_sign_id = 1
|
2014-01-04 19:45:34 -05:00
|
|
|
self._previous_line_number = -1
|
2014-01-10 15:18:24 -05:00
|
|
|
self._diag_message_needs_clearing = False
|
2014-01-04 19:45:34 -05:00
|
|
|
|
|
|
|
|
|
|
|
def OnCursorMoved( self ):
|
|
|
|
line, _ = vimsupport.CurrentLineAndColumn()
|
|
|
|
line += 1 # Convert to 1-based
|
|
|
|
if line != self._previous_line_number:
|
|
|
|
self._previous_line_number = line
|
2014-01-08 21:43:17 -05:00
|
|
|
|
|
|
|
if self._user_options[ 'echo_current_diagnostic' ]:
|
|
|
|
self._EchoDiagnosticForLine( line )
|
2014-01-04 17:28:27 -05:00
|
|
|
|
2015-12-04 17:45:11 -05:00
|
|
|
|
|
|
|
def GetErrorCount( self ):
|
2017-06-05 14:14:51 -04:00
|
|
|
return self._DiagnosticsCount( _DiagnosticIsError )
|
2015-12-04 17:45:11 -05:00
|
|
|
|
|
|
|
|
|
|
|
def GetWarningCount( self ):
|
2017-06-05 14:14:51 -04:00
|
|
|
return self._DiagnosticsCount( _DiagnosticIsWarning )
|
2015-12-04 17:45:11 -05:00
|
|
|
|
|
|
|
|
2017-04-30 17:17:20 -04:00
|
|
|
def PopulateLocationList( self ):
|
|
|
|
# Do nothing if loc list is already populated by diag_interface
|
|
|
|
if not self._user_options[ 'always_populate_location_list' ]:
|
|
|
|
self._UpdateLocationList()
|
|
|
|
return bool( self._diagnostics )
|
2016-01-11 14:16:49 -05:00
|
|
|
|
|
|
|
|
2014-01-04 17:28:27 -05:00
|
|
|
def UpdateWithNewDiagnostics( self, diags ):
|
2017-04-30 17:17:20 -04:00
|
|
|
self._diagnostics = [ _NormalizeDiagnostic( x ) for x in
|
|
|
|
self._ApplyDiagnosticFilter( diags ) ]
|
2017-06-05 14:14:51 -04:00
|
|
|
self._ConvertDiagListToDict()
|
2014-01-08 21:43:17 -05:00
|
|
|
|
2014-01-08 22:43:21 -05:00
|
|
|
if self._user_options[ 'enable_diagnostic_signs' ]:
|
2017-06-05 14:14:51 -04:00
|
|
|
self._UpdateSigns()
|
2014-01-08 21:43:17 -05:00
|
|
|
|
2014-01-08 22:43:21 -05:00
|
|
|
if self._user_options[ 'enable_diagnostic_highlighting' ]:
|
2017-06-05 14:14:51 -04:00
|
|
|
self._UpdateSquiggles()
|
2014-01-04 19:45:34 -05:00
|
|
|
|
2014-01-08 22:43:21 -05:00
|
|
|
if self._user_options[ 'always_populate_location_list' ]:
|
2017-04-30 17:17:20 -04:00
|
|
|
self._UpdateLocationList()
|
2014-01-08 22:09:40 -05:00
|
|
|
|
2016-10-22 18:37:13 -04:00
|
|
|
|
2017-06-05 14:14:51 -04:00
|
|
|
def _ApplyDiagnosticFilter( self, diags ):
|
|
|
|
filetypes = vimsupport.GetBufferFiletypes( self._bufnr )
|
2016-10-22 18:37:13 -04:00
|
|
|
diag_filter = self._diag_filter.SubsetForTypes( filetypes )
|
2017-06-05 14:14:51 -04:00
|
|
|
return filter( diag_filter.IsAllowed, diags )
|
2016-10-22 18:37:13 -04:00
|
|
|
|
|
|
|
|
2014-01-04 19:45:34 -05:00
|
|
|
def _EchoDiagnosticForLine( self, line_num ):
|
2017-06-05 14:14:51 -04:00
|
|
|
diags = self._line_to_diags[ line_num ]
|
2014-01-04 19:45:34 -05:00
|
|
|
if not diags:
|
2014-01-10 15:18:24 -05:00
|
|
|
if self._diag_message_needs_clearing:
|
|
|
|
# Clear any previous diag echo
|
2016-08-28 02:34:09 -04:00
|
|
|
vimsupport.PostVimMessage( '', warning = False )
|
2014-01-10 15:18:24 -05:00
|
|
|
self._diag_message_needs_clearing = False
|
2014-01-04 19:45:34 -05:00
|
|
|
return
|
2015-08-05 17:09:07 -04:00
|
|
|
|
2017-03-28 15:37:58 -04:00
|
|
|
first_diag = diags[ 0 ]
|
|
|
|
text = first_diag[ 'text' ]
|
|
|
|
if first_diag.get( 'fixit_available', False ):
|
2015-08-05 17:09:07 -04:00
|
|
|
text += ' (FixIt)'
|
|
|
|
|
2016-08-28 02:34:09 -04:00
|
|
|
vimsupport.PostVimMessage( text, warning = False, truncate = True )
|
2014-01-10 15:18:24 -05:00
|
|
|
self._diag_message_needs_clearing = True
|
2014-01-04 19:45:34 -05:00
|
|
|
|
|
|
|
|
2017-06-05 14:14:51 -04:00
|
|
|
def _DiagnosticsCount( self, predicate ):
|
|
|
|
count = 0
|
|
|
|
for diags in itervalues( self._line_to_diags ):
|
|
|
|
count += sum( 1 for d in diags if predicate( d ) )
|
|
|
|
return count
|
2015-12-04 18:59:18 -05:00
|
|
|
|
|
|
|
|
2017-04-30 17:17:20 -04:00
|
|
|
def _UpdateLocationList( self ):
|
|
|
|
vimsupport.SetLocationList(
|
|
|
|
vimsupport.ConvertDiagnosticsToQfList( self._diagnostics ) )
|
|
|
|
|
|
|
|
|
2017-06-05 14:14:51 -04:00
|
|
|
def _UpdateSquiggles( self ):
|
|
|
|
|
|
|
|
vimsupport.ClearYcmSyntaxMatches()
|
|
|
|
|
|
|
|
for diags in itervalues( self._line_to_diags ):
|
2017-06-10 01:53:18 -04:00
|
|
|
# Insert squiggles in reverse order so that errors overlap warnings.
|
|
|
|
for diag in reversed( diags ):
|
2017-06-05 14:14:51 -04:00
|
|
|
location_extent = diag[ 'location_extent' ]
|
|
|
|
is_error = _DiagnosticIsError( diag )
|
|
|
|
|
|
|
|
if location_extent[ 'start' ][ 'line_num' ] <= 0:
|
|
|
|
location = diag[ 'location' ]
|
|
|
|
vimsupport.AddDiagnosticSyntaxMatch(
|
|
|
|
location[ 'line_num' ],
|
|
|
|
location[ 'column_num' ],
|
|
|
|
is_error = is_error )
|
|
|
|
else:
|
|
|
|
vimsupport.AddDiagnosticSyntaxMatch(
|
|
|
|
location_extent[ 'start' ][ 'line_num' ],
|
|
|
|
location_extent[ 'start' ][ 'column_num' ],
|
|
|
|
location_extent[ 'end' ][ 'line_num' ],
|
|
|
|
location_extent[ 'end' ][ 'column_num' ],
|
|
|
|
is_error = is_error )
|
|
|
|
|
|
|
|
for diag_range in diag[ 'ranges' ]:
|
|
|
|
vimsupport.AddDiagnosticSyntaxMatch(
|
|
|
|
diag_range[ 'start' ][ 'line_num' ],
|
|
|
|
diag_range[ 'start' ][ 'column_num' ],
|
|
|
|
diag_range[ 'end' ][ 'line_num' ],
|
|
|
|
diag_range[ 'end' ][ 'column_num' ],
|
|
|
|
is_error = is_error )
|
|
|
|
|
|
|
|
|
|
|
|
def _UpdateSigns( self ):
|
|
|
|
new_signs, obsolete_signs = self._GetNewAndObsoleteSigns()
|
|
|
|
|
|
|
|
self._PlaceNewSigns( new_signs )
|
|
|
|
|
|
|
|
self._UnplaceObsoleteSigns( obsolete_signs )
|
|
|
|
|
|
|
|
|
|
|
|
def _GetNewAndObsoleteSigns( self ):
|
|
|
|
new_signs = []
|
|
|
|
obsolete_signs = list( self._placed_signs )
|
|
|
|
for line, diags in iteritems( self._line_to_diags ):
|
|
|
|
# We always go for the first diagnostic on line,
|
|
|
|
# because it is sorted giving priority to the Errors.
|
|
|
|
diag = diags[ 0 ]
|
|
|
|
sign = _DiagSignPlacement( self._next_sign_id,
|
|
|
|
line, _DiagnosticIsError( diag ) )
|
|
|
|
try:
|
|
|
|
obsolete_signs.remove( sign )
|
|
|
|
except ValueError:
|
2017-03-28 15:37:58 -04:00
|
|
|
new_signs.append( sign )
|
2017-06-05 14:14:51 -04:00
|
|
|
self._next_sign_id += 1
|
|
|
|
return new_signs, obsolete_signs
|
|
|
|
|
|
|
|
|
|
|
|
def _PlaceNewSigns( self, new_signs ):
|
|
|
|
for sign in new_signs:
|
|
|
|
vimsupport.PlaceSign( sign.id, sign.line, self._bufnr, sign.is_error )
|
|
|
|
self._placed_signs.append( sign )
|
|
|
|
|
|
|
|
|
|
|
|
def _UnplaceObsoleteSigns( self, obsolete_signs ):
|
|
|
|
for sign in obsolete_signs:
|
|
|
|
self._placed_signs.remove( sign )
|
|
|
|
vimsupport.UnplaceSignInBuffer( self._bufnr, sign.id )
|
|
|
|
|
|
|
|
|
|
|
|
def _ConvertDiagListToDict( self ):
|
|
|
|
self._line_to_diags = defaultdict( list )
|
|
|
|
for diag in self._diagnostics:
|
|
|
|
location = diag[ 'location' ]
|
|
|
|
bufnr = vimsupport.GetBufferNumberForFilename( location[ 'filepath' ] )
|
2017-06-11 13:46:09 -04:00
|
|
|
if bufnr == self._bufnr:
|
|
|
|
line_number = location[ 'line_num' ]
|
|
|
|
self._line_to_diags[ line_number ].append( diag )
|
2017-06-05 14:14:51 -04:00
|
|
|
|
|
|
|
for diags in itervalues( self._line_to_diags ):
|
|
|
|
# We also want errors to be listed before warnings so that errors aren't
|
2017-06-10 01:53:18 -04:00
|
|
|
# hidden by the warnings; Vim won't place a sign over an existing one.
|
2017-03-28 15:37:58 -04:00
|
|
|
diags.sort( key = lambda diag: ( diag[ 'kind' ],
|
|
|
|
diag[ 'location' ][ 'column_num' ] ) )
|
2014-01-04 17:28:27 -05:00
|
|
|
|
2014-01-04 21:32:42 -05:00
|
|
|
|
2016-10-23 10:29:54 -04:00
|
|
|
_DiagnosticIsError = CompileLevel( 'error' )
|
|
|
|
_DiagnosticIsWarning = CompileLevel( 'warning' )
|
2015-12-04 17:45:11 -05:00
|
|
|
|
|
|
|
|
2014-10-29 13:16:38 -04:00
|
|
|
def _NormalizeDiagnostic( diag ):
|
|
|
|
def ClampToOne( value ):
|
|
|
|
return value if value > 0 else 1
|
|
|
|
|
|
|
|
location = diag[ 'location' ]
|
|
|
|
location[ 'column_num' ] = ClampToOne( location[ 'column_num' ] )
|
|
|
|
location[ 'line_num' ] = ClampToOne( location[ 'line_num' ] )
|
|
|
|
return diag
|
|
|
|
|
|
|
|
|
2017-06-05 14:14:51 -04:00
|
|
|
class _DiagSignPlacement( namedtuple( "_DiagSignPlacement",
|
|
|
|
[ 'id', 'line', 'is_error' ] ) ):
|
2014-09-19 15:30:15 -04:00
|
|
|
# We want two signs that have different ids but the same location to compare
|
|
|
|
# equal. ID doesn't matter.
|
|
|
|
def __eq__( self, other ):
|
|
|
|
return ( self.line == other.line and
|
|
|
|
self.is_error == other.is_error )
|