omni_completer.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # Copyright (C) 2011, 2012, 2013 Google Inc.
  2. #
  3. # This file is part of YouCompleteMe.
  4. #
  5. # YouCompleteMe is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # YouCompleteMe is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
  17. from __future__ import unicode_literals
  18. from __future__ import print_function
  19. from __future__ import division
  20. from __future__ import absolute_import
  21. # Not installing aliases from python-future; it's unreliable and slow.
  22. from builtins import * # noqa
  23. import vim
  24. from ycm import vimsupport
  25. from ycmd import utils
  26. from ycmd.completers.completer import Completer
  27. from ycm.client.base_request import BaseRequest, HandleServerException
  28. OMNIFUNC_RETURNED_BAD_VALUE = 'Omnifunc returned bad value to YCM!'
  29. OMNIFUNC_NOT_LIST = ( 'Omnifunc did not return a list or a dict with a "words" '
  30. ' list when expected.' )
  31. class OmniCompleter( Completer ):
  32. def __init__( self, user_options ):
  33. super( OmniCompleter, self ).__init__( user_options )
  34. self._omnifunc = None
  35. def SupportedFiletypes( self ):
  36. return []
  37. def ShouldUseCache( self ):
  38. return bool( self.user_options[ 'cache_omnifunc' ] )
  39. def ShouldUseNow( self, request_data ):
  40. self._omnifunc = utils.ToUnicode( vim.eval( '&omnifunc' ) )
  41. if not self._omnifunc:
  42. return False
  43. if self.ShouldUseCache():
  44. return super( OmniCompleter, self ).ShouldUseNow( request_data )
  45. return self.ShouldUseNowInner( request_data )
  46. def ShouldUseNowInner( self, request_data ):
  47. if request_data[ 'force_semantic' ]:
  48. return True
  49. disabled_filetypes = self.user_options[
  50. 'filetype_specific_completion_to_disable' ]
  51. if not vimsupport.CurrentFiletypesEnabled( disabled_filetypes ):
  52. return False
  53. return super( OmniCompleter, self ).ShouldUseNowInner( request_data )
  54. def ComputeCandidates( self, request_data ):
  55. if self.ShouldUseCache():
  56. return super( OmniCompleter, self ).ComputeCandidates( request_data )
  57. if self.ShouldUseNowInner( request_data ):
  58. return self.ComputeCandidatesInner( request_data )
  59. return []
  60. def ComputeCandidatesInner( self, request_data ):
  61. if not self._omnifunc:
  62. return []
  63. try:
  64. return_value = vimsupport.GetIntValue( self._omnifunc + '(1,"")' )
  65. if return_value < 0:
  66. # FIXME: Technically, if the return is -1 we should raise an error
  67. return []
  68. # Use the start column calculated by the omnifunc, rather than our own
  69. # interpretation. This is important for certain languages where our
  70. # identifier detection is either incorrect or not compatible with the
  71. # behaviour of the omnifunc. Note: do this before calling the omnifunc
  72. # because it affects the value returned by 'query'
  73. request_data[ 'start_column' ] = return_value + 1
  74. # Calling directly the omnifunc may move the cursor position. This is the
  75. # case with the default Vim omnifunc for C-family languages
  76. # (ccomplete#Complete) which calls searchdecl to find a declaration. This
  77. # function is supposed to move the cursor to the found declaration but it
  78. # doesn't when called through the omni completion mapping (CTRL-X CTRL-O).
  79. # So, we restore the cursor position after calling the omnifunc.
  80. line, column = vimsupport.CurrentLineAndColumn()
  81. omnifunc_call = [ self._omnifunc,
  82. "(0,'",
  83. vimsupport.EscapeForVim( request_data[ 'query' ] ),
  84. "')" ]
  85. items = vim.eval( ''.join( omnifunc_call ) )
  86. vimsupport.SetCurrentLineAndColumn( line, column )
  87. if isinstance( items, dict ) and 'words' in items:
  88. items = items[ 'words' ]
  89. if not hasattr( items, '__iter__' ):
  90. raise TypeError( OMNIFUNC_NOT_LIST )
  91. return list( filter( bool, items ) )
  92. except ( TypeError, ValueError, vim.error ) as error:
  93. vimsupport.PostVimMessage(
  94. OMNIFUNC_RETURNED_BAD_VALUE + ' ' + str( error ) )
  95. return []
  96. def FilterAndSortCandidatesInner( self, candidates, sort_property, query ):
  97. request_data = {
  98. 'candidates': candidates,
  99. 'sort_property': sort_property,
  100. 'query': query
  101. }
  102. with HandleServerException():
  103. return BaseRequest.PostDataToHandler( request_data,
  104. 'filter_and_sort_candidates' )
  105. return candidates