2016-11-06 15:50:37 -05:00
|
|
|
# Copyright (C) 2015-2017 YouCompleteMe contributors.
|
2015-10-08 05:36:34 -04:00
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2016-02-27 19:12:24 -05:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from __future__ import print_function
|
|
|
|
from __future__ import division
|
|
|
|
from __future__ import absolute_import
|
2017-03-09 09:57:27 -05:00
|
|
|
# Not installing aliases from python-future; it's unreliable and slow.
|
2016-02-27 19:12:24 -05:00
|
|
|
from builtins import * # noqa
|
|
|
|
|
2015-10-08 05:36:34 -04:00
|
|
|
import os
|
2016-01-11 07:33:43 -05:00
|
|
|
import sys
|
2015-10-08 05:36:34 -04:00
|
|
|
import vim
|
2016-01-12 15:24:23 -05:00
|
|
|
import re
|
2015-10-08 05:36:34 -04:00
|
|
|
|
2016-02-28 17:39:55 -05:00
|
|
|
# Can't import these from setup.py because it makes nosetests go crazy.
|
2015-10-08 05:36:34 -04:00
|
|
|
DIR_OF_CURRENT_SCRIPT = os.path.dirname( os.path.abspath( __file__ ) )
|
2015-10-12 15:19:37 -04:00
|
|
|
DIR_OF_YCMD = os.path.join( DIR_OF_CURRENT_SCRIPT, '..', '..', 'third_party',
|
|
|
|
'ycmd' )
|
2016-01-11 07:33:43 -05:00
|
|
|
WIN_PYTHON_PATH = os.path.join( sys.exec_prefix, 'python.exe' )
|
2016-02-28 20:44:48 -05:00
|
|
|
PYTHON_BINARY_REGEX = re.compile(
|
2017-03-27 16:23:39 -04:00
|
|
|
r'python((2(\.[67])?)|(3(\.[3-9])?))?(.exe)?$', re.IGNORECASE )
|
2015-10-08 05:36:34 -04:00
|
|
|
|
|
|
|
|
2016-11-07 10:36:38 -05:00
|
|
|
# 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.
|
2015-10-08 05:36:34 -04:00
|
|
|
def PathToPythonInterpreter():
|
2016-11-06 15:50:37 -05:00
|
|
|
# Not calling the Python interpreter to check its version as it significantly
|
|
|
|
# impacts startup time.
|
2015-10-12 15:19:37 -04:00
|
|
|
from ycmd import utils
|
|
|
|
|
2016-03-12 16:04:57 -05:00
|
|
|
python_interpreter = vim.eval( 'g:ycm_server_python_interpreter' )
|
2016-01-11 07:33:43 -05:00
|
|
|
if python_interpreter:
|
2016-11-06 15:50:37 -05:00
|
|
|
if _EndsWithPython( python_interpreter ):
|
2016-01-23 10:58:24 -05:00
|
|
|
return python_interpreter
|
2015-10-08 05:36:34 -04:00
|
|
|
|
2016-03-12 16:04:57 -05:00
|
|
|
raise RuntimeError( "Path in 'g:ycm_server_python_interpreter' option "
|
2016-02-28 20:44:48 -05:00
|
|
|
"does not point to a valid Python 2.6+ or 3.3+." )
|
2015-10-08 05:36:34 -04:00
|
|
|
|
2016-04-25 23:24:41 -04:00
|
|
|
python_interpreter = _PathToPythonUsedDuringBuild()
|
2016-11-06 15:50:37 -05:00
|
|
|
if _EndsWithPython( python_interpreter ):
|
2016-04-25 23:24:41 -04:00
|
|
|
return python_interpreter
|
|
|
|
|
2016-01-11 07:33:43 -05:00
|
|
|
# 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 )
|
2016-11-06 15:50:37 -05:00
|
|
|
if _EndsWithPython( python_interpreter ):
|
2016-01-23 10:58:24 -05:00
|
|
|
return python_interpreter
|
|
|
|
|
2016-02-29 13:26:50 -05:00
|
|
|
# As a last resort, we search python in the PATH. We prefer Python 2 over 3
|
|
|
|
# for the sake of backwards compatibility with ycm_extra_conf.py files out
|
|
|
|
# there; few people wrote theirs to work on py3.
|
|
|
|
# So we check 'python2' before 'python' because on some distributions (Arch
|
|
|
|
# Linux for example), python refers to python3.
|
2016-01-23 10:58:24 -05:00
|
|
|
python_interpreter = utils.PathToFirstExistingExecutable( [ 'python2',
|
2016-02-28 20:44:48 -05:00
|
|
|
'python',
|
|
|
|
'python3' ] )
|
2016-11-06 15:50:37 -05:00
|
|
|
if python_interpreter:
|
2016-01-23 10:58:24 -05:00
|
|
|
return python_interpreter
|
2015-10-08 05:36:34 -04:00
|
|
|
|
2016-02-28 20:44:48 -05:00
|
|
|
raise RuntimeError( "Cannot find Python 2.6+ or 3.3+. You can set its path "
|
2016-03-12 16:04:57 -05:00
|
|
|
"using the 'g:ycm_server_python_interpreter' "
|
2016-01-23 10:58:24 -05:00
|
|
|
"option." )
|
2016-01-11 07:33:43 -05:00
|
|
|
|
|
|
|
|
2016-04-25 23:24:41 -04:00
|
|
|
def _PathToPythonUsedDuringBuild():
|
|
|
|
from ycmd import utils
|
|
|
|
|
|
|
|
try:
|
|
|
|
filepath = os.path.join( DIR_OF_YCMD, 'PYTHON_USED_DURING_BUILDING' )
|
|
|
|
return utils.ReadFile( filepath ).strip()
|
|
|
|
# We need to check for IOError for Python2 and OSError for Python3
|
|
|
|
except ( IOError, OSError ):
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2016-11-06 15:50:37 -05:00
|
|
|
def _EndsWithPython( path ):
|
2016-02-28 20:44:48 -05:00
|
|
|
"""Check if given path ends with a python 2.6+ or 3.3+ name."""
|
2016-04-25 23:24:41 -04:00
|
|
|
return path and PYTHON_BINARY_REGEX.search( path ) is not None
|
2016-01-12 15:24:23 -05:00
|
|
|
|
|
|
|
|
2015-10-08 05:36:34 -04:00
|
|
|
def PathToServerScript():
|
2015-10-12 15:19:37 -04:00
|
|
|
return os.path.join( DIR_OF_YCMD, 'ycmd' )
|