2016-08-13 10:50:03 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2019-02-09 07:24:06 +01:00
|
|
|
* Copyright (C) 2007-2019 Cppcheck team.
|
2016-08-13 10:50:03 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "importproject.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
#include "path.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "tinyxml2.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
#include "token.h"
|
|
|
|
#include "tokenize.h"
|
|
|
|
#include "tokenlist.h"
|
2017-04-01 18:14:18 +02:00
|
|
|
#include "utils.h"
|
2019-01-05 17:45:07 +01:00
|
|
|
#include "../externals/picojson.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
|
|
|
|
#include <cstring>
|
2016-08-13 10:50:03 +02:00
|
|
|
#include <fstream>
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <utility>
|
2016-08-13 10:50:03 +02:00
|
|
|
|
2017-09-24 22:36:20 +02:00
|
|
|
|
2016-12-06 20:02:43 +01:00
|
|
|
void ImportProject::ignorePaths(const std::vector<std::string> &ipaths)
|
2016-08-13 10:50:03 +02:00
|
|
|
{
|
|
|
|
for (std::list<FileSettings>::iterator it = fileSettings.begin(); it != fileSettings.end();) {
|
|
|
|
bool ignore = false;
|
|
|
|
for (std::size_t i = 0; i < ipaths.size(); ++i) {
|
|
|
|
if (it->filename.size() > ipaths[i].size() && it->filename.compare(0,ipaths[i].size(),ipaths[i])==0) {
|
|
|
|
ignore = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ignore)
|
|
|
|
fileSettings.erase(it++);
|
|
|
|
else
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-21 15:57:38 +02:00
|
|
|
void ImportProject::ignoreOtherConfigs(const std::string &cfg)
|
|
|
|
{
|
|
|
|
for (std::list<FileSettings>::iterator it = fileSettings.begin(); it != fileSettings.end();) {
|
|
|
|
if (it->cfg != cfg)
|
|
|
|
fileSettings.erase(it++);
|
|
|
|
else
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-20 13:47:25 +02:00
|
|
|
void ImportProject::ignoreOtherPlatforms(cppcheck::Platform::PlatformType platformType)
|
|
|
|
{
|
|
|
|
for (std::list<FileSettings>::iterator it = fileSettings.begin(); it != fileSettings.end();) {
|
|
|
|
if (it->platformType != cppcheck::Platform::Unspecified && it->platformType != platformType)
|
|
|
|
fileSettings.erase(it++);
|
|
|
|
else
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
void ImportProject::FileSettings::setDefines(std::string defs)
|
|
|
|
{
|
|
|
|
while (defs.find(";%(") != std::string::npos) {
|
2018-04-04 21:51:31 +02:00
|
|
|
const std::string::size_type pos1 = defs.find(";%(");
|
|
|
|
const std::string::size_type pos2 = defs.find(';', pos1+1);
|
2016-08-13 10:50:03 +02:00
|
|
|
defs.erase(pos1, pos2 == std::string::npos ? pos2 : (pos2-pos1));
|
|
|
|
}
|
|
|
|
while (defs.find(";;") != std::string::npos)
|
|
|
|
defs.erase(defs.find(";;"),1);
|
2018-05-20 18:19:20 +02:00
|
|
|
while (!defs.empty() && defs[0] == ';')
|
|
|
|
defs.erase(0, 1);
|
|
|
|
while (!defs.empty() && endsWith(defs,';'))
|
2016-12-05 22:55:57 +01:00
|
|
|
defs.erase(defs.size() - 1U); // TODO: Use std::string::pop_back() as soon as travis supports it
|
2016-08-13 10:50:03 +02:00
|
|
|
bool eq = false;
|
|
|
|
for (std::size_t pos = 0; pos < defs.size(); ++pos) {
|
|
|
|
if (defs[pos] == '(' || defs[pos] == '=')
|
|
|
|
eq = true;
|
|
|
|
else if (defs[pos] == ';') {
|
|
|
|
if (!eq) {
|
|
|
|
defs.insert(pos,"=1");
|
|
|
|
pos += 3;
|
|
|
|
}
|
|
|
|
if (pos < defs.size())
|
|
|
|
eq = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!eq && !defs.empty())
|
|
|
|
defs += "=1";
|
|
|
|
defines.swap(defs);
|
|
|
|
}
|
|
|
|
|
2017-09-24 22:36:20 +02:00
|
|
|
static bool simplifyPathWithVariables(std::string &s, std::map<std::string, std::string, cppcheck::stricmp> &variables)
|
2016-11-20 22:44:50 +01:00
|
|
|
{
|
2017-09-24 22:36:20 +02:00
|
|
|
std::set<std::string, cppcheck::stricmp> expanded;
|
2016-11-20 22:44:50 +01:00
|
|
|
std::string::size_type start = 0;
|
|
|
|
while ((start = s.find("$(")) != std::string::npos) {
|
2018-04-04 21:51:31 +02:00
|
|
|
const std::string::size_type end = s.find(')',start);
|
2016-11-20 22:44:50 +01:00
|
|
|
if (end == std::string::npos)
|
|
|
|
break;
|
2016-12-06 20:02:43 +01:00
|
|
|
const std::string var = s.substr(start+2,end-start-2);
|
2016-11-20 22:44:50 +01:00
|
|
|
if (expanded.find(var) != expanded.end())
|
|
|
|
break;
|
|
|
|
expanded.insert(var);
|
2017-09-24 22:36:20 +02:00
|
|
|
std::map<std::string, std::string, cppcheck::stricmp>::const_iterator it1 = variables.find(var);
|
2017-06-27 12:41:25 +02:00
|
|
|
// variable was not found within defined variables
|
|
|
|
if (it1 == variables.end()) {
|
|
|
|
const char *envValue = std::getenv(var.c_str());
|
|
|
|
if (!envValue) {
|
2018-06-07 08:33:32 +02:00
|
|
|
//! \todo generate a debug/info message about undefined variable
|
2017-06-27 12:41:25 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
variables[var] = std::string(envValue);
|
|
|
|
it1 = variables.find(var);
|
|
|
|
}
|
|
|
|
s = s.substr(0, start) + it1->second + s.substr(end + 1);
|
2016-11-20 22:44:50 +01:00
|
|
|
}
|
|
|
|
if (s.find("$(") != std::string::npos)
|
|
|
|
return false;
|
|
|
|
s = Path::simplifyPath(Path::fromNativeSeparators(s));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-24 22:36:20 +02:00
|
|
|
void ImportProject::FileSettings::setIncludePaths(const std::string &basepath, const std::list<std::string> &in, std::map<std::string, std::string, cppcheck::stricmp> &variables)
|
2016-08-13 10:50:03 +02:00
|
|
|
{
|
|
|
|
std::list<std::string> I;
|
2017-06-22 16:49:36 +02:00
|
|
|
// only parse each includePath once - so remove duplicates
|
|
|
|
std::list<std::string> uniqueIncludePaths = in;
|
|
|
|
uniqueIncludePaths.sort();
|
|
|
|
uniqueIncludePaths.unique();
|
|
|
|
|
2018-08-19 17:27:41 +02:00
|
|
|
for (const std::string &it : uniqueIncludePaths) {
|
|
|
|
if (it.empty())
|
2016-08-13 10:50:03 +02:00
|
|
|
continue;
|
2018-08-19 17:27:41 +02:00
|
|
|
if (it.compare(0,2,"%(")==0)
|
2016-08-13 10:50:03 +02:00
|
|
|
continue;
|
2018-08-19 17:27:41 +02:00
|
|
|
std::string s(Path::fromNativeSeparators(it));
|
2016-08-13 10:50:03 +02:00
|
|
|
if (s[0] == '/' || (s.size() > 1U && s.compare(1,2,":/") == 0)) {
|
2017-04-01 18:14:18 +02:00
|
|
|
if (!endsWith(s,'/'))
|
2016-08-13 10:50:03 +02:00
|
|
|
s += '/';
|
|
|
|
I.push_back(s);
|
|
|
|
continue;
|
|
|
|
}
|
2016-11-11 16:22:14 +01:00
|
|
|
|
2017-04-01 18:14:18 +02:00
|
|
|
if (endsWith(s,'/')) // this is a temporary hack, simplifyPath can crash if path ends with '/'
|
2016-12-05 22:55:57 +01:00
|
|
|
s.erase(s.size() - 1U); // TODO: Use std::string::pop_back() as soon as travis supports it
|
2016-11-11 16:22:14 +01:00
|
|
|
|
2018-08-19 17:27:41 +02:00
|
|
|
if (s.find("$(") == std::string::npos) {
|
2016-11-11 16:22:14 +01:00
|
|
|
s = Path::simplifyPath(basepath + s);
|
2016-11-13 12:16:09 +01:00
|
|
|
} else {
|
2018-08-19 17:27:41 +02:00
|
|
|
if (!simplifyPathWithVariables(s, variables))
|
2016-11-13 12:16:09 +01:00
|
|
|
continue;
|
2016-11-11 16:22:14 +01:00
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
if (s.empty())
|
|
|
|
continue;
|
|
|
|
I.push_back(s + '/');
|
|
|
|
}
|
|
|
|
includePaths.swap(I);
|
|
|
|
}
|
|
|
|
|
2019-01-31 20:40:15 +01:00
|
|
|
ImportProject::Type ImportProject::import(const std::string &filename, Settings *settings)
|
2016-08-13 10:50:03 +02:00
|
|
|
{
|
|
|
|
std::ifstream fin(filename);
|
|
|
|
if (!fin.is_open())
|
2019-01-31 20:40:15 +01:00
|
|
|
return ImportProject::Type::MISSING;
|
2018-08-31 16:06:52 +02:00
|
|
|
if (endsWith(filename, ".json", 5)) {
|
2016-08-13 10:50:03 +02:00
|
|
|
importCompileCommands(fin);
|
2019-01-31 20:40:15 +01:00
|
|
|
return ImportProject::Type::COMPILE_DB;
|
2018-07-25 16:26:25 +02:00
|
|
|
} else if (endsWith(filename, ".sln", 4)) {
|
2016-08-13 10:50:03 +02:00
|
|
|
std::string path(Path::getPathFromFilename(Path::fromNativeSeparators(filename)));
|
2017-04-01 18:14:18 +02:00
|
|
|
if (!path.empty() && !endsWith(path,'/'))
|
2016-08-13 10:50:03 +02:00
|
|
|
path += '/';
|
|
|
|
importSln(fin,path);
|
2019-01-31 20:40:15 +01:00
|
|
|
return ImportProject::Type::VS_SLN;
|
2018-07-25 16:26:25 +02:00
|
|
|
} else if (endsWith(filename, ".vcxproj", 8)) {
|
2017-09-24 22:36:20 +02:00
|
|
|
std::map<std::string, std::string, cppcheck::stricmp> variables;
|
2017-03-01 10:50:50 +01:00
|
|
|
importVcxproj(filename, variables, emptyString);
|
2019-01-31 20:40:15 +01:00
|
|
|
return ImportProject::Type::VS_VCXPROJ;
|
2018-07-25 16:26:25 +02:00
|
|
|
} else if (endsWith(filename, ".bpr", 4)) {
|
2018-05-20 18:19:20 +02:00
|
|
|
importBcb6Prj(filename);
|
2019-01-31 20:40:15 +01:00
|
|
|
return ImportProject::Type::BORLAND;
|
2019-01-31 23:52:48 +01:00
|
|
|
} else if (settings && endsWith(filename, ".cppcheck", 9)) {
|
2019-01-31 20:40:15 +01:00
|
|
|
return importCppcheckGuiProject(fin, settings) ? ImportProject::Type::CPPCHECK_GUI : ImportProject::Type::MISSING;
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
2019-01-31 20:40:15 +01:00
|
|
|
return ImportProject::Type::UNKNOWN;
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
|
2019-01-05 17:45:07 +01:00
|
|
|
static std::string readUntil(const std::string &command, std::string::size_type *pos, const char until[])
|
2016-08-13 10:50:03 +02:00
|
|
|
{
|
2019-01-05 17:45:07 +01:00
|
|
|
std::string ret;
|
|
|
|
bool str = false;
|
|
|
|
while (*pos < command.size() && (str || !std::strchr(until, command[*pos]))) {
|
|
|
|
if (command[*pos] == '\\')
|
|
|
|
++*pos;
|
|
|
|
if (*pos < command.size())
|
|
|
|
ret += command[(*pos)++];
|
|
|
|
if (endsWith(ret, '\"'))
|
|
|
|
str = !str;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
|
2019-01-05 17:45:07 +01:00
|
|
|
void ImportProject::FileSettings::parseCommand(const std::string &command)
|
|
|
|
{
|
|
|
|
std::string defs;
|
2016-08-13 10:50:03 +02:00
|
|
|
|
2019-01-05 17:45:07 +01:00
|
|
|
// Parse command..
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
while (std::string::npos != (pos = command.find(' ',pos))) {
|
|
|
|
while (pos < command.size() && command[pos] == ' ')
|
|
|
|
pos++;
|
|
|
|
if (pos >= command.size())
|
|
|
|
break;
|
|
|
|
if (command[pos] != '/' && command[pos] != '-')
|
|
|
|
continue;
|
|
|
|
pos++;
|
|
|
|
if (pos >= command.size())
|
|
|
|
break;
|
|
|
|
const char F = command[pos++];
|
|
|
|
if (std::strchr("DUI", F)) {
|
|
|
|
while (pos < command.size() && command[pos] == ' ')
|
|
|
|
++pos;
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
2019-01-05 17:45:07 +01:00
|
|
|
const std::string fval = readUntil(command, &pos, " =");
|
|
|
|
if (F=='D') {
|
|
|
|
const std::string defval = readUntil(command, &pos, " ");
|
|
|
|
defs += fval;
|
|
|
|
if (!defval.empty())
|
|
|
|
defs += defval;
|
|
|
|
defs += ';';
|
|
|
|
} else if (F=='U')
|
|
|
|
undefs.insert(fval);
|
|
|
|
else if (F=='I')
|
|
|
|
includePaths.push_back(fval);
|
|
|
|
else if (F=='s' && fval.compare(0,3,"td=") == 0)
|
|
|
|
standard = fval.substr(3);
|
|
|
|
else if (F == 'i' && fval == "system") {
|
|
|
|
++pos;
|
|
|
|
const std::string isystem = readUntil(command, &pos, " ");
|
|
|
|
systemIncludePaths.push_back(isystem);
|
2018-04-05 15:40:59 +02:00
|
|
|
}
|
2019-01-05 17:45:07 +01:00
|
|
|
}
|
|
|
|
setDefines(defs);
|
|
|
|
}
|
2018-04-05 15:40:59 +02:00
|
|
|
|
2019-01-05 17:45:07 +01:00
|
|
|
void ImportProject::importCompileCommands(std::istream &istr)
|
|
|
|
{
|
2019-01-21 06:36:23 +01:00
|
|
|
picojson::value compileCommands;
|
|
|
|
istr >> compileCommands;
|
|
|
|
if (!compileCommands.is<picojson::array>())
|
2019-01-05 17:45:07 +01:00
|
|
|
return;
|
|
|
|
|
2019-01-21 06:36:23 +01:00
|
|
|
for (const picojson::value &fileInfo : compileCommands.get<picojson::array>()) {
|
2019-01-05 17:45:07 +01:00
|
|
|
picojson::object obj = fileInfo.get<picojson::object>();
|
2019-01-21 06:36:23 +01:00
|
|
|
std::string dirpath = Path::fromNativeSeparators(obj["directory"].get<std::string>());
|
2019-01-11 16:36:55 +01:00
|
|
|
|
|
|
|
/* CMAKE produces the directory without trailing / so add it if not
|
|
|
|
* there - it is needed by setIncludePaths() */
|
2019-01-11 16:37:12 +01:00
|
|
|
if (!endsWith(dirpath, '/'))
|
2019-01-11 16:36:55 +01:00
|
|
|
dirpath += '/';
|
|
|
|
|
2019-01-21 06:36:23 +01:00
|
|
|
const std::string directory = dirpath;
|
2019-01-05 17:45:07 +01:00
|
|
|
const std::string command = obj["command"].get<std::string>();
|
|
|
|
const std::string file = Path::fromNativeSeparators(obj["file"].get<std::string>());
|
|
|
|
|
2019-01-21 06:36:23 +01:00
|
|
|
// Accept file?
|
|
|
|
if (!Path::acceptFile(file))
|
|
|
|
continue;
|
|
|
|
|
2019-01-05 17:45:07 +01:00
|
|
|
struct FileSettings fs;
|
2019-01-05 23:11:43 +01:00
|
|
|
if (Path::isAbsolute(file) || Path::fileExists(file))
|
|
|
|
fs.filename = file;
|
|
|
|
else {
|
|
|
|
std::string path = directory;
|
|
|
|
if (!path.empty() && !endsWith(path,'/'))
|
|
|
|
path += '/';
|
|
|
|
path += file;
|
|
|
|
fs.filename = Path::simplifyPath(path);
|
|
|
|
}
|
2019-01-05 17:45:07 +01:00
|
|
|
fs.parseCommand(command); // read settings; -D, -I, -U, -std
|
|
|
|
std::map<std::string, std::string, cppcheck::stricmp> variables;
|
|
|
|
fs.setIncludePaths(directory, fs.includePaths, variables);
|
|
|
|
fileSettings.push_back(fs);
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImportProject::importSln(std::istream &istr, const std::string &path)
|
|
|
|
{
|
2017-09-24 22:36:20 +02:00
|
|
|
std::map<std::string,std::string,cppcheck::stricmp> variables;
|
2016-11-11 16:22:14 +01:00
|
|
|
variables["SolutionDir"] = path;
|
2016-11-13 12:16:09 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
std::string line;
|
|
|
|
while (std::getline(istr,line)) {
|
|
|
|
if (line.compare(0,8,"Project(")!=0)
|
|
|
|
continue;
|
|
|
|
const std::string::size_type pos = line.find(".vcxproj");
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
continue;
|
2016-11-30 12:01:22 +01:00
|
|
|
const std::string::size_type pos1 = line.rfind('\"',pos);
|
2017-08-01 11:45:51 +02:00
|
|
|
if (pos1 == std::string::npos)
|
2016-08-13 10:50:03 +02:00
|
|
|
continue;
|
2017-07-10 11:12:48 +02:00
|
|
|
std::string vcxproj(line.substr(pos1+1, pos-pos1+7));
|
|
|
|
if (!Path::isAbsolute(vcxproj))
|
|
|
|
vcxproj = path + vcxproj;
|
|
|
|
importVcxproj(Path::fromNativeSeparators(vcxproj), variables, emptyString);
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct ProjectConfiguration {
|
2017-08-02 07:59:25 +02:00
|
|
|
explicit ProjectConfiguration(const tinyxml2::XMLElement *cfg) : platform(Unknown) {
|
2016-08-13 10:50:03 +02:00
|
|
|
const char *a = cfg->Attribute("Include");
|
|
|
|
if (a)
|
|
|
|
name = a;
|
|
|
|
for (const tinyxml2::XMLElement *e = cfg->FirstChildElement(); e; e = e->NextSiblingElement()) {
|
2017-08-02 08:00:52 +02:00
|
|
|
if (!e->GetText())
|
|
|
|
continue;
|
|
|
|
if (std::strcmp(e->Name(),"Configuration")==0)
|
|
|
|
configuration = e->GetText();
|
|
|
|
else if (std::strcmp(e->Name(),"Platform")==0) {
|
|
|
|
platformStr = e->GetText();
|
|
|
|
if (platformStr == "Win32")
|
|
|
|
platform = Win32;
|
|
|
|
else if (platformStr == "x64")
|
|
|
|
platform = x64;
|
|
|
|
else
|
|
|
|
platform = Unknown;
|
2016-08-24 12:17:54 +02:00
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
std::string name;
|
|
|
|
std::string configuration;
|
2017-06-01 13:13:23 +02:00
|
|
|
enum { Win32, x64, Unknown } platform;
|
|
|
|
std::string platformStr;
|
2016-08-13 10:50:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ItemDefinitionGroup {
|
2016-11-13 12:16:09 +01:00
|
|
|
explicit ItemDefinitionGroup(const tinyxml2::XMLElement *idg, const std::string &includePaths) : additionalIncludePaths(includePaths) {
|
2016-08-13 10:50:03 +02:00
|
|
|
const char *condAttr = idg->Attribute("Condition");
|
|
|
|
if (condAttr)
|
|
|
|
condition = condAttr;
|
|
|
|
for (const tinyxml2::XMLElement *e1 = idg->FirstChildElement(); e1; e1 = e1->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(e1->Name(), "ClCompile") != 0)
|
|
|
|
continue;
|
|
|
|
for (const tinyxml2::XMLElement *e = e1->FirstChildElement(); e; e = e->NextSiblingElement()) {
|
2016-08-24 12:17:54 +02:00
|
|
|
if (e->GetText()) {
|
|
|
|
if (std::strcmp(e->Name(), "PreprocessorDefinitions") == 0)
|
|
|
|
preprocessorDefinitions = e->GetText();
|
2016-11-13 12:16:09 +01:00
|
|
|
else if (std::strcmp(e->Name(), "AdditionalIncludeDirectories") == 0) {
|
|
|
|
if (!additionalIncludePaths.empty())
|
|
|
|
additionalIncludePaths += ';';
|
|
|
|
additionalIncludePaths += e->GetText();
|
|
|
|
}
|
2016-08-24 12:17:54 +02:00
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-20 13:00:47 +02:00
|
|
|
|
|
|
|
static void replaceAll(std::string &c, const std::string &from, const std::string &to) {
|
|
|
|
std::string::size_type pos;
|
|
|
|
while ((pos = c.find(from)) != std::string::npos) {
|
|
|
|
c.erase(pos,from.size());
|
|
|
|
c.insert(pos,to);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
bool conditionIsTrue(const ProjectConfiguration &p) const {
|
2016-12-07 17:03:46 +01:00
|
|
|
if (condition.empty())
|
|
|
|
return true;
|
2016-11-20 22:44:50 +01:00
|
|
|
std::string c = '(' + condition + ");";
|
2016-08-20 13:00:47 +02:00
|
|
|
replaceAll(c, "$(Configuration)", p.configuration);
|
2017-06-01 13:13:23 +02:00
|
|
|
replaceAll(c, "$(Platform)", p.platformStr);
|
2016-08-20 13:00:47 +02:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
// TODO : Better evaluation
|
|
|
|
Settings s;
|
|
|
|
std::istringstream istr(c);
|
2016-08-20 13:00:47 +02:00
|
|
|
Tokenizer tokenizer(&s, nullptr);
|
|
|
|
tokenizer.tokenize(istr,"vcxproj");
|
|
|
|
for (const Token *tok = tokenizer.tokens(); tok; tok = tok->next()) {
|
|
|
|
if (tok->str() == "(" && tok->astOperand1() && tok->astOperand2()) {
|
|
|
|
if (tok->astOperand1()->expressionString() == "Configuration.Contains")
|
|
|
|
return ('\'' + p.configuration + '\'') == tok->astOperand2()->str();
|
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
if (tok->str() == "==" && tok->astOperand1() && tok->astOperand2() && tok->astOperand1()->str() == tok->astOperand2()->str())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string condition;
|
|
|
|
std::string preprocessorDefinitions;
|
|
|
|
std::string additionalIncludePaths;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::list<std::string> toStringList(const std::string &s)
|
|
|
|
{
|
|
|
|
std::list<std::string> ret;
|
|
|
|
std::string::size_type pos1 = 0;
|
|
|
|
std::string::size_type pos2;
|
2016-11-30 12:01:22 +01:00
|
|
|
while ((pos2 = s.find(';',pos1)) != std::string::npos) {
|
2016-08-13 10:50:03 +02:00
|
|
|
ret.push_back(s.substr(pos1, pos2-pos1));
|
|
|
|
pos1 = pos2 + 1;
|
|
|
|
if (pos1 >= s.size())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (pos1 < s.size())
|
|
|
|
ret.push_back(s.substr(pos1));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-09-24 22:36:20 +02:00
|
|
|
static void importPropertyGroup(const tinyxml2::XMLElement *node, std::map<std::string,std::string,cppcheck::stricmp> *variables, std::string *includePath, bool *useOfMfc)
|
2016-12-04 18:50:59 +01:00
|
|
|
{
|
2016-12-04 19:15:04 +01:00
|
|
|
if (useOfMfc) {
|
|
|
|
for (const tinyxml2::XMLElement *e = node->FirstChildElement(); e; e = e->NextSiblingElement()) {
|
2017-08-24 17:26:53 +02:00
|
|
|
if (std::strcmp(e->Name(), "UseOfMfc") == 0) {
|
2016-12-04 19:15:04 +01:00
|
|
|
*useOfMfc = true;
|
2017-08-24 17:26:53 +02:00
|
|
|
break;
|
|
|
|
}
|
2016-12-04 19:15:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-24 17:28:52 +02:00
|
|
|
const char* labelAttribute = node->Attribute("Label");
|
|
|
|
if (labelAttribute && std::strcmp(labelAttribute, "UserMacros") == 0) {
|
2016-12-04 18:50:59 +01:00
|
|
|
for (const tinyxml2::XMLElement *propertyGroup = node->FirstChildElement(); propertyGroup; propertyGroup = propertyGroup->NextSiblingElement()) {
|
|
|
|
const std::string name(propertyGroup->Name());
|
|
|
|
const char *text = propertyGroup->GetText();
|
|
|
|
(*variables)[name] = std::string(text ? text : "");
|
|
|
|
}
|
2016-12-04 19:15:04 +01:00
|
|
|
|
2017-08-24 17:28:52 +02:00
|
|
|
} else if (!labelAttribute) {
|
2016-12-04 18:50:59 +01:00
|
|
|
for (const tinyxml2::XMLElement *propertyGroup = node->FirstChildElement(); propertyGroup; propertyGroup = propertyGroup->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(propertyGroup->Name(), "IncludePath") != 0)
|
|
|
|
continue;
|
|
|
|
const char *text = propertyGroup->GetText();
|
|
|
|
if (!text)
|
|
|
|
continue;
|
2017-08-24 17:28:52 +02:00
|
|
|
std::string path(text);
|
2018-04-04 21:51:31 +02:00
|
|
|
const std::string::size_type pos = path.find("$(IncludePath)");
|
2016-12-04 18:50:59 +01:00
|
|
|
if (pos != std::string::npos)
|
2017-08-24 17:28:52 +02:00
|
|
|
path = path.substr(0,pos) + *includePath + path.substr(pos+14U);
|
|
|
|
*includePath = path;
|
2016-12-04 18:50:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-24 22:36:20 +02:00
|
|
|
static void loadVisualStudioProperties(const std::string &props, std::map<std::string,std::string,cppcheck::stricmp> *variables, std::string *includePath, const std::string &additionalIncludeDirectories, std::list<ItemDefinitionGroup> &itemDefinitionGroupList)
|
2016-12-04 18:50:59 +01:00
|
|
|
{
|
|
|
|
std::string filename(props);
|
2018-02-04 20:53:43 +01:00
|
|
|
// variables can't be resolved
|
2017-06-27 12:41:25 +02:00
|
|
|
if (!simplifyPathWithVariables(filename, *variables))
|
2016-12-04 18:50:59 +01:00
|
|
|
return;
|
2017-11-11 11:13:18 +01:00
|
|
|
|
2017-11-11 11:13:45 +01:00
|
|
|
// prepend project dir (if it exists) to transform relative paths into absolute ones
|
|
|
|
if (!Path::isAbsolute(filename) && variables->count("ProjectDir") > 0)
|
|
|
|
filename = Path::getAbsoluteFilePath(variables->at("ProjectDir") + filename);
|
2017-11-11 11:13:18 +01:00
|
|
|
|
2016-12-04 18:50:59 +01:00
|
|
|
tinyxml2::XMLDocument doc;
|
|
|
|
if (doc.LoadFile(filename.c_str()) != tinyxml2::XML_SUCCESS)
|
|
|
|
return;
|
|
|
|
const tinyxml2::XMLElement * const rootnode = doc.FirstChildElement();
|
|
|
|
if (rootnode == nullptr)
|
|
|
|
return;
|
|
|
|
for (const tinyxml2::XMLElement *node = rootnode->FirstChildElement(); node; node = node->NextSiblingElement()) {
|
2017-08-28 18:11:04 +02:00
|
|
|
if (std::strcmp(node->Name(), "ImportGroup") == 0) {
|
|
|
|
const char *labelAttribute = node->Attribute("Label");
|
|
|
|
if (labelAttribute == nullptr || std::strcmp(labelAttribute, "PropertySheets") != 0)
|
|
|
|
continue;
|
2016-12-04 18:50:59 +01:00
|
|
|
for (const tinyxml2::XMLElement *importGroup = node->FirstChildElement(); importGroup; importGroup = importGroup->NextSiblingElement()) {
|
2017-08-28 18:11:04 +02:00
|
|
|
if (std::strcmp(importGroup->Name(), "Import") == 0) {
|
|
|
|
const char *projectAttribute = importGroup->Attribute("Project");
|
|
|
|
if (projectAttribute == nullptr)
|
|
|
|
continue;
|
|
|
|
std::string loadprj(projectAttribute);
|
2016-12-04 18:50:59 +01:00
|
|
|
if (loadprj.find('$') == std::string::npos) {
|
|
|
|
loadprj = Path::getPathFromFilename(filename) + loadprj;
|
|
|
|
}
|
|
|
|
loadVisualStudioProperties(loadprj, variables, includePath, additionalIncludeDirectories, itemDefinitionGroupList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (std::strcmp(node->Name(),"PropertyGroup")==0) {
|
2016-12-04 19:15:04 +01:00
|
|
|
importPropertyGroup(node, variables, includePath, nullptr);
|
2016-12-04 18:50:59 +01:00
|
|
|
} else if (std::strcmp(node->Name(),"ItemDefinitionGroup")==0) {
|
2018-04-11 09:44:35 +02:00
|
|
|
itemDefinitionGroupList.emplace_back(node, additionalIncludeDirectories);
|
2016-12-04 18:50:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-24 22:36:20 +02:00
|
|
|
void ImportProject::importVcxproj(const std::string &filename, std::map<std::string, std::string, cppcheck::stricmp> &variables, const std::string &additionalIncludeDirectories)
|
2016-08-13 10:50:03 +02:00
|
|
|
{
|
2016-11-20 22:44:50 +01:00
|
|
|
variables["ProjectDir"] = Path::simplifyPath(Path::getPathFromFilename(filename));
|
2016-11-11 16:22:14 +01:00
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
std::list<ProjectConfiguration> projectConfigurationList;
|
|
|
|
std::list<std::string> compileList;
|
|
|
|
std::list<ItemDefinitionGroup> itemDefinitionGroupList;
|
2016-11-20 22:44:50 +01:00
|
|
|
std::string includePath;
|
2016-08-13 10:50:03 +02:00
|
|
|
|
2016-08-20 12:20:04 +02:00
|
|
|
bool useOfMfc = false;
|
|
|
|
|
2016-08-13 10:50:03 +02:00
|
|
|
tinyxml2::XMLDocument doc;
|
2018-04-04 21:51:31 +02:00
|
|
|
const tinyxml2::XMLError error = doc.LoadFile(filename.c_str());
|
2016-08-13 10:50:03 +02:00
|
|
|
if (error != tinyxml2::XML_SUCCESS)
|
|
|
|
return;
|
|
|
|
const tinyxml2::XMLElement * const rootnode = doc.FirstChildElement();
|
|
|
|
if (rootnode == nullptr)
|
|
|
|
return;
|
|
|
|
for (const tinyxml2::XMLElement *node = rootnode->FirstChildElement(); node; node = node->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(node->Name(), "ItemGroup") == 0) {
|
2017-08-28 18:11:04 +02:00
|
|
|
const char *labelAttribute = node->Attribute("Label");
|
|
|
|
if (labelAttribute && std::strcmp(labelAttribute, "ProjectConfigurations") == 0) {
|
2016-08-13 10:50:03 +02:00
|
|
|
for (const tinyxml2::XMLElement *cfg = node->FirstChildElement(); cfg; cfg = cfg->NextSiblingElement()) {
|
2017-06-01 13:13:23 +02:00
|
|
|
if (std::strcmp(cfg->Name(), "ProjectConfiguration") == 0) {
|
2018-04-04 21:51:31 +02:00
|
|
|
const ProjectConfiguration p(cfg);
|
2017-06-01 13:13:23 +02:00
|
|
|
if (p.platform != ProjectConfiguration::Unknown)
|
2018-04-11 09:44:35 +02:00
|
|
|
projectConfigurationList.emplace_back(cfg);
|
2017-06-01 13:13:23 +02:00
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (const tinyxml2::XMLElement *e = node->FirstChildElement(); e; e = e->NextSiblingElement()) {
|
2017-08-02 22:51:22 +02:00
|
|
|
if (std::strcmp(e->Name(), "ClCompile") == 0) {
|
2017-08-02 07:56:22 +02:00
|
|
|
const char *include = e->Attribute("Include");
|
2017-08-02 22:51:22 +02:00
|
|
|
if (include && Path::acceptFile(include))
|
2017-08-02 07:56:22 +02:00
|
|
|
compileList.push_back(include);
|
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (std::strcmp(node->Name(), "ItemDefinitionGroup") == 0) {
|
2018-04-11 09:44:35 +02:00
|
|
|
itemDefinitionGroupList.emplace_back(node, additionalIncludeDirectories);
|
2016-08-20 12:20:04 +02:00
|
|
|
} else if (std::strcmp(node->Name(), "PropertyGroup") == 0) {
|
2016-12-04 19:15:04 +01:00
|
|
|
importPropertyGroup(node, &variables, &includePath, &useOfMfc);
|
2016-11-20 22:44:50 +01:00
|
|
|
} else if (std::strcmp(node->Name(), "ImportGroup") == 0) {
|
2017-08-28 18:11:04 +02:00
|
|
|
const char *labelAttribute = node->Attribute("Label");
|
|
|
|
if (labelAttribute && std::strcmp(labelAttribute, "PropertySheets") == 0) {
|
2016-11-20 22:44:50 +01:00
|
|
|
for (const tinyxml2::XMLElement *e = node->FirstChildElement(); e; e = e->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(e->Name(), "Import") == 0) {
|
2017-08-28 18:11:04 +02:00
|
|
|
const char *projectAttribute = e->Attribute("Project");
|
|
|
|
if (projectAttribute)
|
|
|
|
loadVisualStudioProperties(projectAttribute, &variables, &includePath, additionalIncludeDirectories, itemDefinitionGroupList);
|
2016-11-20 22:44:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-19 17:27:41 +02:00
|
|
|
for (const std::string &c : compileList) {
|
|
|
|
for (const ProjectConfiguration &p : projectConfigurationList) {
|
2016-12-07 17:03:46 +01:00
|
|
|
FileSettings fs;
|
2018-08-19 17:27:41 +02:00
|
|
|
fs.filename = Path::simplifyPath(Path::isAbsolute(c) ? c : Path::getPathFromFilename(filename) + c);
|
|
|
|
fs.cfg = p.name;
|
2017-08-08 22:57:11 +02:00
|
|
|
fs.msc = true;
|
|
|
|
fs.useMfc = useOfMfc;
|
2017-08-08 22:26:42 +02:00
|
|
|
fs.defines = "_WIN32=1";
|
2018-08-19 17:27:41 +02:00
|
|
|
if (p.platform == ProjectConfiguration::Win32)
|
2016-12-07 17:03:46 +01:00
|
|
|
fs.platformType = cppcheck::Platform::Win32W;
|
2018-08-19 17:27:41 +02:00
|
|
|
else if (p.platform == ProjectConfiguration::x64) {
|
2016-12-07 17:03:46 +01:00
|
|
|
fs.platformType = cppcheck::Platform::Win64;
|
|
|
|
fs.defines += ";_WIN64=1";
|
|
|
|
}
|
|
|
|
std::string additionalIncludePaths;
|
2018-08-19 17:27:41 +02:00
|
|
|
for (const ItemDefinitionGroup &i : itemDefinitionGroupList) {
|
|
|
|
if (!i.conditionIsTrue(p))
|
2016-08-13 10:50:03 +02:00
|
|
|
continue;
|
2018-08-19 17:27:41 +02:00
|
|
|
fs.defines += ';' + i.preprocessorDefinitions;
|
|
|
|
additionalIncludePaths += ';' + i.additionalIncludePaths;
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
2016-12-07 17:03:46 +01:00
|
|
|
fs.setDefines(fs.defines);
|
|
|
|
fs.setIncludePaths(Path::getPathFromFilename(filename), toStringList(includePath + ';' + additionalIncludePaths), variables);
|
|
|
|
fileSettings.push_back(fs);
|
2016-08-13 10:50:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-20 18:19:20 +02:00
|
|
|
|
|
|
|
void ImportProject::importBcb6Prj(const std::string &projectFilename)
|
|
|
|
{
|
|
|
|
tinyxml2::XMLDocument doc;
|
|
|
|
const tinyxml2::XMLError error = doc.LoadFile(projectFilename.c_str());
|
|
|
|
if (error != tinyxml2::XML_SUCCESS)
|
|
|
|
return;
|
|
|
|
const tinyxml2::XMLElement * const rootnode = doc.FirstChildElement();
|
|
|
|
if (rootnode == nullptr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const std::string& projectDir = Path::simplifyPath(Path::getPathFromFilename(projectFilename));
|
|
|
|
|
|
|
|
std::list<std::string> compileList;
|
|
|
|
std::string includePath;
|
|
|
|
std::string userdefines;
|
|
|
|
std::string sysdefines;
|
|
|
|
std::string cflag1;
|
|
|
|
|
|
|
|
for (const tinyxml2::XMLElement *node = rootnode->FirstChildElement(); node; node = node->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(node->Name(), "FILELIST") == 0) {
|
|
|
|
for (const tinyxml2::XMLElement *f = node->FirstChildElement(); f; f = f->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(f->Name(), "FILE") == 0) {
|
|
|
|
const char *filename = f->Attribute("FILENAME");
|
|
|
|
if (filename && Path::acceptFile(filename))
|
|
|
|
compileList.push_back(filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (std::strcmp(node->Name(), "MACROS") == 0) {
|
|
|
|
for (const tinyxml2::XMLElement *m = node->FirstChildElement(); m; m = m->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(m->Name(), "INCLUDEPATH") == 0) {
|
|
|
|
const char *v = m->Attribute("value");
|
|
|
|
if (v)
|
|
|
|
includePath = v;
|
|
|
|
} else if (std::strcmp(m->Name(), "USERDEFINES") == 0) {
|
|
|
|
const char *v = m->Attribute("value");
|
|
|
|
if (v)
|
|
|
|
userdefines = v;
|
|
|
|
} else if (std::strcmp(m->Name(), "SYSDEFINES") == 0) {
|
|
|
|
const char *v = m->Attribute("value");
|
|
|
|
if (v)
|
|
|
|
sysdefines = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (std::strcmp(node->Name(), "OPTIONS") == 0) {
|
|
|
|
for (const tinyxml2::XMLElement *m = node->FirstChildElement(); m; m = m->NextSiblingElement()) {
|
|
|
|
if (std::strcmp(m->Name(), "CFLAG1") == 0) {
|
|
|
|
const char *v = m->Attribute("value");
|
|
|
|
if (v)
|
|
|
|
cflag1 = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::set<std::string> cflags;
|
|
|
|
|
|
|
|
// parse cflag1 and fill the cflags set
|
|
|
|
{
|
|
|
|
std::string arg;
|
|
|
|
|
|
|
|
for (int i = 0; i < cflag1.size(); ++i) {
|
|
|
|
if (cflag1.at(i) == ' ' && !arg.empty()) {
|
|
|
|
cflags.insert(arg);
|
|
|
|
arg.clear();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
arg += cflag1.at(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!arg.empty()) {
|
|
|
|
cflags.insert(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
// cleanup: -t is "An alternate name for the -Wxxx switches; there is no difference"
|
|
|
|
// -> Remove every known -txxx argument and replace it with its -Wxxx counterpart.
|
|
|
|
// This way, we know what we have to check for later on.
|
|
|
|
static const std::map<std::string, std::string> synonyms = {
|
|
|
|
{ "-tC","-WC" },
|
|
|
|
{ "-tCDR","-WCDR" },
|
|
|
|
{ "-tCDV","-WCDV" },
|
|
|
|
{ "-tW","-W" },
|
|
|
|
{ "-tWC","-WC" },
|
|
|
|
{ "-tWCDR","-WCDR" },
|
|
|
|
{ "-tWCDV","-WCDV" },
|
|
|
|
{ "-tWD","-WD" },
|
|
|
|
{ "-tWDR","-WDR" },
|
|
|
|
{ "-tWDV","-WDV" },
|
|
|
|
{ "-tWM","-WM" },
|
|
|
|
{ "-tWP","-WP" },
|
|
|
|
{ "-tWR","-WR" },
|
|
|
|
{ "-tWU","-WU" },
|
|
|
|
{ "-tWV","-WV" }
|
|
|
|
};
|
|
|
|
|
|
|
|
for (std::map<std::string, std::string>::const_iterator i = synonyms.begin(); i != synonyms.end(); ++i) {
|
|
|
|
if (cflags.erase(i->first) > 0) {
|
|
|
|
cflags.insert(i->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string predefines;
|
|
|
|
std::string cppPredefines;
|
|
|
|
|
|
|
|
// Collecting predefines. See BCB6 help topic "Predefined macros"
|
|
|
|
{
|
|
|
|
cppPredefines +=
|
|
|
|
// Defined if you've selected C++ compilation; will increase in later releases.
|
|
|
|
// value 0x0560 (but 0x0564 for our BCB6 SP4)
|
|
|
|
// @see http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Predefined_Macros#C.2B.2B_Compiler_Versions_in_Predefined_Macros
|
|
|
|
";__BCPLUSPLUS__=0x0560"
|
|
|
|
|
|
|
|
// Defined if in C++ mode; otherwise, undefined.
|
|
|
|
";__cplusplus=1"
|
|
|
|
|
|
|
|
// Defined as 1 for C++ files(meaning that templates are supported); otherwise, it is undefined.
|
|
|
|
";__TEMPLATES__=1"
|
|
|
|
|
|
|
|
// Defined only for C++ programs to indicate that wchar_t is an intrinsically defined data type.
|
|
|
|
";_WCHAR_T"
|
|
|
|
|
|
|
|
// Defined only for C++ programs to indicate that wchar_t is an intrinsically defined data type.
|
|
|
|
";_WCHAR_T_DEFINED"
|
|
|
|
|
|
|
|
// Defined in any compiler that has an optimizer.
|
|
|
|
";__BCOPT__=1"
|
|
|
|
|
|
|
|
// Version number.
|
|
|
|
// BCB6 is 0x056X (SP4 is 0x0564)
|
|
|
|
// @see http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Predefined_Macros#C.2B.2B_Compiler_Versions_in_Predefined_Macros
|
|
|
|
";__BORLANDC__=0x0560"
|
|
|
|
";__TCPLUSPLUS__=0x0560"
|
|
|
|
";__TURBOC__=0x0560";
|
|
|
|
|
|
|
|
// Defined if Calling Convention is set to cdecl; otherwise undefined.
|
|
|
|
const bool useCdecl = (cflags.find("-p") == cflags.end()
|
|
|
|
&& cflags.find("-pm") == cflags.end()
|
|
|
|
&& cflags.find("-pr") == cflags.end()
|
|
|
|
&& cflags.find("-ps") == cflags.end());
|
|
|
|
if (useCdecl)
|
|
|
|
predefines += ";__CDECL=1";
|
|
|
|
|
|
|
|
// Defined by default indicating that the default char is unsigned char. Use the -K compiler option to undefine this macro.
|
|
|
|
const bool treatCharAsUnsignedChar = (cflags.find("-K") != cflags.end());
|
|
|
|
if (treatCharAsUnsignedChar)
|
|
|
|
predefines += ";_CHAR_UNSIGNED=1";
|
|
|
|
|
|
|
|
// Defined whenever one of the CodeGuard compiler options is used; otherwise it is undefined.
|
|
|
|
const bool codeguardUsed = (cflags.find("-vGd") != cflags.end()
|
|
|
|
|| cflags.find("-vGt") != cflags.end()
|
|
|
|
|| cflags.find("-vGc") != cflags.end());
|
|
|
|
if (codeguardUsed)
|
|
|
|
predefines += ";__CODEGUARD__";
|
|
|
|
|
|
|
|
// When defined, the macro indicates that the program is a console application.
|
|
|
|
const bool isConsoleApp = (cflags.find("-WC") != cflags.end());
|
|
|
|
if (isConsoleApp)
|
|
|
|
predefines += ";__CONSOLE__=1";
|
|
|
|
|
|
|
|
// Enable stack unwinding. This is true by default; use -xd- to disable.
|
|
|
|
const bool enableStackUnwinding = (cflags.find("-xd-") == cflags.end());
|
|
|
|
if (enableStackUnwinding)
|
|
|
|
predefines += ";_CPPUNWIND=1";
|
|
|
|
|
|
|
|
// Defined whenever the -WD compiler option is used; otherwise it is undefined.
|
|
|
|
const bool isDLL = (cflags.find("-WD") != cflags.end());
|
|
|
|
if (isDLL)
|
|
|
|
predefines += ";__DLL__=1";
|
|
|
|
|
|
|
|
// Defined when compiling in 32-bit flat memory model.
|
|
|
|
// TODO: not sure how to switch to another memory model or how to read configuration from project file
|
|
|
|
predefines += ";__FLAT__=1";
|
|
|
|
|
|
|
|
// Always defined. The default value is 300. You can change the value to 400 or 500 by using the /4 or /5 compiler options.
|
|
|
|
if (cflags.find("-6") != cflags.end())
|
|
|
|
predefines += ";_M_IX86=600";
|
|
|
|
else if (cflags.find("-5") != cflags.end())
|
|
|
|
predefines += ";_M_IX86=500";
|
|
|
|
else if (cflags.find("-4") != cflags.end())
|
|
|
|
predefines += ";_M_IX86=400";
|
|
|
|
else
|
|
|
|
predefines += ";_M_IX86=300";
|
|
|
|
|
|
|
|
// Defined only if the -WM option is used. It specifies that the multithread library is to be linked.
|
|
|
|
const bool linkMtLib = (cflags.find("-WM") != cflags.end());
|
|
|
|
if (linkMtLib)
|
|
|
|
predefines += ";__MT__=1";
|
|
|
|
|
|
|
|
// Defined if Calling Convention is set to Pascal; otherwise undefined.
|
|
|
|
const bool usePascalCallingConvention = (cflags.find("-p") != cflags.end());
|
|
|
|
if (usePascalCallingConvention)
|
|
|
|
predefines += ";__PASCAL__=1";
|
|
|
|
|
|
|
|
// Defined if you compile with the -A compiler option; otherwise, it is undefined.
|
|
|
|
const bool useAnsiKeywordExtensions = (cflags.find("-A") != cflags.end());
|
|
|
|
if (useAnsiKeywordExtensions)
|
|
|
|
predefines += ";__STDC__=1";
|
|
|
|
|
|
|
|
// Thread Local Storage. Always true in C++Builder.
|
|
|
|
predefines += ";__TLC__=1";
|
|
|
|
|
|
|
|
// Defined for Windows-only code.
|
|
|
|
const bool isWindowsTarget = (cflags.find("-WC") != cflags.end()
|
|
|
|
|| cflags.find("-WCDR") != cflags.end()
|
|
|
|
|| cflags.find("-WCDV") != cflags.end()
|
|
|
|
|| cflags.find("-WD") != cflags.end()
|
|
|
|
|| cflags.find("-WDR") != cflags.end()
|
|
|
|
|| cflags.find("-WDV") != cflags.end()
|
|
|
|
|| cflags.find("-WM") != cflags.end()
|
|
|
|
|| cflags.find("-WP") != cflags.end()
|
|
|
|
|| cflags.find("-WR") != cflags.end()
|
|
|
|
|| cflags.find("-WU") != cflags.end()
|
|
|
|
|| cflags.find("-WV") != cflags.end());
|
|
|
|
if (isWindowsTarget)
|
|
|
|
predefines += ";_Windows";
|
|
|
|
|
|
|
|
// Defined for console and GUI applications.
|
|
|
|
// TODO: I'm not sure about the difference to define "_Windows".
|
|
|
|
// From description, I would assume __WIN32__ is only defined for
|
|
|
|
// executables, while _Windows would also be defined for DLLs, etc.
|
|
|
|
// However, in a newly created DLL project, both __WIN32__ and
|
|
|
|
// _Windows are defined. -> treating them the same for now.
|
|
|
|
// Also boost uses __WIN32__ for OS identification.
|
|
|
|
const bool isConsoleOrGuiApp = isWindowsTarget;
|
|
|
|
if (isConsoleOrGuiApp)
|
|
|
|
predefines += ";__WIN32__=1";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include paths may contain variables like "$(BCB)\include" or "$(BCB)\include\vcl".
|
|
|
|
// Those get resolved by ImportProject::FileSettings::setIncludePaths by
|
|
|
|
// 1. checking the provided variables map ("BCB" => "C:\\Program Files (x86)\\Borland\\CBuilder6")
|
|
|
|
// 2. checking env variables as a fallback
|
|
|
|
// Setting env is always possible. Configuring the variables via cli might be an addition.
|
|
|
|
// Reading the BCB6 install location from registry in windows environments would also be possible,
|
|
|
|
// but I didn't see any such functionality around the source. Not in favor of adding it only
|
|
|
|
// for the BCB6 project loading.
|
|
|
|
std::map<std::string, std::string, cppcheck::stricmp> variables;
|
|
|
|
const std::string defines = predefines + ";" + sysdefines + ";" + userdefines;
|
|
|
|
const std::string cppDefines = cppPredefines + ";" + defines;
|
|
|
|
const bool forceCppMode = (cflags.find("-P") != cflags.end());
|
|
|
|
|
2018-08-19 17:27:41 +02:00
|
|
|
for (const std::string &c : compileList) {
|
2018-05-20 18:19:20 +02:00
|
|
|
// C++ compilation is selected by file extension by default, so these
|
|
|
|
// defines have to be configured on a per-file base.
|
|
|
|
//
|
|
|
|
// > Files with the .CPP extension compile as C++ files. Files with a .C
|
|
|
|
// > extension, with no extension, or with extensions other than .CPP,
|
|
|
|
// > .OBJ, .LIB, or .ASM compile as C files.
|
|
|
|
// (http://docwiki.embarcadero.com/RADStudio/Tokyo/en/BCC32.EXE,_the_C%2B%2B_32-bit_Command-Line_Compiler)
|
|
|
|
//
|
|
|
|
// We can also force C++ compilation for all files using the -P command line switch.
|
2018-08-19 17:27:41 +02:00
|
|
|
const bool cppMode = forceCppMode || Path::getFilenameExtensionInLowerCase(c) == ".cpp";
|
2018-05-20 18:19:20 +02:00
|
|
|
FileSettings fs;
|
|
|
|
fs.setIncludePaths(projectDir, toStringList(includePath), variables);
|
|
|
|
fs.setDefines(cppMode ? cppDefines : defines);
|
2018-08-19 17:27:41 +02:00
|
|
|
fs.filename = Path::simplifyPath(Path::isAbsolute(c) ? c : projectDir + c);
|
2018-05-20 18:19:20 +02:00
|
|
|
fileSettings.push_back(fs);
|
|
|
|
}
|
|
|
|
}
|
2019-01-31 20:40:15 +01:00
|
|
|
|
|
|
|
static std::list<std::string> readXmlStringList(const tinyxml2::XMLElement *node, const char name[], const char attribute[])
|
|
|
|
{
|
|
|
|
std::list<std::string> ret;
|
|
|
|
for (const tinyxml2::XMLElement *child = node->FirstChildElement(); child; child = child->NextSiblingElement()) {
|
|
|
|
if (strcmp(child->Name(), name) != 0)
|
|
|
|
continue;
|
|
|
|
const char *attr = attribute ? child->Attribute(attribute) : child->GetText();
|
|
|
|
if (attr)
|
|
|
|
ret.push_back(attr);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string join(const std::list<std::string> &strlist, const char *sep)
|
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
for (const std::string &s : strlist) {
|
|
|
|
ret += (ret.empty() ? "" : sep) + s;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// These constants are copy/pasted from gui/projectfile.cpp
|
|
|
|
static const char ProjectElementName[] = "project";
|
|
|
|
static const char ProjectVersionAttrib[] = "version";
|
|
|
|
static const char ProjectFileVersion[] = "1";
|
|
|
|
static const char BuildDirElementName[] = "builddir";
|
|
|
|
static const char ImportProjectElementName[] = "importproject";
|
|
|
|
static const char AnalyzeAllVsConfigsElementName[] = "analyze-all-vs-configs";
|
|
|
|
static const char IncludeDirElementName[] = "includedir";
|
|
|
|
static const char DirElementName[] = "dir";
|
|
|
|
static const char DirNameAttrib[] = "name";
|
|
|
|
static const char DefinesElementName[] = "defines";
|
|
|
|
static const char DefineName[] = "define";
|
|
|
|
static const char DefineNameAttrib[] = "name";
|
|
|
|
static const char UndefinesElementName[] = "undefines";
|
|
|
|
static const char UndefineName[] = "undefine";
|
|
|
|
static const char PathsElementName[] = "paths";
|
|
|
|
static const char PathName[] = "dir";
|
|
|
|
static const char PathNameAttrib[] = "name";
|
|
|
|
static const char RootPathName[] = "root";
|
|
|
|
static const char RootPathNameAttrib[] = "name";
|
|
|
|
static const char IgnoreElementName[] = "ignore";
|
|
|
|
static const char IgnorePathName[] = "path";
|
|
|
|
static const char IgnorePathNameAttrib[] = "name";
|
|
|
|
static const char ExcludeElementName[] = "exclude";
|
|
|
|
static const char ExcludePathName[] = "path";
|
|
|
|
static const char ExcludePathNameAttrib[] = "name";
|
|
|
|
static const char LibrariesElementName[] = "libraries";
|
|
|
|
static const char LibraryElementName[] = "library";
|
|
|
|
static const char PlatformElementName[] = "platform";
|
|
|
|
static const char SuppressionsElementName[] = "suppressions";
|
|
|
|
static const char SuppressionElementName[] = "suppression";
|
|
|
|
static const char AddonElementName[] = "addon";
|
|
|
|
static const char AddonsElementName[] = "addons";
|
|
|
|
static const char ToolElementName[] = "tool";
|
|
|
|
static const char ToolsElementName[] = "tools";
|
|
|
|
static const char TagsElementName[] = "tags";
|
|
|
|
static const char TagElementName[] = "tag";
|
|
|
|
|
2019-02-01 00:09:07 +01:00
|
|
|
static std::string istream_to_string(std::istream &istr)
|
|
|
|
{
|
|
|
|
std::istreambuf_iterator<char> eos;
|
|
|
|
return std::string(std::istreambuf_iterator<char>(istr), eos);
|
|
|
|
}
|
2019-01-31 20:40:15 +01:00
|
|
|
|
|
|
|
bool ImportProject::importCppcheckGuiProject(std::istream &istr, Settings *settings)
|
|
|
|
{
|
|
|
|
tinyxml2::XMLDocument doc;
|
2019-02-01 00:09:07 +01:00
|
|
|
const std::string xmldata = istream_to_string(istr);
|
2019-01-31 20:40:15 +01:00
|
|
|
if (doc.Parse(xmldata.data(), xmldata.size()) != tinyxml2::XML_SUCCESS)
|
|
|
|
return false;
|
|
|
|
const tinyxml2::XMLElement * const rootnode = doc.FirstChildElement();
|
|
|
|
if (rootnode == nullptr || strcmp(rootnode->Name(), ProjectElementName) != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
(void)ProjectFileVersion;
|
|
|
|
(void)ProjectVersionAttrib;
|
|
|
|
|
|
|
|
std::list<std::string> paths;
|
|
|
|
std::list<std::string> excludePaths;
|
|
|
|
Settings temp;
|
|
|
|
|
|
|
|
for (const tinyxml2::XMLElement *node = rootnode->FirstChildElement(); node; node = node->NextSiblingElement()) {
|
|
|
|
if (strcmp(node->Name(), RootPathName) == 0 && node->Attribute(RootPathNameAttrib))
|
|
|
|
temp.basePaths.push_back(node->Attribute(RootPathNameAttrib));
|
|
|
|
else if (strcmp(node->Name(), BuildDirElementName) == 0)
|
|
|
|
temp.buildDir = node->GetText() ? node->GetText() : "";
|
|
|
|
else if (strcmp(node->Name(), IncludeDirElementName) == 0)
|
|
|
|
temp.includePaths = readXmlStringList(node, DirElementName, DirNameAttrib);
|
|
|
|
else if (strcmp(node->Name(), DefinesElementName) == 0)
|
|
|
|
temp.userDefines = join(readXmlStringList(node, DefineName, DefineNameAttrib), ";");
|
|
|
|
else if (strcmp(node->Name(), UndefinesElementName) == 0) {
|
|
|
|
for (const std::string &u : readXmlStringList(node, UndefineName, nullptr))
|
|
|
|
temp.userUndefs.insert(u);
|
|
|
|
} else if (strcmp(node->Name(), ImportProjectElementName) == 0)
|
|
|
|
guiProject.projectFile = node->GetText() ? node->GetText() : "";
|
|
|
|
else if (strcmp(node->Name(), PathsElementName) == 0)
|
|
|
|
paths = readXmlStringList(node, PathName, PathNameAttrib);
|
|
|
|
else if (strcmp(node->Name(), ExcludeElementName) == 0)
|
|
|
|
excludePaths = readXmlStringList(node, ExcludePathName, ExcludePathNameAttrib);
|
|
|
|
else if (strcmp(node->Name(), IgnoreElementName) == 0)
|
|
|
|
excludePaths = readXmlStringList(node, IgnorePathName, IgnorePathNameAttrib);
|
|
|
|
else if (strcmp(node->Name(), LibrariesElementName) == 0)
|
|
|
|
guiProject.libraries = readXmlStringList(node, LibraryElementName, nullptr);
|
|
|
|
else if (strcmp(node->Name(), SuppressionsElementName) == 0) {
|
|
|
|
for (const std::string &s : readXmlStringList(node, SuppressionElementName, nullptr)) {
|
|
|
|
temp.nomsg.addSuppressionLine(s);
|
|
|
|
}
|
|
|
|
} else if (strcmp(node->Name(), PlatformElementName) == 0)
|
|
|
|
guiProject.platform = node->GetText();
|
|
|
|
else if (strcmp(node->Name(), AnalyzeAllVsConfigsElementName) == 0)
|
|
|
|
; // FIXME: Write some warning
|
|
|
|
else if (strcmp(node->Name(), AddonsElementName) == 0)
|
|
|
|
node->Attribute(AddonElementName); // FIXME: Handle addons
|
|
|
|
else if (strcmp(node->Name(), TagsElementName) == 0)
|
|
|
|
node->Attribute(TagElementName); // FIXME: Write some warning
|
|
|
|
else if (strcmp(node->Name(), ToolsElementName) == 0)
|
|
|
|
node->Attribute(ToolElementName); // FIXME: Write some warning
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
settings->basePaths = temp.basePaths;
|
|
|
|
settings->buildDir = temp.buildDir;
|
|
|
|
settings->includePaths = temp.includePaths;
|
|
|
|
settings->userDefines = temp.userDefines;
|
|
|
|
settings->userUndefs = temp.userUndefs;
|
|
|
|
for (const std::string &path : paths)
|
|
|
|
guiProject.pathNames.push_back(path);
|
|
|
|
settings->project.ignorePaths(std::vector<std::string>(excludePaths.begin(), excludePaths.end()));
|
|
|
|
return true;
|
|
|
|
}
|