Refactoring: Renamed some member variables: variable -> _variable

This commit is contained in:
Reijo Tomperi 2008-11-23 11:08:07 +00:00
parent 0b2e7a0ef3
commit 29a1468523
20 changed files with 115 additions and 117 deletions

View File

@ -32,7 +32,7 @@
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// CallStack used when parsing into subfunctions. // _callStack used when parsing into subfunctions.
CheckBufferOverrunClass::CheckBufferOverrunClass( const Tokenizer *tokenizer, ErrorLogger *errorLogger ) CheckBufferOverrunClass::CheckBufferOverrunClass( const Tokenizer *tokenizer, ErrorLogger *errorLogger )
@ -51,7 +51,7 @@ void CheckBufferOverrunClass::ReportError(const TOKEN *tok, const char errmsg[])
{ {
std::ostringstream ostr; std::ostringstream ostr;
std::list<const TOKEN *>::const_iterator it; std::list<const TOKEN *>::const_iterator it;
for ( it = CallStack.begin(); it != CallStack.end(); it++ ) for ( it = _callStack.begin(); it != _callStack.end(); it++ )
ostr << _tokenizer->fileLine(*it ) << " -> "; ostr << _tokenizer->fileLine(*it ) << " -> ";
ostr << _tokenizer->fileLine(tok) << ": " << errmsg; ostr << _tokenizer->fileLine(tok) << ": " << errmsg;
_errorLogger->reportErr(ostr.str()); _errorLogger->reportErr(ostr.str());
@ -219,7 +219,7 @@ void CheckBufferOverrunClass::CheckBufferOverrun_CheckScope( const TOKEN *tok, c
if ( TOKEN::Match( tok, "%var% (" ) ) if ( TOKEN::Match( tok, "%var% (" ) )
{ {
// Don't make recursive checking.. // Don't make recursive checking..
if (std::find(CallStack.begin(), CallStack.end(), tok) != CallStack.end()) if (std::find(_callStack.begin(), _callStack.end(), tok) != _callStack.end())
continue; continue;
unsigned int parlevel = 0, par = 0; unsigned int parlevel = 0, par = 0;
@ -287,9 +287,9 @@ void CheckBufferOverrunClass::CheckBufferOverrun_CheckScope( const TOKEN *tok, c
ftok = ftok ? ftok->next : 0; ftok = ftok ? ftok->next : 0;
// Check variable usage in the function.. // Check variable usage in the function..
CallStack.push_back( tok ); _callStack.push_back( tok );
CheckBufferOverrun_CheckScope( ftok, parname, size, total_size ); CheckBufferOverrun_CheckScope( ftok, parname, size, total_size );
CallStack.pop_back(); _callStack.pop_back();
// break out.. // break out..
break; break;
@ -345,7 +345,7 @@ void CheckBufferOverrunClass::CheckBufferOverrun_LocalVariable()
continue; continue;
// The callstack is empty // The callstack is empty
CallStack.clear(); _callStack.clear();
CheckBufferOverrun_CheckScope( tok->tokAt(5), varname, size, total_size ); CheckBufferOverrun_CheckScope( tok->tokAt(5), varname, size, total_size );
} }
} }

View File

@ -45,7 +45,7 @@ private:
const Tokenizer *_tokenizer; const Tokenizer *_tokenizer;
ErrorLogger *_errorLogger; ErrorLogger *_errorLogger;
std::list<const TOKEN *> CallStack; std::list<const TOKEN *> _callStack;
}; };
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------

View File

@ -33,7 +33,6 @@
CheckFunctionUsage::CheckFunctionUsage( ErrorLogger *errorLogger ) CheckFunctionUsage::CheckFunctionUsage( ErrorLogger *errorLogger )
{ {
_errorLogger = errorLogger; _errorLogger = errorLogger;
functions.clear();
} }
CheckFunctionUsage::~CheckFunctionUsage() CheckFunctionUsage::~CheckFunctionUsage()
@ -72,7 +71,7 @@ void CheckFunctionUsage::parseTokens( const Tokenizer &tokenizer )
if ( funcname ) if ( funcname )
{ {
FunctionUsage &func = functions[ funcname->str ]; FunctionUsage &func = _functions[ funcname->str ];
// No filename set yet.. // No filename set yet..
if (func.filename.empty()) if (func.filename.empty())
@ -122,7 +121,7 @@ void CheckFunctionUsage::parseTokens( const Tokenizer &tokenizer )
if ( funcname ) if ( funcname )
{ {
FunctionUsage &func = functions[ funcname->str ]; FunctionUsage &func = _functions[ funcname->str ];
if ( func.filename.empty() || func.filename == "+" ) if ( func.filename.empty() || func.filename == "+" )
func.usedOtherFile = true; func.usedOtherFile = true;
@ -138,7 +137,7 @@ void CheckFunctionUsage::parseTokens( const Tokenizer &tokenizer )
void CheckFunctionUsage::check() void CheckFunctionUsage::check()
{ {
for ( std::map<std::string, FunctionUsage>::const_iterator it = functions.begin(); it != functions.end(); ++it ) for ( std::map<std::string, FunctionUsage>::const_iterator it = _functions.begin(); it != _functions.end(); ++it )
{ {
const FunctionUsage &func = it->second; const FunctionUsage &func = it->second;
if ( func.usedOtherFile || func.filename.empty() ) if ( func.usedOtherFile || func.filename.empty() )

View File

@ -58,7 +58,7 @@ private:
bool usedOtherFile; bool usedOtherFile;
}; };
std::map<std::string, FunctionUsage> functions; std::map<std::string, FunctionUsage> _functions;
}; };
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------

View File

@ -132,8 +132,8 @@ CheckMemoryLeakClass::AllocType CheckMemoryLeakClass::GetAllocationType( const T
return POPEN; return POPEN;
// Userdefined allocation function.. // Userdefined allocation function..
std::list<AllocFunc>::const_iterator it = listallocfunc.begin(); std::list<AllocFunc>::const_iterator it = _listAllocFunc.begin();
while ( it != listallocfunc.end() ) while ( it != _listAllocFunc.end() )
{ {
if ( strcmp(tok2->str, it->funcname) == 0 ) if ( strcmp(tok2->str, it->funcname) == 0 )
return it->alloctype; return it->alloctype;
@ -1090,7 +1090,7 @@ void CheckMemoryLeakClass::CheckMemoryLeak_ClassMembers_Variable( const std::vec
void CheckMemoryLeakClass::CheckMemoryLeak() void CheckMemoryLeakClass::CheckMemoryLeak()
{ {
listallocfunc.clear(); _listAllocFunc.clear();
// Check for memory leaks inside functions.. // Check for memory leaks inside functions..
CheckMemoryLeak_InFunction(); CheckMemoryLeak_InFunction();

View File

@ -77,7 +77,7 @@ private:
const Tokenizer *_tokenizer; const Tokenizer *_tokenizer;
ErrorLogger *_errorLogger; ErrorLogger *_errorLogger;
Settings _settings; Settings _settings;
std::list<AllocFunc> listallocfunc; std::list<AllocFunc> _listAllocFunc;
}; };
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------

View File

@ -37,6 +37,9 @@
class FileLister class FileLister
{ {
public:
static void RecursiveAddFiles( std::vector<std::string> &filenames, const std::string &path, bool recursive );
private: private:
static bool AcceptFile( const std::string &filename ); static bool AcceptFile( const std::string &filename );
@ -48,8 +51,6 @@ private:
static void AddFiles( std::vector<std::string> &filenames, const std::string &path, const std::string &pattern ); static void AddFiles( std::vector<std::string> &filenames, const std::string &path, const std::string &pattern );
#endif #endif
public:
static void RecursiveAddFiles( std::vector<std::string> &filenames, const std::string &path, bool recursive );
}; };
#endif // #ifndef FILELISTER_H #endif // #ifndef FILELISTER_H

View File

@ -132,7 +132,7 @@ void CppCheck::check(int argc, char* argv[])
for (unsigned int c = 0; c < filenames.size(); c++) for (unsigned int c = 0; c < filenames.size(); c++)
{ {
errout.str(""); _errout.str("");
std::string fname = filenames[c]; std::string fname = filenames[c];
// If only errors are printed, print filename after the check // If only errors are printed, print filename after the check
@ -148,31 +148,31 @@ void CppCheck::check(int argc, char* argv[])
if (_settings._errorsOnly) if (_settings._errorsOnly)
{ {
if ( !errout.str().empty() ) if ( !_errout.str().empty() )
{ {
std::cout << "Errors found in " << fname << ":\n"; std::cout << "Errors found in " << fname << ":\n";
std::cerr << errout.str(); std::cerr << _errout.str();
} }
} }
else else
{ {
if ( errout.str().empty() ) if ( _errout.str().empty() )
std::cout << "No errors found\n"; std::cout << "No errors found\n";
else else
std::cerr << errout.str(); std::cerr << _errout.str();
} }
} }
// This generates false positives - especially for libraries // This generates false positives - especially for libraries
if ( checkFunctionUsage ) if ( checkFunctionUsage )
{ {
errout.str(""); _errout.str("");
std::cout << "Checking usage of global functions (this may take several minutes)..\n"; std::cout << "Checking usage of global functions (this may take several minutes)..\n";
checkFunctionUsage->check(); checkFunctionUsage->check();
if ( ! errout.str().empty() ) if ( ! _errout.str().empty() )
{ {
std::cerr << "\n"; std::cerr << "\n";
std::cerr << errout.str(); std::cerr << _errout.str();
} }
} }
@ -195,7 +195,7 @@ void CppCheck::checkFile(const std::string &code, const char FileName[], Setting
_tokenizer.Tokenize(istr, FileName); _tokenizer.Tokenize(istr, FileName);
} }
_tokenizer.FillFunctionList(); _tokenizer.fillFunctionList();
// Check that the memsets are valid. // Check that the memsets are valid.
// The 'memset' function can do dangerous things if used wrong. // The 'memset' function can do dangerous things if used wrong.
@ -311,7 +311,7 @@ void CppCheck::reportErr( const std::string &errmsg)
return; return;
_errorList.push_back( errmsg ); _errorList.push_back( errmsg );
} }
errout << errmsg << std::endl; _errout << errmsg << std::endl;
} }
void CppCheck::reportErr( const TOKEN *token, const std::string &errmsg) void CppCheck::reportErr( const TOKEN *token, const std::string &errmsg)

View File

@ -41,11 +41,11 @@ class CppCheck : public ErrorLogger
private: private:
void checkFile(const std::string &code, const char FileName[], Settings &_settings, CheckFunctionUsage *checkFunctionUsage); void checkFile(const std::string &code, const char FileName[], Settings &_settings, CheckFunctionUsage *checkFunctionUsage);
std::list<std::string> _errorList;
std::ostringstream errout;
void reportErr( const std::string &errmsg); void reportErr( const std::string &errmsg);
void reportErr( const TOKEN *token, const std::string &errmsg); void reportErr( const TOKEN *token, const std::string &errmsg);
std::list<std::string> _errorList;
std::ostringstream _errout;
}; };
#endif // CPPCHECK_H #endif // CPPCHECK_H

View File

@ -40,7 +40,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );
tokenizer.SimplifyTokenList(); tokenizer.SimplifyTokenList();
@ -49,7 +49,7 @@ private:
Settings settings; Settings settings;
settings._checkCodingStyle = true; settings._checkCodingStyle = true;
tokenizer.settings( settings ); tokenizer.settings( settings );
tokenizer.FillFunctionList(); tokenizer.fillFunctionList();
// Clear the error buffer.. // Clear the error buffer..
errout.str(""); errout.str("");

View File

@ -45,7 +45,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );
@ -53,7 +53,7 @@ private:
Settings settings; Settings settings;
settings._checkCodingStyle = true; settings._checkCodingStyle = true;
tokenizer.settings( settings ); tokenizer.settings( settings );
tokenizer.FillFunctionList(); tokenizer.fillFunctionList();
// Clear the error buffer.. // Clear the error buffer..
errout.str(""); errout.str("");

View File

@ -39,7 +39,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );
tokenizer.SimplifyTokenList(); tokenizer.SimplifyTokenList();

View File

@ -41,7 +41,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );
//SimplifyTokenList(); <- this can't be used as it removes 'unsigned' //SimplifyTokenList(); <- this can't be used as it removes 'unsigned'

View File

@ -40,7 +40,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );
tokenizer.SimplifyTokenList(); tokenizer.SimplifyTokenList();

View File

@ -39,7 +39,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );
tokenizer.SimplifyTokenList(); tokenizer.SimplifyTokenList();
@ -52,7 +52,7 @@ private:
settings._checkCodingStyle = true; settings._checkCodingStyle = true;
settings._showAll = false; settings._showAll = false;
tokenizer.settings( settings ); tokenizer.settings( settings );
tokenizer.FillFunctionList(); tokenizer.fillFunctionList();
CheckMemoryLeakClass checkMemoryLeak( &tokenizer, settings, this ); CheckMemoryLeakClass checkMemoryLeak( &tokenizer, settings, this );
checkMemoryLeak.CheckMemoryLeak(); checkMemoryLeak.CheckMemoryLeak();
} }

View File

@ -65,7 +65,7 @@ private:
// tokenize.. // tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(filedata); std::istringstream istr(filedata);
tokenizer.TokenizeCode(istr, 0); tokenizer.TokenizeCode(istr, 0);
@ -89,7 +89,7 @@ private:
// tokenize.. // tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(filedata); std::istringstream istr(filedata);
tokenizer.TokenizeCode(istr, 0); tokenizer.TokenizeCode(istr, 0);
@ -111,7 +111,7 @@ private:
// tokenize.. // tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(filedata); std::istringstream istr(filedata);
tokenizer.TokenizeCode(istr, 0); tokenizer.TokenizeCode(istr, 0);
@ -142,14 +142,14 @@ private:
"{ }\n"; "{ }\n";
// tokenize.. // tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode(istr, 0); tokenizer.TokenizeCode(istr, 0);
tokenizer.FillFunctionList(); tokenizer.fillFunctionList();
ASSERT_EQUALS( 1, tokenizer.FunctionList.size() ); ASSERT_EQUALS( 1, tokenizer._functionList.size() );
ASSERT_EQUALS( std::string("b"), tokenizer.FunctionList[0]->str ); ASSERT_EQUALS( std::string("b"), tokenizer._functionList[0]->str );
} }
}; };

View File

@ -46,7 +46,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );

View File

@ -39,7 +39,7 @@ private:
{ {
// Tokenize.. // Tokenize..
Tokenizer tokenizer; Tokenizer tokenizer;
tokenizer.Files.push_back( "test.cpp" ); tokenizer._files.push_back( "test.cpp" );
std::istringstream istr(code); std::istringstream istr(code);
tokenizer.TokenizeCode( istr ); tokenizer.TokenizeCode( istr );
tokenizer.SimplifyTokenList(); tokenizer.SimplifyTokenList();

View File

@ -51,8 +51,8 @@
Tokenizer::Tokenizer() Tokenizer::Tokenizer()
{ {
_tokens = 0; _tokens = 0;
tokens_back = 0; _tokensBack = 0;
dsymlist = 0; _dsymlist = 0;
} }
Tokenizer::~Tokenizer() Tokenizer::~Tokenizer()
@ -90,7 +90,7 @@ const TOKEN *Tokenizer::tokens() const
const std::vector<std::string> *Tokenizer::getFiles() const const std::vector<std::string> *Tokenizer::getFiles() const
{ {
return &Files; return &_files;
} }
void Tokenizer::Define(const char Name[], const char Value[]) void Tokenizer::Define(const char Name[], const char Value[])
@ -133,8 +133,8 @@ void Tokenizer::Define(const char Name[], const char Value[])
memset(NewSym, 0, sizeof(DefineSymbol)); memset(NewSym, 0, sizeof(DefineSymbol));
NewSym->name = _strdup(Name); NewSym->name = _strdup(Name);
NewSym->value = strValue; NewSym->value = strValue;
NewSym->next = dsymlist; NewSym->next = _dsymlist;
dsymlist = NewSym; _dsymlist = NewSym;
} }
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
@ -163,18 +163,18 @@ void Tokenizer::addtoken(const char str[], const unsigned int lineno, const unsi
newtoken->setstr(str2.str().c_str()); newtoken->setstr(str2.str().c_str());
newtoken->linenr = lineno; newtoken->linenr = lineno;
newtoken->FileIndex = fileno; newtoken->FileIndex = fileno;
if (tokens_back) if (_tokensBack)
{ {
tokens_back->next = newtoken; _tokensBack->next = newtoken;
tokens_back = newtoken; _tokensBack = newtoken;
} }
else else
{ {
_tokens = tokens_back = newtoken; _tokens = _tokensBack = newtoken;
} }
// Check if str is defined.. // Check if str is defined..
for (DefineSymbol *sym = dsymlist; sym; sym = sym->next) for (DefineSymbol *sym = _dsymlist; sym; sym = sym->next)
{ {
if (strcmp(str,sym->name)==0) if (strcmp(str,sym->name)==0)
{ {
@ -196,8 +196,8 @@ int Tokenizer::SizeOfType(const char type[]) const
if (!type) if (!type)
return 0; return 0;
std::map<std::string, unsigned int>::const_iterator it = TypeSize.find(type); std::map<std::string, unsigned int>::const_iterator it = _typeSize.find(type);
if ( it == TypeSize.end() ) if ( it == _typeSize.end() )
return 0; return 0;
return it->second; return it->second;
@ -234,17 +234,17 @@ void Tokenizer::InsertTokens(TOKEN *dest, TOKEN *src, unsigned int n)
void Tokenizer::Tokenize(std::istream &code, const char FileName[]) void Tokenizer::Tokenize(std::istream &code, const char FileName[])
{ {
// Has this file been tokenized already? // Has this file been tokenized already?
for (unsigned int i = 0; i < Files.size(); i++) for (unsigned int i = 0; i < _files.size(); i++)
{ {
if ( SameFileName( Files[i].c_str(), FileName ) ) if ( SameFileName( _files[i].c_str(), FileName ) )
return; return;
} }
// The "Files" vector remembers what files have been tokenized.. // The "_files" vector remembers what files have been tokenized..
Files.push_back(FileName); _files.push_back(FileName);
// Tokenize the file.. // Tokenize the file..
TokenizeCode( code, (unsigned int)(Files.size() - 1) ); TokenizeCode( code, (unsigned int)(_files.size() - 1) );
} }
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
@ -290,9 +290,9 @@ void Tokenizer::TokenizeCode(std::istream &code, const unsigned int FileIndex)
line.erase(line.find("\"")); line.erase(line.find("\""));
// Relative path.. // Relative path..
if (Files.back().find_first_of("\\/") != std::string::npos) if (_files.back().find_first_of("\\/") != std::string::npos)
{ {
std::string path = Files.back(); std::string path = _files.back();
path.erase( 1 + path.find_last_of("\\/") ); path.erase( 1 + path.find_last_of("\\/") );
line = path + line; line = path + line;
} }
@ -636,24 +636,24 @@ void Tokenizer::SimplifyTokenList()
} }
// Fill the map TypeSize.. // Fill the map _typeSize..
TypeSize.clear(); _typeSize.clear();
TypeSize["char"] = sizeof(char); _typeSize["char"] = sizeof(char);
TypeSize["short"] = sizeof(short); _typeSize["short"] = sizeof(short);
TypeSize["int"] = sizeof(int); _typeSize["int"] = sizeof(int);
TypeSize["long"] = sizeof(long); _typeSize["long"] = sizeof(long);
TypeSize["float"] = sizeof(float); _typeSize["float"] = sizeof(float);
TypeSize["double"] = sizeof(double); _typeSize["double"] = sizeof(double);
for (TOKEN *tok = _tokens; tok; tok = tok->next) for (TOKEN *tok = _tokens; tok; tok = tok->next)
{ {
if (TOKEN::Match(tok,"class %var%")) if (TOKEN::Match(tok,"class %var%"))
{ {
TypeSize[tok->strAt(1)] = 11; _typeSize[tok->strAt(1)] = 11;
} }
else if (TOKEN::Match(tok, "struct %var%")) else if (TOKEN::Match(tok, "struct %var%"))
{ {
TypeSize[tok->strAt(1)] = 13; _typeSize[tok->strAt(1)] = 13;
} }
} }
@ -1021,20 +1021,20 @@ bool Tokenizer::simplifyConditions()
const TOKEN *Tokenizer::GetFunctionTokenByName( const char funcname[] ) const const TOKEN *Tokenizer::GetFunctionTokenByName( const char funcname[] ) const
{ {
for ( unsigned int i = 0; i < FunctionList.size(); ++i ) for ( unsigned int i = 0; i < _functionList.size(); ++i )
{ {
if ( strcmp( FunctionList[i]->str, funcname ) == 0 ) if ( strcmp( _functionList[i]->str, funcname ) == 0 )
{ {
return FunctionList[i]; return _functionList[i];
} }
} }
return NULL; return NULL;
} }
void Tokenizer::FillFunctionList() void Tokenizer::fillFunctionList()
{ {
FunctionList.clear(); _functionList.clear();
bool staticfunc = false; bool staticfunc = false;
bool classfunc = false; bool classfunc = false;
@ -1082,7 +1082,7 @@ void Tokenizer::FillFunctionList()
{ {
if ( TOKEN::Match(tok2, ") {") ) if ( TOKEN::Match(tok2, ") {") )
{ {
FunctionList.push_back( tok ); _functionList.push_back( tok );
tok = tok2; tok = tok2;
} }
else else
@ -1097,17 +1097,17 @@ void Tokenizer::FillFunctionList()
} }
} }
// If the FunctionList functions with duplicate names, remove them // If the _functionList functions with duplicate names, remove them
// TODO this will need some better handling // TODO this will need some better handling
for ( unsigned int func1 = 0; func1 < FunctionList.size(); ) for ( unsigned int func1 = 0; func1 < _functionList.size(); )
{ {
bool hasDuplicates = false; bool hasDuplicates = false;
for ( unsigned int func2 = func1 + 1; func2 < FunctionList.size(); ) for ( unsigned int func2 = func1 + 1; func2 < _functionList.size(); )
{ {
if ( strcmp(FunctionList[func1]->str, FunctionList[func2]->str) == 0 ) if ( strcmp(_functionList[func1]->str, _functionList[func2]->str) == 0 )
{ {
hasDuplicates = true; hasDuplicates = true;
FunctionList.erase( FunctionList.begin() + func2 ); _functionList.erase( _functionList.begin() + func2 );
} }
else else
{ {
@ -1121,7 +1121,7 @@ void Tokenizer::FillFunctionList()
} }
else else
{ {
FunctionList.erase( FunctionList.begin() + func1 ); _functionList.erase( _functionList.begin() + func1 );
} }
} }
} }
@ -1138,18 +1138,18 @@ void Tokenizer::DeallocateTokens()
{ {
deleteTokens( _tokens ); deleteTokens( _tokens );
_tokens = 0; _tokens = 0;
tokens_back = 0; _tokensBack = 0;
while (dsymlist) while (_dsymlist)
{ {
struct DefineSymbol *next = dsymlist->next; struct DefineSymbol *next = _dsymlist->next;
free(dsymlist->name); free(_dsymlist->name);
free(dsymlist->value); free(_dsymlist->value);
delete dsymlist; delete _dsymlist;
dsymlist = next; _dsymlist = next;
} }
Files.clear(); _files.clear();
} }
void Tokenizer::deleteTokens(TOKEN *tok) void Tokenizer::deleteTokens(TOKEN *tok)
@ -1182,7 +1182,7 @@ const char *Tokenizer::getParameterName( const TOKEN *ftok, int par )
std::string Tokenizer::fileLine( const TOKEN *tok ) const std::string Tokenizer::fileLine( const TOKEN *tok ) const
{ {
std::ostringstream ostr; std::ostringstream ostr;
ostr << "[" << Files.at(tok->FileIndex) << ":" << tok->linenr << "]"; ostr << "[" << _files.at(tok->FileIndex) << ":" << tok->linenr << "]";
return ostr.str(); return ostr.str();
} }

View File

@ -64,7 +64,7 @@ public:
const std::vector<std::string> *getFiles() const; const std::vector<std::string> *getFiles() const;
void FillFunctionList(); void fillFunctionList();
const TOKEN *GetFunctionTokenByName( const char funcname[] ) const; const TOKEN *GetFunctionTokenByName( const char funcname[] ) const;
void settings( const Settings &settings ); void settings( const Settings &settings );
const TOKEN *tokens() const; const TOKEN *tokens() const;
@ -91,14 +91,12 @@ private:
void InsertTokens(TOKEN *dest, TOKEN *src, unsigned int n); void InsertTokens(TOKEN *dest, TOKEN *src, unsigned int n);
TOKEN *tokens_back; TOKEN *_tokensBack;
std::map<std::string, unsigned int> TypeSize; std::map<std::string, unsigned int> _typeSize;
std::vector<const TOKEN *> FunctionList; std::vector<const TOKEN *> _functionList;
std::vector<std::string> Files; std::vector<std::string> _files;
Settings _settings; Settings _settings;
struct DefineSymbol * _dsymlist;
struct DefineSymbol * dsymlist;
TOKEN *_tokens; TOKEN *_tokens;
}; };