mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
40 lines
1.5 KiB
C++
40 lines
1.5 KiB
C++
|
#include "compilation_database_loader.h"
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <clang-c/CXCompilationDatabase.h>
|
||
|
|
||
|
#include "libclangmm/Utility.h"
|
||
|
|
||
|
std::vector<CompilationEntry> 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<CompilationEntry> 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;
|
||
|
}
|