cppcheck/lib/path.cpp

202 lines
5.5 KiB
C++
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2012-01-01 00:05:37 +01:00
* Copyright (C) 2007-2012 Daniel Marjamäki and Cppcheck team.
*
* 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 <algorithm>
#include <vector>
#include <sstream>
#include <cstring>
2012-01-06 18:11:06 +01:00
#include <cctype>
#include "path.h"
2011-11-26 21:02:04 +01:00
std::string Path::toNativeSeparators(std::string path)
{
#if defined(_WIN32)
char separ = '/';
char native = '\\';
#else
char separ = '\\';
char native = '/';
#endif
2011-11-26 21:02:04 +01:00
std::replace(path.begin(), path.end(), separ, native);
return path;
}
2011-11-26 21:02:04 +01:00
std::string Path::fromNativeSeparators(std::string path)
{
char nonnative = '\\';
char newsepar = '/';
2011-11-26 21:02:04 +01:00
std::replace(path.begin(), path.end(), nonnative, newsepar);
return path;
}
std::string Path::simplifyPath(const char *originalPath)
{
// Skip ./ at the beginning
if (strlen(originalPath) > 2 && originalPath[0] == '.' &&
2011-10-13 20:53:06 +02:00
originalPath[1] == '/') {
originalPath += 2;
}
std::string subPath = "";
std::vector<std::string> pathParts;
2011-10-13 20:53:06 +02:00
for (; *originalPath; ++originalPath) {
if (*originalPath == '/' || *originalPath == '\\') {
if (subPath.length() > 0) {
pathParts.push_back(subPath);
subPath = "";
}
pathParts.push_back(std::string(1 , *originalPath));
2011-10-13 20:53:06 +02:00
} else
subPath.append(1, *originalPath);
}
if (subPath.length() > 0)
pathParts.push_back(subPath);
2011-10-13 20:53:06 +02:00
for (unsigned int i = 0; i < pathParts.size(); ++i) {
if (i > 1 && pathParts[i-2] != ".." && pathParts[i] == ".." && pathParts.size() > i + 1) {
pathParts.erase(pathParts.begin() + static_cast<int>(i) + 1);
pathParts.erase(pathParts.begin() + static_cast<int>(i));
pathParts.erase(pathParts.begin() + static_cast<int>(i) - 1);
pathParts.erase(pathParts.begin() + static_cast<int>(i) - 2);
i = 0;
2011-10-13 20:53:06 +02:00
} else if (i > 0 && pathParts[i] == ".") {
pathParts.erase(pathParts.begin() + static_cast<int>(i));
i = 0;
2011-10-13 20:53:06 +02:00
} else if (pathParts[i] == "/" && i > 0 && pathParts[i-1] == "/") {
pathParts.erase(pathParts.begin() + static_cast<int>(i) - 1);
i = 0;
}
}
std::ostringstream oss;
2011-10-13 20:53:06 +02:00
for (std::vector<std::string>::size_type i = 0; i < pathParts.size(); ++i) {
oss << pathParts[i];
}
return oss.str();
}
bool Path::sameFileName(const std::string &fname1, const std::string &fname2)
{
2011-10-20 09:01:58 +02:00
#if defined(__linux__) || defined(__sun) || defined(__hpux)
return bool(fname1 == fname2);
#elif defined(__GNUC__)
return bool(strcasecmp(fname1.c_str(), fname2.c_str()) == 0);
#elif defined(__BORLANDC__)
return bool(stricmp(fname1.c_str(), fname2.c_str()) == 0);
#elif defined(_MSC_VER)
return bool(_stricmp(fname1.c_str(), fname2.c_str()) == 0);
#else
2011-04-27 18:30:37 +02:00
#error Platform filename compare function needed
#endif
}
// This wrapper exists because Sun's CC does not allow a static_cast
// from extern "C" int(*)(int) to int(*)(int).
static int tolowerWrapper(int c)
{
return std::tolower(c);
}
2011-11-26 21:02:04 +01:00
std::string Path::removeQuotationMarks(std::string path)
{
2011-11-26 21:02:04 +01:00
path.erase(std::remove(path.begin(), path.end(), '\"'), path.end());
return path;
}
std::string Path::getFilenameExtension(const std::string &path)
{
const std::string::size_type dotLocation = path.find_last_of('.');
if (dotLocation == std::string::npos)
return "";
const std::string extension = path.substr(dotLocation);
return extension;
}
std::string Path::getFilenameExtensionInLowerCase(const std::string &path)
{
std::string extension = getFilenameExtension(path);
std::transform(extension.begin(), extension.end(), extension.begin(), tolowerWrapper);
return extension;
}
bool Path::isC(const std::string &path)
{
// In unix, ".C" is concidered C++ file
const std::string extension = getFilenameExtension(path);
if (extension == ".c") {
return true;
}
return false;
}
bool Path::isCPP(const std::string &path)
{
const std::string extension = getFilenameExtensionInLowerCase(path);
if (extension == ".cpp" ||
extension == ".cxx" ||
extension == ".cc" ||
extension == ".c++" ||
extension == ".tpp" ||
extension == ".txx") {
return true;
}
// In unix, ".C" is concidered C++ file
if (getFilenameExtension(path) == ".C") {
return true;
}
return false;
}
bool Path::isJava(const std::string &path)
{
const std::string extension = getFilenameExtensionInLowerCase(path);
if (extension == ".java") {
return true;
}
return false;
}
bool Path::isCSharp(const std::string &path)
{
const std::string extension = getFilenameExtensionInLowerCase(path);
if (extension == ".cs") {
return true;
}
return false;
}
bool Path::acceptFile(const std::string &filename)
{
if (Path::isCPP(filename) ||
Path::isC(filename)) {
return true;
}
return false;
}