2008-10-26 08:55:15 +01:00
|
|
|
/*
|
|
|
|
* c++check - c/c++ syntax checking
|
|
|
|
* Copyright (C) 2007 Daniel Marjamäki
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-05-24 15:09:23 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "CommonCheck.h"
|
|
|
|
#include "tokenize.h"
|
2008-08-20 09:32:07 +02:00
|
|
|
#include <stdlib.h> // free
|
2007-05-24 15:09:23 +02:00
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
2008-02-22 15:30:43 +01:00
|
|
|
#include <list>
|
2008-09-10 20:15:33 +02:00
|
|
|
#include <algorithm>
|
2008-08-30 20:29:37 +02:00
|
|
|
#include <cstring>
|
2008-09-11 19:03:58 +02:00
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#include <ctype.h>
|
|
|
|
#endif
|
2007-05-24 15:09:23 +02:00
|
|
|
//---------------------------------------------------------------------------
|
2008-02-22 15:30:43 +01:00
|
|
|
bool OnlyReportUniqueErrors;
|
2008-02-16 16:46:32 +01:00
|
|
|
std::ostringstream errout;
|
2008-03-29 10:44:23 +01:00
|
|
|
|
|
|
|
|
2007-07-18 08:12:16 +02:00
|
|
|
//---------------------------------------------------------------------------
|
2007-05-24 15:09:23 +02:00
|
|
|
|
2008-11-13 23:39:47 +01:00
|
|
|
std::string FileLine( const TOKEN *tok, Tokenizer *_tokenizer )
|
2007-05-24 15:09:23 +02:00
|
|
|
{
|
|
|
|
std::ostringstream ostr;
|
2008-11-13 23:39:47 +01:00
|
|
|
ostr << "[" << _tokenizer->getFiles()->at(tok->FileIndex) << ":" << tok->linenr << "]";
|
2007-05-24 15:09:23 +02:00
|
|
|
return ostr.str();
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-04-06 08:26:11 +02:00
|
|
|
bool SameFileName( const char fname1[], const char fname2[] )
|
|
|
|
{
|
|
|
|
#ifdef __linux__
|
|
|
|
return bool( strcmp(fname1, fname2) == 0 );
|
|
|
|
#endif
|
2008-09-10 20:15:33 +02:00
|
|
|
#ifdef __GNUC__
|
2008-04-06 08:26:11 +02:00
|
|
|
return bool( strcasecmp(fname1, fname2) == 0 );
|
2008-09-11 19:03:58 +02:00
|
|
|
#endif
|
|
|
|
#ifdef __BORLANDC__
|
2008-09-10 20:15:33 +02:00
|
|
|
return bool( stricmp(fname1, fname2) == 0 );
|
2008-04-06 08:26:11 +02:00
|
|
|
#endif
|
2008-09-11 19:03:58 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
return bool( _stricmp(fname1, fname2) == 0 );
|
|
|
|
#endif
|
2008-04-06 08:26:11 +02:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2008-02-22 15:30:43 +01:00
|
|
|
std::list<std::string> ErrorList;
|
|
|
|
|
2008-03-22 18:09:08 +01:00
|
|
|
void ReportErr(const std::string &errmsg)
|
2007-05-24 15:09:23 +02:00
|
|
|
{
|
2008-02-22 15:30:43 +01:00
|
|
|
if ( OnlyReportUniqueErrors )
|
|
|
|
{
|
|
|
|
if ( std::find( ErrorList.begin(), ErrorList.end(), errmsg ) != ErrorList.end() )
|
|
|
|
return;
|
|
|
|
ErrorList.push_back( errmsg );
|
|
|
|
}
|
2008-02-16 16:46:32 +01:00
|
|
|
errout << errmsg << std::endl;
|
2007-05-24 15:09:23 +02:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2007-05-25 08:45:47 +02:00
|
|
|
bool IsName(const char str[])
|
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
return bool(str[0]=='_' || isalpha(str[0]));
|
2007-05-25 08:45:47 +02:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
bool IsNumber(const char str[])
|
|
|
|
{
|
2008-09-11 19:03:58 +02:00
|
|
|
return bool(isdigit(str[0]) != 0);
|
2007-05-25 08:45:47 +02:00
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2007-07-20 08:20:31 +02:00
|
|
|
bool IsStandardType(const char str[])
|
|
|
|
{
|
|
|
|
if (!str)
|
|
|
|
return false;
|
|
|
|
bool Ret = false;
|
|
|
|
const char *type[] = {"bool","char","short","int","long","float","double",0};
|
|
|
|
for (int i = 0; type[i]; i++)
|
|
|
|
Ret |= (strcmp(str,type[i])==0);
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
2007-05-25 08:45:47 +02:00
|
|
|
|
2008-11-09 17:34:18 +01:00
|
|
|
const char *GetParameterName( const TOKEN *ftok, int par )
|
|
|
|
{
|
|
|
|
int _par = 1;
|
|
|
|
for ( ; ftok; ftok = ftok->next)
|
|
|
|
{
|
|
|
|
if ( Match(ftok, ",") )
|
|
|
|
++_par;
|
|
|
|
if ( par==_par && Match(ftok, "%var% [,)]") )
|
|
|
|
return ftok->str;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
2008-03-29 10:44:23 +01:00
|
|
|
|
2008-03-28 18:40:24 +01:00
|
|
|
bool Match(const TOKEN *tok, const char pattern[], const char *varname1[], const char *varname2[])
|
2008-03-28 08:18:03 +01:00
|
|
|
{
|
|
|
|
if (!tok)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const char *p = pattern;
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
// Skip spaces in pattern..
|
|
|
|
while ( *p == ' ' )
|
|
|
|
p++;
|
|
|
|
|
|
|
|
// Extract token from pattern..
|
|
|
|
char str[50];
|
|
|
|
char *s = str;
|
|
|
|
while (*p && *p!=' ')
|
|
|
|
{
|
|
|
|
*s = *p;
|
|
|
|
s++;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
*s = 0;
|
|
|
|
|
|
|
|
// No token => Success!
|
|
|
|
if (str[0] == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Any symbolname..
|
|
|
|
if (strcmp(str,"%var%")==0 || strcmp(str,"%type%")==0)
|
|
|
|
{
|
|
|
|
if (!IsName(tok->str))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Variable name..
|
2008-03-28 18:40:24 +01:00
|
|
|
else if (strcmp(str,"%var1%")==0 || strcmp(str,"%var2%")==0)
|
2008-03-28 08:18:03 +01:00
|
|
|
{
|
2008-03-28 18:40:24 +01:00
|
|
|
const char **varname = (strcmp(str,"%var1%")==0) ? varname1 : varname2;
|
|
|
|
|
|
|
|
if ( ! varname )
|
|
|
|
return false;
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
if (strcmp(tok->str, varname[0]) != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for ( int i = 1; varname[i]; i++ )
|
|
|
|
{
|
2008-11-09 08:19:53 +01:00
|
|
|
if ( ! Tokenizer::gettok(tok, 2) )
|
2008-03-28 08:18:03 +01:00
|
|
|
return false;
|
|
|
|
|
2008-11-09 08:19:53 +01:00
|
|
|
if ( strcmp(Tokenizer::getstr(tok, 1), ".") )
|
2008-03-28 08:18:03 +01:00
|
|
|
return false;
|
|
|
|
|
2008-11-09 08:19:53 +01:00
|
|
|
if ( strcmp(Tokenizer::getstr(tok, 2), varname[i]) )
|
2008-03-28 08:18:03 +01:00
|
|
|
return false;
|
|
|
|
|
2008-11-09 08:19:53 +01:00
|
|
|
tok = Tokenizer::gettok(tok, 2);
|
2008-03-28 08:18:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (strcmp(str,"%num%")==0)
|
|
|
|
{
|
|
|
|
if ( ! IsNumber(tok->str) )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
else if (strcmp(str,"%str%")==0)
|
|
|
|
{
|
|
|
|
if ( tok->str[0] != '\"' )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-04-02 11:37:05 +02:00
|
|
|
// [.. => search for a one-character token..
|
|
|
|
else if (str[0]=='[' && strchr(str, ']') && tok->str[1] == 0)
|
|
|
|
{
|
|
|
|
*strrchr(str, ']') = 0;
|
|
|
|
if ( strchr( str + 1, tok->str[0] ) == 0 )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-03-28 08:18:03 +01:00
|
|
|
else if (strcmp(str, tok->str) != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
tok = tok->next;
|
|
|
|
if (!tok)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The end of the pattern has been reached and nothing wrong has been found
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
2008-03-23 17:18:31 +01:00
|
|
|
|
2008-08-16 14:44:46 +02:00
|
|
|
const TOKEN *findmatch(const TOKEN *tok, const char pattern[], const char *varname1[], const char *varname2[])
|
|
|
|
{
|
|
|
|
for ( ; tok; tok = tok->next)
|
|
|
|
{
|
|
|
|
if ( Match(tok, pattern, varname1, varname2) )
|
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void deleteTokens(TOKEN *tok)
|
|
|
|
{
|
|
|
|
while (tok)
|
|
|
|
{
|
2008-08-20 09:32:07 +02:00
|
|
|
TOKEN *next = tok->next;
|
2008-08-16 14:44:46 +02:00
|
|
|
delete tok;
|
|
|
|
tok = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|