同步操作将从 Gitee 极速下载/Cppcheck 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/** Cppcheck - A tool for static C/C++ code analysis* Copyright (C) 2007-2019 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/>.*/#if defined(__GNUC__) && (defined(_WIN32) || defined(__CYGWIN__))#undef __STRICT_ANSI__#endif#include "path.h"#include "utils.h"#include <algorithm>#include <cctype>#include <cstdlib>#include <cstring>#include <fstream>#include <sstream>#ifndef _WIN32#include <unistd.h>#else#include <direct.h>#endif#if defined(__CYGWIN__)#include <strings.h>#endif#include <simplecpp.h>/** Is the filesystem case insensitive? */static bool caseInsensitiveFilesystem(){#ifdef _WIN32return true;#else// TODO: Non-windows filesystems might be case insensitivereturn false;#endif}std::string Path::toNativeSeparators(std::string path){#if defined(_WIN32)const char separ = '/';const char native = '\\';#elseconst char separ = '\\';const char native = '/';#endifstd::replace(path.begin(), path.end(), separ, native);return path;}std::string Path::fromNativeSeparators(std::string path){const char nonnative = '\\';const char newsepar = '/';std::replace(path.begin(), path.end(), nonnative, newsepar);return path;}std::string Path::simplifyPath(std::string originalPath){return simplecpp::simplifyPath(originalPath);}std::string Path::getPathFromFilename(const std::string &filename){const std::size_t pos = filename.find_last_of("\\/");if (pos != std::string::npos)return filename.substr(0, 1 + pos);return "";}bool Path::sameFileName(const std::string &fname1, const std::string &fname2){return caseInsensitiveFilesystem() ? (caseInsensitiveStringCompare(fname1, fname2) == 0) : (fname1 == fname2);}// 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);}std::string Path::removeQuotationMarks(std::string path){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 "";std::string extension = path.substr(dotLocation);if (caseInsensitiveFilesystem()) {// on a case insensitive filesystem the case doesn't matter so// let's return the extension in lowercasestd::transform(extension.begin(), extension.end(), extension.begin(), tolowerWrapper);}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;}std::string Path::getCurrentPath(){char currentPath[4096];#ifndef _WIN32if (getcwd(currentPath, 4096) != nullptr)#elseif (_getcwd(currentPath, 4096) != nullptr)#endifreturn std::string(currentPath);return emptyString;}bool Path::isAbsolute(const std::string& path){const std::string& nativePath = toNativeSeparators(path);#ifdef _WIN32if (path.length() < 2)return false;// On Windows, 'C:\foo\bar' is an absolute path, while 'C:foo\bar' is notif (nativePath.compare(0, 2, "\\\\") == 0 || (std::isalpha(nativePath[0]) != 0 && nativePath.compare(1, 2, ":\\") == 0))return true;#elseif (!nativePath.empty() && nativePath[0] == '/')return true;#endifreturn false;}std::string Path::getRelativePath(const std::string& absolutePath, const std::vector<std::string>& basePaths){for (const std::string &bp : basePaths) {if (absolutePath == bp || bp.empty()) // Seems to be a file, or path is emptycontinue;if (absolutePath.compare(0, bp.length(), bp) != 0)continue;if (endsWith(bp,'/'))return absolutePath.substr(bp.length());else if (absolutePath.size() > bp.size() && absolutePath[bp.length()] == '/')return absolutePath.substr(bp.length() + 1);}return absolutePath;}bool Path::isC(const std::string &path){// In unix, ".C" is considered C++ fileconst std::string extension = getFilenameExtension(path);return extension == ".c" ||extension == ".cl";}bool Path::isCPP(const std::string &path){const std::string extension = getFilenameExtensionInLowerCase(path);return extension == ".cpp" ||extension == ".cxx" ||extension == ".cc" ||extension == ".c++" ||extension == ".hpp" ||extension == ".hxx" ||extension == ".hh" ||extension == ".tpp" ||extension == ".txx" ||getFilenameExtension(path) == ".C"; // In unix, ".C" is considered C++ file}bool Path::acceptFile(const std::string &path, const std::set<std::string> &extra){return !Path::isHeader(path) && (Path::isCPP(path) || Path::isC(path) || extra.find(getFilenameExtension(path)) != extra.end());}bool Path::isHeader(const std::string &path){const std::string extension = getFilenameExtensionInLowerCase(path);return (extension.compare(0, 2, ".h") == 0);}std::string Path::getAbsoluteFilePath(const std::string& filePath){std::string absolute_path;#ifdef _WIN32char absolute[_MAX_PATH];if (_fullpath(absolute, filePath.c_str(), _MAX_PATH))absolute_path = absolute;#elif defined(__linux__) || defined(__sun) || defined(__hpux) || defined(__GNUC__) || defined(__CPPCHECK__)char * absolute = realpath(filePath.c_str(), nullptr);if (absolute)absolute_path = absolute;free(absolute);#else#error Platform absolute path function needed#endifreturn absolute_path;}std::string Path::stripDirectoryPart(const std::string &file){#if defined(_WIN32) && !defined(__MINGW32__)const char native = '\\';#elseconst char native = '/';#endifconst std::string::size_type p = file.rfind(native);if (p != std::string::npos) {return file.substr(p + 1);}return file;}bool Path::fileExists(const std::string &file){std::ifstream f(file.c_str());return f.is_open();}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。