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
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
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 "token.h"
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
2009-01-23 21:25:13 +01:00
|
|
|
#include <cctype>
|
2009-02-13 07:25:29 +01:00
|
|
|
#include <sstream>
|
2009-03-03 21:17:23 +01:00
|
|
|
#include <map>
|
2009-01-07 16:43:20 +01:00
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
Token::Token() :
|
2009-01-05 16:49:57 +01:00
|
|
|
_str(""),
|
|
|
|
_isName(false),
|
|
|
|
_isNumber(false),
|
|
|
|
_isBoolean(false),
|
|
|
|
_varId(0),
|
|
|
|
_next(0),
|
|
|
|
_previous(0),
|
2009-03-13 22:25:56 +01:00
|
|
|
_link(0),
|
2009-01-05 16:49:57 +01:00
|
|
|
_fileIndex(0),
|
|
|
|
_linenr(0)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
Token::~Token()
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-07 22:05:45 +01:00
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-06-14 08:55:23 +02:00
|
|
|
void Token::str(const std::string &s)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
_str = s;
|
2009-01-23 21:25:13 +01:00
|
|
|
_isName = bool(_str[0] == '_' || std::isalpha(_str[0]));
|
2009-03-17 21:00:27 +01:00
|
|
|
_isNumber = bool(std::isdigit(_str[(_str[0] == '-') ? 1 : 0]) != 0);
|
2009-01-05 16:49:57 +01:00
|
|
|
if (_str == "true" || _str == "false")
|
2008-12-21 14:58:56 +01:00
|
|
|
_isBoolean = true;
|
|
|
|
else
|
|
|
|
_isBoolean = false;
|
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
_varId = 0;
|
|
|
|
}
|
|
|
|
|
2009-06-14 08:55:23 +02:00
|
|
|
void Token::str(const char s[])
|
|
|
|
{
|
|
|
|
str(std::string(s));
|
|
|
|
}
|
|
|
|
|
2009-03-28 20:33:55 +01:00
|
|
|
void Token::concatStr(std::string const& b)
|
|
|
|
{
|
|
|
|
_str.erase(_str.length() - 1);
|
|
|
|
_str.append(b.begin() + 1, b.end());
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
void Token::deleteNext()
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-03 21:29:20 +01:00
|
|
|
Token *n = _next;
|
2008-12-18 22:28:57 +01:00
|
|
|
_next = n->next();
|
2008-12-17 20:20:11 +01:00
|
|
|
delete n;
|
|
|
|
if (_next)
|
2008-12-18 22:28:57 +01:00
|
|
|
_next->previous(this);
|
|
|
|
}
|
|
|
|
|
2009-03-13 00:07:05 +01:00
|
|
|
void Token::deleteThis()
|
|
|
|
{
|
|
|
|
if (_next)
|
|
|
|
{
|
|
|
|
_str = _next->_str;
|
|
|
|
_isName = _next->_isName;
|
|
|
|
_isNumber = _next->_isNumber;
|
|
|
|
_isBoolean = _next->_isBoolean;
|
|
|
|
_varId = _next->_varId;
|
|
|
|
_fileIndex = _next->_fileIndex;
|
|
|
|
_linenr = _next->_linenr;
|
2009-03-13 22:25:56 +01:00
|
|
|
_link = _next->_link;
|
2009-03-13 00:07:05 +01:00
|
|
|
deleteNext();
|
|
|
|
}
|
|
|
|
else if (_previous)
|
|
|
|
{
|
|
|
|
// This should never be used for tokens
|
|
|
|
// at the end of the list
|
|
|
|
str(";");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We are the last token in the list, we can't delete
|
|
|
|
// ourselves, so just make us ;
|
|
|
|
str(";");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 23:26:50 +01:00
|
|
|
void Token::replace(Token *replaceThis, Token *start, Token *end)
|
|
|
|
{
|
|
|
|
// Fix the whole in the old location of start and end
|
2009-05-26 22:22:00 +02:00
|
|
|
if (start->previous())
|
|
|
|
start->previous()->next(end->next());
|
|
|
|
|
|
|
|
if (end->next())
|
|
|
|
end->next()->previous(start->previous());
|
2009-01-26 23:26:50 +01:00
|
|
|
|
|
|
|
// Move start and end to their new location
|
2009-05-26 22:22:00 +02:00
|
|
|
if (replaceThis->previous())
|
|
|
|
replaceThis->previous()->next(start);
|
|
|
|
|
|
|
|
if (replaceThis->next())
|
|
|
|
replaceThis->next()->previous(end);
|
|
|
|
|
2009-01-26 23:26:50 +01:00
|
|
|
start->previous(replaceThis->previous());
|
|
|
|
end->next(replaceThis->next());
|
|
|
|
|
|
|
|
// Delete old token, which is replaced
|
|
|
|
delete replaceThis;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
const Token *Token::tokAt(int index) const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-03 21:29:20 +01:00
|
|
|
const Token *tok = this;
|
2009-03-20 18:50:11 +01:00
|
|
|
int num = abs(index);
|
|
|
|
while (num > 0 && tok)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-03-20 18:50:11 +01:00
|
|
|
if (index > 0)
|
|
|
|
tok = tok->next();
|
|
|
|
else
|
|
|
|
tok = tok->previous();
|
|
|
|
--num;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
|
2009-01-20 07:20:55 +01:00
|
|
|
Token *Token::tokAt(int index)
|
|
|
|
{
|
|
|
|
Token *tok = this;
|
2009-03-20 18:50:11 +01:00
|
|
|
int num = abs(index);
|
|
|
|
while (num > 0 && tok)
|
2009-01-20 07:20:55 +01:00
|
|
|
{
|
2009-03-20 18:50:11 +01:00
|
|
|
if (index > 0)
|
|
|
|
tok = tok->next();
|
|
|
|
else
|
|
|
|
tok = tok->previous();
|
|
|
|
--num;
|
2009-01-20 07:20:55 +01:00
|
|
|
}
|
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
const char *Token::strAt(int index) const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-03 21:29:20 +01:00
|
|
|
const Token *tok = this->tokAt(index);
|
2009-02-07 22:05:45 +01:00
|
|
|
return tok ? tok->_str.c_str() : "";
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-27 20:30:01 +01:00
|
|
|
int Token::multiCompare(const char *haystack, const char *needle)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
bool emptyStringFound = false;
|
2009-01-27 20:30:01 +01:00
|
|
|
bool noMatch = false;
|
|
|
|
const char *needlePointer = needle;
|
|
|
|
for (; *haystack; ++haystack)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-27 20:30:01 +01:00
|
|
|
if (*haystack == '|')
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-27 20:30:01 +01:00
|
|
|
if (noMatch)
|
|
|
|
{
|
|
|
|
// We didn't have a match at this round
|
|
|
|
noMatch = false;
|
|
|
|
}
|
|
|
|
else if (*needlePointer == 0)
|
|
|
|
{
|
|
|
|
// If needle and haystack are both at the end, we have a match.
|
2008-12-18 22:28:57 +01:00
|
|
|
return 1;
|
2009-01-27 20:30:01 +01:00
|
|
|
}
|
|
|
|
else if (needlePointer == needle)
|
|
|
|
{
|
|
|
|
// If needlePointer was not increased at all, we had a empty
|
|
|
|
// string in the haystack
|
2008-12-18 22:28:57 +01:00
|
|
|
emptyStringFound = true;
|
2009-01-27 20:30:01 +01:00
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-01-27 20:30:01 +01:00
|
|
|
needlePointer = needle;
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-01-27 20:30:01 +01:00
|
|
|
if (noMatch)
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
|
2009-01-27 20:30:01 +01:00
|
|
|
// If haystack and needle don't share the same character,
|
|
|
|
// find next '|' character.
|
|
|
|
if (*needlePointer != *haystack)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-27 20:30:01 +01:00
|
|
|
noMatch = true;
|
2008-12-18 22:28:57 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// All characters in haystack and needle have matched this far
|
2009-01-27 20:30:01 +01:00
|
|
|
++needlePointer;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-27 20:30:01 +01:00
|
|
|
if (!noMatch)
|
|
|
|
{
|
|
|
|
if (*needlePointer == 0)
|
|
|
|
{
|
|
|
|
// If both needle and haystack are at the end, then we have a match.
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (needlePointer == needle)
|
|
|
|
{
|
|
|
|
// Last string in haystack was empty string e.g. "one|two|"
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If empty string was found earlier from the haystack
|
|
|
|
if (emptyStringFound)
|
2008-12-18 22:28:57 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
bool Token::simpleMatch(const Token *tok, const char pattern[])
|
2008-12-22 00:28:09 +01:00
|
|
|
{
|
2008-12-23 22:45:47 +01:00
|
|
|
const char *current, *next;
|
|
|
|
|
|
|
|
current = pattern;
|
2008-12-25 19:24:57 +01:00
|
|
|
next = strchr(pattern, ' ');
|
2009-01-05 16:49:57 +01:00
|
|
|
if (!next)
|
2008-12-23 22:45:47 +01:00
|
|
|
next = pattern + strlen(pattern);
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
while (*current)
|
2008-12-22 00:28:09 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
size_t length = static_cast<size_t>(next - current);
|
2008-12-23 22:45:47 +01:00
|
|
|
|
2009-02-07 22:05:45 +01:00
|
|
|
if (!tok || length != tok->_str.length() || strncmp(current, tok->_str.c_str(), length))
|
2008-12-22 00:28:09 +01:00
|
|
|
return false;
|
2008-12-23 22:45:47 +01:00
|
|
|
|
|
|
|
current = next;
|
2009-01-05 16:49:57 +01:00
|
|
|
if (*next)
|
2008-12-25 19:24:57 +01:00
|
|
|
{
|
|
|
|
next = strchr(++current, ' ');
|
2009-01-05 16:49:57 +01:00
|
|
|
if (!next)
|
2008-12-25 19:24:57 +01:00
|
|
|
next = current + strlen(current);
|
2008-12-23 22:45:47 +01:00
|
|
|
}
|
|
|
|
tok = tok->next();
|
2008-12-22 00:28:09 +01:00
|
|
|
}
|
2008-12-23 22:45:47 +01:00
|
|
|
|
2008-12-22 00:28:09 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-06 00:06:51 +01:00
|
|
|
bool Token::Match(const Token *tok, const char pattern[], unsigned int varid)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
const char *p = pattern;
|
2009-01-10 22:13:10 +01:00
|
|
|
bool firstpattern = true;
|
2009-01-05 16:49:57 +01:00
|
|
|
while (*p)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Skip spaces in pattern..
|
2009-01-05 16:49:57 +01:00
|
|
|
while (*p == ' ')
|
2009-01-01 23:22:28 +01:00
|
|
|
++p;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
|
|
|
// Extract token from pattern..
|
|
|
|
// TODO: Refactor this so there can't be buffer overflows
|
|
|
|
char str[500];
|
|
|
|
char *s = str;
|
2009-01-05 16:49:57 +01:00
|
|
|
while (*p && *p != ' ')
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
*s = *p;
|
2009-01-01 23:22:28 +01:00
|
|
|
++s;
|
|
|
|
++p;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
*s = 0;
|
|
|
|
|
|
|
|
// No token => Success!
|
|
|
|
if (str[0] == 0)
|
|
|
|
return true;
|
|
|
|
|
2009-01-10 01:33:48 +01:00
|
|
|
if (!tok)
|
|
|
|
{
|
|
|
|
// If we have no tokens, pattern "!!else" should return true
|
2009-01-10 08:10:18 +01:00
|
|
|
if (str[1] == '!' && str[0] == '!' && str[2] != '\0')
|
2009-01-10 01:33:48 +01:00
|
|
|
continue;
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-01-10 22:13:10 +01:00
|
|
|
// If we are in the first token, we skip all initial !! patterns
|
|
|
|
if (firstpattern && !tok->previous() && tok->next() && str[1] == '!' && str[0] == '!' && str[2] != '\0')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
firstpattern = false;
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
// Compare the first character of the string for optimization reasons
|
|
|
|
// before doing more detailed checks.
|
2008-12-23 21:17:05 +01:00
|
|
|
bool patternIdentified = false;
|
2009-01-05 16:49:57 +01:00
|
|
|
if (str[0] == '%')
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2008-12-23 21:17:05 +01:00
|
|
|
// Any symbolname..
|
2009-06-10 23:12:26 +02:00
|
|
|
if (strcmp(str, "%var%") == 0)
|
2008-12-23 21:17:05 +01:00
|
|
|
{
|
|
|
|
if (!tok->isName())
|
|
|
|
return false;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2008-12-23 21:17:05 +01:00
|
|
|
patternIdentified = true;
|
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-06-10 23:12:26 +02:00
|
|
|
// Type..
|
|
|
|
if (strcmp(str, "%type%") == 0)
|
|
|
|
{
|
|
|
|
if (!tok->isName())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (tok->str() == "delete")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
patternIdentified = true;
|
|
|
|
}
|
|
|
|
|
2008-12-23 21:17:05 +01:00
|
|
|
// Accept any token
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (strcmp(str, "%any%") == 0)
|
2008-12-23 21:17:05 +01:00
|
|
|
{
|
|
|
|
patternIdentified = true;
|
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (strcmp(str, "%varid%") == 0)
|
2008-12-23 21:17:05 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (varid == 0)
|
2009-01-04 21:33:12 +01:00
|
|
|
{
|
|
|
|
std::cout << "\n###### If you see this, there is a bug ###### Token::Match() - varid was 0" << std::endl;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->varId() != varid)
|
2008-12-18 22:28:57 +01:00
|
|
|
return false;
|
|
|
|
|
2008-12-23 21:17:05 +01:00
|
|
|
patternIdentified = true;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (strcmp(str, "%num%") == 0)
|
2008-12-23 21:17:05 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (!tok->isNumber())
|
2008-12-18 22:28:57 +01:00
|
|
|
return false;
|
|
|
|
|
2008-12-23 21:17:05 +01:00
|
|
|
patternIdentified = true;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (strcmp(str, "%bool%") == 0)
|
2008-12-23 21:17:05 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (!tok->isBoolean())
|
2008-12-23 21:17:05 +01:00
|
|
|
return false;
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2008-12-23 21:17:05 +01:00
|
|
|
patternIdentified = true;
|
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (strcmp(str, "%str%") == 0)
|
2008-12-23 21:17:05 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (tok->_str[0] != '\"')
|
2008-12-23 21:17:05 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
patternIdentified = true;
|
|
|
|
}
|
2008-12-21 14:58:56 +01:00
|
|
|
}
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
if (patternIdentified)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2008-12-23 21:17:05 +01:00
|
|
|
// Pattern was identified already above.
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// [.. => search for a one-character token..
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (str[0] == '[' && strchr(str, ']') && tok->_str[1] == 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
*strrchr(str, ']') = 0;
|
2009-01-05 16:49:57 +01:00
|
|
|
if (strchr(str + 1, tok->_str[0]) == 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse multi options, such as void|int|char (accept token which is one of these 3)
|
2009-01-20 23:39:03 +01:00
|
|
|
else if (strchr(str, '|') && (str[0] != '|' || strlen(str) > 2))
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-02-07 22:05:45 +01:00
|
|
|
int res = multiCompare(str, tok->_str.c_str());
|
2009-01-05 16:49:57 +01:00
|
|
|
if (res == 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// Empty alternative matches, use the same token on next round
|
|
|
|
continue;
|
|
|
|
}
|
2009-01-05 16:49:57 +01:00
|
|
|
else if (res == -1)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
// No match
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse "not" options. Token can be anything except the given one
|
2009-01-10 21:40:05 +01:00
|
|
|
else if (str[1] == '!' && str[0] == '!' && str[2] != '\0')
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-05-03 20:10:59 +02:00
|
|
|
if (strcmp(tok->str().c_str(), &(str[2])) == 0)
|
2008-12-18 22:28:57 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (str != tok->_str)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
tok = tok->next();
|
|
|
|
}
|
|
|
|
|
|
|
|
// The end of the pattern has been reached and nothing wrong has been found
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
bool Token::isName() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return _isName;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
bool Token::isNumber() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return _isNumber;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
bool Token::isBoolean() const
|
2008-12-21 14:58:56 +01:00
|
|
|
{
|
|
|
|
return _isBoolean;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
bool Token::isStandardType() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
bool ret = false;
|
2009-01-05 16:49:57 +01:00
|
|
|
const char *type[] = {"bool", "char", "short", "int", "long", "float", "double", 0};
|
2008-12-18 22:28:57 +01:00
|
|
|
for (int i = 0; type[i]; i++)
|
|
|
|
ret |= (_str == type[i]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
const Token *Token::findmatch(const Token *tok, const char pattern[], unsigned int varId)
|
2009-01-04 20:55:12 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
for (; tok; tok = tok->next())
|
2009-01-04 20:55:12 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (Token::Match(tok, pattern, varId))
|
2009-01-04 20:55:12 +01:00
|
|
|
return tok;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
unsigned int Token::varId() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return _varId;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::varId(unsigned int id)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
_varId = id;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
Token *Token::next() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return _next;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::next(Token *next)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
_next = next;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
Token *Token::previous() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return _previous;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::previous(Token *previous)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
_previous = previous;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::insertToken(const char str[])
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-03 21:29:20 +01:00
|
|
|
Token *newToken = new Token;
|
2009-01-05 16:49:57 +01:00
|
|
|
newToken->str(str);
|
2008-12-16 18:05:43 +01:00
|
|
|
newToken->_linenr = _linenr;
|
2008-12-18 22:28:57 +01:00
|
|
|
newToken->_fileIndex = _fileIndex;
|
2009-01-05 16:49:57 +01:00
|
|
|
if (this->next())
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
newToken->next(this->next());
|
|
|
|
newToken->next()->previous(newToken);
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
this->next(newToken);
|
|
|
|
newToken->previous(this);
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::eraseTokens(Token *begin, const Token *end)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-01-05 16:49:57 +01:00
|
|
|
if (! begin)
|
2008-12-18 22:28:57 +01:00
|
|
|
return;
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
while (begin->next() && begin->next() != end)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
begin->deleteNext();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
unsigned int Token::fileIndex() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return _fileIndex;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::fileIndex(unsigned int fileIndex)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
_fileIndex = fileIndex;
|
|
|
|
}
|
|
|
|
|
2009-01-03 21:29:20 +01:00
|
|
|
unsigned int Token::linenr() const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
return _linenr;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::linenr(unsigned int linenr)
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
|
|
|
_linenr = linenr;
|
|
|
|
}
|
|
|
|
|
2009-03-13 22:25:56 +01:00
|
|
|
void Token::link(Token *link)
|
|
|
|
{
|
|
|
|
_link = link;
|
|
|
|
}
|
|
|
|
|
|
|
|
Token *Token::link() const
|
|
|
|
{
|
|
|
|
return _link;
|
|
|
|
}
|
|
|
|
|
2009-01-05 16:49:57 +01:00
|
|
|
void Token::printOut(const char *title) const
|
2008-12-18 22:28:57 +01:00
|
|
|
{
|
2009-03-03 20:45:58 +01:00
|
|
|
std::cout << stringifyList(true, title) << std::endl;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
2009-02-13 07:25:29 +01:00
|
|
|
|
2009-03-03 20:45:58 +01:00
|
|
|
std::string Token::stringifyList(const bool varid, const char *title) const
|
2009-02-13 07:25:29 +01:00
|
|
|
{
|
|
|
|
std::ostringstream ret;
|
2009-03-03 20:45:58 +01:00
|
|
|
if (title)
|
|
|
|
ret << "\n### " << title << " ###\n";
|
|
|
|
|
2009-02-13 07:25:29 +01:00
|
|
|
unsigned int linenr = 0;
|
2009-03-03 21:17:23 +01:00
|
|
|
int fileIndex = -1;
|
|
|
|
std::map<unsigned int, unsigned int> lineNumbers;
|
2009-02-13 07:25:29 +01:00
|
|
|
for (const Token *tok = this; tok; tok = tok->next())
|
|
|
|
{
|
2009-03-03 21:17:23 +01:00
|
|
|
bool fileChange = false;
|
|
|
|
if (static_cast<int>(tok->_fileIndex) != fileIndex)
|
2009-02-13 07:25:29 +01:00
|
|
|
{
|
2009-03-03 21:17:23 +01:00
|
|
|
if (fileIndex != -1)
|
|
|
|
{
|
|
|
|
lineNumbers[fileIndex] = tok->_fileIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
fileIndex = static_cast<int>(tok->_fileIndex);
|
|
|
|
ret << "\n\n##file " << fileIndex << "";
|
|
|
|
|
|
|
|
linenr = lineNumbers[fileIndex];
|
|
|
|
fileChange = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (linenr != tok->linenr() || fileChange)
|
|
|
|
{
|
|
|
|
while (linenr < tok->linenr())
|
|
|
|
{
|
|
|
|
++linenr;
|
|
|
|
ret << "\n" << linenr << ":";
|
|
|
|
}
|
|
|
|
linenr = tok->linenr();
|
2009-02-13 07:25:29 +01:00
|
|
|
}
|
2009-03-03 21:17:23 +01:00
|
|
|
|
2009-02-13 07:25:29 +01:00
|
|
|
ret << " " << tok->str();
|
|
|
|
if (varid && tok->varId() > 0)
|
|
|
|
ret << "@" << tok->varId();
|
|
|
|
}
|
|
|
|
ret << "\n";
|
|
|
|
return ret.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|