2008-12-18 22:28:57 +01:00
|
|
|
/*
|
2009-01-21 21:04:20 +01:00
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2011-01-09 20:33:36 +01:00
|
|
|
* Copyright (C) 2007-2011 Daniel Marjamäki and Cppcheck team.
|
2008-12-18 22:28:57 +01: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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
|
2011-03-20 14:25:11 +01:00
|
|
|
#ifndef filelisterH
|
|
|
|
#define filelisterH
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2011-10-29 19:40:50 +02:00
|
|
|
#include <set>
|
2011-04-19 13:52:32 +02:00
|
|
|
#include <map>
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2011-02-01 07:33:02 +01:00
|
|
|
/// @addtogroup CLI
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @{
|
|
|
|
|
2011-03-20 14:25:11 +01:00
|
|
|
/** @brief Cross-platform FileLister */
|
2011-10-13 20:53:06 +02:00
|
|
|
class FileLister {
|
2008-12-18 22:28:57 +01:00
|
|
|
public:
|
2010-03-14 18:55:33 +01:00
|
|
|
/**
|
2010-07-19 15:33:10 +02:00
|
|
|
* @brief Recursively add source files to a vector.
|
|
|
|
* Add source files from given directory and all subdirectries to the
|
|
|
|
* given vector. Only files with accepted extensions
|
|
|
|
* (*.c;*.cpp;*.cxx;*.c++;*.cc;*.txx) are added.
|
2010-03-14 18:55:33 +01:00
|
|
|
* @param filenames output vector that filenames are written to
|
2011-04-19 13:52:32 +02:00
|
|
|
* @param filesizes output map that contains the size of each file
|
2010-03-14 18:55:33 +01:00
|
|
|
* @param path root path
|
|
|
|
*/
|
2011-03-20 14:25:11 +01:00
|
|
|
static void recursiveAddFiles(std::vector<std::string> &filenames,
|
2011-04-19 13:52:32 +02:00
|
|
|
std::map<std::string, long> &filesizes,
|
2011-03-20 14:25:11 +01:00
|
|
|
const std::string &path);
|
2010-03-14 18:55:33 +01:00
|
|
|
|
|
|
|
/**
|
2010-07-19 15:33:10 +02:00
|
|
|
* @brief Check if the file extension indicates that it's a source file.
|
|
|
|
* Check if the file has source file extension: *.c;*.cpp;*.cxx;*.c++;*.cc;*.txx
|
|
|
|
* @param filename filename to check
|
2010-03-14 18:55:33 +01:00
|
|
|
* @return returns true if the file extension indicates it should be checked
|
|
|
|
*/
|
2011-02-03 10:48:16 +01:00
|
|
|
static bool acceptFile(const std::string &filename);
|
2009-03-02 20:56:51 +01:00
|
|
|
|
2011-01-09 09:29:38 +01:00
|
|
|
/**
|
|
|
|
* @brief Is given path a directory?
|
|
|
|
* @return returns true if the path is a directory
|
|
|
|
*/
|
2011-03-20 14:25:11 +01:00
|
|
|
static bool isDirectory(const std::string &path);
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2011-08-06 15:47:57 +02:00
|
|
|
/**
|
|
|
|
* @brief Check if the given path is a file and if it exists?
|
|
|
|
* @return true if path points to file and the file exists.
|
|
|
|
*/
|
|
|
|
static bool fileExists(const std::string &path);
|
|
|
|
|
2011-03-20 14:25:11 +01:00
|
|
|
#ifndef _WIN32
|
2011-10-29 19:30:33 +02:00
|
|
|
static std::string getAbsolutePath(const std::string& path);
|
|
|
|
|
2011-03-20 14:25:11 +01:00
|
|
|
static void recursiveAddFiles2(std::vector<std::string> &relative,
|
2011-10-29 19:57:12 +02:00
|
|
|
std::set<std::string> &seen_paths,
|
2011-04-19 13:52:32 +02:00
|
|
|
std::map<std::string, long> &filesizes,
|
2011-03-20 14:25:11 +01:00
|
|
|
const std::string &path);
|
|
|
|
#endif
|
|
|
|
};
|
2010-03-11 20:58:59 +01:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
|
|
|
|
2011-03-20 14:25:11 +01:00
|
|
|
#endif // #ifndef filelisterH
|