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
|
2015-01-03 12:14:58 +01:00
|
|
|
* Copyright (C) 2007-2015 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 <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
|
|
|
/**
|
2012-02-19 17:22:59 +01:00
|
|
|
* @brief Recursively add source files to a map.
|
2010-07-19 15:33:10 +02:00
|
|
|
* Add source files from given directory and all subdirectries to the
|
2012-02-19 17:22:59 +01:00
|
|
|
* given map. Only files with accepted extensions
|
2010-07-19 15:33:10 +02:00
|
|
|
* (*.c;*.cpp;*.cxx;*.c++;*.cc;*.txx) are added.
|
2012-02-19 17:22:59 +01:00
|
|
|
* @param files output map that associates the size of each file with its name
|
2010-03-14 18:55:33 +01:00
|
|
|
* @param path root path
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
static void recursiveAddFiles(std::map<std::string, std::size_t> &files, const std::string &path) {
|
2013-10-31 19:09:01 +01:00
|
|
|
const std::set<std::string> extra;
|
|
|
|
recursiveAddFiles(files, path, extra);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Recursively add source files to a map.
|
|
|
|
* Add source files from given directory and all subdirectries to the
|
|
|
|
* given map. Only files with accepted extensions
|
|
|
|
* (*.c;*.cpp;*.cxx;*.c++;*.cc;*.txx) are added.
|
|
|
|
* @param files output map that associates the size of each file with its name
|
|
|
|
* @param path root path
|
|
|
|
* @param extra Extra file extensions
|
|
|
|
*/
|
|
|
|
static void recursiveAddFiles(std::map<std::string, std::size_t> &files, const std::string &path, const std::set<std::string> &extra);
|
2010-03-14 18:55:33 +01:00
|
|
|
|
2015-03-05 06:53:11 +01:00
|
|
|
/**
|
|
|
|
* @brief (Recursively) add source files to a map.
|
|
|
|
* Add source files from given directory and all subdirectries to the
|
|
|
|
* given map. Only files with accepted extensions
|
|
|
|
* (*.c;*.cpp;*.cxx;*.c++;*.cc;*.txx) are added.
|
|
|
|
* @param files output map that associates the size of each file with its name
|
|
|
|
* @param path root path
|
|
|
|
* @param extra Extra file extensions
|
|
|
|
* @param extra recursive Enable recursion
|
|
|
|
*/
|
|
|
|
static void addFiles(std::map<std::string, std::size_t> &files, const std::string &path, const std::set<std::string> &extra, bool recursive);
|
|
|
|
|
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);
|
|
|
|
|
2015-03-05 06:53:11 +01:00
|
|
|
private:
|
|
|
|
|
|
|
|
static void addFiles2(std::set<std::string> &seen_paths,
|
|
|
|
std::map<std::string, std::size_t> &files,
|
|
|
|
const std::string &path,
|
|
|
|
const std::set<std::string> &extra,
|
|
|
|
bool recursive);
|
2011-03-20 14:25:11 +01:00
|
|
|
#endif
|
2015-03-05 06:53:11 +01:00
|
|
|
|
2011-03-20 14:25:11 +01:00
|
|
|
};
|
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
|