YouCompleteMe/python/ycm.py

220 lines
6.3 KiB
Python
Raw Normal View History

2012-04-15 19:57:10 -04:00
#!/usr/bin/env python
#
2012-04-15 23:28:46 -04:00
# Copyright (C) 2011, 2012 Strahinja Val Markovic <val@markovic.io>
2012-04-15 19:57:10 -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/>.
import vimsupport
import imp
import vim
import utils
import os
import sys
try:
import ycm_core
except ImportError, e:
vimsupport.PostVimMessage(
'Error importing ycm_core. Are you sure you have placed a version 3.2+ '
'libclang.[so|dll|dylib] in folder "{0}"? See the Installation Guide in '
'the docs. Full error: {1}'.format(
os.path.dirname( os.path.abspath( __file__ ) ), str( e ) ) )
from completers.all.identifier_completer import IdentifierCompleter
FILETYPE_SPECIFIC_COMPLETION_TO_DISABLE = vim.eval(
'g:ycm_filetype_specific_completion_to_disable' )
class YouCompleteMe( object ):
def __init__( self ):
self.identcomp = IdentifierCompleter()
self.filetype_completers = {}
def GetIdentifierCompleter( self ):
return self.identcomp
def GetFiletypeCompleterForCurrentFile( self ):
filetypes = vimsupport.CurrentFiletypes()
for filetype in filetypes:
completer = self.GetFiletypeCompleterForFiletype( filetype )
if completer:
return completer
return None
def GetFiletypeCompleterForFiletype( self, filetype ):
try:
return self.filetype_completers[ filetype ]
except KeyError:
pass
module_path = _PathToFiletypeCompleterPluginLoader( filetype )
completer = None
supported_filetypes = [ filetype ]
if os.path.exists( module_path ):
sys.path.insert( 0, os.path.dirname( module_path ) )
module = imp.load_source( filetype, module_path )
del sys.path[ 0 ]
completer = module.GetCompleter()
if completer:
supported_filetypes.extend( completer.SupportedFiletypes() )
for supported_filetype in supported_filetypes:
self.filetype_completers[ supported_filetype ] = completer
return completer
def ShouldUseIdentifierCompleter( self, start_column ):
return self.identcomp.ShouldUseNow( start_column )
def ShouldUseFiletypeCompleter( self, start_column ):
if self.FiletypeCompletionEnabledForCurrentFile():
return self.GetFiletypeCompleterForCurrentFile().ShouldUseNow(
start_column )
return False
def FiletypeCompletionAvailableForFile( self ):
return bool( self.GetFiletypeCompleterForCurrentFile() )
def FiletypeCompletionEnabledForCurrentFile( self ):
filetypes = vimsupport.CurrentFiletypes()
filetype_disabled = all([ x in FILETYPE_SPECIFIC_COMPLETION_TO_DISABLE
for x in filetypes ])
return ( not filetype_disabled and
self.FiletypeCompletionAvailableForFile() )
def OnFileReadyToParse( self ):
self.identcomp.OnFileReadyToParse()
if self.FiletypeCompletionEnabledForCurrentFile():
self.GetFiletypeCompleterForCurrentFile().OnFileReadyToParse()
2012-04-15 19:57:10 -04:00
2012-05-08 00:23:38 -04:00
def OnInsertLeave( self ):
self.identcomp.OnInsertLeave()
if self.FiletypeCompletionEnabledForCurrentFile():
self.GetFiletypeCompleterForCurrentFile().OnInsertLeave()
def DiagnosticsForCurrentFileReady( self ):
if self.FiletypeCompletionEnabledForCurrentFile():
return self.GetFiletypeCompleterForCurrentFile().DiagnosticsForCurrentFileReady()
return False
2012-08-06 23:14:21 -04:00
def GetDiagnosticsForCurrentFile( self ):
if self.FiletypeCompletionEnabledForCurrentFile():
return self.GetFiletypeCompleterForCurrentFile().GetDiagnosticsForCurrentFile()
return []
def ShowDetailedDiagnostic( self ):
if self.FiletypeCompletionEnabledForCurrentFile():
return self.GetFiletypeCompleterForCurrentFile().ShowDetailedDiagnostic()
def OnCurrentIdentifierFinished( self ):
self.identcomp.OnCurrentIdentifierFinished()
if self.FiletypeCompletionEnabledForCurrentFile():
self.GetFiletypeCompleterForCurrentFile().OnCurrentIdentifierFinished()
2013-01-26 14:44:42 -05:00
def DebugInfo( self ):
completers = set( self.filetype_completers.values() )
completers.add( self.identcomp )
output = []
for completer in completers:
if not completer:
continue
debug = completer.DebugInfo()
if debug:
output.append( debug )
has_clang_support = ycm_core.HasClangSupport()
output.append( 'Has Clang support compiled in: {0}'.format(
has_clang_support ) )
if has_clang_support:
output.append( ycm_core.ClangVersion() )
return '\n'.join( output )
def _PathToCompletersFolder():
dir_of_current_script = os.path.dirname( os.path.abspath( __file__ ) )
return os.path.join( dir_of_current_script, 'completers' )
def _PathToFiletypeCompleterPluginLoader( filetype ):
return os.path.join( _PathToCompletersFolder(), filetype, 'hook.py' )
2012-04-15 19:57:10 -04:00
def CompletionStartColumn():
"""Returns the 0-based index where the completion string should start. So if
the user enters:
foo.bar^
with the cursor being at the location of the caret, then the starting column
would be the index of the letter 'b'.
"""
2012-04-15 19:57:10 -04:00
line = vim.current.line
start_column = vimsupport.CurrentColumn()
2012-04-15 19:57:10 -04:00
while start_column > 0 and utils.IsIdentifierChar( line[ start_column - 1 ] ):
2012-04-15 19:57:10 -04:00
start_column -= 1
return start_column
2012-05-08 00:23:38 -04:00
def CurrentIdentifierFinished():
current_column = vimsupport.CurrentColumn()
previous_char_index = current_column - 1
if previous_char_index < 0:
return True
line = vim.current.line
try:
previous_char = line[ previous_char_index ]
except IndexError:
return False
if utils.IsIdentifierChar( previous_char ):
return False
if ( not utils.IsIdentifierChar( previous_char ) and
previous_char_index > 0 and
utils.IsIdentifierChar( line[ previous_char_index - 1 ] ) ):
return True
else:
return line[ : current_column ].isspace()
2012-04-15 19:57:10 -04:00