2010-07-17 16:38:36 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2021-03-21 20:58:32 +01:00
|
|
|
* Copyright (C) 2007-2021 Cppcheck team.
|
2010-07-17 16:38:36 +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/>.
|
|
|
|
*/
|
2013-09-05 01:47:22 +02:00
|
|
|
|
2013-09-04 20:59:49 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef pathH
|
|
|
|
#define pathH
|
|
|
|
//---------------------------------------------------------------------------
|
2010-07-17 16:38:36 +02:00
|
|
|
|
2013-10-31 19:09:01 +01:00
|
|
|
#include "config.h"
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2013-10-31 19:09:01 +01:00
|
|
|
#include <set>
|
2010-07-17 16:38:36 +02:00
|
|
|
#include <string>
|
2012-04-06 10:49:21 +02:00
|
|
|
#include <vector>
|
2010-07-17 16:38:36 +02:00
|
|
|
|
|
|
|
/// @addtogroup Core
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Path handling routines.
|
|
|
|
* Internally cppcheck wants to store paths with / separator which is also
|
|
|
|
* native separator for Unix-derived systems. When giving path to user
|
|
|
|
* or for other functions we convert path separators back to native type.
|
|
|
|
*/
|
2012-06-10 14:19:09 +02:00
|
|
|
class CPPCHECKLIB Path {
|
2010-07-17 16:38:36 +02:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Convert path to use native separators.
|
|
|
|
* @param path Path string to convert.
|
|
|
|
* @return converted path.
|
|
|
|
*/
|
2011-11-26 21:02:04 +01:00
|
|
|
static std::string toNativeSeparators(std::string path);
|
2010-07-17 16:38:36 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* Convert path to use internal path separators.
|
|
|
|
* @param path Path string to convert.
|
|
|
|
* @return converted path.
|
|
|
|
*/
|
2011-11-26 21:02:04 +01:00
|
|
|
static std::string fromNativeSeparators(std::string path);
|
2010-10-29 21:21:27 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Simplify path "foo/bar/.." => "foo"
|
2011-06-29 20:44:53 +02:00
|
|
|
* @param originalPath path to be simplified, must have / -separators.
|
2010-10-29 21:21:27 +02:00
|
|
|
* @return simplified path
|
|
|
|
*/
|
2014-04-02 13:56:34 +02:00
|
|
|
static std::string simplifyPath(std::string originalPath);
|
2011-01-18 17:34:28 +01:00
|
|
|
|
2012-12-28 10:48:12 +01:00
|
|
|
/**
|
|
|
|
* @brief Lookup the path part from a filename (e.g., '/tmp/a.h' -> '/tmp/', 'a.h' -> '')
|
|
|
|
* @param filename filename to lookup, must have / -separators.
|
|
|
|
* @return path part of the filename
|
|
|
|
*/
|
|
|
|
static std::string getPathFromFilename(const std::string &filename);
|
|
|
|
|
2011-01-18 17:34:28 +01:00
|
|
|
/**
|
|
|
|
* @brief Compare filenames to see if they are the same.
|
|
|
|
* On Linux the comparison is case-sensitive. On Windows it is case-insensitive.
|
|
|
|
* @param fname1 one filename
|
|
|
|
* @param fname2 other filename
|
|
|
|
* @return true if the filenames match on the current platform
|
|
|
|
*/
|
|
|
|
static bool sameFileName(const std::string &fname1, const std::string &fname2);
|
2011-03-28 21:14:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Remove quotation marks (") from the path.
|
2011-09-08 18:28:05 +02:00
|
|
|
* @param path path to be cleaned.
|
2011-03-28 21:14:19 +02:00
|
|
|
* @return Cleaned path without quotation marks.
|
|
|
|
*/
|
2011-11-26 21:02:04 +01:00
|
|
|
static std::string removeQuotationMarks(std::string path);
|
2011-08-06 11:29:51 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get an extension of the filename.
|
|
|
|
* @param path Path containing filename.
|
|
|
|
* @return Filename extension (containing the dot, e.g. ".h" or ".CPP").
|
|
|
|
*/
|
2011-08-06 11:29:51 +02:00
|
|
|
static std::string getFilenameExtension(const std::string &path);
|
2012-01-06 17:31:10 +01:00
|
|
|
|
2012-01-06 20:56:28 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get an extension of the filename in lower case.
|
|
|
|
* @param path Path containing filename.
|
|
|
|
* @return Filename extension (containing the dot, e.g. ".h").
|
|
|
|
*/
|
2012-01-06 20:56:28 +01:00
|
|
|
static std::string getFilenameExtensionInLowerCase(const std::string &path);
|
|
|
|
|
2016-10-02 12:06:55 +02:00
|
|
|
/**
|
|
|
|
* @brief Returns the absolute path of current working directory
|
|
|
|
* @return absolute path of current working directory
|
|
|
|
*/
|
2017-10-03 18:24:18 +02:00
|
|
|
static std::string getCurrentPath();
|
2016-10-02 12:06:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Check if given path is absolute
|
|
|
|
* @param path Path to check
|
|
|
|
* @return true if given path is absolute
|
|
|
|
*/
|
|
|
|
static bool isAbsolute(const std::string& path);
|
|
|
|
|
2012-04-06 10:49:21 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Create a relative path from an absolute one, if absolute path is inside the basePaths.
|
|
|
|
* @param absolutePath Path to be made relative.
|
|
|
|
* @param basePaths Paths to which it may be made relative.
|
|
|
|
* @return relative path, if possible. Otherwise absolutePath is returned unchanged
|
|
|
|
*/
|
2012-04-06 10:49:21 +02:00
|
|
|
static std::string getRelativePath(const std::string& absolutePath, const std::vector<std::string>& basePaths);
|
|
|
|
|
2014-10-19 07:34:40 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get an absolute file path from a relative one.
|
|
|
|
* @param filePath File path to be made absolute.
|
|
|
|
* @return absolute path, if possible. Otherwise an empty path is returned
|
|
|
|
*/
|
2014-10-19 07:34:40 +02:00
|
|
|
static std::string getAbsoluteFilePath(const std::string& filePath);
|
|
|
|
|
2012-01-06 17:31:10 +01:00
|
|
|
/**
|
|
|
|
* @brief Check if the file extension indicates that it's a C/C++ source file.
|
|
|
|
* Check if the file has source file extension: *.c;*.cpp;*.cxx;*.c++;*.cc;*.txx
|
2013-06-16 19:25:05 +02:00
|
|
|
* @param filename filename to check. path info is optional
|
2014-04-27 21:42:10 +02:00
|
|
|
* @return true if the file extension indicates it should be checked
|
2012-01-06 17:31:10 +01:00
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
static bool acceptFile(const std::string &filename) {
|
2013-10-31 19:09:01 +01:00
|
|
|
const std::set<std::string> extra;
|
|
|
|
return acceptFile(filename, extra);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Check if the file extension indicates that it's a C/C++ source file.
|
|
|
|
* Check if the file has source file extension: *.c;*.cpp;*.cxx;*.c++;*.cc;*.txx
|
2017-05-06 11:57:02 +02:00
|
|
|
* @param path filename to check. path info is optional
|
2013-10-31 19:09:01 +01:00
|
|
|
* @param extra extra file extensions
|
2014-04-27 21:42:10 +02:00
|
|
|
* @return true if the file extension indicates it should be checked
|
2013-10-31 19:09:01 +01:00
|
|
|
*/
|
lib: fix a bunch of warnings about differing function arguments in definition and declaration.
[lib/token.h:72] -> [lib/token.cpp:36]: (style, inconclusive) Function 'Token' argument 1 names different: declaration 'tokensBack' definition 't'.
[lib/token.h:445] -> [lib/token.cpp:497]: (style, inconclusive) Function 'multiCompare' argument 1 names different: declaration 'needle' definition 'tok'.
[lib/checkio.h:73] -> [lib/checkio.cpp:1385]: (style, inconclusive) Function 'ArgumentInfo' argument 3 names different: declaration 'isCPP' definition '_isCPP'.
[lib/checkother.h:216] -> [lib/checkother.cpp:2136]: (style, inconclusive) Function 'checkComparisonFunctionIsAlwaysTrueOrFalseError' argument 2 names different: declaration 'strFunctionName' definition 'functionName'.
[lib/errorlogger.h:214] -> [lib/errorlogger.cpp:51]: (style, inconclusive) Function 'ErrorMessage' argument 2 names different: declaration 'file0' definition 'file0_'.
[lib/errorlogger.h:215] -> [lib/errorlogger.cpp:65]: (style, inconclusive) Function 'ErrorMessage' argument 2 names different: declaration 'file0' definition 'file0_'.
[lib/library.h:327] -> [lib/library.cpp:1043]: (style, inconclusive) Function 'ignorefunction' argument 1 names different: declaration 'function' definition 'functionName'.
[lib/mathlib.h:112] -> [lib/mathlib.cpp:1275]: (style, inconclusive) Function 'isNullValue' argument 1 names different: declaration 'tok' definition 'str'.
[lib/preprocessor.h:91] -> [lib/preprocessor.cpp:122]: (style, inconclusive) Function 'setDirectives' argument 1 names different: declaration 'tokens' definition 'tokens1'.
[lib/symboldatabase.h:860] -> [lib/symboldatabase.cpp:1801]: (style, inconclusive) Function 'argsMatch' argument 1 names different: declaration 'info' definition 'scope'.
[lib/symboldatabase.h:1171] -> [lib/symboldatabase.cpp:2048]: (style, inconclusive) Function 'addClassFunction' argument 1 names different: declaration 'info' definition 'scope'.
[lib/symboldatabase.h:1174] -> [lib/symboldatabase.cpp:2208]: (style, inconclusive) Function 'addNewFunction' argument 1 names different: declaration 'info' definition 'scope'.
[lib/symboldatabase.h:1090] -> [lib/symboldatabase.cpp:3648]: (style, inconclusive) Function 'findVariableType' argument 2 names different: declaration 'type' definition 'typeTok'.
[lib/symboldatabase.h:1101] -> [lib/symboldatabase.cpp:4308]: (style, inconclusive) Function 'findType' argument 1 names different: declaration 'tok' definition 'startTok'.
[lib/symboldatabase.h:1176] -> [lib/symboldatabase.cpp:4349]: (style, inconclusive) Function 'findTypeInNested' argument 1 names different: declaration 'tok' definition 'startTok'.
[lib/symboldatabase.h:1193] -> [lib/symboldatabase.cpp:4501]: (style, inconclusive) Function 'setValueType' argument 2 names different: declaration 'enumerators' definition 'enumerator'.
[lib/path.h:159] -> [lib/path.cpp:247]: (style, inconclusive) Function 'isCPP' argument 1 names different: declaration 'extensionInLowerCase' definition 'path'.
[lib/path.h:145] -> [lib/path.cpp:266]: (style, inconclusive) Function 'acceptFile' argument 1 names different: declaration 'filename' definition 'path'.
2017-04-03 00:06:46 +02:00
|
|
|
static bool acceptFile(const std::string &path, const std::set<std::string> &extra);
|
2012-01-06 17:31:10 +01:00
|
|
|
|
2012-01-06 20:56:28 +01:00
|
|
|
/**
|
|
|
|
* @brief Identify language based on file extension.
|
2013-03-01 16:13:04 +01:00
|
|
|
* @param path filename to check. path info is optional
|
2012-01-06 20:56:28 +01:00
|
|
|
* @return true if extension is meant for C files
|
|
|
|
*/
|
2013-03-01 16:13:04 +01:00
|
|
|
static bool isC(const std::string &path);
|
2012-01-06 20:56:28 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Identify language based on file extension.
|
2017-05-06 11:57:02 +02:00
|
|
|
* @param path filename to check. path info is optional
|
2012-01-06 20:56:28 +01:00
|
|
|
* @return true if extension is meant for C++ files
|
|
|
|
*/
|
lib: fix a bunch of warnings about differing function arguments in definition and declaration.
[lib/token.h:72] -> [lib/token.cpp:36]: (style, inconclusive) Function 'Token' argument 1 names different: declaration 'tokensBack' definition 't'.
[lib/token.h:445] -> [lib/token.cpp:497]: (style, inconclusive) Function 'multiCompare' argument 1 names different: declaration 'needle' definition 'tok'.
[lib/checkio.h:73] -> [lib/checkio.cpp:1385]: (style, inconclusive) Function 'ArgumentInfo' argument 3 names different: declaration 'isCPP' definition '_isCPP'.
[lib/checkother.h:216] -> [lib/checkother.cpp:2136]: (style, inconclusive) Function 'checkComparisonFunctionIsAlwaysTrueOrFalseError' argument 2 names different: declaration 'strFunctionName' definition 'functionName'.
[lib/errorlogger.h:214] -> [lib/errorlogger.cpp:51]: (style, inconclusive) Function 'ErrorMessage' argument 2 names different: declaration 'file0' definition 'file0_'.
[lib/errorlogger.h:215] -> [lib/errorlogger.cpp:65]: (style, inconclusive) Function 'ErrorMessage' argument 2 names different: declaration 'file0' definition 'file0_'.
[lib/library.h:327] -> [lib/library.cpp:1043]: (style, inconclusive) Function 'ignorefunction' argument 1 names different: declaration 'function' definition 'functionName'.
[lib/mathlib.h:112] -> [lib/mathlib.cpp:1275]: (style, inconclusive) Function 'isNullValue' argument 1 names different: declaration 'tok' definition 'str'.
[lib/preprocessor.h:91] -> [lib/preprocessor.cpp:122]: (style, inconclusive) Function 'setDirectives' argument 1 names different: declaration 'tokens' definition 'tokens1'.
[lib/symboldatabase.h:860] -> [lib/symboldatabase.cpp:1801]: (style, inconclusive) Function 'argsMatch' argument 1 names different: declaration 'info' definition 'scope'.
[lib/symboldatabase.h:1171] -> [lib/symboldatabase.cpp:2048]: (style, inconclusive) Function 'addClassFunction' argument 1 names different: declaration 'info' definition 'scope'.
[lib/symboldatabase.h:1174] -> [lib/symboldatabase.cpp:2208]: (style, inconclusive) Function 'addNewFunction' argument 1 names different: declaration 'info' definition 'scope'.
[lib/symboldatabase.h:1090] -> [lib/symboldatabase.cpp:3648]: (style, inconclusive) Function 'findVariableType' argument 2 names different: declaration 'type' definition 'typeTok'.
[lib/symboldatabase.h:1101] -> [lib/symboldatabase.cpp:4308]: (style, inconclusive) Function 'findType' argument 1 names different: declaration 'tok' definition 'startTok'.
[lib/symboldatabase.h:1176] -> [lib/symboldatabase.cpp:4349]: (style, inconclusive) Function 'findTypeInNested' argument 1 names different: declaration 'tok' definition 'startTok'.
[lib/symboldatabase.h:1193] -> [lib/symboldatabase.cpp:4501]: (style, inconclusive) Function 'setValueType' argument 2 names different: declaration 'enumerators' definition 'enumerator'.
[lib/path.h:159] -> [lib/path.cpp:247]: (style, inconclusive) Function 'isCPP' argument 1 names different: declaration 'extensionInLowerCase' definition 'path'.
[lib/path.h:145] -> [lib/path.cpp:266]: (style, inconclusive) Function 'acceptFile' argument 1 names different: declaration 'filename' definition 'path'.
2017-04-03 00:06:46 +02:00
|
|
|
static bool isCPP(const std::string &path);
|
2013-03-01 16:13:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Is filename a header based on file extension
|
|
|
|
* @param path filename to check. path info is optional
|
|
|
|
* @return true if filename extension is meant for headers
|
|
|
|
*/
|
|
|
|
static bool isHeader(const std::string &path);
|
2017-10-05 23:03:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get filename without a directory path part.
|
|
|
|
* @param file filename to be stripped. path info is optional
|
|
|
|
* @return filename without directory path part.
|
|
|
|
*/
|
|
|
|
static std::string stripDirectoryPart(const std::string &file);
|
2019-01-05 23:11:43 +01:00
|
|
|
|
2020-11-13 15:52:24 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Checks if a File exists
|
|
|
|
* @param file Path to be checked if it is a File
|
|
|
|
* @return true if given path is a File
|
|
|
|
*/
|
2019-01-05 23:11:43 +01:00
|
|
|
static bool fileExists(const std::string &file);
|
2010-07-17 16:38:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// @}
|
2013-09-04 20:59:49 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif // pathH
|