#include "compilation_database_loader.h" #include #include #include "libclangmm/Utility.h" std::vector LoadCompilationEntriesFromDirectory(const std::string& project_directory) { CXCompilationDatabase_Error cx_db_load_error; CXCompilationDatabase cx_db = clang_CompilationDatabase_fromDirectory(project_directory.c_str(), &cx_db_load_error); if (cx_db_load_error == CXCompilationDatabase_CanNotLoadDatabase) { std::cerr << "[FATAL]: Unable to load compile_commands.json located at \"" << project_directory << "\""; exit(1); } CXCompileCommands cx_commands = clang_CompilationDatabase_getAllCompileCommands(cx_db); unsigned int num_commands = clang_CompileCommands_getSize(cx_commands); std::vector result; for (unsigned int i = 0; i < num_commands; i++) { CXCompileCommand cx_command = clang_CompileCommands_getCommand(cx_commands, i); CompilationEntry entry; entry.directory = clang::ToString(clang_CompileCommand_getDirectory(cx_command)); entry.filename = clang::ToString(clang_CompileCommand_getFilename(cx_command)); unsigned int num_args = clang_CompileCommand_getNumArgs(cx_command); entry.args.reserve(num_args); for (unsigned int j = 0; j < num_args; ++j) { entry.args.push_back(clang::ToString(clang_CompileCommand_getArg(cx_command, j))); } result.push_back(entry); } clang_CompileCommands_dispose(cx_commands); clang_CompilationDatabase_dispose(cx_db); return result; }