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
|
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki, Reijo Tomperi, Nicolas Le Cam,
|
|
|
|
* Leandro Penz, Kimmo Varis
|
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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
|
|
|
*/
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "checkclass.h"
|
|
|
|
|
|
|
|
#include <locale>
|
|
|
|
|
2009-01-23 21:55:06 +01:00
|
|
|
#include <cstring>
|
2008-12-18 22:28:57 +01:00
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
CheckClass::CheckClass(const Tokenizer *tokenizer, const Settings &settings, ErrorLogger *errorLogger)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
_tokenizer = tokenizer;
|
|
|
|
_settings = settings;
|
|
|
|
_errorLogger = errorLogger;
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckClass::~CheckClass()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
struct CheckClass::VAR *CheckClass::ClassChecking_GetVarList(const Token *tok1)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Get variable list..
|
|
|
|
struct VAR *varlist = NULL;
|
|
|
|
unsigned int indentlevel = 0;
|
2009-01-03 21:29:20 +01:00
|
|
|
for (const Token *tok = tok1; tok; tok = tok->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
if (!tok->next())
|
|
|
|
break;
|
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
if (tok->str() == "{")
|
|
|
|
++indentlevel;
|
|
|
|
else if (tok->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
if (indentlevel <= 1)
|
|
|
|
break;
|
2008-12-20 20:57:03 +01:00
|
|
|
--indentlevel;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel != 1)
|
2008-12-20 20:57:03 +01:00
|
|
|
continue;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-01-10 15:29:59 +01:00
|
|
|
// "private:" "public:" "protected:" etc
|
2008-12-20 20:57:03 +01:00
|
|
|
bool b = bool((*tok->strAt(0) != ':') && strchr(tok->strAt(0), ':') != 0);
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
// Search for start of statement..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! Token::Match(tok, "[;{}]") && ! b)
|
2008-12-20 20:57:03 +01:00
|
|
|
continue;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
// This is the start of a statement
|
2009-01-03 21:29:20 +01:00
|
|
|
const Token *next = tok->next();
|
2008-12-20 20:57:03 +01:00
|
|
|
const char *varname = 0;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-02-21 09:24:57 +01:00
|
|
|
// If next token contains a ":".. it is not part of a variable declaration
|
|
|
|
if (next->str().find(":") != std::string::npos)
|
|
|
|
{
|
2009-02-21 14:35:55 +01:00
|
|
|
|
2009-02-21 09:24:57 +01:00
|
|
|
}
|
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
// Is it a variable declaration?
|
2009-02-21 09:24:57 +01:00
|
|
|
else if (Token::Match(next, "%type% %var% ;"))
|
2008-12-20 20:57:03 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (next->isStandardType())
|
2008-12-20 20:57:03 +01:00
|
|
|
varname = next->strAt(1);
|
2009-01-14 20:34:10 +01:00
|
|
|
else if (Token::findmatch(_tokenizer->tokens(), ("enum " + next->str()).c_str()))
|
|
|
|
varname = next->strAt(1);
|
2008-12-20 20:57:03 +01:00
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
// Pointer?
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (Token::Match(next, "%type% * %var% ;"))
|
2008-12-20 20:57:03 +01:00
|
|
|
{
|
|
|
|
varname = next->strAt(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the varname was set in one of the two if-block above, create a entry for this variable..
|
|
|
|
if (varname)
|
|
|
|
{
|
2009-01-23 21:25:13 +01:00
|
|
|
struct VAR *var = new VAR(varname, false, varlist);
|
2008-12-20 20:57:03 +01:00
|
|
|
varlist = var;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return varlist;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token * CheckClass::FindClassFunction(const Token *tok, const char classname[], const char funcname[], int &indentlevel)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel < 0 || tok == NULL)
|
2008-12-18 22:28:57 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
std::ostringstream classPattern;
|
|
|
|
classPattern << "class " << classname << " :|{";
|
|
|
|
|
|
|
|
std::ostringstream internalPattern;
|
|
|
|
internalPattern << funcname << " (";
|
|
|
|
|
|
|
|
std::ostringstream externalPattern;
|
|
|
|
externalPattern << classname << " :: " << funcname << " (";
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
for (;tok; tok = tok->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel == 0 && Token::Match(tok, classPattern.str().c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
while (tok && tok->str() != "{")
|
2008-12-18 22:28:57 +01:00
|
|
|
tok = tok->next();
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok)
|
2008-12-18 22:28:57 +01:00
|
|
|
tok = tok->next();
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! tok)
|
2008-12-18 22:28:57 +01:00
|
|
|
break;
|
|
|
|
indentlevel = 1;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->str() == "{")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// If indentlevel==0 don't go to indentlevel 1. Skip the block.
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel > 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
++indentlevel;
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
for (; tok; tok = tok->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->str() == "{")
|
2008-12-18 22:28:57 +01:00
|
|
|
++indentlevel;
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (tok->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
--indentlevel;
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel <= 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok == NULL)
|
2008-12-18 22:28:57 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-01 23:22:28 +01:00
|
|
|
--indentlevel;
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel < 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel == 1)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Member function implemented in the class declaration?
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->str() != "~" && Token::Match(tok->next(), internalPattern.str().c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-09 08:47:41 +01:00
|
|
|
const Token *tok2 = tok->next();
|
2009-01-05 16:49:57 +01:00
|
|
|
while (tok2 && tok2->str() != "{" && tok2->str() != ";")
|
2008-12-18 22:28:57 +01:00
|
|
|
tok2 = tok2->next();
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok2 && tok2->str() == "{")
|
2008-12-18 22:28:57 +01:00
|
|
|
return tok->next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (indentlevel == 0 && Token::Match(tok, externalPattern.str().c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Not found
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void CheckClass::InitVar(struct VAR *varlist, const char varname[])
|
|
|
|
{
|
|
|
|
for (struct VAR *var = varlist; var; var = var->next)
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (strcmp(var->name, varname) == 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
var->init = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
void CheckClass::ClassChecking_VarList_Initialize(const Token *tok1, const Token *ftok, struct VAR *varlist, const char classname[], std::list<std::string> &callstack)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
bool Assign = false;
|
|
|
|
unsigned int indentlevel = 0;
|
|
|
|
|
|
|
|
for (; ftok; ftok = ftok->next())
|
|
|
|
{
|
|
|
|
if (!ftok->next())
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Class constructor.. initializing variables like this
|
|
|
|
// clKalle::clKalle() : var(value) { }
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel == 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-03 21:29:20 +01:00
|
|
|
if (Assign && Token::Match(ftok, "%var% ("))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
InitVar(varlist, ftok->aaaa());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
Assign |= (ftok->str() == ":");
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
if (ftok->str() == "{")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-01 23:22:28 +01:00
|
|
|
++indentlevel;
|
2008-12-18 22:28:57 +01:00
|
|
|
Assign = false;
|
|
|
|
}
|
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
if (ftok->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
if (indentlevel <= 1)
|
|
|
|
break;
|
2009-01-01 23:22:28 +01:00
|
|
|
--indentlevel;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel < 1)
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
2009-01-17 21:17:57 +01:00
|
|
|
// Variable getting value from stream?
|
|
|
|
if (Token::Match(ftok, ">> %var%"))
|
|
|
|
{
|
|
|
|
InitVar(varlist, ftok->next()->aaaa());
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
// Before a new statement there is "[{};)=]" or "else"
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! Token::Match(ftok, "[{};)=]") && ftok->str() != "else")
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Using the operator= function to initialize all variables..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::simpleMatch(ftok->next(), "* this = "))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
for (struct VAR *var = varlist; var; var = var->next)
|
|
|
|
var->init = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
if (!Token::Match(ftok->next(), "%var%") && !Token::Match(ftok->next(), "this . %var%"))
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Goto the first token in this statement..
|
|
|
|
ftok = ftok->next();
|
|
|
|
|
|
|
|
// Skip "this->"
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::simpleMatch(ftok, "this ."))
|
2008-12-18 22:28:57 +01:00
|
|
|
ftok = ftok->tokAt(2);
|
|
|
|
|
|
|
|
// Clearing all variables..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::simpleMatch(ftok, "memset ( this ,"))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
for (struct VAR *var = varlist; var; var = var->next)
|
|
|
|
var->init = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calling member function?
|
2009-01-03 21:29:20 +01:00
|
|
|
else if (Token::Match(ftok, "%var% ("))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// No recursive calls!
|
2009-01-05 16:49:57 +01:00
|
|
|
if (std::find(callstack.begin(), callstack.end(), ftok->str()) == callstack.end())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
callstack.push_back(ftok->str());
|
2008-12-18 22:28:57 +01:00
|
|
|
int i = 0;
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *ftok2 = FindClassFunction(tok1, classname, ftok->aaaa(), i);
|
2008-12-18 22:28:57 +01:00
|
|
|
ClassChecking_VarList_Initialize(tok1, ftok2, varlist, classname, callstack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assignment of member variable?
|
2009-01-03 21:29:20 +01:00
|
|
|
else if (Token::Match(ftok, "%var% ="))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
InitVar(varlist, ftok->aaaa());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// The functions 'clear' and 'Clear' are supposed to initialize variable.
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::Match(ftok, "%var% . clear|Clear ("))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
InitVar(varlist, ftok->aaaa());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// ClassCheck: Check that all class constructors are ok.
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-12-20 09:48:52 +01:00
|
|
|
void CheckClass::constructors()
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
const char pattern_class[] = "class %var% {";
|
|
|
|
|
|
|
|
// Locate class
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *tok1 = Token::findmatch(_tokenizer->tokens(), pattern_class);
|
2008-12-18 22:28:57 +01:00
|
|
|
while (tok1)
|
|
|
|
{
|
|
|
|
const char *className[2];
|
2009-01-05 16:49:57 +01:00
|
|
|
className[0] = tok1->strAt(1);
|
2008-12-18 22:28:57 +01:00
|
|
|
className[1] = 0;
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *classNameToken = tok1->tokAt(1);
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// TODO: handling of private constructors should be improved.
|
|
|
|
bool hasPrivateConstructor = false;
|
|
|
|
{
|
|
|
|
int indentlevel = 0;
|
|
|
|
bool isPrivate = true;
|
2009-01-05 16:49:57 +01:00
|
|
|
for (const Token *tok = tok1; tok; tok = tok->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Indentation
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->str() == "{")
|
2008-12-18 22:28:57 +01:00
|
|
|
++indentlevel;
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (tok->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
--indentlevel;
|
|
|
|
if (indentlevel <= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse class contents (indentlevel == 1)..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indentlevel == 1)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// What section are we in.. private/non-private
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->str() == "private:")
|
2008-12-18 22:28:57 +01:00
|
|
|
isPrivate = true;
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (tok->str() == "protected:" || tok->str() == "public:")
|
2008-12-18 22:28:57 +01:00
|
|
|
isPrivate = false;
|
|
|
|
|
|
|
|
// Is there a private constructor?
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (isPrivate && Token::simpleMatch(tok, (classNameToken->str() + " (").c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
hasPrivateConstructor = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (hasPrivateConstructor)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// TODO: Handle private constructors.
|
|
|
|
// Right now to avoid false positives I just bail out
|
2009-01-05 16:49:57 +01:00
|
|
|
tok1 = Token::findmatch(tok1->next(), pattern_class);
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Are there a class constructor?
|
2009-01-04 21:33:12 +01:00
|
|
|
std::string tempPattern = "%any% " + classNameToken->str() + " (";
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *constructor_token = Token::findmatch(tok1, tempPattern.c_str());
|
|
|
|
while (Token::Match(constructor_token, "~"))
|
|
|
|
constructor_token = Token::findmatch(constructor_token->next(), tempPattern.c_str());
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// There are no constructor.
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! constructor_token)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// If "--style" has been given, give a warning
|
2009-02-08 22:20:35 +01:00
|
|
|
if (ErrorLogger::noConstructor(_settings))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// If the class has member variables there should be an constructor
|
|
|
|
struct VAR *varlist = ClassChecking_GetVarList(tok1);
|
2009-01-05 16:49:57 +01:00
|
|
|
if (varlist)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->noConstructor(_tokenizer, tok1, classNameToken->str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
// Delete the varlist..
|
|
|
|
while (varlist)
|
|
|
|
{
|
|
|
|
struct VAR *nextvar = varlist->next;
|
|
|
|
delete varlist;
|
|
|
|
varlist = nextvar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
tok1 = Token::findmatch(tok1->next(), pattern_class);
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that all member variables are initialized..
|
|
|
|
struct VAR *varlist = ClassChecking_GetVarList(tok1);
|
|
|
|
|
|
|
|
// Check constructors
|
2009-01-05 16:49:57 +01:00
|
|
|
CheckConstructors(tok1, varlist, className[0]);
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// Check assignment operators
|
2009-01-05 16:49:57 +01:00
|
|
|
CheckConstructors(tok1, varlist, "operator =");
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// Delete the varlist..
|
|
|
|
while (varlist)
|
|
|
|
{
|
|
|
|
struct VAR *nextvar = varlist->next;
|
|
|
|
delete varlist;
|
|
|
|
varlist = nextvar;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
tok1 = Token::findmatch(tok1->next(), pattern_class);
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
void CheckClass::CheckConstructors(const Token *tok1, struct VAR *varlist, const char funcname[])
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
const char * const className = tok1->strAt(1);
|
|
|
|
|
|
|
|
int indentlevel = 0;
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *constructor_token = FindClassFunction(tok1, className, funcname, indentlevel);
|
2008-12-18 22:28:57 +01:00
|
|
|
std::list<std::string> callstack;
|
|
|
|
ClassChecking_VarList_Initialize(tok1, constructor_token, varlist, className, callstack);
|
2009-01-05 16:49:57 +01:00
|
|
|
while (constructor_token)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Check if any variables are uninitialized
|
|
|
|
for (struct VAR *var = varlist; var; var = var->next)
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (var->init)
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Is it a static member variable?
|
|
|
|
std::ostringstream pattern;
|
|
|
|
pattern << className << "::" << var->name << "=";
|
2009-01-03 21:29:20 +01:00
|
|
|
if (Token::findmatch(_tokenizer->tokens(), pattern.str().c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// It's non-static and it's not initialized => error
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->uninitVar(_tokenizer, constructor_token, className, var->name);
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
for (struct VAR *var = varlist; var; var = var->next)
|
2008-12-18 22:28:57 +01:00
|
|
|
var->init = false;
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
constructor_token = FindClassFunction(constructor_token->next(), className, funcname, indentlevel);
|
2008-12-18 22:28:57 +01:00
|
|
|
callstack.clear();
|
|
|
|
ClassChecking_VarList_Initialize(tok1, constructor_token, varlist, className, callstack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// ClassCheck: Unused private functions
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-12-20 09:48:52 +01:00
|
|
|
void CheckClass::privateFunctions()
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Locate some class
|
2009-01-03 21:29:20 +01:00
|
|
|
for (const Token *tok1 = Token::findmatch(_tokenizer->tokens(), "class %var% {"); tok1; tok1 = Token::findmatch(tok1->next(), "class %var% {"))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2008-12-20 17:30:24 +01:00
|
|
|
const std::string &classname = tok1->next()->str();
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// The class implementation must be available..
|
2008-12-20 17:30:24 +01:00
|
|
|
const std::string classconstructor(classname + " :: " + classname);
|
2009-02-24 18:49:43 +01:00
|
|
|
if (!Token::findmatch(_tokenizer->tokens(), classconstructor.c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Get private functions..
|
2009-01-10 18:35:41 +01:00
|
|
|
std::list<const Token *> FuncList;
|
2008-12-18 22:28:57 +01:00
|
|
|
FuncList.clear();
|
|
|
|
bool priv = false;
|
|
|
|
unsigned int indent_level = 0;
|
2009-01-03 21:29:20 +01:00
|
|
|
for (const Token *tok = tok1; tok; tok = tok->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::Match(tok, "friend %var%"))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Todo: Handle friend classes
|
|
|
|
FuncList.clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-12-20 18:52:15 +01:00
|
|
|
if (tok->str() == "{")
|
2009-01-01 23:22:28 +01:00
|
|
|
++indent_level;
|
2008-12-20 18:52:15 +01:00
|
|
|
else if (tok->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
if (indent_level <= 1)
|
|
|
|
break;
|
2009-01-01 23:22:28 +01:00
|
|
|
--indent_level;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
2008-12-20 18:52:15 +01:00
|
|
|
else if (tok->str() == "private:")
|
2008-12-18 22:28:57 +01:00
|
|
|
priv = true;
|
2008-12-20 18:52:15 +01:00
|
|
|
else if (tok->str() == "public:")
|
2008-12-18 22:28:57 +01:00
|
|
|
priv = false;
|
2008-12-20 18:52:15 +01:00
|
|
|
else if (tok->str() == "protected:")
|
2008-12-18 22:28:57 +01:00
|
|
|
priv = false;
|
|
|
|
else if (priv && indent_level == 1)
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::Match(tok, "typedef %type% ("))
|
2008-12-18 22:28:57 +01:00
|
|
|
tok = tok->tokAt(2);
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
if (Token::Match(tok, "%var% (") &&
|
2009-01-05 16:49:57 +01:00
|
|
|
!Token::Match(tok, classname.c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-10 18:35:41 +01:00
|
|
|
FuncList.push_back(tok);
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that all private functions are used..
|
2008-12-20 17:30:24 +01:00
|
|
|
const std::string pattern_function(classname + " ::");
|
2008-12-18 22:28:57 +01:00
|
|
|
bool HasFuncImpl = false;
|
2009-01-03 21:29:20 +01:00
|
|
|
const Token *ftok = _tokenizer->tokens();
|
2008-12-18 22:28:57 +01:00
|
|
|
while (ftok)
|
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
ftok = Token::findmatch(ftok, pattern_function.c_str());
|
2008-12-18 22:28:57 +01:00
|
|
|
int numpar = 0;
|
2009-01-03 21:29:20 +01:00
|
|
|
while (ftok && !Token::Match(ftok, "[;{]"))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2008-12-20 20:57:03 +01:00
|
|
|
if (ftok->str() == "(")
|
|
|
|
++numpar;
|
|
|
|
else if (ftok->str() == ")")
|
|
|
|
--numpar;
|
2008-12-18 22:28:57 +01:00
|
|
|
ftok = ftok->next();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ftok)
|
|
|
|
break;
|
|
|
|
|
2008-12-20 20:57:03 +01:00
|
|
|
if (ftok->str() != ";" && numpar == 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
HasFuncImpl = true;
|
|
|
|
|
|
|
|
indent_level = 0;
|
|
|
|
while (ftok)
|
|
|
|
{
|
2008-12-20 20:57:03 +01:00
|
|
|
if (ftok->str() == "{")
|
2009-01-01 23:22:28 +01:00
|
|
|
++indent_level;
|
2009-02-24 18:49:43 +01:00
|
|
|
if (ftok->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (indent_level <= 1)
|
2008-12-18 22:28:57 +01:00
|
|
|
break;
|
2009-01-01 23:22:28 +01:00
|
|
|
--indent_level;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
2009-02-24 18:49:43 +01:00
|
|
|
if (Token::Match(ftok->next(), "("))
|
2009-01-10 18:35:41 +01:00
|
|
|
{
|
|
|
|
// Remove function from FuncList
|
|
|
|
for (std::list<const Token *>::iterator it = FuncList.begin(); it != FuncList.end(); ++it)
|
|
|
|
{
|
|
|
|
if (ftok->str() == (*it)->str())
|
|
|
|
{
|
|
|
|
FuncList.remove(*it);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
ftok = ftok->next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ftok)
|
|
|
|
ftok = ftok->next();
|
|
|
|
}
|
|
|
|
|
|
|
|
while (HasFuncImpl && !FuncList.empty())
|
|
|
|
{
|
|
|
|
// Final check; check if the function pointer is used somewhere..
|
2009-01-10 18:35:41 +01:00
|
|
|
const std::string _pattern("return|(|)|,|= " + FuncList.front()->str());
|
2009-01-03 21:29:20 +01:00
|
|
|
if (!Token::findmatch(_tokenizer->tokens(), _pattern.c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->unusedPrivateFunction(_tokenizer, FuncList.front(), classname, FuncList.front()->str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
FuncList.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// ClassCheck: Check that memset is not used on classes
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-12-20 09:48:52 +01:00
|
|
|
void CheckClass::noMemset()
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Locate all 'memset' tokens..
|
2009-01-03 21:29:20 +01:00
|
|
|
for (const Token *tok = _tokenizer->tokens(); tok; tok = tok->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (!Token::Match(tok, "memset|memcpy|memmove"))
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Todo: Handle memcpy and memmove
|
|
|
|
const char *type = NULL;
|
2009-01-03 21:29:20 +01:00
|
|
|
if (Token::Match(tok, "memset ( %var% , %num% , sizeof ( %type% ) )"))
|
2008-12-18 22:28:57 +01:00
|
|
|
type = tok->strAt(8);
|
2009-01-03 21:29:20 +01:00
|
|
|
else if (Token::Match(tok, "memset ( & %var% , %num% , sizeof ( %type% ) )"))
|
2008-12-18 22:28:57 +01:00
|
|
|
type = tok->strAt(9);
|
2009-01-03 21:29:20 +01:00
|
|
|
else if (Token::Match(tok, "memset ( %var% , %num% , sizeof ( struct %type% ) )"))
|
2008-12-18 22:28:57 +01:00
|
|
|
type = tok->strAt(9);
|
2009-01-03 21:29:20 +01:00
|
|
|
else if (Token::Match(tok, "memset ( & %var% , %num% , sizeof ( struct %type% ) )"))
|
2008-12-18 22:28:57 +01:00
|
|
|
type = tok->strAt(10);
|
2009-01-03 21:29:20 +01:00
|
|
|
else if (Token::Match(tok, "%type% ( %var% , %var% , sizeof ( %type% ) )"))
|
2008-12-18 22:28:57 +01:00
|
|
|
type = tok->strAt(8);
|
|
|
|
|
|
|
|
// No type defined => The tokens didn't match
|
|
|
|
if (!(type && type[0]))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Warn if type is a class..
|
2008-12-20 17:30:24 +01:00
|
|
|
const std::string pattern1(std::string("class ") + type);
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::findmatch(_tokenizer->tokens(), pattern1.c_str()))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->memsetClass(_tokenizer, tok, tok->str());
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Warn if type is a struct that contains any std::*
|
2008-12-20 17:30:24 +01:00
|
|
|
const std::string pattern2(std::string("struct ") + type);
|
2009-01-03 21:29:20 +01:00
|
|
|
for (const Token *tstruct = Token::findmatch(_tokenizer->tokens(), pattern2.c_str()); tstruct; tstruct = tstruct->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2008-12-20 20:57:03 +01:00
|
|
|
if (tstruct->str() == "}")
|
2008-12-18 22:28:57 +01:00
|
|
|
break;
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
if (Token::Match(tstruct, "std :: %type% %var% ;"))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->memsetStruct(_tokenizer, tok, tok->str(), tstruct->strAt(2));
|
2008-12-18 22:28:57 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// ClassCheck: "void operator=("
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-12-20 09:48:52 +01:00
|
|
|
void CheckClass::operatorEq()
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-10 18:57:31 +01:00
|
|
|
const Token *tok = Token::findmatch(_tokenizer->tokens(), "void operator = (");
|
|
|
|
if (tok)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->operatorEq(_tokenizer, tok);
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// A destructor in a base class should be virtual
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void CheckClass::virtualDestructor()
|
|
|
|
{
|
|
|
|
const char pattern_classdecl[] = "class %var% : %var%";
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
const Token *derived = _tokenizer->tokens();
|
|
|
|
while ((derived = Token::findmatch(derived, pattern_classdecl)) != NULL)
|
2008-12-17 21:38:09 +01:00
|
|
|
{
|
|
|
|
// Check that the derived class has a non empty destructor..
|
|
|
|
{
|
|
|
|
std::ostringstream destructorPattern;
|
|
|
|
destructorPattern << "~ " << derived->strAt(1) << " ( ) {";
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *derived_destructor = Token::findmatch(_tokenizer->tokens(), destructorPattern.str().c_str());
|
2008-12-17 21:38:09 +01:00
|
|
|
|
|
|
|
// No destructor..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! derived_destructor)
|
2008-12-17 21:38:09 +01:00
|
|
|
{
|
|
|
|
derived = derived->next();
|
|
|
|
continue;
|
|
|
|
}
|
2008-12-19 22:15:06 +01:00
|
|
|
|
2008-12-17 21:38:09 +01:00
|
|
|
// Empty destructor..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::Match(derived_destructor, "~ %var% ( ) { }"))
|
2008-12-17 21:38:09 +01:00
|
|
|
{
|
|
|
|
derived = derived->next();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2008-12-19 22:15:06 +01:00
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
const Token *derivedClass = derived->tokAt(1);
|
2008-12-20 21:52:15 +01:00
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
// Iterate through each base class...
|
|
|
|
derived = derived->tokAt(3);
|
2009-01-05 16:49:57 +01:00
|
|
|
while (Token::Match(derived, "%var%"))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-03 21:29:20 +01:00
|
|
|
bool isPublic = Token::Match(derived, "public");
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// What kind of inheritance is it.. public|protected|private
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::Match(derived, "public|protected|private"))
|
2008-12-18 22:28:57 +01:00
|
|
|
derived = derived->next();
|
|
|
|
|
|
|
|
// Name of base class..
|
|
|
|
const char *baseName[2];
|
|
|
|
baseName[0] = derived->strAt(0);
|
|
|
|
baseName[1] = 0;
|
|
|
|
|
|
|
|
// Update derived so it's ready for the next loop.
|
|
|
|
derived = derived->next();
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::Match(derived, ","))
|
2008-12-18 22:28:57 +01:00
|
|
|
derived = derived->next();
|
|
|
|
|
|
|
|
// If not public inheritance, skip checking of this base class..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! isPublic)
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Find the destructor declaration for the base class.
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *base = Token::findmatch(_tokenizer->tokens(), (std::string("%any% ~ ") + baseName[0] + " (").c_str());
|
2009-01-03 21:29:20 +01:00
|
|
|
while (Token::Match(base, "::"))
|
2009-01-05 16:49:57 +01:00
|
|
|
base = Token::findmatch(base->next(), (std::string("%any% ~ ") + baseName[0] + + " (").c_str());
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
while (Token::Match(base, "%var%") && !Token::Match(base, "virtual"))
|
2008-12-18 22:28:57 +01:00
|
|
|
base = base->previous();
|
|
|
|
|
|
|
|
// Check that there is a destructor..
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! base)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Is the class declaration available?
|
2009-01-05 16:49:57 +01:00
|
|
|
base = Token::findmatch(_tokenizer->tokens(), (std::string("class ") + baseName[0] + " :|{").c_str());
|
|
|
|
if (base)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->virtualDestructor(_tokenizer, base, baseName[0], derivedClass->str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// There is a destructor. Check that it's virtual..
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (base->str() != "virtual")
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-08 22:20:35 +01:00
|
|
|
_errorLogger->virtualDestructor(_tokenizer, base, baseName[0], derivedClass->str());
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|