youcompleteme.py 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. # Copyright (C) 2011-2018 YouCompleteMe contributors
  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. import base64
  18. import json
  19. import logging
  20. import os
  21. import signal
  22. import vim
  23. from subprocess import PIPE
  24. from tempfile import NamedTemporaryFile
  25. from ycm import base, paths, signature_help, vimsupport
  26. from ycm.buffer import BufferDict
  27. from ycmd import utils
  28. from ycmd.request_wrap import RequestWrap
  29. from ycm.omni_completer import OmniCompleter
  30. from ycm import syntax_parse
  31. from ycm.client.ycmd_keepalive import YcmdKeepalive
  32. from ycm.client.base_request import BaseRequest, BuildRequestData
  33. from ycm.client.completer_available_request import SendCompleterAvailableRequest
  34. from ycm.client.command_request import ( SendCommandRequest,
  35. SendCommandRequestAsync,
  36. GetCommandResponse )
  37. from ycm.client.completion_request import CompletionRequest
  38. from ycm.client.resolve_completion_request import ResolveCompletionItem
  39. from ycm.client.signature_help_request import ( SignatureHelpRequest,
  40. SigHelpAvailableByFileType )
  41. from ycm.client.debug_info_request import ( SendDebugInfoRequest,
  42. FormatDebugInfoResponse )
  43. from ycm.client.omni_completion_request import OmniCompletionRequest
  44. from ycm.client.event_notification import SendEventNotificationAsync
  45. from ycm.client.shutdown_request import SendShutdownRequest
  46. from ycm.client.messages_request import MessagesPoll
  47. def PatchNoProxy():
  48. current_value = os.environ.get( 'no_proxy', '' )
  49. additions = '127.0.0.1,localhost'
  50. os.environ[ 'no_proxy' ] = ( additions if not current_value
  51. else current_value + ',' + additions )
  52. # We need this so that Requests doesn't end up using the local HTTP proxy when
  53. # talking to ycmd. Users should actually be setting this themselves when
  54. # configuring a proxy server on their machine, but most don't know they need to
  55. # or how to do it, so we do it for them.
  56. # Relevant issues:
  57. # https://github.com/Valloric/YouCompleteMe/issues/641
  58. # https://github.com/kennethreitz/requests/issues/879
  59. PatchNoProxy()
  60. # Force the Python interpreter embedded in Vim (in which we are running) to
  61. # ignore the SIGINT signal. This helps reduce the fallout of a user pressing
  62. # Ctrl-C in Vim.
  63. signal.signal( signal.SIGINT, signal.SIG_IGN )
  64. HMAC_SECRET_LENGTH = 16
  65. SERVER_SHUTDOWN_MESSAGE = (
  66. "The ycmd server SHUT DOWN (restart with ':YcmRestartServer')." )
  67. EXIT_CODE_UNEXPECTED_MESSAGE = (
  68. "Unexpected exit code {code}. "
  69. "Type ':YcmToggleLogs {logfile}' to check the logs." )
  70. CORE_UNEXPECTED_MESSAGE = (
  71. "Unexpected error while loading the YCM core library. "
  72. "Type ':YcmToggleLogs {logfile}' to check the logs." )
  73. CORE_MISSING_MESSAGE = (
  74. 'YCM core library not detected; you need to compile YCM before using it. '
  75. 'Follow the instructions in the documentation.' )
  76. CORE_OUTDATED_MESSAGE = (
  77. 'YCM core library too old; PLEASE RECOMPILE by running the install.py '
  78. 'script. See the documentation for more details.' )
  79. NO_PYTHON2_SUPPORT_MESSAGE = (
  80. 'YCM has dropped support for python2. '
  81. 'You need to recompile it with python3 instead.' )
  82. SERVER_IDLE_SUICIDE_SECONDS = 1800 # 30 minutes
  83. CLIENT_LOGFILE_FORMAT = 'ycm_'
  84. SERVER_LOGFILE_FORMAT = 'ycmd_{port}_{std}_'
  85. # Flag to set a file handle inheritable by child processes on Windows. See
  86. # https://msdn.microsoft.com/en-us/library/ms724935.aspx
  87. HANDLE_FLAG_INHERIT = 0x00000001
  88. class YouCompleteMe:
  89. def __init__( self, default_options = {} ):
  90. self._logger = logging.getLogger( 'ycm' )
  91. self._client_logfile = None
  92. self._server_stdout = None
  93. self._server_stderr = None
  94. self._server_popen = None
  95. self._default_options = default_options
  96. self._ycmd_keepalive = YcmdKeepalive()
  97. self._SetUpLogging()
  98. self._SetUpServer()
  99. self._ycmd_keepalive.Start()
  100. def _SetUpServer( self ):
  101. self._available_completers = {}
  102. self._user_notified_about_crash = False
  103. self._filetypes_with_keywords_loaded = set()
  104. self._server_is_ready_with_cache = False
  105. self._message_poll_requests = {}
  106. self._latest_completion_request = None
  107. self._latest_signature_help_request = None
  108. self._signature_help_available_requests = SigHelpAvailableByFileType()
  109. self._latest_command_reqeust = None
  110. self._signature_help_state = signature_help.SignatureHelpState()
  111. self._user_options = base.GetUserOptions( self._default_options )
  112. self._omnicomp = OmniCompleter( self._user_options )
  113. self._buffers = BufferDict( self._user_options )
  114. self._SetLogLevel()
  115. hmac_secret = os.urandom( HMAC_SECRET_LENGTH )
  116. options_dict = dict( self._user_options )
  117. options_dict[ 'hmac_secret' ] = utils.ToUnicode(
  118. base64.b64encode( hmac_secret ) )
  119. options_dict[ 'server_keep_logfiles' ] = self._user_options[
  120. 'keep_logfiles' ]
  121. # The temp options file is deleted by ycmd during startup.
  122. with NamedTemporaryFile( delete = False, mode = 'w+' ) as options_file:
  123. json.dump( options_dict, options_file )
  124. server_port = utils.GetUnusedLocalhostPort()
  125. BaseRequest.server_location = 'http://127.0.0.1:' + str( server_port )
  126. BaseRequest.hmac_secret = hmac_secret
  127. try:
  128. python_interpreter = paths.PathToPythonInterpreter()
  129. except RuntimeError as error:
  130. error_message = (
  131. f"Unable to start the ycmd server. { str( error ).rstrip( '.' ) }. "
  132. "Correct the error then restart the server "
  133. "with ':YcmRestartServer'." )
  134. self._logger.exception( error_message )
  135. vimsupport.PostVimMessage( error_message )
  136. return
  137. args = [ python_interpreter,
  138. paths.PathToServerScript(),
  139. f'--port={ server_port }',
  140. f'--options_file={ options_file.name }',
  141. f'--log={ self._user_options[ "log_level" ] }',
  142. f'--idle_suicide_seconds={ SERVER_IDLE_SUICIDE_SECONDS }' ]
  143. self._server_stdout = utils.CreateLogfile(
  144. SERVER_LOGFILE_FORMAT.format( port = server_port, std = 'stdout' ) )
  145. self._server_stderr = utils.CreateLogfile(
  146. SERVER_LOGFILE_FORMAT.format( port = server_port, std = 'stderr' ) )
  147. args.append( f'--stdout={ self._server_stdout }' )
  148. args.append( f'--stderr={ self._server_stderr }' )
  149. if self._user_options[ 'keep_logfiles' ]:
  150. args.append( '--keep_logfiles' )
  151. self._server_popen = utils.SafePopen( args, stdin_windows = PIPE,
  152. stdout = PIPE, stderr = PIPE )
  153. def _SetUpLogging( self ):
  154. def FreeFileFromOtherProcesses( file_object ):
  155. if utils.OnWindows():
  156. from ctypes import windll
  157. import msvcrt
  158. file_handle = msvcrt.get_osfhandle( file_object.fileno() )
  159. windll.kernel32.SetHandleInformation( file_handle,
  160. HANDLE_FLAG_INHERIT,
  161. 0 )
  162. self._client_logfile = utils.CreateLogfile( CLIENT_LOGFILE_FORMAT )
  163. handler = logging.FileHandler( self._client_logfile )
  164. # On Windows and Python prior to 3.4, file handles are inherited by child
  165. # processes started with at least one replaced standard stream, which is the
  166. # case when we start the ycmd server (we are redirecting all standard
  167. # outputs into a pipe). These files cannot be removed while the child
  168. # processes are still up. This is not desirable for a logfile because we
  169. # want to remove it at Vim exit without having to wait for the ycmd server
  170. # to be completely shut down. We need to make the logfile handle
  171. # non-inheritable. See https://www.python.org/dev/peps/pep-0446 for more
  172. # details.
  173. FreeFileFromOtherProcesses( handler.stream )
  174. formatter = logging.Formatter( '%(asctime)s - %(levelname)s - %(message)s' )
  175. handler.setFormatter( formatter )
  176. self._logger.addHandler( handler )
  177. def _SetLogLevel( self ):
  178. log_level = self._user_options[ 'log_level' ]
  179. numeric_level = getattr( logging, log_level.upper(), None )
  180. if not isinstance( numeric_level, int ):
  181. raise ValueError( f'Invalid log level: { log_level }' )
  182. self._logger.setLevel( numeric_level )
  183. def IsServerAlive( self ):
  184. # When the process hasn't finished yet, poll() returns None.
  185. return bool( self._server_popen ) and self._server_popen.poll() is None
  186. def CheckIfServerIsReady( self ):
  187. if not self._server_is_ready_with_cache and self.IsServerAlive():
  188. self._server_is_ready_with_cache = BaseRequest().GetDataFromHandler(
  189. 'ready', display_message = False )
  190. return self._server_is_ready_with_cache
  191. def IsServerReady( self ):
  192. return self._server_is_ready_with_cache
  193. def NotifyUserIfServerCrashed( self ):
  194. if ( not self._server_popen or self._user_notified_about_crash or
  195. self.IsServerAlive() ):
  196. return
  197. self._user_notified_about_crash = True
  198. return_code = self._server_popen.poll()
  199. logfile = os.path.basename( self._server_stderr )
  200. # See https://github.com/Valloric/ycmd#exit-codes for the list of exit
  201. # codes.
  202. if return_code == 3:
  203. error_message = CORE_UNEXPECTED_MESSAGE.format( logfile = logfile )
  204. elif return_code == 4:
  205. error_message = CORE_MISSING_MESSAGE
  206. elif return_code == 7:
  207. error_message = CORE_OUTDATED_MESSAGE
  208. elif return_code == 8:
  209. error_message = NO_PYTHON2_SUPPORT_MESSAGE
  210. else:
  211. error_message = EXIT_CODE_UNEXPECTED_MESSAGE.format( code = return_code,
  212. logfile = logfile )
  213. if return_code != 8:
  214. error_message = SERVER_SHUTDOWN_MESSAGE + ' ' + error_message
  215. self._logger.error( error_message )
  216. vimsupport.PostVimMessage( error_message )
  217. def ServerPid( self ):
  218. if not self._server_popen:
  219. return -1
  220. return self._server_popen.pid
  221. def _ShutdownServer( self ):
  222. SendShutdownRequest()
  223. def RestartServer( self ):
  224. vimsupport.PostVimMessage( 'Restarting ycmd server...' )
  225. self._ShutdownServer()
  226. self._SetUpServer()
  227. def SendCompletionRequest( self, force_semantic = False ):
  228. request_data = BuildRequestData()
  229. request_data[ 'force_semantic' ] = force_semantic
  230. if not self.NativeFiletypeCompletionUsable():
  231. wrapped_request_data = RequestWrap( request_data )
  232. if self._omnicomp.ShouldUseNow( wrapped_request_data ):
  233. self._latest_completion_request = OmniCompletionRequest(
  234. self._omnicomp, wrapped_request_data )
  235. self._latest_completion_request.Start()
  236. return
  237. self._AddExtraConfDataIfNeeded( request_data )
  238. self._latest_completion_request = CompletionRequest( request_data )
  239. self._latest_completion_request.Start()
  240. def CompletionRequestReady( self ):
  241. return bool( self._latest_completion_request and
  242. self._latest_completion_request.Done() )
  243. def GetCompletionResponse( self ):
  244. return self._latest_completion_request.Response()
  245. def SignatureHelpAvailableRequestComplete( self, filetype, send_new=True ):
  246. """Triggers or polls signature help available request. Returns whether or
  247. not the request is complete. When send_new is False, won't send a new
  248. request, only return the current status (This is used by the tests)"""
  249. if not send_new and filetype not in self._signature_help_available_requests:
  250. return False
  251. return self._signature_help_available_requests[ filetype ].Done()
  252. def SendSignatureHelpRequest( self ):
  253. """Send a signature help request, if we're ready to. Return whether or not a
  254. request was sent (and should be checked later)"""
  255. if not self.NativeFiletypeCompletionUsable():
  256. return False
  257. for filetype in vimsupport.CurrentFiletypes():
  258. if not self.SignatureHelpAvailableRequestComplete( filetype ):
  259. continue
  260. sig_help_available = self._signature_help_available_requests[
  261. filetype ].Response()
  262. if sig_help_available == 'NO':
  263. continue
  264. if sig_help_available == 'PENDING':
  265. # Send another /signature_help_available request
  266. self._signature_help_available_requests[ filetype ].Start( filetype )
  267. continue
  268. if not self._latest_completion_request:
  269. return False
  270. request_data = self._latest_completion_request.request_data.copy()
  271. request_data[ 'signature_help_state' ] = self._signature_help_state.state
  272. self._AddExtraConfDataIfNeeded( request_data )
  273. self._latest_signature_help_request = SignatureHelpRequest( request_data )
  274. self._latest_signature_help_request.Start()
  275. return True
  276. return False
  277. def SignatureHelpRequestReady( self ):
  278. return bool( self._latest_signature_help_request and
  279. self._latest_signature_help_request.Done() )
  280. def GetSignatureHelpResponse( self ):
  281. return self._latest_signature_help_request.Response()
  282. def ClearSignatureHelp( self ):
  283. self.UpdateSignatureHelp( {} )
  284. if self._latest_signature_help_request:
  285. self._latest_signature_help_request.Reset()
  286. def UpdateSignatureHelp( self, signature_info ):
  287. self._signature_help_state = signature_help.UpdateSignatureHelp(
  288. self._signature_help_state,
  289. signature_info )
  290. def _GetCommandRequestArguments( self,
  291. arguments,
  292. has_range,
  293. start_line,
  294. end_line ):
  295. final_arguments = []
  296. for argument in arguments:
  297. # The ft= option which specifies the completer when running a command is
  298. # ignored because it has not been working for a long time. The option is
  299. # still parsed to not break users that rely on it.
  300. if argument.startswith( 'ft=' ):
  301. continue
  302. final_arguments.append( argument )
  303. extra_data = {
  304. 'options': {
  305. 'tab_size': vimsupport.GetIntValue( 'shiftwidth()' ),
  306. 'insert_spaces': vimsupport.GetBoolValue( '&expandtab' )
  307. }
  308. }
  309. if has_range:
  310. extra_data.update( vimsupport.BuildRange( start_line, end_line ) )
  311. self._AddExtraConfDataIfNeeded( extra_data )
  312. return final_arguments, extra_data
  313. def SendCommandRequest( self,
  314. arguments,
  315. modifiers,
  316. has_range,
  317. start_line,
  318. end_line ):
  319. final_arguments, extra_data = self._GetCommandRequestArguments(
  320. arguments,
  321. has_range,
  322. start_line,
  323. end_line )
  324. return SendCommandRequest(
  325. final_arguments,
  326. modifiers,
  327. self._user_options[ 'goto_buffer_command' ],
  328. extra_data )
  329. def GetCommandResponse( self, arguments ):
  330. final_arguments, extra_data = self._GetCommandRequestArguments(
  331. arguments,
  332. False,
  333. 0,
  334. 0 )
  335. return GetCommandResponse( final_arguments, extra_data )
  336. def SendCommandRequestAsync( self, arguments ):
  337. final_arguments, extra_data = self._GetCommandRequestArguments(
  338. arguments,
  339. False,
  340. 0,
  341. 0 )
  342. self._latest_command_reqeust = SendCommandRequestAsync( final_arguments,
  343. extra_data )
  344. def GetCommandRequest( self ):
  345. return self._latest_command_reqeust
  346. def GetDefinedSubcommands( self ):
  347. request = BaseRequest()
  348. subcommands = request.PostDataToHandler( BuildRequestData(),
  349. 'defined_subcommands' )
  350. return subcommands if subcommands else []
  351. def GetCurrentCompletionRequest( self ):
  352. return self._latest_completion_request
  353. def GetOmniCompleter( self ):
  354. return self._omnicomp
  355. def FiletypeCompleterExistsForFiletype( self, filetype ):
  356. try:
  357. return self._available_completers[ filetype ]
  358. except KeyError:
  359. pass
  360. exists_completer = SendCompleterAvailableRequest( filetype )
  361. if exists_completer is None:
  362. return False
  363. self._available_completers[ filetype ] = exists_completer
  364. return exists_completer
  365. def NativeFiletypeCompletionAvailable( self ):
  366. return any( self.FiletypeCompleterExistsForFiletype( x ) for x in
  367. vimsupport.CurrentFiletypes() )
  368. def NativeFiletypeCompletionUsable( self ):
  369. disabled_filetypes = self._user_options[
  370. 'filetype_specific_completion_to_disable' ]
  371. return ( vimsupport.CurrentFiletypesEnabled( disabled_filetypes ) and
  372. self.NativeFiletypeCompletionAvailable() )
  373. def NeedsReparse( self ):
  374. return self.CurrentBuffer().NeedsReparse()
  375. def UpdateWithNewDiagnosticsForFile( self, filepath, diagnostics ):
  376. if not self._user_options[ 'show_diagnostics_ui' ]:
  377. return
  378. bufnr = vimsupport.GetBufferNumberForFilename( filepath )
  379. if bufnr in self._buffers and vimsupport.BufferIsVisible( bufnr ):
  380. # Note: We only update location lists, etc. for visible buffers, because
  381. # otherwise we default to using the current location list and the results
  382. # are that non-visible buffer errors clobber visible ones.
  383. self._buffers[ bufnr ].UpdateWithNewDiagnostics( diagnostics )
  384. else:
  385. # The project contains errors in file "filepath", but that file is not
  386. # open in any buffer. This happens for Language Server Protocol-based
  387. # completers, as they return diagnostics for the entire "project"
  388. # asynchronously (rather than per-file in the response to the parse
  389. # request).
  390. #
  391. # There are a number of possible approaches for
  392. # this, but for now we simply ignore them. Other options include:
  393. # - Use the QuickFix list to report project errors?
  394. # - Use a special buffer for project errors
  395. # - Put them in the location list of whatever the "current" buffer is
  396. # - Store them in case the buffer is opened later
  397. # - add a :YcmProjectDiags command
  398. # - Add them to errror/warning _counts_ but not any actual location list
  399. # or other
  400. # - etc.
  401. #
  402. # However, none of those options are great, and lead to their own
  403. # complexities. So for now, we just ignore these diagnostics for files not
  404. # open in any buffer.
  405. pass
  406. def OnPeriodicTick( self ):
  407. if not self.IsServerAlive():
  408. # Server has died. We'll reset when the server is started again.
  409. return False
  410. elif not self.IsServerReady():
  411. # Try again in a jiffy
  412. return True
  413. for w in vim.windows:
  414. for filetype in vimsupport.FiletypesForBuffer( w.buffer ):
  415. if filetype not in self._message_poll_requests:
  416. self._message_poll_requests[ filetype ] = MessagesPoll( w.buffer )
  417. # None means don't poll this filetype
  418. if ( self._message_poll_requests[ filetype ] and
  419. not self._message_poll_requests[ filetype ].Poll( self ) ):
  420. self._message_poll_requests[ filetype ] = None
  421. return any( self._message_poll_requests.values() )
  422. def OnFileReadyToParse( self ):
  423. if not self.IsServerAlive():
  424. self.NotifyUserIfServerCrashed()
  425. return
  426. if not self.IsServerReady():
  427. return
  428. extra_data = {}
  429. self._AddTagsFilesIfNeeded( extra_data )
  430. self._AddSyntaxDataIfNeeded( extra_data )
  431. self._AddExtraConfDataIfNeeded( extra_data )
  432. self.CurrentBuffer().SendParseRequest( extra_data )
  433. def OnFileSave( self, saved_buffer_number ):
  434. SendEventNotificationAsync( 'FileSave', saved_buffer_number )
  435. def OnBufferUnload( self, deleted_buffer_number ):
  436. SendEventNotificationAsync( 'BufferUnload', deleted_buffer_number )
  437. def UpdateMatches( self ):
  438. self.CurrentBuffer().UpdateMatches()
  439. def OnFileTypeSet( self ):
  440. buffer_number = vimsupport.GetCurrentBufferNumber()
  441. filetypes = vimsupport.CurrentFiletypes()
  442. self._buffers[ buffer_number ].UpdateFromFileTypes( filetypes )
  443. self.OnBufferVisit()
  444. def OnBufferVisit( self ):
  445. for filetype in vimsupport.CurrentFiletypes():
  446. # Send the signature help available request for these filetypes if we need
  447. # to (as a side effect of checking if it is complete)
  448. self.SignatureHelpAvailableRequestComplete( filetype, True )
  449. extra_data = {}
  450. self._AddUltiSnipsDataIfNeeded( extra_data )
  451. SendEventNotificationAsync( 'BufferVisit', extra_data = extra_data )
  452. def CurrentBuffer( self ):
  453. return self._buffers[ vimsupport.GetCurrentBufferNumber() ]
  454. def OnInsertLeave( self ):
  455. SendEventNotificationAsync( 'InsertLeave' )
  456. def OnCursorMoved( self ):
  457. self.CurrentBuffer().OnCursorMoved()
  458. def _CleanLogfile( self ):
  459. logging.shutdown()
  460. if not self._user_options[ 'keep_logfiles' ]:
  461. if self._client_logfile:
  462. utils.RemoveIfExists( self._client_logfile )
  463. def OnVimLeave( self ):
  464. self._ShutdownServer()
  465. self._CleanLogfile()
  466. def OnCurrentIdentifierFinished( self ):
  467. SendEventNotificationAsync( 'CurrentIdentifierFinished' )
  468. def OnCompleteDone( self ):
  469. completion_request = self.GetCurrentCompletionRequest()
  470. if completion_request:
  471. completion_request.OnCompleteDone()
  472. def ResolveCompletionItem( self, item ):
  473. # Note: As mentioned elsewhere, we replace the current completion request
  474. # with a resolve request. It's not valid to have simultaneous resolve and
  475. # completion requests, because the resolve request uses the request data
  476. # from the last completion request and is therefore dependent on it not
  477. # having changed.
  478. #
  479. # The result of this is that self.GetCurrentCompletionRequest() might return
  480. # either a completion request of a resolve request and it's the
  481. # responsibility of the vimscript code to ensure that it only does one at a
  482. # time. This is handled by re-using the same poller for completions and
  483. # resolves.
  484. completion_request = self.GetCurrentCompletionRequest()
  485. if not completion_request:
  486. return False
  487. request = ResolveCompletionItem( completion_request, item )
  488. if not request:
  489. return False
  490. self._latest_completion_request = request
  491. return True
  492. def GetErrorCount( self ):
  493. return self.CurrentBuffer().GetErrorCount()
  494. def GetWarningCount( self ):
  495. return self.CurrentBuffer().GetWarningCount()
  496. def _PopulateLocationListWithLatestDiagnostics( self ):
  497. return self.CurrentBuffer().PopulateLocationList()
  498. def FileParseRequestReady( self ):
  499. # Return True if server is not ready yet, to stop repeating check timer.
  500. return ( not self.IsServerReady() or
  501. self.CurrentBuffer().FileParseRequestReady() )
  502. def HandleFileParseRequest( self, block = False ):
  503. if not self.IsServerReady():
  504. return
  505. current_buffer = self.CurrentBuffer()
  506. # Order is important here:
  507. # FileParseRequestReady has a low cost, while
  508. # NativeFiletypeCompletionUsable is a blocking server request
  509. if ( not current_buffer.IsResponseHandled() and
  510. current_buffer.FileParseRequestReady( block ) and
  511. self.NativeFiletypeCompletionUsable() ):
  512. if self._user_options[ 'show_diagnostics_ui' ]:
  513. # Forcefuly update the location list, etc. from the parse request when
  514. # doing something like :YcmDiags
  515. current_buffer.UpdateDiagnostics( block )
  516. else:
  517. # If the user disabled diagnostics, we just want to check
  518. # the _latest_file_parse_request for any exception or UnknownExtraConf
  519. # response, to allow the server to raise configuration warnings, etc.
  520. # to the user. We ignore any other supplied data.
  521. current_buffer.GetResponse()
  522. # We set the file parse request as handled because we want to prevent
  523. # repeated issuing of the same warnings/errors/prompts. Setting this
  524. # makes IsRequestHandled return True until the next request is created.
  525. #
  526. # Note: it is the server's responsibility to determine the frequency of
  527. # error/warning/prompts when receiving a FileReadyToParse event, but
  528. # it is our responsibility to ensure that we only apply the
  529. # warning/error/prompt received once (for each event).
  530. current_buffer.MarkResponseHandled()
  531. def ShouldResendFileParseRequest( self ):
  532. return self.CurrentBuffer().ShouldResendParseRequest()
  533. def DebugInfo( self ):
  534. debug_info = ''
  535. if self._client_logfile:
  536. debug_info += f'Client logfile: { self._client_logfile }\n'
  537. extra_data = {}
  538. self._AddExtraConfDataIfNeeded( extra_data )
  539. debug_info += FormatDebugInfoResponse( SendDebugInfoRequest( extra_data ) )
  540. debug_info += f'Server running at: { BaseRequest.server_location }\n'
  541. if self._server_popen:
  542. debug_info += f'Server process ID: { self._server_popen.pid }\n'
  543. if self._server_stdout and self._server_stderr:
  544. debug_info += ( 'Server logfiles:\n'
  545. f' { self._server_stdout }\n'
  546. f' { self._server_stderr }' )
  547. return debug_info
  548. def GetLogfiles( self ):
  549. logfiles_list = [ self._client_logfile,
  550. self._server_stdout,
  551. self._server_stderr ]
  552. extra_data = {}
  553. self._AddExtraConfDataIfNeeded( extra_data )
  554. debug_info = SendDebugInfoRequest( extra_data )
  555. if debug_info:
  556. completer = debug_info[ 'completer' ]
  557. if completer:
  558. for server in completer[ 'servers' ]:
  559. logfiles_list.extend( server[ 'logfiles' ] )
  560. logfiles = {}
  561. for logfile in logfiles_list:
  562. logfiles[ os.path.basename( logfile ) ] = logfile
  563. return logfiles
  564. def _OpenLogfile( self, size, mods, logfile ):
  565. # Open log files in a horizontal window with the same behavior as the
  566. # preview window (same height and winfixheight enabled). Automatically
  567. # watch for changes. Set the cursor position at the end of the file.
  568. if not size:
  569. size = vimsupport.GetIntValue( '&previewheight' )
  570. options = {
  571. 'size': size,
  572. 'fix': True,
  573. 'focus': False,
  574. 'watch': True,
  575. 'position': 'end',
  576. 'mods': mods
  577. }
  578. vimsupport.OpenFilename( logfile, options )
  579. def _CloseLogfile( self, logfile ):
  580. vimsupport.CloseBuffersForFilename( logfile )
  581. def ToggleLogs( self, size, mods, *filenames ):
  582. logfiles = self.GetLogfiles()
  583. if not filenames:
  584. sorted_logfiles = sorted( logfiles )
  585. try:
  586. logfile_index = vimsupport.SelectFromList(
  587. 'Which logfile do you wish to open (or close if already open)?',
  588. sorted_logfiles )
  589. except RuntimeError as e:
  590. vimsupport.PostVimMessage( str( e ) )
  591. return
  592. logfile = logfiles[ sorted_logfiles[ logfile_index ] ]
  593. if not vimsupport.BufferIsVisibleForFilename( logfile ):
  594. self._OpenLogfile( size, mods, logfile )
  595. else:
  596. self._CloseLogfile( logfile )
  597. return
  598. for filename in set( filenames ):
  599. if filename not in logfiles:
  600. continue
  601. logfile = logfiles[ filename ]
  602. if not vimsupport.BufferIsVisibleForFilename( logfile ):
  603. self._OpenLogfile( size, mods, logfile )
  604. continue
  605. self._CloseLogfile( logfile )
  606. def ShowDetailedDiagnostic( self ):
  607. detailed_diagnostic = BaseRequest().PostDataToHandler(
  608. BuildRequestData(), 'detailed_diagnostic' )
  609. if detailed_diagnostic and 'message' in detailed_diagnostic:
  610. vimsupport.PostVimMessage( detailed_diagnostic[ 'message' ],
  611. warning = False )
  612. def ForceCompileAndDiagnostics( self ):
  613. if not self.NativeFiletypeCompletionUsable():
  614. vimsupport.PostVimMessage(
  615. 'Native filetype completion not supported for current file, '
  616. 'cannot force recompilation.', warning = False )
  617. return False
  618. vimsupport.PostVimMessage(
  619. 'Forcing compilation, this will block Vim until done.',
  620. warning = False )
  621. self.OnFileReadyToParse()
  622. self.HandleFileParseRequest( block = True )
  623. vimsupport.PostVimMessage( 'Diagnostics refreshed', warning = False )
  624. return True
  625. def ShowDiagnostics( self ):
  626. if not self.ForceCompileAndDiagnostics():
  627. return
  628. if not self._PopulateLocationListWithLatestDiagnostics():
  629. vimsupport.PostVimMessage( 'No warnings or errors detected.',
  630. warning = False )
  631. return
  632. if self._user_options[ 'open_loclist_on_ycm_diags' ]:
  633. vimsupport.OpenLocationList( focus = True )
  634. def _AddSyntaxDataIfNeeded( self, extra_data ):
  635. if not self._user_options[ 'seed_identifiers_with_syntax' ]:
  636. return
  637. filetype = vimsupport.CurrentFiletypes()[ 0 ]
  638. if filetype in self._filetypes_with_keywords_loaded:
  639. return
  640. if self.IsServerReady():
  641. self._filetypes_with_keywords_loaded.add( filetype )
  642. extra_data[ 'syntax_keywords' ] = list(
  643. syntax_parse.SyntaxKeywordsForCurrentBuffer() )
  644. def _AddTagsFilesIfNeeded( self, extra_data ):
  645. def GetTagFiles():
  646. tag_files = vim.eval( 'tagfiles()' )
  647. return [ os.path.join( utils.GetCurrentDirectory(), tag_file )
  648. for tag_file in tag_files ]
  649. if not self._user_options[ 'collect_identifiers_from_tags_files' ]:
  650. return
  651. extra_data[ 'tag_files' ] = GetTagFiles()
  652. def _AddExtraConfDataIfNeeded( self, extra_data ):
  653. def BuildExtraConfData( extra_conf_vim_data ):
  654. extra_conf_data = {}
  655. for expr in extra_conf_vim_data:
  656. try:
  657. extra_conf_data[ expr ] = vimsupport.VimExpressionToPythonType( expr )
  658. except vim.error:
  659. message = (
  660. f"Error evaluating '{ expr }' in the 'g:ycm_extra_conf_vim_data' "
  661. "option." )
  662. vimsupport.PostVimMessage( message, truncate = True )
  663. self._logger.exception( message )
  664. return extra_conf_data
  665. extra_conf_vim_data = self._user_options[ 'extra_conf_vim_data' ]
  666. if extra_conf_vim_data:
  667. extra_data[ 'extra_conf_data' ] = BuildExtraConfData(
  668. extra_conf_vim_data )
  669. def _AddUltiSnipsDataIfNeeded( self, extra_data ):
  670. # See :h UltiSnips#SnippetsInCurrentScope.
  671. try:
  672. vim.eval( 'UltiSnips#SnippetsInCurrentScope( 1 )' )
  673. except vim.error:
  674. return
  675. snippets = vimsupport.GetVariableValue( 'g:current_ulti_dict_info' )
  676. extra_data[ 'ultisnips_snippets' ] = [
  677. { 'trigger': trigger,
  678. 'description': snippet[ 'description' ] }
  679. for trigger, snippet in snippets.items()
  680. ]