2012-08-04 20:46:54 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2014-01-13 14:08:43 -05:00
|
|
|
# Copyright (C) 2011, 2012 Google Inc.
|
2012-08-04 20:46:54 -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/>.
|
|
|
|
|
2013-09-20 20:24:34 -04:00
|
|
|
import tempfile
|
|
|
|
import os
|
2013-09-23 16:27:32 -04:00
|
|
|
import sys
|
|
|
|
import signal
|
2013-10-03 13:14:31 -04:00
|
|
|
import functools
|
2013-10-14 23:38:45 -04:00
|
|
|
import socket
|
2013-10-24 13:26:55 -04:00
|
|
|
import stat
|
2014-03-19 16:16:49 -04:00
|
|
|
import json
|
2013-10-24 23:21:03 -04:00
|
|
|
from distutils.spawn import find_executable
|
2013-12-11 07:41:04 -05:00
|
|
|
import subprocess
|
2013-09-20 20:24:34 -04:00
|
|
|
|
2013-10-11 14:11:02 -04:00
|
|
|
WIN_PYTHON27_PATH = 'C:\python27\pythonw.exe'
|
|
|
|
WIN_PYTHON26_PATH = 'C:\python26\pythonw.exe'
|
|
|
|
|
|
|
|
|
2012-08-04 20:46:54 -04:00
|
|
|
def IsIdentifierChar( char ):
|
|
|
|
return char.isalnum() or char == '_'
|
|
|
|
|
|
|
|
|
|
|
|
def SanitizeQuery( query ):
|
|
|
|
return query.strip()
|
2013-04-23 01:19:26 -04:00
|
|
|
|
2013-09-07 14:58:42 -04:00
|
|
|
|
2014-01-13 13:00:05 -05:00
|
|
|
def ToUtf8IfNeeded( value ):
|
|
|
|
if isinstance( value, unicode ):
|
|
|
|
return value.encode( 'utf8' )
|
|
|
|
if isinstance( value, str ):
|
|
|
|
return value
|
|
|
|
return str( value )
|
2013-09-20 20:24:34 -04:00
|
|
|
|
|
|
|
|
2014-03-19 16:16:49 -04:00
|
|
|
def ToUtf8Json( data ):
|
|
|
|
return ToUtf8IfNeeded( json.dumps( data, ensure_ascii = False ) )
|
|
|
|
|
|
|
|
|
2013-09-20 20:24:34 -04:00
|
|
|
def PathToTempDir():
|
2013-10-06 21:27:47 -04:00
|
|
|
tempdir = os.path.join( tempfile.gettempdir(), 'ycm_temp' )
|
|
|
|
if not os.path.exists( tempdir ):
|
|
|
|
os.makedirs( tempdir )
|
2013-10-24 13:26:55 -04:00
|
|
|
# Needed to support multiple users working on the same machine;
|
|
|
|
# see issue 606.
|
|
|
|
MakeFolderAccessibleToAll( tempdir )
|
2013-10-06 21:27:47 -04:00
|
|
|
return tempdir
|
2013-09-23 16:27:32 -04:00
|
|
|
|
|
|
|
|
2013-10-24 13:26:55 -04:00
|
|
|
def MakeFolderAccessibleToAll( path_to_folder ):
|
|
|
|
current_stat = os.stat( path_to_folder )
|
|
|
|
# readable, writable and executable by everyone
|
|
|
|
flags = ( current_stat.st_mode | stat.S_IROTH | stat.S_IWOTH | stat.S_IXOTH
|
|
|
|
| stat.S_IRGRP | stat.S_IWGRP | stat.S_IXGRP )
|
|
|
|
os.chmod( path_to_folder, flags )
|
|
|
|
|
|
|
|
|
2013-10-28 15:17:18 -04:00
|
|
|
def RunningInsideVim():
|
|
|
|
try:
|
|
|
|
import vim # NOQA
|
|
|
|
return True
|
|
|
|
except ImportError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2013-10-14 23:38:45 -04:00
|
|
|
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
|
|
|
|
|
|
|
|
|
2013-12-20 16:01:48 -05:00
|
|
|
def RemoveIfExists( filename ):
|
|
|
|
try:
|
|
|
|
os.remove( filename )
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2013-11-14 13:50:05 -05:00
|
|
|
def Memoize( obj ):
|
|
|
|
cache = obj.cache = {}
|
|
|
|
|
|
|
|
@functools.wraps( obj )
|
|
|
|
def memoizer( *args, **kwargs ):
|
|
|
|
key = str( args ) + str( kwargs )
|
|
|
|
if key not in cache:
|
|
|
|
cache[ key ] = obj( *args, **kwargs )
|
|
|
|
return cache[ key ]
|
|
|
|
return memoizer
|
|
|
|
|
|
|
|
|
|
|
|
@Memoize
|
2013-10-11 14:11:02 -04:00
|
|
|
def PathToPythonInterpreter():
|
2013-11-14 13:50:05 -05:00
|
|
|
if not RunningInsideVim():
|
|
|
|
return sys.executable
|
|
|
|
|
|
|
|
import vim # NOQA
|
|
|
|
user_path_to_python = vim.eval( 'g:ycm_path_to_python_interpreter' )
|
|
|
|
if user_path_to_python:
|
|
|
|
return user_path_to_python
|
|
|
|
|
2013-10-24 23:21:03 -04:00
|
|
|
# We check for 'python2' before 'python' because some OS's (I'm looking at you
|
|
|
|
# Arch Linux) have made the... interesting decision to point /usr/bin/python
|
|
|
|
# to python3.
|
2013-11-05 18:30:34 -05:00
|
|
|
python_names = [ 'python2', 'python' ]
|
|
|
|
if OnWindows():
|
|
|
|
# On Windows, 'pythonw' doesn't pop-up a console window like running
|
|
|
|
# 'python' does.
|
|
|
|
python_names.insert( 0, 'pythonw' )
|
|
|
|
|
|
|
|
path_to_python = PathToFirstExistingExecutable( python_names )
|
2013-11-01 13:53:16 -04:00
|
|
|
if path_to_python:
|
|
|
|
return path_to_python
|
|
|
|
|
|
|
|
# On Windows, Python may not be on the PATH at all, so we check some common
|
|
|
|
# install locations.
|
|
|
|
if OnWindows():
|
|
|
|
if os.path.exists( WIN_PYTHON27_PATH ):
|
|
|
|
return WIN_PYTHON27_PATH
|
|
|
|
elif os.path.exists( WIN_PYTHON26_PATH ):
|
|
|
|
return WIN_PYTHON26_PATH
|
|
|
|
raise RuntimeError( 'Python 2.7/2.6 not installed!' )
|
2013-10-24 23:21:03 -04:00
|
|
|
|
|
|
|
|
2013-10-24 23:24:08 -04:00
|
|
|
def PathToFirstExistingExecutable( executable_name_list ):
|
2013-10-24 23:21:03 -04:00
|
|
|
for executable_name in executable_name_list:
|
|
|
|
path = find_executable( executable_name )
|
|
|
|
if path:
|
|
|
|
return path
|
|
|
|
return None
|
2013-10-11 14:11:02 -04:00
|
|
|
|
|
|
|
|
|
|
|
def OnWindows():
|
|
|
|
return sys.platform == 'win32'
|
|
|
|
|
|
|
|
|
2013-09-23 16:27:32 -04:00
|
|
|
# From here: http://stackoverflow.com/a/8536476/1672783
|
|
|
|
def TerminateProcess( pid ):
|
2013-10-11 14:11:02 -04:00
|
|
|
if OnWindows():
|
2013-09-23 16:27:32 -04:00
|
|
|
import ctypes
|
|
|
|
PROCESS_TERMINATE = 1
|
|
|
|
handle = ctypes.windll.kernel32.OpenProcess( PROCESS_TERMINATE,
|
|
|
|
False,
|
|
|
|
pid )
|
|
|
|
ctypes.windll.kernel32.TerminateProcess( handle, -1 )
|
|
|
|
ctypes.windll.kernel32.CloseHandle( handle )
|
|
|
|
else:
|
|
|
|
os.kill( pid, signal.SIGTERM )
|
2013-10-01 19:21:17 -04:00
|
|
|
|
|
|
|
|
|
|
|
def AddThirdPartyFoldersToSysPath():
|
|
|
|
path_to_third_party = os.path.join(
|
|
|
|
os.path.dirname( os.path.abspath( __file__ ) ),
|
|
|
|
'../../third_party' )
|
|
|
|
|
|
|
|
for folder in os.listdir( path_to_third_party ):
|
|
|
|
sys.path.insert( 0, os.path.realpath( os.path.join( path_to_third_party,
|
|
|
|
folder ) ) )
|
|
|
|
|
2013-10-07 16:09:34 -04:00
|
|
|
def ForceSemanticCompletion( request_data ):
|
|
|
|
return ( 'force_semantic' in request_data and
|
|
|
|
bool( request_data[ 'force_semantic' ] ) )
|
2013-12-11 07:41:04 -05:00
|
|
|
|
2013-12-24 21:53:23 -05:00
|
|
|
|
|
|
|
# A wrapper for subprocess.Popen that works around a Popen bug on Windows.
|
|
|
|
def SafePopen( *args, **kwargs ):
|
2014-01-14 10:22:48 -05:00
|
|
|
if kwargs.get( 'stdin' ) is None:
|
2013-12-11 07:41:04 -05:00
|
|
|
# We need this on Windows otherwise bad things happen. See issue #637.
|
2013-12-24 21:53:23 -05:00
|
|
|
kwargs[ 'stdin' ] = subprocess.PIPE if OnWindows() else None
|
2013-12-11 07:41:04 -05:00
|
|
|
|
2013-12-24 21:53:23 -05:00
|
|
|
return subprocess.Popen( *args, **kwargs )
|
2013-12-11 07:41:04 -05:00
|
|
|
|
|
|
|
|