2018-03-26 21:22:31 -04:00
|
|
|
# Copyright (C) 2013-2018 YouCompleteMe contributors
|
2013-09-20 20:24:34 -04: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
|
|
|
|
|
2017-05-17 05:12:00 -04:00
|
|
|
import logging
|
2016-02-27 19:12:24 -05:00
|
|
|
from ycmd.utils import ToUnicode
|
2017-05-17 05:12:00 -04:00
|
|
|
from ycm.client.base_request import ( BaseRequest, DisplayServerException,
|
2015-08-07 14:16:07 -04:00
|
|
|
MakeServerException )
|
2018-03-26 21:22:31 -04:00
|
|
|
from ycm import vimsupport
|
2018-10-19 09:59:41 -04:00
|
|
|
from ycm.vimsupport import NO_COMPLETIONS
|
2013-09-20 20:24:34 -04:00
|
|
|
|
2017-05-17 05:12:00 -04:00
|
|
|
_logger = logging.getLogger( __name__ )
|
|
|
|
|
2015-09-06 15:07:42 -04:00
|
|
|
|
2013-09-20 20:24:34 -04:00
|
|
|
class CompletionRequest( BaseRequest ):
|
2014-05-27 20:38:34 -04:00
|
|
|
def __init__( self, request_data ):
|
2013-09-20 20:24:34 -04:00
|
|
|
super( CompletionRequest, self ).__init__()
|
2014-05-27 20:38:34 -04:00
|
|
|
self.request_data = request_data
|
2016-12-06 19:02:00 -05:00
|
|
|
self._response_future = None
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
|
2014-05-27 17:29:19 -04:00
|
|
|
def Start( self ):
|
2013-10-07 18:47:48 -04:00
|
|
|
self._response_future = self.PostDataToHandlerAsync( self.request_data,
|
2017-02-04 15:46:54 -05:00
|
|
|
'completions' )
|
2013-10-01 19:21:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
def Done( self ):
|
2016-12-06 19:02:00 -05:00
|
|
|
return bool( self._response_future ) and self._response_future.done()
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
|
2018-12-21 09:16:57 -05:00
|
|
|
def _RawResponse( self ):
|
2013-10-01 19:21:17 -04:00
|
|
|
if not self._response_future:
|
2018-10-19 09:59:41 -04:00
|
|
|
return NO_COMPLETIONS
|
2017-02-04 15:46:54 -05:00
|
|
|
|
2017-05-17 05:12:00 -04:00
|
|
|
response = self.HandleFuture( self._response_future,
|
|
|
|
truncate_message = True )
|
|
|
|
if not response:
|
2018-10-19 09:59:41 -04:00
|
|
|
return NO_COMPLETIONS
|
2015-08-07 14:16:07 -04:00
|
|
|
|
2017-05-17 05:12:00 -04:00
|
|
|
# Vim may not be able to convert the 'errors' entry to its internal format
|
|
|
|
# so we remove it from the response.
|
|
|
|
errors = response.pop( 'errors', [] )
|
|
|
|
for e in errors:
|
|
|
|
exception = MakeServerException( e )
|
|
|
|
_logger.error( exception )
|
|
|
|
DisplayServerException( exception, truncate_message = True )
|
2015-08-07 14:16:07 -04:00
|
|
|
|
2018-10-19 09:59:41 -04:00
|
|
|
response[ 'line' ] = self.request_data[ 'line_num' ]
|
|
|
|
response[ 'column' ] = self.request_data[ 'column_num' ]
|
2017-05-17 05:12:00 -04:00
|
|
|
return response
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
|
2015-08-28 10:26:18 -04:00
|
|
|
def Response( self ):
|
2018-12-21 09:16:57 -05:00
|
|
|
response = self._RawResponse()
|
2017-02-04 15:46:54 -05:00
|
|
|
response[ 'completions' ] = _ConvertCompletionDatasToVimDatas(
|
|
|
|
response[ 'completions' ] )
|
|
|
|
return response
|
2015-08-28 10:26:18 -04:00
|
|
|
|
|
|
|
|
2018-03-26 21:22:31 -04:00
|
|
|
def OnCompleteDone( self ):
|
|
|
|
if not self.Done():
|
|
|
|
return
|
|
|
|
|
2018-08-16 22:36:27 -04:00
|
|
|
if 'cs' in vimsupport.CurrentFiletypes():
|
|
|
|
self._OnCompleteDone_Csharp()
|
|
|
|
else:
|
|
|
|
self._OnCompleteDone_FixIt()
|
2018-03-26 21:22:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
def _GetCompletionsUserMayHaveCompleted( self ):
|
|
|
|
completed_item = vimsupport.GetVariableValue( 'v:completed_item' )
|
|
|
|
|
2018-03-26 21:22:31 -04:00
|
|
|
# If Vim supports user_data (8.0.1493 or later), we actually know the
|
|
|
|
# _exact_ element that was selected, having put its index in the
|
|
|
|
# user_data field. Otherwise, we have to guess by matching the values in the
|
|
|
|
# completed item and the list of completions. Sometimes this returns
|
|
|
|
# multiple possibilities, which is essentially unresolvable.
|
|
|
|
if 'user_data' not in completed_item:
|
2018-12-21 09:16:57 -05:00
|
|
|
completions = self._RawResponse()[ 'completions' ]
|
2018-03-26 21:22:31 -04:00
|
|
|
return _FilterToMatchingCompletions( completed_item, completions )
|
|
|
|
|
|
|
|
if completed_item[ 'user_data' ]:
|
2018-12-21 09:16:57 -05:00
|
|
|
completions = self._RawResponse()[ 'completions' ]
|
2018-03-26 21:22:31 -04:00
|
|
|
return [ completions[ int( completed_item[ 'user_data' ] ) ] ]
|
|
|
|
|
2018-03-26 21:22:31 -04:00
|
|
|
return []
|
2018-03-26 21:22:31 -04:00
|
|
|
|
|
|
|
|
|
|
|
def _OnCompleteDone_Csharp( self ):
|
|
|
|
completions = self._GetCompletionsUserMayHaveCompleted()
|
|
|
|
namespaces = [ _GetRequiredNamespaceImport( c ) for c in completions ]
|
|
|
|
namespaces = [ n for n in namespaces if n ]
|
|
|
|
if not namespaces:
|
|
|
|
return
|
|
|
|
|
|
|
|
if len( namespaces ) > 1:
|
|
|
|
choices = [ "{0} {1}".format( i + 1, n )
|
|
|
|
for i, n in enumerate( namespaces ) ]
|
|
|
|
choice = vimsupport.PresentDialog( "Insert which namespace:", choices )
|
|
|
|
if choice < 0:
|
|
|
|
return
|
|
|
|
namespace = namespaces[ choice ]
|
|
|
|
else:
|
|
|
|
namespace = namespaces[ 0 ]
|
|
|
|
|
|
|
|
vimsupport.InsertNamespace( namespace )
|
|
|
|
|
|
|
|
|
2018-03-26 19:20:53 -04:00
|
|
|
def _OnCompleteDone_FixIt( self ):
|
2018-03-26 21:22:31 -04:00
|
|
|
completions = self._GetCompletionsUserMayHaveCompleted()
|
|
|
|
fixit_completions = [ _GetFixItCompletion( c ) for c in completions ]
|
|
|
|
fixit_completions = [ f for f in fixit_completions if f ]
|
|
|
|
if not fixit_completions:
|
|
|
|
return
|
|
|
|
|
|
|
|
# If we have user_data in completions (8.0.1493 or later), then we would
|
|
|
|
# only ever return max. 1 completion here. However, if we had to guess, it
|
|
|
|
# is possible that we matched multiple completion items (e.g. for overloads,
|
|
|
|
# or similar classes in multiple packages). In any case, rather than
|
|
|
|
# prompting the user and disturbing her workflow, we just apply the first
|
|
|
|
# one. This might be wrong, but the solution is to use a (very) new version
|
|
|
|
# of Vim which supports user_data on completion items
|
|
|
|
fixit_completion = fixit_completions[ 0 ]
|
|
|
|
|
|
|
|
for fixit in fixit_completion:
|
|
|
|
vimsupport.ReplaceChunks( fixit[ 'chunks' ], silent=True )
|
|
|
|
|
|
|
|
|
|
|
|
def _GetRequiredNamespaceImport( completion ):
|
|
|
|
if ( 'extra_data' not in completion
|
|
|
|
or 'required_namespace_import' not in completion[ 'extra_data' ] ):
|
|
|
|
return None
|
|
|
|
return completion[ 'extra_data' ][ 'required_namespace_import' ]
|
|
|
|
|
|
|
|
|
|
|
|
def _GetFixItCompletion( completion ):
|
|
|
|
if ( 'extra_data' not in completion
|
|
|
|
or 'fixits' not in completion[ 'extra_data' ] ):
|
|
|
|
return None
|
|
|
|
|
|
|
|
return completion[ 'extra_data' ][ 'fixits' ]
|
|
|
|
|
|
|
|
|
2018-03-26 21:22:31 -04:00
|
|
|
def _FilterToMatchingCompletions( completed_item, completions ):
|
2018-03-26 21:22:31 -04:00
|
|
|
"""Filter to completions matching the item Vim said was completed"""
|
2018-03-26 21:22:31 -04:00
|
|
|
match_keys = [ 'word', 'abbr', 'menu', 'info' ]
|
|
|
|
matched_completions = []
|
2018-03-26 21:22:31 -04:00
|
|
|
for index, completion in enumerate( completions ):
|
|
|
|
item = _ConvertCompletionDataToVimData( index, completion )
|
|
|
|
|
|
|
|
def matcher( key ):
|
|
|
|
return ( ToUnicode( completed_item.get( key, "" ) ) ==
|
|
|
|
ToUnicode( item.get( key, "" ) ) )
|
|
|
|
|
2018-05-03 07:11:19 -04:00
|
|
|
if all( matcher( i ) for i in match_keys ):
|
2018-03-26 21:22:31 -04:00
|
|
|
matched_completions.append( completion )
|
|
|
|
return matched_completions
|
2018-03-26 21:22:31 -04:00
|
|
|
|
|
|
|
|
2018-10-28 14:31:19 -04:00
|
|
|
def _GetCompletionInfoField( completion_data ):
|
|
|
|
info = completion_data.get( 'detailed_info', '' )
|
|
|
|
|
|
|
|
if 'extra_data' in completion_data:
|
|
|
|
docstring = completion_data[ 'extra_data' ].get( 'doc_string', '' )
|
|
|
|
if docstring:
|
|
|
|
if info:
|
|
|
|
info += '\n' + docstring
|
|
|
|
else:
|
|
|
|
info = docstring
|
|
|
|
|
|
|
|
# This field may contain null characters e.g. \x00 in Python docstrings. Vim
|
|
|
|
# cannot evaluate such characters so they are removed.
|
|
|
|
return info.replace( '\x00', '' )
|
|
|
|
|
|
|
|
|
2018-03-26 21:22:31 -04:00
|
|
|
def _ConvertCompletionDataToVimData( completion_identifier, completion_data ):
|
2018-10-28 14:31:19 -04:00
|
|
|
# See :h complete-items for a description of the dictionary fields.
|
|
|
|
return {
|
|
|
|
'word' : completion_data[ 'insertion_text' ],
|
|
|
|
'abbr' : completion_data.get( 'menu_text', '' ),
|
|
|
|
'menu' : completion_data.get( 'extra_menu_info', '' ),
|
|
|
|
'info' : _GetCompletionInfoField( completion_data ),
|
|
|
|
'kind' : ToUnicode( completion_data.get( 'kind', '' ) )[ :1 ].lower(),
|
|
|
|
'dup' : 1,
|
|
|
|
'empty' : 1,
|
|
|
|
# We store the completion item index as a string in the completion
|
|
|
|
# user_data. This allows us to identify the _exact_ item that was completed
|
|
|
|
# in the CompleteDone handler, by inspecting this item from v:completed_item
|
|
|
|
#
|
|
|
|
# We convert to string because completion user data items must be strings.
|
|
|
|
#
|
|
|
|
# Note: Not all versions of Vim support this (added in 8.0.1483), but adding
|
|
|
|
# the item to the dictionary is harmless in earlier Vims.
|
|
|
|
'user_data': str( completion_identifier )
|
2013-09-20 20:24:34 -04:00
|
|
|
}
|
|
|
|
|
2014-06-02 18:15:45 -04:00
|
|
|
|
2015-08-28 10:26:18 -04:00
|
|
|
def _ConvertCompletionDatasToVimDatas( response_data ):
|
2018-03-26 21:22:31 -04:00
|
|
|
return [ _ConvertCompletionDataToVimData( i, x )
|
2018-02-10 18:48:22 -05:00
|
|
|
for i, x in enumerate( response_data ) ]
|