command_request.py 5.8 KB

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