1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
|
#!/usr/bin/env python
#
# Copyright (C) 2020 ycmd contributors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import platform
if sys.version_info[ 0 ] < 3:
sys.exit( 'example_client.py requires Python 3.6+; detected Python ' +
platform.python_version() )
from base64 import b64encode, b64decode
from hmac import compare_digest, new
from tempfile import NamedTemporaryFile
import collections
import hashlib
import json
import os
import socket
import subprocess
import sys
import urllib.parse
import time
import requests
from enum import Enum
HMAC_HEADER = 'X-Ycm-Hmac'
HMAC_SECRET_LENGTH = 16
SERVER_IDLE_SUICIDE_SECONDS = 10800 # 3 hours
MAX_SERVER_WAIT_TIME_SECONDS = 5
# Set this to True to see ycmd's output interleaved with the client's
INCLUDE_YCMD_OUTPUT = True
DEFINED_SUBCOMMANDS_HANDLER = '/defined_subcommands'
CODE_COMPLETIONS_HANDLER = '/completions'
COMPLETER_COMMANDS_HANDLER = '/run_completer_command'
EVENT_HANDLER = '/event_notification'
EXTRA_CONF_HANDLER = '/load_extra_conf_file'
RECEIVE_MESSAGES_HANDLER = '/receive_messages'
DIR_OF_THIS_SCRIPT = os.path.dirname( os.path.abspath( __file__ ) )
PATH_TO_YCMD = os.path.join( DIR_OF_THIS_SCRIPT, '..', 'ycmd' )
PATH_TO_EXTRA_CONF = os.path.join( DIR_OF_THIS_SCRIPT, '.ycm_extra_conf.py' )
class Event( Enum ):
FileReadyToParse = 1
BufferUnload = 2
BufferVisit = 3
InsertLeave = 4
CurrentIdentifierFinished = 5
# Wrapper around ycmd's HTTP+JSON API
class YcmdHandle( object ):
def __init__( self, popen_handle, port, hmac_secret ):
self._popen_handle = popen_handle
self._port = port
self._hmac_secret = hmac_secret
self._server_location = 'http://127.0.0.1:' + str( port )
@classmethod
def StartYcmdAndReturnHandle( cls ):
prepared_options = DefaultSettings()
hmac_secret = os.urandom( HMAC_SECRET_LENGTH )
prepared_options[ 'hmac_secret' ] = str( b64encode( hmac_secret ), 'utf-8' )
# The temp options file is deleted by ycmd during startup.
with NamedTemporaryFile( mode = 'w+', delete = False ) as options_file:
json.dump( prepared_options, options_file )
server_port = GetUnusedLocalhostPort()
ycmd_args = [ sys.executable,
PATH_TO_YCMD,
f'--port={server_port}',
f'--options_file={options_file.name}',
f'--idle_suicide_seconds={SERVER_IDLE_SUICIDE_SECONDS}' ]
std_handles = None if INCLUDE_YCMD_OUTPUT else subprocess.PIPE
child_handle = subprocess.Popen( ycmd_args,
stdout = std_handles,
stderr = std_handles )
return cls( child_handle, server_port, hmac_secret )
def IsAlive( self ):
returncode = self._popen_handle.poll()
# When the process hasn't finished yet, poll() returns None.
return returncode is None
def IsReady( self, filetype = None ):
if not self.IsAlive():
return False
params = { 'subserver': filetype } if filetype else None
response = self.GetFromHandler( 'ready', params )
response.raise_for_status()
return response.json()
def Shutdown( self ):
if self.IsAlive():
self.PostToHandlerAndLog( 'shutdown' )
def PostToHandlerAndLog( self, handler, data = None ):
self._CallHttpie( 'post', handler, data )
def GetFromHandlerAndLog( self, handler ):
self._CallHttpie( 'get', handler )
def GetFromHandler( self, handler, params = None ):
request_uri = self._BuildUri( handler )
extra_headers = self._ExtraHeaders(
'GET', urllib.parse.urlparse( request_uri ).path, '' )
response = requests.get( request_uri,
headers = extra_headers,
params = params )
self._ValidateResponseObject( response )
return response
def SendDefinedSubcommandsRequest( self, completer_target ):
request_json = BuildRequestData( completer_target = completer_target )
print( '==== Sending defined subcommands request ====' )
self.PostToHandlerAndLog( DEFINED_SUBCOMMANDS_HANDLER, request_json )
def SendCodeCompletionRequest( self,
test_filename,
filetype,
line_num,
column_num ):
request_json = BuildRequestData( test_filename = test_filename,
filetype = filetype,
line_num = line_num,
column_num = column_num )
print( '==== Sending code-completion request ====' )
self.PostToHandlerAndLog( CODE_COMPLETIONS_HANDLER, request_json )
def SendGoToRequest( self,
test_filename,
filetype,
line_num,
column_num ):
request_json = BuildRequestData( test_filename = test_filename,
command_arguments = ['GoTo'],
filetype = filetype,
line_num = line_num,
column_num = column_num )
print( '==== Sending GoTo request ====' )
self.PostToHandlerAndLog( COMPLETER_COMMANDS_HANDLER, request_json )
def SendEventNotification( self,
event_enum,
test_filename,
filetype,
line_num = 1, # just placeholder values
column_num = 1,
extra_data = None ):
request_json = BuildRequestData( test_filename = test_filename,
filetype = filetype,
line_num = line_num,
column_num = column_num )
if extra_data:
request_json.update( extra_data )
request_json[ 'event_name' ] = event_enum.name
print( '==== Sending event notification ====' )
self.PostToHandlerAndLog( EVENT_HANDLER, request_json )
def ReceiveMessages( self, test_filename, filetype ):
request_json = BuildRequestData( test_filename = test_filename,
filetype = filetype )
print( '==== Sending Messages request ====' )
self.PostToHandlerAndLog( RECEIVE_MESSAGES_HANDLER, request_json )
def LoadExtraConfFile( self, extra_conf_filename ):
request_json = { 'filepath': extra_conf_filename }
self.PostToHandlerAndLog( EXTRA_CONF_HANDLER, request_json )
def WaitUntilReady( self, filetype = None ):
total_slept = 0
time.sleep( 0.5 )
total_slept += 0.5
while True:
try:
if total_slept > MAX_SERVER_WAIT_TIME_SECONDS:
raise RuntimeError(
'waited for the server for '
f'{MAX_SERVER_WAIT_TIME_SECONDS} seconds, aborting' )
if self.IsReady( filetype ):
return
except requests.exceptions.ConnectionError:
pass
finally:
time.sleep( 0.1 )
total_slept += 0.1
def _ExtraHeaders( self, method, path, body ):
return { HMAC_HEADER: self._HmacForRequest( method, path, body ) }
def _HmacForRequest( self, method, path, body ):
return str( b64encode( CreateRequestHmac( method, path, body,
self._hmac_secret ) ), 'utf8' )
def _BuildUri( self, handler ):
return urllib.parse.urljoin( self._server_location, handler )
def _ValidateResponseObject( self, response ):
if not ContentHmacValid(
response.content,
b64decode( response.headers[ HMAC_HEADER ] ),
self._hmac_secret ):
raise RuntimeError( 'Received invalid HMAC for response!' )
return True
# Use httpie instead of Requests directly so that we get the nice json
# pretty-printing, output colorization and full request/response logging for
# free
def _CallHttpie( self, method, handler, data = None ):
method = method.upper()
request_uri = self._BuildUri( handler )
args = [ 'http', '-v', method, request_uri ]
if isinstance( data, collections.abc.Mapping ):
args.append( 'content-type:application/json' )
data = ToUtf8Json( data )
hmac = self._HmacForRequest( method,
urllib.parse.urlparse( request_uri ).path,
data )
args.append( HMAC_HEADER + ':' + hmac )
if method == 'GET':
popen = subprocess.Popen( args )
else:
popen = subprocess.Popen( args, stdin = subprocess.PIPE )
popen.communicate( data )
popen.wait()
def ToBytes( value ):
if not value:
return bytes()
if isinstance( value, bytes ):
return value
if isinstance( value, int ):
value = str( value )
return bytes( value, encoding = 'utf-8' )
def ContentHmacValid( content, hmac, hmac_secret ):
return compare_digest( CreateHmac( content, hmac_secret ), hmac )
def CreateRequestHmac( method, path, body, hmac_secret ):
method = ToBytes( method )
path = ToBytes( path )
body = ToBytes( body )
hmac_secret = ToBytes( hmac_secret )
method_hmac = CreateHmac( method, hmac_secret )
path_hmac = CreateHmac( path, hmac_secret )
body_hmac = CreateHmac( body, hmac_secret )
joined_hmac_input = bytes().join( ( method_hmac, path_hmac, body_hmac ) )
return CreateHmac( joined_hmac_input, hmac_secret )
def CreateHmac( content, hmac_secret ):
return bytes( new( ToBytes( hmac_secret ),
msg = ToBytes( content ),
digestmod = hashlib.sha256 ).digest() )
# Recurses through the object if it's a dict/iterable and converts all the
# unicode objects to utf-8 encoded bytes.
def RecursiveEncodeUnicodeToUtf8( value ):
if isinstance( value, str ):
return value.encode( 'utf-8' )
if isinstance( value, bytes ):
return value
elif isinstance( value, collections.Mapping ):
return dict( list(
map( RecursiveEncodeUnicodeToUtf8, iter( value.items() ) ) ) )
elif isinstance( value, collections.Iterable ):
return type( value )( list( map( RecursiveEncodeUnicodeToUtf8, value ) ) )
else:
return value
def ToUtf8Json( data ):
return json.dumps( data, ensure_ascii = False ).encode( 'utf-8' )
def PathToTestFile( filename ):
return os.path.join( DIR_OF_THIS_SCRIPT, 'samples', filename )
def DefaultSettings():
default_options_path = os.path.join( DIR_OF_THIS_SCRIPT,
'..',
'ycmd',
'default_settings.json' )
with open( default_options_path ) as f:
return json.loads( f.read() )
def GetUnusedLocalhostPort():
sock = socket.socket()
# This tells the OS to give us any free port in the range [1024 - 65535]
sock.bind( ( '', 0 ) )
port = sock.getsockname()[ 1 ]
sock.close()
return port
def PrettyPrintDict( value ):
# Sad that this works better than pprint...
return json.dumps( value, sort_keys = True, indent = 2 ).replace(
'\\n', '\n')
def BuildRequestData( test_filename = None,
filetype = None,
line_num = None,
column_num = None,
command_arguments = None,
completer_target = None ):
test_path = PathToTestFile( test_filename ) if test_filename else ''
# Normally, this would be the contents of the file as loaded in the editor
# (possibly unsaved data).
contents = open( test_path ).read() if test_path else ''
data = {
'line_num': line_num,
'column_num': column_num,
'filepath': test_path,
'file_data': {
test_path: {
'filetypes': [ filetype ],
'contents': contents
}
}
}
if command_arguments:
data[ 'command_arguments' ] = command_arguments
if completer_target:
data[ 'completer_target' ] = completer_target
return data
def PythonSemanticCompletionResults( server ):
server.SendEventNotification( Event.FileReadyToParse,
test_filename = 'some_python.py',
filetype = 'python' )
server.SendCodeCompletionRequest( test_filename = 'some_python.py',
filetype = 'python',
line_num = 25,
column_num = 6 )
def LanguageAgnosticIdentifierCompletion( server ):
# We're using vimscript here, but the language doesn't matter; the identifier
# completion engine just extracts identifiers.
server.SendEventNotification( Event.FileReadyToParse,
test_filename = 'some_vimscript.vim',
filetype = 'vim' )
server.SendCodeCompletionRequest( test_filename = 'some_vimscript.vim',
filetype = 'vim',
line_num = 21,
column_num = 6 )
def CppSemanticCompletionResults( server ):
# TODO: document this better
server.LoadExtraConfFile( PATH_TO_EXTRA_CONF )
# NOTE: The server will return diagnostic information about an error in the
# some_cpp.cpp file that we placed there intentionally (as an example).
# Clang will recover from this error and still manage to parse the file
# though.
server.SendEventNotification( Event.FileReadyToParse,
test_filename = 'some_cpp.cpp',
filetype = 'cpp' )
server.SendCodeCompletionRequest( test_filename = 'some_cpp.cpp',
filetype = 'cpp',
line_num = 25,
column_num = 7 )
def PythonGetSupportedCommands( server ):
server.SendDefinedSubcommandsRequest( completer_target = 'python' )
def CppGotoDeclaration( server ):
# NOTE: No need to load extra conf file or send FileReadyToParse event, it was
# already done in CppSemanticCompletionResults.
server.SendGoToRequest( test_filename = 'some_cpp.cpp',
filetype = 'cpp',
line_num = 23,
column_num = 4 )
def CsharpSemanticCompletionResults( server ):
# First such request starts the OmniSharpServer
server.SendEventNotification( Event.FileReadyToParse,
test_filename = 'some_csharp.cs',
filetype = 'cs' )
# We have to wait until OmniSharpServer has started and loaded the solution
# file
print( 'Waiting for OmniSharpServer to become ready...' )
server.WaitUntilReady( filetype = 'cs' )
server.SendCodeCompletionRequest( test_filename = 'some_csharp.cs',
filetype = 'cs',
line_num = 10,
column_num = 15 )
def JavaMessages( server ):
# NOTE: The server will return diagnostic information about an error in the
# some_java.java file that we placed there intentionally (as an example).
# It is _not_returned in the FileReadyToParse, but the ReceiveMessages poll
server.SendEventNotification( Event.FileReadyToParse,
test_filename = 'some_java.java',
filetype = 'java' )
# Send the long poll 5 times (only the first N will return any useful
# messages)
for i in range(1, 6):
server.ReceiveMessages( test_filename = 'some_java.java',
filetype = 'java' )
# Send a code complete request
server.SendCodeCompletionRequest( test_filename = 'some_java.java',
filetype = 'java',
line_num = 5,
column_num = 8 )
# NOTE: The server will return diagnostic information about an error in the
# some_java.java file that we placed there intentionally (as an example).
# It is _not_returned in the FileReadyToParse, but the ReceiveMessages poll
server.SendEventNotification( Event.FileReadyToParse,
test_filename = 'some_java.java',
filetype = 'java' )
# Send the long poll 5 times (only the first N will return any useful
# messages)
for i in range(1, 6):
server.ReceiveMessages( test_filename = 'some_java.java',
filetype = 'java' )
def Main():
print( 'Trying to start server...' )
server = YcmdHandle.StartYcmdAndReturnHandle()
server.WaitUntilReady()
LanguageAgnosticIdentifierCompletion( server )
PythonSemanticCompletionResults( server )
CppSemanticCompletionResults( server )
CsharpSemanticCompletionResults( server )
JavaMessages( server )
# This will ask the server for a list of subcommands supported by a given
# language completer.
PythonGetSupportedCommands( server )
# GoTo is an example of a completer subcommand.
# Python and C# completers also support the GoTo subcommand.
CppGotoDeclaration( server )
print( 'Shutting down server...' )
server.Shutdown()
if __name__ == "__main__":
Main()
|