youcompleteme.py 27 KB

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