1
0

omni_completer.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. if not self._omnifunc:
  41. return False
  42. if self.ShouldUseCache():
  43. return super( OmniCompleter, self ).ShouldUseNow( request_data )
  44. return self.ShouldUseNowInner( request_data )
  45. def ShouldUseNowInner( self, request_data ):
  46. if not self._omnifunc:
  47. return False
  48. return super( OmniCompleter, self ).ShouldUseNowInner( request_data )
  49. def ComputeCandidates( self, request_data ):
  50. if self.ShouldUseCache():
  51. return super( OmniCompleter, self ).ComputeCandidates( request_data )
  52. else:
  53. if self.ShouldUseNowInner( request_data ):
  54. return self.ComputeCandidatesInner( request_data )
  55. return []
  56. def ComputeCandidatesInner( self, request_data ):
  57. if not self._omnifunc:
  58. return []
  59. try:
  60. return_value = int( vim.eval( self._omnifunc + '(1,"")' ) )
  61. if return_value < 0:
  62. # FIXME: Technically, if the return is -1 we should raise an error
  63. return []
  64. omnifunc_call = [ self._omnifunc,
  65. "(0,'",
  66. vimsupport.EscapeForVim( request_data[ 'query' ] ),
  67. "')" ]
  68. items = vim.eval( ''.join( omnifunc_call ) )
  69. if isinstance( items, dict ) and 'words' in items:
  70. items = items[ 'words' ]
  71. if not hasattr( items, '__iter__' ):
  72. raise TypeError( OMNIFUNC_NOT_LIST )
  73. return list( filter( bool, items ) )
  74. except ( TypeError, ValueError, vim.error ) as error:
  75. vimsupport.PostVimMessage(
  76. OMNIFUNC_RETURNED_BAD_VALUE + ' ' + str( error ) )
  77. return []
  78. def OnFileReadyToParse( self, request_data ):
  79. self._omnifunc = utils.ToUnicode( vim.eval( '&omnifunc' ) )
  80. def FilterAndSortCandidatesInner( self, candidates, sort_property, query ):
  81. request_data = {
  82. 'candidates': candidates,
  83. 'sort_property': sort_property,
  84. 'query': query
  85. }
  86. with HandleServerException():
  87. return BaseRequest.PostDataToHandler( request_data,
  88. 'filter_and_sort_candidates' )
  89. return candidates