2013-07-02 07:18:19 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2014-02-15 07:45:39 +01:00
|
|
|
* Copyright (C) 2007-2014 Daniel Marjamäki and Cppcheck team.
|
2013-07-02 07:18:19 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
2013-07-08 18:26:18 +02:00
|
|
|
#include "library.h"
|
2013-07-20 17:12:56 +02:00
|
|
|
#include "path.h"
|
2013-07-07 11:33:25 +02:00
|
|
|
#include "tinyxml2.h"
|
2013-12-23 10:06:45 +01:00
|
|
|
#include "tokenlist.h"
|
|
|
|
#include "mathlib.h"
|
|
|
|
#include "token.h"
|
2013-07-02 07:18:19 +02:00
|
|
|
|
2013-07-20 17:12:56 +02:00
|
|
|
#include <string>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2013-07-08 18:26:18 +02:00
|
|
|
Library::Library() : allocid(0)
|
2013-07-02 07:18:19 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-26 17:00:41 +02:00
|
|
|
Library::Error Library::load(const char exename[], const char path[])
|
2013-07-02 07:18:19 +02:00
|
|
|
{
|
2014-02-15 08:41:17 +01:00
|
|
|
if (std::strchr(path,',') != nullptr) {
|
2013-07-20 10:21:05 +02:00
|
|
|
std::string p(path);
|
|
|
|
while (p.find(",") != std::string::npos) {
|
|
|
|
const std::string::size_type pos = p.find(",");
|
2014-05-26 17:00:41 +02:00
|
|
|
const Error &e = load(exename, p.substr(0,pos).c_str());
|
2014-06-04 19:18:27 +02:00
|
|
|
if (e.errorcode != OK)
|
2014-05-26 17:00:41 +02:00
|
|
|
return e;
|
2013-07-20 10:21:05 +02:00
|
|
|
p = p.substr(pos+1);
|
|
|
|
}
|
|
|
|
if (!p.empty())
|
2014-05-26 17:00:41 +02:00
|
|
|
return load(exename, p.c_str());
|
|
|
|
return Error();
|
2013-07-20 10:21:05 +02:00
|
|
|
}
|
|
|
|
|
2013-07-20 17:12:56 +02:00
|
|
|
// open file..
|
2013-10-27 17:32:38 +01:00
|
|
|
tinyxml2::XMLDocument doc;
|
2014-03-01 14:09:03 +01:00
|
|
|
tinyxml2::XMLError error = doc.LoadFile(path);
|
2013-10-27 17:32:38 +01:00
|
|
|
if (error == tinyxml2::XML_ERROR_FILE_NOT_FOUND) {
|
2013-07-20 17:12:56 +02:00
|
|
|
// failed to open file.. is there no extension?
|
|
|
|
std::string fullfilename(path);
|
|
|
|
if (Path::getFilenameExtension(fullfilename) == "") {
|
|
|
|
fullfilename += ".cfg";
|
2014-03-01 14:09:03 +01:00
|
|
|
error = doc.LoadFile(fullfilename.c_str());
|
2013-07-20 10:21:05 +02:00
|
|
|
}
|
2013-07-20 17:12:56 +02:00
|
|
|
|
2013-10-27 17:32:38 +01:00
|
|
|
if (error == tinyxml2::XML_ERROR_FILE_NOT_FOUND) {
|
2013-07-20 17:12:56 +02:00
|
|
|
// Try to locate the library configuration in the installation folder..
|
2013-12-26 18:41:51 +01:00
|
|
|
#ifdef CFGDIR
|
|
|
|
const std::string cfgfolder(CFGDIR);
|
|
|
|
#else
|
2013-12-30 18:35:27 +01:00
|
|
|
if (!exename)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(FILE_NOT_FOUND);
|
2013-12-26 18:41:51 +01:00
|
|
|
const std::string cfgfolder(Path::fromNativeSeparators(Path::getPathFromFilename(exename)) + "cfg");
|
|
|
|
#endif
|
|
|
|
const char *sep = (!cfgfolder.empty() && cfgfolder[cfgfolder.size()-1U]=='/' ? "" : "/");
|
|
|
|
const std::string filename(cfgfolder + sep + fullfilename);
|
2014-03-01 14:09:03 +01:00
|
|
|
error = doc.LoadFile(filename.c_str());
|
2013-07-20 17:12:56 +02:00
|
|
|
}
|
2013-07-20 10:21:05 +02:00
|
|
|
}
|
|
|
|
|
2014-06-28 10:22:35 +02:00
|
|
|
return (error == tinyxml2::XML_NO_ERROR) ?
|
|
|
|
load(doc) :
|
|
|
|
Error(error == tinyxml2::XML_ERROR_FILE_NOT_FOUND ? FILE_NOT_FOUND : BAD_XML);
|
2013-10-27 17:10:43 +01:00
|
|
|
}
|
|
|
|
|
2014-01-09 21:58:56 +01:00
|
|
|
bool Library::loadxmldata(const char xmldata[], std::size_t len)
|
|
|
|
{
|
|
|
|
tinyxml2::XMLDocument doc;
|
2014-06-04 19:18:27 +02:00
|
|
|
return (tinyxml2::XML_NO_ERROR == doc.Parse(xmldata, len)) && (load(doc).errorcode == OK);
|
2014-01-09 21:58:56 +01:00
|
|
|
}
|
|
|
|
|
2014-05-26 17:00:41 +02:00
|
|
|
Library::Error Library::load(const tinyxml2::XMLDocument &doc)
|
2013-10-27 17:10:43 +01:00
|
|
|
{
|
2013-07-02 07:18:19 +02:00
|
|
|
const tinyxml2::XMLElement * const rootnode = doc.FirstChildElement();
|
2013-10-31 19:49:36 +01:00
|
|
|
|
2014-02-15 08:41:17 +01:00
|
|
|
if (rootnode == nullptr)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_XML);
|
2013-10-31 19:49:36 +01:00
|
|
|
|
|
|
|
if (strcmp(rootnode->Name(),"def") != 0)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, rootnode->Name());
|
2013-07-02 07:18:19 +02:00
|
|
|
|
|
|
|
for (const tinyxml2::XMLElement *node = rootnode->FirstChildElement(); node; node = node->NextSiblingElement()) {
|
2013-11-23 18:16:40 +01:00
|
|
|
if (strcmp(node->Name(),"memory")==0 || strcmp(node->Name(),"resource")==0) {
|
2014-04-19 13:15:06 +02:00
|
|
|
// get allocationId to use..
|
|
|
|
int allocationId = 0;
|
|
|
|
for (const tinyxml2::XMLElement *memorynode = node->FirstChildElement(); memorynode; memorynode = memorynode->NextSiblingElement()) {
|
|
|
|
if (strcmp(memorynode->Name(),"dealloc")==0) {
|
|
|
|
const std::map<std::string,int>::const_iterator it = _dealloc.find(memorynode->GetText());
|
|
|
|
if (it != _dealloc.end()) {
|
|
|
|
allocationId = it->second;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (allocationId == 0) {
|
|
|
|
if (strcmp(node->Name(), "memory")==0)
|
|
|
|
while (!ismemory(++allocid));
|
|
|
|
else
|
|
|
|
while (!isresource(++allocid));
|
|
|
|
allocationId = allocid;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add alloc/dealloc/use functions..
|
2013-07-02 07:18:19 +02:00
|
|
|
for (const tinyxml2::XMLElement *memorynode = node->FirstChildElement(); memorynode; memorynode = memorynode->NextSiblingElement()) {
|
2013-07-15 08:44:00 +02:00
|
|
|
if (strcmp(memorynode->Name(),"alloc")==0) {
|
2014-04-19 13:15:06 +02:00
|
|
|
_alloc[memorynode->GetText()] = allocationId;
|
2013-07-15 08:44:00 +02:00
|
|
|
const char *init = memorynode->Attribute("init");
|
|
|
|
if (init && strcmp(init,"false")==0) {
|
|
|
|
returnuninitdata.insert(memorynode->GetText());
|
|
|
|
}
|
|
|
|
} else if (strcmp(memorynode->Name(),"dealloc")==0)
|
2014-04-19 13:15:06 +02:00
|
|
|
_dealloc[memorynode->GetText()] = allocationId;
|
2013-07-05 20:55:31 +02:00
|
|
|
else if (strcmp(memorynode->Name(),"use")==0)
|
|
|
|
use.insert(memorynode->GetText());
|
2013-07-02 07:18:19 +02:00
|
|
|
else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, memorynode->Name());
|
2013-07-02 07:18:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-06 09:22:07 +01:00
|
|
|
else if (strcmp(node->Name(),"define")==0) {
|
|
|
|
const char *name = node->Attribute("name");
|
2014-02-15 08:41:17 +01:00
|
|
|
if (name == nullptr)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(MISSING_ATTRIBUTE, "name");
|
2014-02-06 09:22:07 +01:00
|
|
|
const char *value = node->Attribute("value");
|
2014-02-15 08:41:17 +01:00
|
|
|
if (value == nullptr)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(MISSING_ATTRIBUTE, "value");
|
2014-02-06 09:22:07 +01:00
|
|
|
defines.push_back(std::string("#define ") +
|
|
|
|
name +
|
|
|
|
" " +
|
|
|
|
value +
|
|
|
|
"\n");
|
|
|
|
}
|
|
|
|
|
2013-07-14 10:10:11 +02:00
|
|
|
else if (strcmp(node->Name(),"function")==0) {
|
|
|
|
const char *name = node->Attribute("name");
|
2014-02-15 08:41:17 +01:00
|
|
|
if (name == nullptr)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(MISSING_ATTRIBUTE, "name");
|
2013-07-14 10:10:11 +02:00
|
|
|
|
|
|
|
for (const tinyxml2::XMLElement *functionnode = node->FirstChildElement(); functionnode; functionnode = functionnode->NextSiblingElement()) {
|
|
|
|
if (strcmp(functionnode->Name(),"noreturn")==0)
|
|
|
|
_noreturn[name] = (strcmp(functionnode->GetText(), "true") == 0);
|
2014-03-14 06:38:45 +01:00
|
|
|
else if (strcmp(functionnode->Name(), "pure") == 0)
|
|
|
|
functionpure.insert(name);
|
2014-03-14 20:08:34 +01:00
|
|
|
else if (strcmp(functionnode->Name(), "const") == 0) {
|
2014-03-14 06:38:45 +01:00
|
|
|
functionconst.insert(name);
|
2014-03-14 20:08:34 +01:00
|
|
|
functionpure.insert(name); // a constant function is pure
|
|
|
|
} else if (strcmp(functionnode->Name(),"leak-ignore")==0)
|
2013-07-20 13:12:24 +02:00
|
|
|
leakignore.insert(name);
|
2014-02-15 08:41:17 +01:00
|
|
|
else if (strcmp(functionnode->Name(), "arg") == 0 && functionnode->Attribute("nr") != nullptr) {
|
2014-03-06 06:16:14 +01:00
|
|
|
const bool bAnyArg = strcmp(functionnode->Attribute("nr"),"any")==0;
|
|
|
|
const int nr = (bAnyArg) ? -1 : atoi(functionnode->Attribute("nr"));
|
2013-12-23 10:06:45 +01:00
|
|
|
bool notbool = false;
|
2013-07-15 21:58:29 +02:00
|
|
|
bool notnull = false;
|
|
|
|
bool notuninit = false;
|
2013-07-22 20:21:45 +02:00
|
|
|
bool formatstr = false;
|
|
|
|
bool strz = false;
|
2013-12-22 19:10:14 +01:00
|
|
|
std::string valid;
|
2014-07-05 20:31:43 +02:00
|
|
|
std::list<ArgumentChecks::MinSize> minsizes;
|
2013-07-15 21:58:29 +02:00
|
|
|
for (const tinyxml2::XMLElement *argnode = functionnode->FirstChildElement(); argnode; argnode = argnode->NextSiblingElement()) {
|
2013-12-23 10:06:45 +01:00
|
|
|
if (strcmp(argnode->Name(), "not-bool") == 0)
|
|
|
|
notbool = true;
|
|
|
|
else if (strcmp(argnode->Name(), "not-null") == 0)
|
2013-07-15 21:58:29 +02:00
|
|
|
notnull = true;
|
|
|
|
else if (strcmp(argnode->Name(), "not-uninit") == 0)
|
|
|
|
notuninit = true;
|
2013-07-22 20:21:45 +02:00
|
|
|
else if (strcmp(argnode->Name(), "formatstr") == 0)
|
2013-11-21 16:32:53 +01:00
|
|
|
formatstr = true;
|
2013-07-22 20:21:45 +02:00
|
|
|
else if (strcmp(argnode->Name(), "strz") == 0)
|
2013-11-21 16:32:53 +01:00
|
|
|
strz = true;
|
2013-12-22 19:10:14 +01:00
|
|
|
else if (strcmp(argnode->Name(), "valid") == 0) {
|
|
|
|
// Validate the validation expression
|
|
|
|
const char *p = argnode->GetText();
|
2014-06-08 18:12:11 +02:00
|
|
|
bool error = false;
|
|
|
|
bool range = false;
|
2013-12-22 19:10:14 +01:00
|
|
|
for (; *p; p++) {
|
|
|
|
if (std::isdigit(*p))
|
2014-06-08 18:12:11 +02:00
|
|
|
error |= (*(p+1) == '-');
|
|
|
|
else if (*p == ':')
|
|
|
|
error |= range;
|
|
|
|
else if (*p == '-')
|
|
|
|
error |= (!std::isdigit(*(p+1)));
|
|
|
|
else if (*p == ',')
|
|
|
|
range = false;
|
|
|
|
else
|
|
|
|
error = true;
|
|
|
|
|
|
|
|
range |= (*p == ':');
|
2013-12-22 19:10:14 +01:00
|
|
|
}
|
2014-06-08 18:12:11 +02:00
|
|
|
if (error)
|
|
|
|
return Error(BAD_ATTRIBUTE_VALUE, argnode->GetText());
|
2013-12-22 19:10:14 +01:00
|
|
|
|
|
|
|
// Set validation expression
|
|
|
|
valid = argnode->GetText();
|
|
|
|
}
|
|
|
|
|
2014-07-05 20:31:43 +02:00
|
|
|
else if (strcmp(argnode->Name(), "minsize") == 0) {
|
|
|
|
const char *typeattr = argnode->Attribute("type");
|
|
|
|
if (!typeattr)
|
|
|
|
return Error(MISSING_ATTRIBUTE, "type");
|
|
|
|
|
|
|
|
ArgumentChecks::MinSize::Type type;
|
|
|
|
if (strcmp(typeattr,"strlen")==0)
|
2014-07-05 22:47:10 +02:00
|
|
|
type = ArgumentChecks::MinSize::STRLEN;
|
2014-07-05 20:31:43 +02:00
|
|
|
else if (strcmp(typeattr,"argvalue")==0)
|
2014-07-05 22:47:10 +02:00
|
|
|
type = ArgumentChecks::MinSize::ARGVALUE;
|
2014-07-05 20:31:43 +02:00
|
|
|
else if (strcmp(typeattr,"sizeof")==0)
|
2014-07-05 22:47:10 +02:00
|
|
|
type = ArgumentChecks::MinSize::SIZEOF;
|
2014-07-05 20:31:43 +02:00
|
|
|
else if (strcmp(typeattr,"mul")==0)
|
2014-07-05 22:47:10 +02:00
|
|
|
type = ArgumentChecks::MinSize::MUL;
|
2014-07-05 20:31:43 +02:00
|
|
|
else
|
|
|
|
return Error(BAD_ATTRIBUTE_VALUE, typeattr);
|
|
|
|
|
|
|
|
const char *argattr = argnode->Attribute("arg");
|
|
|
|
if (!argattr)
|
|
|
|
return Error(MISSING_ATTRIBUTE, "arg");
|
|
|
|
if (strlen(argattr) != 1 || argattr[0]<'0' || argattr[0]>'9')
|
|
|
|
return Error(BAD_ATTRIBUTE_VALUE, argattr);
|
|
|
|
|
|
|
|
minsizes.push_back(ArgumentChecks::MinSize(type,argattr[0]-'0'));
|
2014-07-05 22:47:10 +02:00
|
|
|
if (type == ArgumentChecks::MinSize::MUL) {
|
2014-07-05 20:31:43 +02:00
|
|
|
const char *arg2attr = argnode->Attribute("arg2");
|
|
|
|
if (!arg2attr)
|
|
|
|
return Error(MISSING_ATTRIBUTE, "arg2");
|
|
|
|
if (strlen(arg2attr) != 1 || arg2attr[0]<'0' || arg2attr[0]>'9')
|
|
|
|
return Error(BAD_ATTRIBUTE_VALUE, arg2attr);
|
|
|
|
minsizes.back().arg2 = arg2attr[0] - '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-15 21:58:29 +02:00
|
|
|
else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ATTRIBUTE, argnode->Name());
|
2013-07-15 21:58:29 +02:00
|
|
|
}
|
2013-12-23 10:06:45 +01:00
|
|
|
argumentChecks[name][nr].notbool = notbool;
|
2013-12-22 19:10:14 +01:00
|
|
|
argumentChecks[name][nr].notnull = notnull;
|
2013-07-16 09:40:31 +02:00
|
|
|
argumentChecks[name][nr].notuninit = notuninit;
|
2013-07-22 20:21:45 +02:00
|
|
|
argumentChecks[name][nr].formatstr = formatstr;
|
2013-12-22 19:10:14 +01:00
|
|
|
argumentChecks[name][nr].strz = strz;
|
2014-07-05 20:31:43 +02:00
|
|
|
argumentChecks[name][nr].valid.swap(valid);
|
|
|
|
argumentChecks[name][nr].minsizes.swap(minsizes);
|
2013-10-20 14:09:10 +02:00
|
|
|
} else if (strcmp(functionnode->Name(), "ignorefunction") == 0) {
|
2014-01-02 17:28:24 +01:00
|
|
|
_ignorefunction.insert(name);
|
2014-01-12 12:44:24 +01:00
|
|
|
} else if (strcmp(functionnode->Name(), "formatstr") == 0) {
|
|
|
|
const tinyxml2::XMLAttribute* scan = functionnode->FindAttribute("scan");
|
|
|
|
const tinyxml2::XMLAttribute* secure = functionnode->FindAttribute("secure");
|
|
|
|
_formatstr[name] = std::make_pair(scan && scan->BoolValue(), secure && secure->BoolValue());
|
2013-07-14 10:10:11 +02:00
|
|
|
} else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, functionnode->Name());
|
2013-07-14 10:10:11 +02:00
|
|
|
}
|
2013-10-20 14:09:10 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 15:57:28 +01:00
|
|
|
else if (strcmp(node->Name(), "reflection") == 0) {
|
|
|
|
for (const tinyxml2::XMLElement *reflectionnode = node->FirstChildElement(); reflectionnode; reflectionnode = reflectionnode->NextSiblingElement()) {
|
|
|
|
if (strcmp(reflectionnode->Name(), "call") != 0)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, reflectionnode->Name());
|
2014-03-11 15:57:28 +01:00
|
|
|
|
|
|
|
const char * const argString = reflectionnode->Attribute("arg");
|
|
|
|
if (!argString)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(MISSING_ATTRIBUTE, "arg");
|
2014-03-11 15:57:28 +01:00
|
|
|
|
|
|
|
_reflection[reflectionnode->GetText()] = atoi(argString);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-22 18:44:31 +01:00
|
|
|
else if (strcmp(node->Name(), "markup") == 0) {
|
|
|
|
const char * const extension = node->Attribute("ext");
|
|
|
|
if (!extension)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(MISSING_ATTRIBUTE, "ext");
|
2013-12-22 18:44:31 +01:00
|
|
|
_markupExtensions.insert(extension);
|
2013-10-20 14:09:10 +02:00
|
|
|
|
2013-12-22 18:44:31 +01:00
|
|
|
const char * const reporterrors = node->Attribute("reporterrors");
|
|
|
|
_reporterrors[extension] = (reporterrors && strcmp(reporterrors, "true") == 0);
|
2014-01-02 18:18:24 +01:00
|
|
|
const char * const aftercode = node->Attribute("aftercode");
|
|
|
|
_processAfterCode[extension] = (aftercode && strcmp(aftercode, "true") == 0);
|
2013-12-22 18:44:31 +01:00
|
|
|
|
|
|
|
for (const tinyxml2::XMLElement *markupnode = node->FirstChildElement(); markupnode; markupnode = markupnode->NextSiblingElement()) {
|
|
|
|
if (strcmp(markupnode->Name(), "keywords") == 0) {
|
|
|
|
for (const tinyxml2::XMLElement *librarynode = markupnode->FirstChildElement(); librarynode; librarynode = librarynode->NextSiblingElement()) {
|
2014-08-12 09:14:28 +02:00
|
|
|
if (strcmp(librarynode->Name(), "keyword") == 0) {
|
|
|
|
const char* nodeName = librarynode->Attribute("name");
|
|
|
|
if (nodeName == nullptr)
|
|
|
|
return Error(MISSING_ATTRIBUTE, "name");
|
|
|
|
_keywords[extension].insert(nodeName);
|
|
|
|
} else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, librarynode->Name());
|
2013-10-20 14:09:10 +02:00
|
|
|
}
|
2013-12-22 18:44:31 +01:00
|
|
|
}
|
2013-10-20 14:09:10 +02:00
|
|
|
|
2013-12-22 18:44:31 +01:00
|
|
|
else if (strcmp(markupnode->Name(), "exported") == 0) {
|
2014-01-02 18:18:24 +01:00
|
|
|
for (const tinyxml2::XMLElement *exporter = markupnode->FirstChildElement(); exporter; exporter = exporter->NextSiblingElement()) {
|
2013-12-22 18:44:31 +01:00
|
|
|
if (strcmp(exporter->Name(), "exporter") != 0)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, exporter->Name());
|
2013-12-22 18:44:31 +01:00
|
|
|
|
|
|
|
const char * const prefix = exporter->Attribute("prefix");
|
|
|
|
if (!prefix)
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(MISSING_ATTRIBUTE, "prefix");
|
2013-12-22 18:44:31 +01:00
|
|
|
|
|
|
|
for (const tinyxml2::XMLElement *e = exporter->FirstChildElement(); e; e = e->NextSiblingElement()) {
|
|
|
|
if (strcmp(e->Name(), "prefix") == 0)
|
|
|
|
_exporters[prefix].addPrefix(e->GetText());
|
|
|
|
else if (strcmp(e->Name(), "suffix") == 0)
|
|
|
|
_exporters[prefix].addSuffix(e->GetText());
|
|
|
|
else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, e->Name());
|
2013-12-22 18:44:31 +01:00
|
|
|
}
|
2013-10-20 14:09:10 +02:00
|
|
|
}
|
2013-12-22 18:44:31 +01:00
|
|
|
}
|
2013-10-20 14:09:10 +02:00
|
|
|
|
2013-12-22 18:44:31 +01:00
|
|
|
else if (strcmp(markupnode->Name(), "imported") == 0) {
|
|
|
|
for (const tinyxml2::XMLElement *librarynode = markupnode->FirstChildElement(); librarynode; librarynode = librarynode->NextSiblingElement()) {
|
|
|
|
if (strcmp(librarynode->Name(), "importer") == 0)
|
|
|
|
_importers[extension].insert(librarynode->GetText());
|
|
|
|
else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, librarynode->Name());
|
2013-10-20 14:09:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-22 18:44:31 +01:00
|
|
|
else if (strcmp(markupnode->Name(), "codeblocks") == 0) {
|
2013-12-23 12:27:00 +01:00
|
|
|
for (const tinyxml2::XMLElement *blocknode = markupnode->FirstChildElement(); blocknode; blocknode = blocknode->NextSiblingElement()) {
|
2014-06-12 19:58:43 +02:00
|
|
|
if (strcmp(blocknode->Name(), "block") == 0) {
|
2014-08-04 08:00:53 +02:00
|
|
|
const char * blockName = blocknode->Attribute("name");
|
|
|
|
if (blockName)
|
|
|
|
_executableblocks[extension].addBlock(blockName);
|
2014-06-12 19:58:43 +02:00
|
|
|
} else if (strcmp(blocknode->Name(), "structure") == 0) {
|
2013-12-22 18:44:31 +01:00
|
|
|
const char * start = blocknode->Attribute("start");
|
2013-10-20 14:09:10 +02:00
|
|
|
if (start)
|
2013-10-27 13:55:13 +01:00
|
|
|
_executableblocks[extension].setStart(start);
|
2013-12-22 18:44:31 +01:00
|
|
|
const char * end = blocknode->Attribute("end");
|
2013-10-20 14:09:10 +02:00
|
|
|
if (end)
|
2013-10-27 13:55:13 +01:00
|
|
|
_executableblocks[extension].setEnd(end);
|
2013-12-22 18:44:31 +01:00
|
|
|
const char * offset = blocknode->Attribute("offset");
|
2013-10-20 14:09:10 +02:00
|
|
|
if (offset)
|
2013-10-27 13:55:13 +01:00
|
|
|
_executableblocks[extension].setOffset(atoi(offset));
|
2013-12-22 18:44:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, blocknode->Name());
|
2013-10-20 14:09:10 +02:00
|
|
|
}
|
|
|
|
}
|
2013-12-22 18:44:31 +01:00
|
|
|
|
|
|
|
else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, markupnode->Name());
|
2013-10-20 14:09:10 +02:00
|
|
|
}
|
2013-12-22 18:44:31 +01:00
|
|
|
}
|
2013-10-20 14:09:10 +02:00
|
|
|
|
2014-06-08 12:09:00 +02:00
|
|
|
else if (strcmp(node->Name(), "podtype") == 0) {
|
|
|
|
const char * const name = node->Attribute("name");
|
|
|
|
if (!name)
|
|
|
|
return Error(MISSING_ATTRIBUTE, "name");
|
2014-06-13 15:46:43 +02:00
|
|
|
PodType podType = {0};
|
2014-06-08 12:09:00 +02:00
|
|
|
const char * const size = node->Attribute("sizeof");
|
|
|
|
if (size)
|
|
|
|
podType.size = atoi(size);
|
|
|
|
const char * const sign = node->Attribute("sign");
|
|
|
|
if (sign)
|
|
|
|
podType.sign = *sign;
|
|
|
|
podtypes[name] = podType;
|
|
|
|
}
|
|
|
|
|
2013-12-22 18:44:31 +01:00
|
|
|
else
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(BAD_ELEMENT, node->Name());
|
2013-07-02 07:18:19 +02:00
|
|
|
}
|
2014-06-04 19:18:27 +02:00
|
|
|
return Error(OK);
|
2013-07-02 07:18:19 +02:00
|
|
|
}
|
2013-12-23 10:06:45 +01:00
|
|
|
|
|
|
|
bool Library::isargvalid(const std::string &functionName, int argnr, const MathLib::bigint argvalue) const
|
|
|
|
{
|
|
|
|
const ArgumentChecks *ac = getarg(functionName, argnr);
|
|
|
|
if (!ac || ac->valid.empty())
|
|
|
|
return true;
|
|
|
|
TokenList tokenList(0);
|
|
|
|
std::istringstream istr(ac->valid + ',');
|
|
|
|
tokenList.createTokens(istr,"");
|
2014-06-08 18:12:11 +02:00
|
|
|
for (Token *tok = tokenList.front(); tok; tok = tok->next()) {
|
|
|
|
if (Token::Match(tok,"- %num%")) {
|
|
|
|
tok->str("-" + tok->strAt(1));
|
|
|
|
tok->deleteNext();
|
|
|
|
}
|
2014-06-07 16:28:29 +02:00
|
|
|
}
|
2013-12-23 10:06:45 +01:00
|
|
|
for (const Token *tok = tokenList.front(); tok; tok = tok->next()) {
|
|
|
|
if (tok->isNumber() && argvalue == MathLib::toLongNumber(tok->str()))
|
|
|
|
return true;
|
2014-06-08 18:12:11 +02:00
|
|
|
if (Token::Match(tok, "%num% : %num%") && argvalue >= MathLib::toLongNumber(tok->str()) && argvalue <= MathLib::toLongNumber(tok->strAt(2)))
|
2013-12-23 10:06:45 +01:00
|
|
|
return true;
|
2014-06-08 18:12:11 +02:00
|
|
|
if (Token::Match(tok, "%num% : ,") && argvalue >= MathLib::toLongNumber(tok->str()))
|
2013-12-23 10:06:45 +01:00
|
|
|
return true;
|
2014-06-08 18:12:11 +02:00
|
|
|
if ((!tok->previous() || tok->previous()->str() == ",") && Token::Match(tok,": %num%") && argvalue <= MathLib::toLongNumber(tok->strAt(1)))
|
2013-12-23 10:06:45 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-06 06:16:14 +01:00
|
|
|
|
|
|
|
const Library::ArgumentChecks * Library::getarg(const std::string &functionName, int argnr) const
|
|
|
|
{
|
|
|
|
std::map<std::string, std::map<int, ArgumentChecks> >::const_iterator it1;
|
|
|
|
it1 = argumentChecks.find(functionName);
|
|
|
|
if (it1 == argumentChecks.end())
|
|
|
|
return nullptr;
|
|
|
|
const std::map<int,ArgumentChecks>::const_iterator it2 = it1->second.find(argnr);
|
|
|
|
if (it2 != it1->second.end())
|
|
|
|
return &it2->second;
|
|
|
|
const std::map<int,ArgumentChecks>::const_iterator it3 = it1->second.find(-1);
|
|
|
|
if (it3 != it1->second.end())
|
|
|
|
return &it3->second;
|
2014-03-06 06:27:01 +01:00
|
|
|
return nullptr;
|
2014-03-06 06:16:14 +01:00
|
|
|
}
|
2014-06-22 19:13:15 +02:00
|
|
|
|
|
|
|
bool Library::isScopeNoReturn(const Token *end, std::string *unknownFunc) const
|
|
|
|
{
|
|
|
|
if (unknownFunc)
|
|
|
|
unknownFunc->clear();
|
|
|
|
|
|
|
|
if (!Token::simpleMatch(end->tokAt(-2), ") ; }"))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const Token *funcname = end->linkAt(-2)->previous();
|
|
|
|
const Token *start = funcname;
|
|
|
|
if (funcname && Token::Match(funcname->tokAt(-3),"( * %var% )")) {
|
|
|
|
funcname = funcname->previous();
|
|
|
|
start = funcname->tokAt(-3);
|
|
|
|
} else if (funcname->isName()) {
|
|
|
|
while (Token::Match(start, "%var%|.|::"))
|
|
|
|
start = start->previous();
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (Token::Match(start,"[;{}]") && Token::Match(funcname, "%var% )| (")) {
|
|
|
|
if (funcname->str() == "exit")
|
|
|
|
return true;
|
|
|
|
if (!isnotnoreturn(funcname->str())) {
|
|
|
|
if (unknownFunc && !isnoreturn(funcname->str()))
|
|
|
|
*unknownFunc = funcname->str();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|