2014-01-13 14:08:43 -05:00
|
|
|
# Copyright (C) 2013 Google Inc.
|
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
|
|
|
|
|
|
|
|
from ycmd.utils import ToUnicode
|
2014-12-09 18:22:58 -05:00
|
|
|
from ycm.client.base_request import ( BaseRequest, JsonFromFuture,
|
2015-08-07 14:16:07 -04:00
|
|
|
HandleServerException,
|
|
|
|
MakeServerException )
|
2013-09-20 20:24:34 -04:00
|
|
|
|
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
|
2017-02-04 15:46:54 -05:00
|
|
|
self._response = { 'completions': [], 'completion_start_column': -1 }
|
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
|
|
|
|
|
|
|
|
2015-08-28 10:26:18 -04:00
|
|
|
def RawResponse( self ):
|
2013-10-01 19:21:17 -04:00
|
|
|
if not self._response_future:
|
2017-02-04 15:46:54 -05:00
|
|
|
return self._response
|
|
|
|
|
2016-11-05 09:57:02 -04:00
|
|
|
with HandleServerException( truncate = True ):
|
2017-02-04 15:46:54 -05:00
|
|
|
self._response = JsonFromFuture( self._response_future )
|
2015-08-07 14:16:07 -04:00
|
|
|
|
2017-02-04 15:46:54 -05:00
|
|
|
# Vim may not be able to convert the 'errors' entry to its internal format
|
|
|
|
# so we remove it from the response.
|
|
|
|
errors = self._response.pop( 'errors', [] )
|
2015-08-07 14:16:07 -04:00
|
|
|
for e in errors:
|
2016-11-05 09:57:02 -04:00
|
|
|
with HandleServerException( truncate = True ):
|
|
|
|
raise MakeServerException( e )
|
2015-08-07 14:16:07 -04:00
|
|
|
|
2017-02-04 15:46:54 -05:00
|
|
|
return self._response
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
|
2015-08-28 10:26:18 -04:00
|
|
|
def Response( self ):
|
2017-02-04 15:46:54 -05:00
|
|
|
response = self.RawResponse()
|
|
|
|
response[ 'completions' ] = _ConvertCompletionDatasToVimDatas(
|
|
|
|
response[ 'completions' ] )
|
|
|
|
return response
|
2015-08-28 10:26:18 -04:00
|
|
|
|
|
|
|
|
2018-02-10 18:48:22 -05:00
|
|
|
def ConvertCompletionDataToVimData( completion_identifier, completion_data ):
|
2013-09-20 20:24:34 -04:00
|
|
|
# see :h complete-items for a description of the dictionary fields
|
|
|
|
vim_data = {
|
2016-01-02 17:55:49 -05:00
|
|
|
'word' : '',
|
|
|
|
'dup' : 1,
|
|
|
|
'empty' : 1,
|
2013-09-20 20:24:34 -04:00
|
|
|
}
|
|
|
|
|
2015-08-16 10:17:12 -04:00
|
|
|
if ( 'extra_data' in completion_data and
|
|
|
|
'doc_string' in completion_data[ 'extra_data' ] ):
|
2016-02-27 19:12:24 -05:00
|
|
|
doc_string = completion_data[ 'extra_data' ][ 'doc_string' ]
|
2015-08-16 10:17:12 -04:00
|
|
|
else:
|
|
|
|
doc_string = ""
|
|
|
|
|
2016-01-02 17:55:49 -05:00
|
|
|
if 'insertion_text' in completion_data:
|
2016-02-27 19:12:24 -05:00
|
|
|
vim_data[ 'word' ] = completion_data[ 'insertion_text' ]
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'menu_text' in completion_data:
|
2016-02-27 19:12:24 -05:00
|
|
|
vim_data[ 'abbr' ] = completion_data[ 'menu_text' ]
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'extra_menu_info' in completion_data:
|
2016-02-27 19:12:24 -05:00
|
|
|
vim_data[ 'menu' ] = completion_data[ 'extra_menu_info' ]
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'kind' in completion_data:
|
2016-02-19 14:02:58 -05:00
|
|
|
kind = ToUnicode( completion_data[ 'kind' ] )
|
|
|
|
if kind:
|
2016-02-27 19:12:24 -05:00
|
|
|
vim_data[ 'kind' ] = kind[ 0 ].lower()
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'detailed_info' in completion_data:
|
2016-02-27 19:12:24 -05:00
|
|
|
vim_data[ 'info' ] = completion_data[ 'detailed_info' ]
|
2015-08-16 10:17:12 -04:00
|
|
|
if doc_string:
|
2015-09-06 15:07:42 -04:00
|
|
|
vim_data[ 'info' ] += '\n' + doc_string
|
2015-08-16 10:17:12 -04:00
|
|
|
elif doc_string:
|
|
|
|
vim_data[ 'info' ] = doc_string
|
2013-09-20 20:24:34 -04:00
|
|
|
|
2018-02-10 18:48:22 -05:00
|
|
|
# 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.
|
|
|
|
vim_data[ 'user_data' ] = str( completion_identifier )
|
|
|
|
|
2013-09-20 20:24:34 -04:00
|
|
|
return vim_data
|
2014-06-02 18:15:45 -04:00
|
|
|
|
|
|
|
|
2015-08-28 10:26:18 -04:00
|
|
|
def _ConvertCompletionDatasToVimDatas( response_data ):
|
2018-02-10 18:48:22 -05:00
|
|
|
return [ ConvertCompletionDataToVimData( i, x )
|
|
|
|
for i, x in enumerate( response_data ) ]
|