summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2018-12-27 18:09:43 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2018-12-27 18:09:43 (GMT)
commita13f5a7065d3467cd2f354f7a9fb5bd48c58ec82 (patch)
treee69d5b00f826ee547a9bb499e3999db5c27ed746 /src
parent60a9a48717acfba2fac5f3424dc59f9c6ebc9117 (diff)
downloadDoxygen-a13f5a7065d3467cd2f354f7a9fb5bd48c58ec82.zip
Doxygen-a13f5a7065d3467cd2f354f7a9fb5bd48c58ec82.tar.gz
Doxygen-a13f5a7065d3467cd2f354f7a9fb5bd48c58ec82.tar.bz2
Fix type and length of clang compilation database option
Diffstat (limited to 'src')
-rw-r--r--src/clangparser.cpp135
-rw-r--r--src/config.xml2
2 files changed, 73 insertions, 64 deletions
diff --git a/src/clangparser.cpp b/src/clangparser.cpp
index 18dd404..c22d5c5 100644
--- a/src/clangparser.cpp
+++ b/src/clangparser.cpp
@@ -162,7 +162,7 @@ void ClangParser::start(const char *fileName,QStrList &filesInTranslationUnit)
static bool clangAssistedParsing = Config_getBool(CLANG_ASSISTED_PARSING);
static QStrList &includePath = Config_getList(INCLUDE_PATH);
static QStrList clangOptions = Config_getList(CLANG_OPTIONS);
- static QCString clangCompileDatabase = Config_getList(CLANG_COMPILATION_DATABASE_PATH);
+ static QCString clangCompileDatabase = Config_getString(CLANG_DATABASE_PATH);
if (!clangAssistedParsing) return;
//printf("ClangParser::start(%s)\n",fileName);
p->fileName = fileName;
@@ -178,91 +178,100 @@ void ClangParser::start(const char *fileName,QStrList &filesInTranslationUnit)
clang::tooling::CompilationDatabase::loadFromDirectory(clangCompileDatabase.data(), error);
int clang_option_len = 0;
std::vector<clang::tooling::CompileCommand> command;
- if (strcmp(clangCompileDatabase, "0") != 0) {
- if (db == nullptr) {
+ if (qstrcmp(clangCompileDatabase, "0") != 0)
+ {
+ if (db == nullptr)
+ {
// user specified a path, but DB file was not found
err("%s using clang compilation database path of: \"%s\"\n", error.c_str(),
clangCompileDatabase.data());
- } else {
+ }
+ else
+ {
// check if the file we are parsing is in the DB
command = db->getCompileCommands(fileName);
- if (!command.empty() ) {
+ if (!command.empty() )
+ {
// it's possible to have multiple entries for the same file, so use the last entry
clang_option_len = command[command.size()-1].CommandLine.size();
}
}
}
char **argv = (char**)malloc(sizeof(char*)*(4+Doxygen::inputPaths.count()+includePath.count()+clangOptions.count()+clang_option_len));
- if (!command.empty() ) {
+ if (!command.empty() )
+ {
std::vector<std::string> options = command[command.size()-1].CommandLine;
// copy each compiler option used from the database. Skip the first which is compiler exe.
- for (auto option = options.begin()+1; option != options.end(); option++) {
+ for (auto option = options.begin()+1; option != options.end(); option++)
+ {
argv[argc++] = qstrdup(option->c_str());
}
// this extra addition to argv is accounted for as we are skipping the first entry in
argv[argc++]=qstrdup("-w"); // finally, turn off warnings.
- } else {
- // add include paths for input files
- for (di.toFirst();di.current();++di,++argc)
- {
- QCString inc = QCString("-I")+di.currentKey();
- argv[argc]=qstrdup(inc.data());
- //printf("argv[%d]=%s\n",argc,argv[argc]);
- }
- // add external include paths
- for (uint i=0;i<includePath.count();i++)
- {
- QCString inc = QCString("-I")+includePath.at(i);
- argv[argc++]=qstrdup(inc.data());
- }
- // user specified options
- for (uint i=0;i<clangOptions.count();i++)
- {
- argv[argc++]=qstrdup(clangOptions.at(i));
- }
- // extra options
- argv[argc++]=qstrdup("-ferror-limit=0");
- argv[argc++]=qstrdup("-x");
-
- // Since we can be presented with a .h file that can contain C/C++ or
- // Objective C code and we need to configure the parser before knowing this,
- // we use the source file to detected the language. Detection will fail if you
- // pass a bunch of .h files containing ObjC code, and no sources :-(
- SrcLangExt lang = getLanguageFromFileName(fileName);
- if (lang==SrcLangExt_ObjC || p->detectedLang!=ClangParser::Private::Detected_Cpp)
- {
- QCString fn = fileName;
- if (p->detectedLang==ClangParser::Private::Detected_Cpp &&
- (fn.right(4).lower()==".cpp" || fn.right(4).lower()==".cxx" ||
- fn.right(3).lower()==".cc" || fn.right(2).lower()==".c"))
- { // fall back to C/C++ once we see an extension that indicates this
- p->detectedLang = ClangParser::Private::Detected_Cpp;
+ }
+ else
+ {
+ // add include paths for input files
+ for (di.toFirst();di.current();++di,++argc)
+ {
+ QCString inc = QCString("-I")+di.currentKey();
+ argv[argc]=qstrdup(inc.data());
+ //printf("argv[%d]=%s\n",argc,argv[argc]);
}
- else if (fn.right(3).lower()==".mm") // switch to Objective C++
+ // add external include paths
+ for (uint i=0;i<includePath.count();i++)
{
- p->detectedLang = ClangParser::Private::Detected_ObjCpp;
+ QCString inc = QCString("-I")+includePath.at(i);
+ argv[argc++]=qstrdup(inc.data());
}
- else if (fn.right(2).lower()==".m") // switch to Objective C
+ // user specified options
+ for (uint i=0;i<clangOptions.count();i++)
{
- p->detectedLang = ClangParser::Private::Detected_ObjC;
+ argv[argc++]=qstrdup(clangOptions.at(i));
+ }
+ // extra options
+ argv[argc++]=qstrdup("-ferror-limit=0");
+ argv[argc++]=qstrdup("-x");
+
+ // Since we can be presented with a .h file that can contain C/C++ or
+ // Objective C code and we need to configure the parser before knowing this,
+ // we use the source file to detected the language. Detection will fail if you
+ // pass a bunch of .h files containing ObjC code, and no sources :-(
+ SrcLangExt lang = getLanguageFromFileName(fileName);
+ if (lang==SrcLangExt_ObjC || p->detectedLang!=ClangParser::Private::Detected_Cpp)
+ {
+ QCString fn = fileName;
+ if (p->detectedLang==ClangParser::Private::Detected_Cpp &&
+ (fn.right(4).lower()==".cpp" || fn.right(4).lower()==".cxx" ||
+ fn.right(3).lower()==".cc" || fn.right(2).lower()==".c"))
+ { // fall back to C/C++ once we see an extension that indicates this
+ p->detectedLang = ClangParser::Private::Detected_Cpp;
+ }
+ else if (fn.right(3).lower()==".mm") // switch to Objective C++
+ {
+ p->detectedLang = ClangParser::Private::Detected_ObjCpp;
+ }
+ else if (fn.right(2).lower()==".m") // switch to Objective C
+ {
+ p->detectedLang = ClangParser::Private::Detected_ObjC;
+ }
+ }
+ switch(p->detectedLang)
+ {
+ case ClangParser::Private::Detected_Cpp:
+ argv[argc++]=qstrdup("c++");
+ break;
+ case ClangParser::Private::Detected_ObjC:
+ argv[argc++]=qstrdup("objective-c");
+ break;
+ case ClangParser::Private::Detected_ObjCpp:
+ argv[argc++]=qstrdup("objective-c++");
+ break;
}
- }
- switch(p->detectedLang)
- {
- case ClangParser::Private::Detected_Cpp:
- argv[argc++]=qstrdup("c++");
- break;
- case ClangParser::Private::Detected_ObjC:
- argv[argc++]=qstrdup("objective-c");
- break;
- case ClangParser::Private::Detected_ObjCpp:
- argv[argc++]=qstrdup("objective-c++");
- break;
- }
- // provide the input and and its dependencies as unsaved files so we can
- // pass the filtered versions
- argv[argc++]=qstrdup(fileName);
+ // provide the input and and its dependencies as unsaved files so we can
+ // pass the filtered versions
+ argv[argc++]=qstrdup(fileName);
}
static bool filterSourceFiles = Config_getBool(FILTER_SOURCE_FILES);
//printf("source %s ----------\n%s\n-------------\n\n",
diff --git a/src/config.xml b/src/config.xml
index 00a972d..fdc562d 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -1692,7 +1692,7 @@ to disable this feature.
]]>
</docs>
</option>
- <option type='string' id='CLANG_COMPILATION_DATABASE_PATH' setting='USE_LIBCLANG' defval='0'>
+ <option type='string' id='CLANG_DATABASE_PATH' setting='USE_LIBCLANG' defval=''>
<docs>
<![CDATA[
If clang assisted parsing is enabled you can provide the clang parser with the