Possibly fix #1369 (Internal error - double-declared enum followed by another enum)
http://sourceforge.net/apps/trac/cppcheck/ticket/1369 Don't include same file twice if one is a/a.h and other is a/../a/a.h
This commit is contained in:
parent
18e7813e04
commit
faced1b483
|
@ -59,8 +59,9 @@ std::string FileLister::simplifyPath(const char *originalPath)
|
||||||
|
|
||||||
for (std::vector<std::string>::size_type i = 0; i < pathParts.size(); ++i)
|
for (std::vector<std::string>::size_type i = 0; i < pathParts.size(); ++i)
|
||||||
{
|
{
|
||||||
if (pathParts[i] == ".." && i > 1)
|
if (pathParts[i] == ".." && i > 1 && pathParts.size() > i + 1)
|
||||||
{
|
{
|
||||||
|
pathParts.erase(pathParts.begin() + i + 1);
|
||||||
pathParts.erase(pathParts.begin() + i);
|
pathParts.erase(pathParts.begin() + i);
|
||||||
pathParts.erase(pathParts.begin() + i - 1);
|
pathParts.erase(pathParts.begin() + i - 1);
|
||||||
pathParts.erase(pathParts.begin() + i - 2);
|
pathParts.erase(pathParts.begin() + i - 2);
|
||||||
|
|
|
@ -1262,7 +1262,34 @@ void Preprocessor::handleIncludes(std::string &code, const std::string &filename
|
||||||
if (headerType == 0)
|
if (headerType == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
std::string tempFile = filename;
|
// filename contains now a file name e.g. "menu.h"
|
||||||
|
std::string processedFile;
|
||||||
|
bool fileOpened = false;
|
||||||
|
std::ifstream fin;
|
||||||
|
for (std::list<std::string>::const_iterator iter = includePaths.begin(); iter != includePaths.end(); ++iter)
|
||||||
|
{
|
||||||
|
fin.open((*iter + filename).c_str());
|
||||||
|
if (fin.is_open())
|
||||||
|
{
|
||||||
|
filename = *iter + filename;
|
||||||
|
fileOpened = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (headerType == 1 && !fileOpened)
|
||||||
|
{
|
||||||
|
filename = paths.back() + filename;
|
||||||
|
fin.open(filename.c_str());
|
||||||
|
if (fin.is_open())
|
||||||
|
{
|
||||||
|
fileOpened = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (fileOpened)
|
||||||
|
{
|
||||||
|
std::string tempFile = FileLister::simplifyPath(filename.c_str());
|
||||||
std::transform(tempFile.begin(), tempFile.end(), tempFile.begin(), tolowerWrapper);
|
std::transform(tempFile.begin(), tempFile.end(), tempFile.begin(), tolowerWrapper);
|
||||||
if (handledFiles.find(tempFile) != handledFiles.end())
|
if (handledFiles.find(tempFile) != handledFiles.end())
|
||||||
{
|
{
|
||||||
|
@ -1272,32 +1299,9 @@ void Preprocessor::handleIncludes(std::string &code, const std::string &filename
|
||||||
}
|
}
|
||||||
|
|
||||||
handledFiles.insert(tempFile);
|
handledFiles.insert(tempFile);
|
||||||
|
|
||||||
// filename contains now a file name e.g. "menu.h"
|
|
||||||
std::string processedFile;
|
|
||||||
bool fileOpened = false;
|
|
||||||
for (std::list<std::string>::const_iterator iter = includePaths.begin(); iter != includePaths.end(); ++iter)
|
|
||||||
{
|
|
||||||
std::ifstream fin;
|
|
||||||
fin.open((*iter + filename).c_str());
|
|
||||||
if (fin.is_open())
|
|
||||||
{
|
|
||||||
filename = *iter + filename;
|
|
||||||
processedFile = Preprocessor::read(fin, filename, _settings);
|
|
||||||
fileOpened = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (headerType == 1 && !fileOpened)
|
|
||||||
{
|
|
||||||
filename = paths.back() + filename;
|
|
||||||
std::ifstream fin(filename.c_str());
|
std::ifstream fin(filename.c_str());
|
||||||
if (fin.is_open())
|
|
||||||
{
|
|
||||||
processedFile = Preprocessor::read(fin, filename, _settings);
|
processedFile = Preprocessor::read(fin, filename, _settings);
|
||||||
fileOpened = true;
|
fin.close();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (processedFile.length() > 0)
|
if (processedFile.length() > 0)
|
||||||
|
|
|
@ -45,6 +45,8 @@ private:
|
||||||
ASSERT_EQUALS("/index.h", FileLister::simplifyPath("/path/../other/../index.h"));
|
ASSERT_EQUALS("/index.h", FileLister::simplifyPath("/path/../other/../index.h"));
|
||||||
ASSERT_EQUALS("/index.h", FileLister::simplifyPath("/path/../other///././../index.h"));
|
ASSERT_EQUALS("/index.h", FileLister::simplifyPath("/path/../other///././../index.h"));
|
||||||
ASSERT_EQUALS("../path/index.h", FileLister::simplifyPath("../path/other/../index.h"));
|
ASSERT_EQUALS("../path/index.h", FileLister::simplifyPath("../path/other/../index.h"));
|
||||||
|
ASSERT_EQUALS("a/index.h", FileLister::simplifyPath("a/../a/index.h"));
|
||||||
|
ASSERT_EQUALS("a/..", FileLister::simplifyPath("a/.."));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue