- folders = findCompilationDatabaseFolder(cwd)
- if not folders:
- folder = None
- else:
- folder = folders[0]
- if len(folders) > 1:
- print("Multiple compilation databases found!")
- print(folders)
- print("Selecting first: %s" % (folder))
-
- if folder:
- database = ycm_core.CompilationDatabase(folder)
- compilation_info = GetCompilationInfoForFile(database, filename)
+
+def make_relative_paths_in_flags_absolute(flags, working_directory):
+ if not working_directory:
+ return list(flags)
+ new_flags = []
+ make_next_absolute = False
+ path_flags = [ '-isystem', '-I', '-iquote', '--sysroot=' ]
+ for flag in flags:
+ new_flag = flag
+ if make_next_absolute:
+ make_next_absolute = False
+ if not flag.startswith('/'):
+ new_flag = os.path.join(working_directory, flag)
+ for path_flag in path_flags:
+ if flag == path_flag:
+ make_next_absolute = True
+ break
+ if flag.startswith(path_flag):
+ path = flag[ len(path_flag): ]
+ new_flag = path_flag + os.path.join(working_directory, path)
+ break
+ if new_flag:
+ new_flags.append(new_flag)
+ return new_flags
+
+
+def flags_for_include(root):
+ try:
+ include_path = find_nearest(root, 'include')
+ flags = []
+ for dirroot, dirnames, filenames in os.walk(include_path):
+ for dir_path in dirnames:
+ real_path = os.path.join(dirroot, dir_path)
+ flags = flags + ["-I" + real_path]
+ return flags
+ except Exception as err:
+ logging.info("Error while looking flags for includes in root: " + root)
+ logging.error(err)
+ return None
+
+
+def flags_for_compilation_database(root, filename):
+ try:
+ compilation_db_path = find_nearest_compilation_database(root)
+ compilation_db_dir = os.path.dirname(compilation_db_path)
+ logging.info("Set compilation database directory to " + compilation_db_dir)
+ compilation_db = ycm_core.CompilationDatabase(compilation_db_dir)
+ if not compilation_db:
+ logging.info("Compilation database file found but unable to load")
+ return None
+ compilation_info = get_compilation_info_for_file(
+ compilation_db_path, compilation_db, filename)