2013-09-20 20:24:34 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
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/>.
|
|
|
|
|
2014-05-13 16:09:19 -04:00
|
|
|
from ycmd.utils import ToUtf8IfNeeded
|
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 )
|
2015-08-16 10:17:12 -04:00
|
|
|
import os
|
2013-09-20 20:24:34 -04:00
|
|
|
|
2013-10-14 14:08:15 -04:00
|
|
|
TIMEOUT_SECONDS = 0.5
|
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
|
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,
|
2013-10-14 14:08:15 -04:00
|
|
|
'completions',
|
|
|
|
TIMEOUT_SECONDS )
|
2013-10-01 19:21:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
def Done( self ):
|
|
|
|
return self._response_future.done()
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
|
2013-10-01 19:21:17 -04:00
|
|
|
def Response( self ):
|
|
|
|
if not self._response_future:
|
2013-09-20 20:24:34 -04:00
|
|
|
return []
|
|
|
|
try:
|
2015-08-07 14:16:07 -04:00
|
|
|
response = JsonFromFuture( self._response_future )
|
|
|
|
|
|
|
|
errors = response['errors'] if 'errors' in response else []
|
|
|
|
for e in errors:
|
|
|
|
HandleServerException( MakeServerException( e ) )
|
|
|
|
|
|
|
|
return _ConvertCompletionResponseToVimDatas( response )
|
2013-09-20 20:24:34 -04:00
|
|
|
except Exception as e:
|
2014-12-09 18:22:58 -05:00
|
|
|
HandleServerException( e )
|
2015-08-07 14:16:07 -04:00
|
|
|
|
2013-10-08 19:21:43 -04:00
|
|
|
return []
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
def _ConvertCompletionDataToVimData( completion_data ):
|
|
|
|
# see :h complete-items for a description of the dictionary fields
|
|
|
|
vim_data = {
|
2014-01-15 14:24:30 -05:00
|
|
|
'word' : ToUtf8IfNeeded( completion_data[ 'insertion_text' ] ),
|
2013-09-20 20:24:34 -04:00
|
|
|
'dup' : 1,
|
|
|
|
}
|
|
|
|
|
2015-08-16 10:17:12 -04:00
|
|
|
if ( 'extra_data' in completion_data and
|
|
|
|
'doc_string' in completion_data[ 'extra_data' ] ):
|
|
|
|
doc_string = ToUtf8IfNeeded(
|
|
|
|
completion_data[ 'extra_data' ][ 'doc_string' ] )
|
|
|
|
else:
|
|
|
|
doc_string = ""
|
|
|
|
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'menu_text' in completion_data:
|
2014-01-15 14:24:30 -05:00
|
|
|
vim_data[ 'abbr' ] = ToUtf8IfNeeded( completion_data[ 'menu_text' ] )
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'extra_menu_info' in completion_data:
|
2014-01-15 14:24:30 -05:00
|
|
|
vim_data[ 'menu' ] = ToUtf8IfNeeded( completion_data[ 'extra_menu_info' ] )
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'kind' in completion_data:
|
2014-06-03 17:49:53 -04:00
|
|
|
vim_data[ 'kind' ] = ToUtf8IfNeeded(
|
|
|
|
completion_data[ 'kind' ] )[ 0 ].lower()
|
2013-09-20 20:24:34 -04:00
|
|
|
if 'detailed_info' in completion_data:
|
2014-01-15 14:24:30 -05:00
|
|
|
vim_data[ 'info' ] = ToUtf8IfNeeded( completion_data[ 'detailed_info' ] )
|
2015-08-16 10:17:12 -04:00
|
|
|
if doc_string:
|
|
|
|
vim_data[ 'info' ] += os.linesep + doc_string
|
|
|
|
elif doc_string:
|
|
|
|
vim_data[ 'info' ] = doc_string
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
return vim_data
|
2014-06-02 18:15:45 -04:00
|
|
|
|
|
|
|
|
|
|
|
def _ConvertCompletionResponseToVimDatas( response_data ):
|
|
|
|
return [ _ConvertCompletionDataToVimData( x )
|
|
|
|
for x in response_data[ 'completions' ] ]
|