Filename completer now uses include paths

It's also smart enough to trigger filename completion right after '#include "'.

Fixes #261
This commit is contained in:
Strahinja Val Markovic 2013-04-24 22:51:53 -07:00
parent 3ae9764451
commit 663873255f
3 changed files with 93 additions and 23 deletions

View File

@ -289,7 +289,9 @@ class ClangCompleter( Completer ):
filename = vim.current.buffer.name filename = vim.current.buffer.name
flags = self.flags.FlagsForFile( filename ) or [] flags = self.flags.FlagsForFile( filename ) or []
source = extra_conf_store.ModuleFileForSourceFile( filename ) source = extra_conf_store.ModuleFileForSourceFile( filename )
return 'Flags for {0} loaded from {1}:\n{2}'.format( filename, source, list( flags ) ) return 'Flags for {0} loaded from {1}:\n{2}'.format( filename,
source,
list( flags ) )
# TODO: make these functions module-local # TODO: make these functions module-local

View File

@ -38,7 +38,7 @@ class Flags( object ):
self.no_extra_conf_file_warning_posted = False self.no_extra_conf_file_warning_posted = False
def FlagsForFile( self, filename ): def FlagsForFile( self, filename, add_special_clang_flags = True ):
try: try:
return self.flags_for_file[ filename ] return self.flags_for_file[ filename ]
except KeyError: except KeyError:
@ -54,7 +54,8 @@ class Flags( object ):
if not results.get( 'flags_ready', True ): if not results.get( 'flags_ready', True ):
return None return None
results[ 'flags' ] += self.special_clang_flags if add_special_clang_flags:
results[ 'flags' ] += self.special_clang_flags
sanitized_flags = _SanitizeFlags( results[ 'flags' ] ) sanitized_flags = _SanitizeFlags( results[ 'flags' ] )
if results[ 'do_cache' ]: if results[ 'do_cache' ]:
@ -62,6 +63,34 @@ class Flags( object ):
return sanitized_flags return sanitized_flags
def UserIncludePaths( self, filename ):
flags = self.FlagsForFile( filename, False )
if not flags:
return []
include_paths = []
path_flags = [ '-isystem', '-I', '-iquote' ]
next_flag_is_include_path = False
for flag in flags:
if next_flag_is_include_path:
next_flag_is_include_path = False
if flag:
include_paths.append( flag )
for path_flag in path_flags:
if flag == path_flag:
next_flag_is_include_path = True
break
if flag.startswith( path_flag ):
path = flag[ len( path_flag ): ]
if path:
include_paths.append( path )
return include_paths
def _SanitizeFlags( flags ): def _SanitizeFlags( flags ):
"""Drops unsafe flags. Currently these are only -arch flags; they tend to """Drops unsafe flags. Currently these are only -arch flags; they tend to
crash libclang.""" crash libclang."""

View File

@ -18,6 +18,7 @@
from completers.threaded_completer import ThreadedCompleter from completers.threaded_completer import ThreadedCompleter
from completers.cpp.clang_completer import InCFamilyFile from completers.cpp.clang_completer import InCFamilyFile
from completers.cpp.flags import Flags
import vim import vim
import vimsupport import vimsupport
import os import os
@ -26,6 +27,7 @@ import re
USE_WORKING_DIR = vimsupport.GetBoolValue( USE_WORKING_DIR = vimsupport.GetBoolValue(
'g:ycm_filepath_completion_use_working_dir' ) 'g:ycm_filepath_completion_use_working_dir' )
class FilenameCompleter( ThreadedCompleter ): class FilenameCompleter( ThreadedCompleter ):
""" """
General completer that provides filename and filepath completions. General completer that provides filename and filepath completions.
@ -33,6 +35,7 @@ class FilenameCompleter( ThreadedCompleter ):
def __init__( self ): def __init__( self ):
super( FilenameCompleter, self ).__init__() super( FilenameCompleter, self ).__init__()
self._flags = Flags()
self._path_regex = re.compile( """ self._path_regex = re.compile( """
# 1 or more 'D:/'-like token or '/' or '~' or './' or '../' # 1 or more 'D:/'-like token or '/' or '~' or './' or '../'
@ -48,17 +51,20 @@ class FilenameCompleter( ThreadedCompleter ):
\\.)*$ \\.)*$
""", re.X ) """, re.X )
self._include_regex = re.compile( '^\s*#(?:include|import)\s*(?:"|<)$' ) include_regex_common = '^\s*#(?:include|import)\s*(?:"|<)'
self._include_start_regex = re.compile( include_regex_common + '$' )
self._include_regex = re.compile( include_regex_common )
def AtIncludeStatmentStart( self, start_column ): def AtIncludeStatementStart( self, start_column ):
return ( InCFamilyFile() and return ( InCFamilyFile() and
self._include_regex.match( vim.current.line[ :start_column ] ) ) self._include_start_regex.match(
vim.current.line[ :start_column ] ) )
def ShouldUseNowInner( self, start_column ): def ShouldUseNowInner( self, start_column ):
return ( vim.current.line[ start_column - 1 ] == '/' or return ( vim.current.line[ start_column - 1 ] == '/' or
self.AtIncludeStatmentStart( start_column ) ) self.AtIncludeStatementStart( start_column ) )
def SupportedFiletypes( self ): def SupportedFiletypes( self ):
@ -66,23 +72,56 @@ class FilenameCompleter( ThreadedCompleter ):
def ComputeCandidates( self, unused_query, start_column ): def ComputeCandidates( self, unused_query, start_column ):
def GenerateCandidateForPath( path, path_dir ):
is_dir = os.path.isdir( os.path.join( path_dir, path ) )
return { 'word': path,
'dup': 1,
'menu': '[Dir]' if is_dir else '[File]' }
line = vim.current.line[ :start_column ] line = vim.current.line[ :start_column ]
match = self._path_regex.search( line )
path_dir = os.path.expanduser( match.group() ) if match else ''
if not USE_WORKING_DIR and not path_dir.startswith( '/' ): if InCFamilyFile():
path_dir = os.path.join( os.path.dirname( vim.current.buffer.name ), include_match = self._include_regex.search( line )
path_dir ) if include_match:
path_dir = line[ include_match.end(): ]
return GenerateCandidatesForPaths(
self.GetPathsIncludeCase( path_dir ) )
try: path_match = self._path_regex.search( line )
paths = os.listdir( path_dir ) path_dir = os.path.expanduser( path_match.group() ) if path_match else ''
except:
paths = []
return [ GenerateCandidateForPath( path, path_dir ) for path in paths ] return GenerateCandidatesForPaths( GetPathsStandardCase( path_dir ) )
def GetPathsIncludeCase( self, path_dir ):
paths = []
include_paths = self._flags.UserIncludePaths( vim.current.buffer.name )
for include_path in include_paths:
try:
relative_paths = os.listdir( os.path.join( include_path, path_dir ) )
except:
relative_paths = []
paths.extend( os.path.join( include_path, relative_path ) for
relative_path in relative_paths )
return sorted( set( paths ) )
def GetPathsStandardCase( path_dir ):
if not USE_WORKING_DIR and not path_dir.startswith( '/' ):
path_dir = os.path.join( os.path.dirname( vim.current.buffer.name ),
path_dir )
try:
relative_paths = os.listdir( path_dir )
except:
relative_paths = []
return ( os.path.join( path_dir, relative_path )
for relative_path in relative_paths )
def GenerateCandidatesForPaths( absolute_paths ):
def GenerateCandidateForPath( absolute_path ):
is_dir = os.path.isdir( absolute_path )
return { 'word': os.path.basename( absolute_path ),
'dup': 1,
'menu': '[Dir]' if is_dir else '[File]' }
return [ GenerateCandidateForPath( path ) for path in absolute_paths ]