command_request.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # Copyright (C) 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. from ycm.client.base_request import ( BaseRequest, BuildRequestData,
  24. HandleServerException )
  25. from ycm import vimsupport
  26. from ycmd.utils import ToUnicode
  27. def _EnsureBackwardsCompatibility( arguments ):
  28. if arguments and arguments[ 0 ] == 'GoToDefinitionElseDeclaration':
  29. arguments[ 0 ] = 'GoTo'
  30. return arguments
  31. class CommandRequest( BaseRequest ):
  32. def __init__( self, arguments, completer_target = None ):
  33. super( CommandRequest, self ).__init__()
  34. self._arguments = _EnsureBackwardsCompatibility( arguments )
  35. self._completer_target = ( completer_target if completer_target
  36. else 'filetype_default' )
  37. self._response = None
  38. def Start( self ):
  39. request_data = BuildRequestData()
  40. request_data.update( {
  41. 'completer_target': self._completer_target,
  42. 'command_arguments': self._arguments
  43. } )
  44. with HandleServerException():
  45. self._response = self.PostDataToHandler( request_data,
  46. 'run_completer_command' )
  47. def Response( self ):
  48. return self._response
  49. def RunPostCommandActionsIfNeeded( self ):
  50. if not self.Done() or self._response is None:
  51. return
  52. # If not a dictionary or a list, the response is necessarily a
  53. # scalar: boolean, number, string, etc. In this case, we print
  54. # it to the user.
  55. if not isinstance( self._response, ( dict, list ) ):
  56. return self._HandleBasicResponse()
  57. if 'fixits' in self._response:
  58. return self._HandleFixitResponse()
  59. if 'message' in self._response:
  60. return self._HandleMessageResponse()
  61. if 'detailed_info' in self._response:
  62. return self._HandleDetailedInfoResponse()
  63. # The only other type of response we understand is GoTo, and that is the
  64. # only one that we can't detect just by inspecting the response (it should
  65. # either be a single location or a list)
  66. return self._HandleGotoResponse()
  67. def _HandleGotoResponse( self ):
  68. if isinstance( self._response, list ):
  69. vimsupport.SetQuickFixList(
  70. [ _BuildQfListItem( x ) for x in self._response ] )
  71. vimsupport.OpenQuickFixList( focus = True, autoclose = True )
  72. else:
  73. vimsupport.JumpToLocation( self._response[ 'filepath' ],
  74. self._response[ 'line_num' ],
  75. self._response[ 'column_num' ] )
  76. def _HandleFixitResponse( self ):
  77. if not len( self._response[ 'fixits' ] ):
  78. vimsupport.PostVimMessage( 'No fixits found for current line',
  79. warning = False )
  80. else:
  81. try:
  82. fixit_index = 0
  83. # When there are multiple fixit suggestions, present them as a list to
  84. # the user hand have her choose which one to apply.
  85. if len( self._response[ 'fixits' ] ) > 1:
  86. fixit_index = vimsupport.SelectFromList(
  87. "Multiple FixIt suggestions are available at this location. "
  88. "Which one would you like to apply?",
  89. [ fixit[ 'text' ] for fixit in self._response[ 'fixits' ] ] )
  90. vimsupport.ReplaceChunks(
  91. self._response[ 'fixits' ][ fixit_index ][ 'chunks' ] )
  92. except RuntimeError as e:
  93. vimsupport.PostVimMessage( str( e ) )
  94. def _HandleBasicResponse( self ):
  95. vimsupport.PostVimMessage( self._response, warning = False )
  96. def _HandleMessageResponse( self ):
  97. vimsupport.PostVimMessage( self._response[ 'message' ], warning = False )
  98. def _HandleDetailedInfoResponse( self ):
  99. vimsupport.WriteToPreviewWindow( self._response[ 'detailed_info' ] )
  100. def SendCommandRequest( arguments, completer ):
  101. request = CommandRequest( arguments, completer )
  102. # This is a blocking call.
  103. request.Start()
  104. request.RunPostCommandActionsIfNeeded()
  105. return request.Response()
  106. def _BuildQfListItem( goto_data_item ):
  107. qf_item = {}
  108. if 'filepath' in goto_data_item:
  109. qf_item[ 'filename' ] = ToUnicode( goto_data_item[ 'filepath' ] )
  110. if 'description' in goto_data_item:
  111. qf_item[ 'text' ] = ToUnicode( goto_data_item[ 'description' ] )
  112. if 'line_num' in goto_data_item:
  113. qf_item[ 'lnum' ] = goto_data_item[ 'line_num' ]
  114. if 'column_num' in goto_data_item:
  115. # ycmd returns columns 1-based, and QuickFix lists require "byte offsets".
  116. # See :help getqflist and equivalent comment in
  117. # vimsupport.ConvertDiagnosticsToQfList.
  118. #
  119. # When the Vim help says "byte index", it really means "1-based column
  120. # number" (which is somewhat confusing). :help getqflist states "first
  121. # column is 1".
  122. qf_item[ 'col' ] = goto_data_item[ 'column_num' ]
  123. return qf_item