cppcheck/lib/executionpath.h

138 lines
4.2 KiB
C
Raw Normal View History

2009-12-14 20:30:31 +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.
2009-12-14 20:30:31 +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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//---------------------------------------------------------------------------
2009-12-14 20:30:31 +01:00
#ifndef executionpathH
#define executionpathH
//---------------------------------------------------------------------------
2009-12-14 20:30:31 +01:00
#include <list>
#include "config.h"
2009-12-14 20:30:31 +01:00
class Token;
2009-12-21 18:17:35 +01:00
class Check;
class SymbolDatabase;
2009-12-14 20:30:31 +01:00
/**
* Base class for Execution Paths checking
* An execution path is a linear list of statements. There are no "if"/.. to worry about.
**/
class CPPCHECKLIB ExecutionPath {
2009-12-14 20:30:31 +01:00
private:
/** No implementation */
2015-06-28 18:07:31 +02:00
ExecutionPath();
2014-11-20 20:49:05 +01:00
ExecutionPath& operator=(const ExecutionPath &);
protected:
2009-12-21 18:17:35 +01:00
Check * const owner;
2009-12-14 20:30:31 +01:00
2010-04-25 11:55:57 +02:00
/** Are two execution paths equal? */
virtual bool is_equal(const ExecutionPath *) const = 0;
2009-12-14 20:30:31 +01:00
public:
2014-11-20 14:20:09 +01:00
ExecutionPath(Check *c, unsigned int id) : owner(c), numberOfIf(0), varId(id) {
}
2009-12-14 20:30:31 +01:00
2014-11-20 14:20:09 +01:00
virtual ~ExecutionPath() {
}
2009-12-14 20:30:31 +01:00
2009-12-25 20:50:23 +01:00
/** Implement this in each derived class. This function must create a copy of the current instance */
2009-12-14 20:30:31 +01:00
virtual ExecutionPath *copy() = 0;
/** print checkdata */
void print() const;
2010-04-25 11:55:57 +02:00
/** number of if blocks */
unsigned int numberOfIf;
const unsigned int varId;
2009-12-25 20:50:23 +01:00
2009-12-14 20:30:31 +01:00
/**
* bail out all execution paths
* @param checks the execution paths to bail out on
**/
2014-11-20 14:20:09 +01:00
static void bailOut(std::list<ExecutionPath *> &checks) {
2011-10-13 20:53:06 +02:00
while (!checks.empty()) {
delete checks.back();
checks.pop_back();
}
2009-12-14 20:30:31 +01:00
}
2009-12-21 18:17:35 +01:00
/**
* bail out execution paths with given variable id
* @param checks the execution paths to bail out on
* @param varid the specific variable id
**/
2014-11-20 14:20:09 +01:00
static void bailOutVar(std::list<ExecutionPath *> &checks, const unsigned int varid) {
if (varid == 0)
return;
std::list<ExecutionPath *>::iterator it = checks.begin();
2011-10-13 20:53:06 +02:00
while (it != checks.end()) {
if ((*it)->varId == varid) {
delete *it;
checks.erase(it++);
2011-10-13 20:53:06 +02:00
} else {
++it;
}
}
2009-12-21 18:17:35 +01:00
}
2009-12-14 20:30:31 +01:00
/**
* Parse tokens at given location
* @param tok token to parse
* @param checks The execution paths. All execution paths in the list are executed in the current scope.
2009-12-25 19:45:21 +01:00
* @return the token before the "next" token.
2009-12-14 20:30:31 +01:00
**/
virtual const Token *parse(const Token &tok, std::list<ExecutionPath *> &checks) const = 0;
2009-12-25 19:45:21 +01:00
/**
* Parse condition
* @param tok first token in condition.
* @param checks The execution paths. All execution paths in the list are executed in the current scope
* @return true => bail out all checking
**/
2009-12-25 20:50:23 +01:00
virtual bool parseCondition(const Token &tok, std::list<ExecutionPath *> &checks);
/**
* Parse loop body
* @param tok the first token in the loop body (the token after the {)
* @param checks The execution paths
*/
2014-11-20 14:20:09 +01:00
virtual void parseLoopBody(const Token *tok, std::list<ExecutionPath *> &checks) const {
(void)tok;
(void)checks;
}
/** going out of scope - all execution paths end */
2014-11-20 14:20:09 +01:00
virtual void end(const std::list<ExecutionPath *> & /*checks*/, const Token * /*tok*/) const {
}
2010-04-25 11:55:57 +02:00
2014-11-20 14:20:09 +01:00
bool operator==(const ExecutionPath &e) const {
2010-04-25 11:55:57 +02:00
return bool(varId == e.varId && is_equal(&e));
}
static void checkScope(const Token *tok, std::list<ExecutionPath *> &checks);
2009-12-14 20:30:31 +01:00
};
void checkExecutionPaths(const SymbolDatabase *symbolDatabase, ExecutionPath *c);
2009-12-14 20:30:31 +01:00
//---------------------------------------------------------------------------
#endif // executionpathH