2014-01-13 11:08:43 -08:00
|
|
|
# Copyright (C) 2013 Google Inc.
|
2013-09-20 17:24:34 -07: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 16:12:24 -08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from __future__ import print_function
|
|
|
|
from __future__ import division
|
|
|
|
from __future__ import absolute_import
|
2017-03-09 15:57:27 +01:00
|
|
|
# Not installing aliases from python-future; it's unreliable and slow.
|
2016-02-27 16:12:24 -08:00
|
|
|
from builtins import * # noqa
|
|
|
|
|
|
|
|
from ycmd.utils import ToUnicode
|
2014-12-09 15:22:58 -08:00
|
|
|
from ycm.client.base_request import ( BaseRequest, JsonFromFuture,
|
2015-08-07 19:16:07 +01:00
|
|
|
HandleServerException,
|
|
|
|
MakeServerException )
|
2013-09-20 17:24:34 -07:00
|
|
|
|
2015-09-06 20:07:42 +01:00
|
|
|
|
2013-09-20 17:24:34 -07:00
|
|
|
class CompletionRequest( BaseRequest ):
|
2014-05-27 17:38:34 -07:00
|
|
|
def __init__( self, request_data ):
|
2013-09-20 17:24:34 -07:00
|
|
|
super( CompletionRequest, self ).__init__()
|
2014-05-27 17:38:34 -07:00
|
|
|
self.request_data = request_data
|
2016-12-07 01:02:00 +01:00
|
|
|
self._response_future = None
|
2017-02-04 21:46:54 +01:00
|
|
|
self._response = { 'completions': [], 'completion_start_column': -1 }
|
2013-09-20 17:24:34 -07:00
|
|
|
|
|
|
|
|
2014-05-27 14:29:19 -07:00
|
|
|
def Start( self ):
|
2013-10-07 15:47:48 -07:00
|
|
|
self._response_future = self.PostDataToHandlerAsync( self.request_data,
|
2017-02-04 21:46:54 +01:00
|
|
|
'completions' )
|
2013-10-01 16:21:17 -07:00
|
|
|
|
|
|
|
|
|
|
|
def Done( self ):
|
2016-12-07 01:02:00 +01:00
|
|
|
return bool( self._response_future ) and self._response_future.done()
|
2013-09-20 17:24:34 -07:00
|
|
|
|
|
|
|
|
2015-08-28 08:26:18 -06:00
|
|
|
def RawResponse( self ):
|
2013-10-01 16:21:17 -07:00
|
|
|
if not self._response_future:
|
2017-02-04 21:46:54 +01:00
|
|
|
return self._response
|
|
|
|
|
2016-11-05 14:57:02 +01:00
|
|
|
with HandleServerException( truncate = True ):
|
2017-02-04 21:46:54 +01:00
|
|
|
self._response = JsonFromFuture( self._response_future )
|
2015-08-07 19:16:07 +01:00
|
|
|
|
2017-02-04 21:46:54 +01: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 19:16:07 +01:00
|
|
|
for e in errors:
|
2016-11-05 14:57:02 +01:00
|
|
|
with HandleServerException( truncate = True ):
|
|
|
|
raise MakeServerException( e )
|
2015-08-07 19:16:07 +01:00
|
|
|
|
2017-02-04 21:46:54 +01:00
|
|
|
return self._response
|
2013-09-20 17:24:34 -07:00
|
|
|
|
|
|
|
|
2015-08-28 08:26:18 -06:00
|
|
|
def Response( self ):
|
2017-02-04 21:46:54 +01:00
|
|
|
response = self.RawResponse()
|
|
|
|
response[ 'completions' ] = _ConvertCompletionDatasToVimDatas(
|
|
|
|
response[ 'completions' ] )
|
|
|
|
return response
|
2015-08-28 08:26:18 -06:00
|
|
|
|
|
|
|
|
2015-09-09 08:27:15 -06:00
|
|
|
def ConvertCompletionDataToVimData( completion_data ):
|
2013-09-20 17:24:34 -07:00
|
|
|
# see :h complete-items for a description of the dictionary fields
|
|
|
|
vim_data = {
|
2016-01-02 20:55:49 -02:00
|
|
|
'word' : '',
|
|
|
|
'dup' : 1,
|
|
|
|
'empty' : 1,
|
2013-09-20 17:24:34 -07:00
|
|
|
}
|
|
|
|
|
2015-08-16 15:17:12 +01:00
|
|
|
if ( 'extra_data' in completion_data and
|
|
|
|
'doc_string' in completion_data[ 'extra_data' ] ):
|
2016-02-27 16:12:24 -08:00
|
|
|
doc_string = completion_data[ 'extra_data' ][ 'doc_string' ]
|
2015-08-16 15:17:12 +01:00
|
|
|
else:
|
|
|
|
doc_string = ""
|
|
|
|
|
2016-01-02 20:55:49 -02:00
|
|
|
if 'insertion_text' in completion_data:
|
2016-02-27 16:12:24 -08:00
|
|
|
vim_data[ 'word' ] = completion_data[ 'insertion_text' ]
|
2013-09-20 17:24:34 -07:00
|
|
|
if 'menu_text' in completion_data:
|
2016-02-27 16:12:24 -08:00
|
|
|
vim_data[ 'abbr' ] = completion_data[ 'menu_text' ]
|
2013-09-20 17:24:34 -07:00
|
|
|
if 'extra_menu_info' in completion_data:
|
2016-02-27 16:12:24 -08:00
|
|
|
vim_data[ 'menu' ] = completion_data[ 'extra_menu_info' ]
|
2013-09-20 17:24:34 -07:00
|
|
|
if 'kind' in completion_data:
|
2016-02-19 11:02:58 -08:00
|
|
|
kind = ToUnicode( completion_data[ 'kind' ] )
|
|
|
|
if kind:
|
2016-02-27 16:12:24 -08:00
|
|
|
vim_data[ 'kind' ] = kind[ 0 ].lower()
|
2013-09-20 17:24:34 -07:00
|
|
|
if 'detailed_info' in completion_data:
|
2016-02-27 16:12:24 -08:00
|
|
|
vim_data[ 'info' ] = completion_data[ 'detailed_info' ]
|
2015-08-16 15:17:12 +01:00
|
|
|
if doc_string:
|
2015-09-06 20:07:42 +01:00
|
|
|
vim_data[ 'info' ] += '\n' + doc_string
|
2015-08-16 15:17:12 +01:00
|
|
|
elif doc_string:
|
|
|
|
vim_data[ 'info' ] = doc_string
|
2013-09-20 17:24:34 -07:00
|
|
|
|
|
|
|
return vim_data
|
2014-06-02 15:15:45 -07:00
|
|
|
|
|
|
|
|
2015-08-28 08:26:18 -06:00
|
|
|
def _ConvertCompletionDatasToVimDatas( response_data ):
|
2015-09-09 08:27:15 -06:00
|
|
|
return [ ConvertCompletionDataToVimData( x )
|
2015-08-28 08:26:18 -06:00
|
|
|
for x in response_data ]
|