89 lines
3.2 KiB
Python
89 lines
3.2 KiB
Python
|
# Copyright (C) 2015-2017 YouCompleteMe contributors.
|
||
|
#
|
||
|
# This file is part of YouCompleteMe.
|
||
|
#
|
||
|
# YouCompleteMe is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# YouCompleteMe is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
import vim
|
||
|
import re
|
||
|
|
||
|
# Can't import these from setup.py because it makes nosetests go crazy.
|
||
|
DIR_OF_CURRENT_SCRIPT = os.path.dirname( os.path.abspath( __file__ ) )
|
||
|
DIR_OF_YCMD = os.path.join( DIR_OF_CURRENT_SCRIPT, '..', '..', 'third_party',
|
||
|
'ycmd' )
|
||
|
WIN_PYTHON_PATH = os.path.join( sys.exec_prefix, 'python.exe' )
|
||
|
PYTHON_BINARY_REGEX = re.compile(
|
||
|
r'python(3(\.[6-9])?)?(.exe)?$', re.IGNORECASE )
|
||
|
|
||
|
|
||
|
# Not caching the result of this function; users shouldn't have to restart Vim
|
||
|
# after running the install script or setting the
|
||
|
# `g:ycm_server_python_interpreter` option.
|
||
|
def PathToPythonInterpreter():
|
||
|
# Not calling the Python interpreter to check its version as it significantly
|
||
|
# impacts startup time.
|
||
|
from ycmd import utils
|
||
|
|
||
|
python_interpreter = vim.eval( 'g:ycm_server_python_interpreter' )
|
||
|
if python_interpreter:
|
||
|
python_interpreter = utils.FindExecutable( python_interpreter )
|
||
|
if python_interpreter:
|
||
|
return python_interpreter
|
||
|
|
||
|
raise RuntimeError( "Path in 'g:ycm_server_python_interpreter' option "
|
||
|
"does not point to a valid Python 3.6+." )
|
||
|
|
||
|
python_interpreter = _PathToPythonUsedDuringBuild()
|
||
|
if python_interpreter and utils.GetExecutable( python_interpreter ):
|
||
|
return python_interpreter
|
||
|
|
||
|
# On UNIX platforms, we use sys.executable as the Python interpreter path.
|
||
|
# We cannot use sys.executable on Windows because for unknown reasons, it
|
||
|
# returns the Vim executable. Instead, we use sys.exec_prefix to deduce the
|
||
|
# interpreter path.
|
||
|
python_interpreter = ( WIN_PYTHON_PATH if utils.OnWindows() else
|
||
|
sys.executable )
|
||
|
if _EndsWithPython( python_interpreter ):
|
||
|
return python_interpreter
|
||
|
|
||
|
python_interpreter = utils.PathToFirstExistingExecutable( [ 'python3',
|
||
|
'python' ] )
|
||
|
if python_interpreter:
|
||
|
return python_interpreter
|
||
|
|
||
|
raise RuntimeError( "Cannot find Python 3.6+. "
|
||
|
"Set the 'g:ycm_server_python_interpreter' option "
|
||
|
"to a Python interpreter path." )
|
||
|
|
||
|
|
||
|
def _PathToPythonUsedDuringBuild():
|
||
|
from ycmd import utils
|
||
|
|
||
|
try:
|
||
|
filepath = os.path.join( DIR_OF_YCMD, 'PYTHON_USED_DURING_BUILDING' )
|
||
|
return utils.ReadFile( filepath ).strip()
|
||
|
except OSError:
|
||
|
return None
|
||
|
|
||
|
|
||
|
def _EndsWithPython( path ):
|
||
|
"""Check if given path ends with a python 3.6+ name."""
|
||
|
return path and PYTHON_BINARY_REGEX.search( path ) is not None
|
||
|
|
||
|
|
||
|
def PathToServerScript():
|
||
|
return os.path.join( DIR_OF_YCMD, 'ycmd' )
|