2008-11-07 17:25:29 +01:00
|
|
|
/*
|
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 07:40:45 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef tokenizeH
|
|
|
|
#define tokenizeH
|
|
|
|
//---------------------------------------------------------------------------
|
2008-11-15 23:41:56 +01:00
|
|
|
#include <list>
|
2008-11-12 23:50:40 +01:00
|
|
|
#include <string>
|
|
|
|
#include <map>
|
2008-11-07 21:25:07 +01:00
|
|
|
#include <vector>
|
|
|
|
#include <cstdlib>
|
2008-11-15 23:41:56 +01:00
|
|
|
#include <cstring>
|
|
|
|
#include "settings.h"
|
2008-11-07 08:45:50 +01:00
|
|
|
|
2008-11-06 19:31:39 +01:00
|
|
|
class TOKEN
|
2007-05-24 07:40:45 +02:00
|
|
|
{
|
2008-11-06 19:31:39 +01:00
|
|
|
private:
|
|
|
|
char * _str;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TOKEN()
|
|
|
|
{ FileIndex = 0; _str = 0; linenr = 0; next = 0; }
|
|
|
|
|
|
|
|
~TOKEN()
|
2008-11-07 21:25:07 +01:00
|
|
|
{ std::free(_str); }
|
2008-11-06 19:31:39 +01:00
|
|
|
|
|
|
|
void setstr( const char s[] )
|
2008-11-09 08:19:53 +01:00
|
|
|
{
|
2008-11-07 21:25:07 +01:00
|
|
|
std::free(_str);
|
2008-11-07 17:20:22 +01:00
|
|
|
#ifndef _MSC_VER
|
|
|
|
_str = strdup(s);
|
|
|
|
#else
|
|
|
|
_str = _strdup(s);
|
|
|
|
#endif
|
2008-11-09 08:19:53 +01:00
|
|
|
str = _str ? _str : "";
|
2008-11-07 17:20:22 +01:00
|
|
|
}
|
2008-11-06 19:31:39 +01:00
|
|
|
|
|
|
|
const char *str;
|
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
unsigned int FileIndex;
|
|
|
|
unsigned int linenr;
|
2008-11-06 19:31:39 +01:00
|
|
|
TOKEN *next;
|
2008-11-09 08:19:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern TOKEN *tokens, *tokens_back;
|
|
|
|
|
|
|
|
class Tokenizer
|
|
|
|
{
|
|
|
|
public:
|
2008-11-12 23:50:40 +01:00
|
|
|
Tokenizer();
|
|
|
|
~Tokenizer();
|
2008-11-09 08:19:53 +01:00
|
|
|
|
|
|
|
void Tokenize(std::istream &code, const char FileName[]);
|
|
|
|
|
|
|
|
// Deallocate lists..
|
|
|
|
void DeallocateTokens();
|
|
|
|
|
|
|
|
// Simplify tokenlist
|
|
|
|
// -----------------------------
|
|
|
|
void SimplifyTokenList();
|
|
|
|
|
|
|
|
void TokenizeCode(std::istream &code, const unsigned int FileIndex=0);
|
|
|
|
|
|
|
|
// Helper functions for handling the tokens list..
|
|
|
|
static const TOKEN *findtoken(const TOKEN *tok1, const char *tokenstr[]);
|
|
|
|
static const TOKEN *gettok(const TOKEN *tok, int index);
|
|
|
|
static const char *getstr(const TOKEN *tok, int index);
|
|
|
|
|
|
|
|
// Return size.
|
2008-11-12 23:50:40 +01:00
|
|
|
int SizeOfType(const char type[]);
|
|
|
|
|
|
|
|
void initTokens();
|
2008-11-09 08:19:53 +01:00
|
|
|
|
2008-11-13 23:39:47 +01:00
|
|
|
std::vector<std::string> *getFiles();
|
2008-11-09 08:19:53 +01:00
|
|
|
|
|
|
|
|
2008-11-15 23:41:56 +01:00
|
|
|
|
|
|
|
void FillFunctionList(const unsigned int file_id);
|
|
|
|
const TOKEN *GetFunctionTokenByName( const char funcname[] ) const;
|
|
|
|
void CheckGlobalFunctionUsage(const std::vector<std::string> &filenames);
|
|
|
|
void settings( const Settings &settings );
|
2008-11-13 23:39:47 +01:00
|
|
|
private:
|
2008-11-09 08:19:53 +01:00
|
|
|
|
2008-11-15 23:41:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
class GlobalFunction
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
unsigned int _FileId;
|
|
|
|
std::string _FuncName;
|
|
|
|
|
|
|
|
public:
|
|
|
|
GlobalFunction( const unsigned int FileId, const char FuncName[] )
|
|
|
|
{
|
|
|
|
_FileId = FileId;
|
|
|
|
_FuncName = FuncName;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int file_id() const { return _FileId; }
|
|
|
|
const std::string &name() const { return _FuncName; }
|
|
|
|
};
|
|
|
|
|
2008-11-12 23:50:40 +01:00
|
|
|
void Define(const char Name[], const char Value[]);
|
|
|
|
|
|
|
|
void addtoken(const char str[], const unsigned int lineno, const unsigned int fileno);
|
2008-11-09 08:19:53 +01:00
|
|
|
|
2008-11-12 23:50:40 +01:00
|
|
|
void combine_2tokens(TOKEN *tok, const char str1[], const char str2[]);
|
2008-11-09 08:19:53 +01:00
|
|
|
|
2008-11-12 23:50:40 +01:00
|
|
|
void DeleteNextToken(TOKEN *tok);
|
2008-11-09 08:19:53 +01:00
|
|
|
|
2008-11-12 23:50:40 +01:00
|
|
|
TOKEN *_gettok(TOKEN *tok, int index);
|
2008-11-09 08:19:53 +01:00
|
|
|
|
2008-11-12 23:50:40 +01:00
|
|
|
void InsertTokens(TOKEN *dest, TOKEN *src, unsigned int n);
|
2008-11-09 08:19:53 +01:00
|
|
|
|
2008-11-12 23:50:40 +01:00
|
|
|
TOKEN *tokens_back;
|
|
|
|
std::map<std::string, unsigned int> TypeSize;
|
2008-11-15 23:41:56 +01:00
|
|
|
std::list<const TOKEN *> FunctionList;
|
|
|
|
std::list< GlobalFunction > GlobalFunctions;
|
|
|
|
std::list< GlobalFunction > UsedGlobalFunctions;
|
|
|
|
std::vector<std::string> Files;
|
|
|
|
Settings _settings;
|
2008-11-09 08:19:53 +01:00
|
|
|
};
|
|
|
|
|
2007-05-29 19:11:53 +02:00
|
|
|
|
|
|
|
|
2007-05-24 15:07:30 +02:00
|
|
|
|
2008-04-11 20:37:15 +02:00
|
|
|
|
2007-05-24 07:40:45 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif
|
|
|
|
|