2009-01-08 07:22:14 +01:00
|
|
|
/*
|
|
|
|
* cppcheck - c/c++ syntax checking
|
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki, Reijo Tomperi, Nicolas Le Cam
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*/
|
2009-01-06 16:02:34 +01:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class Message
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::string _funcname;
|
|
|
|
std::string _msg;
|
|
|
|
std::string _par1;
|
2009-01-06 17:25:42 +01:00
|
|
|
unsigned int _settings;
|
2009-01-06 16:02:34 +01:00
|
|
|
|
|
|
|
public:
|
2009-01-06 17:25:42 +01:00
|
|
|
Message(std::string funcname, unsigned int settings, std::string msg, std::string par1)
|
|
|
|
: _funcname(funcname), _settings(settings), _msg(msg), _par1(par1)
|
2009-01-06 16:02:34 +01:00
|
|
|
{ }
|
|
|
|
|
2009-01-06 17:25:42 +01:00
|
|
|
static const unsigned int ALL = 1;
|
|
|
|
static const unsigned int STYLE = 2;
|
|
|
|
|
2009-01-06 18:20:19 +01:00
|
|
|
std::string msg(bool code) const
|
2009-01-06 16:02:34 +01:00
|
|
|
{
|
2009-01-07 16:17:02 +01:00
|
|
|
const char *str = code ? "\"" : "";
|
|
|
|
std::string ret(str + _msg + str);
|
|
|
|
if (! _par1.empty())
|
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
while ((pos = ret.find("%1", pos)) != std::string::npos)
|
|
|
|
{
|
|
|
|
ret.erase(pos, 2);
|
|
|
|
if (code)
|
|
|
|
ret.insert(pos, "\" + " + _par1 + " + \"");
|
|
|
|
else
|
|
|
|
ret.insert(pos, _par1);
|
|
|
|
}
|
|
|
|
}
|
2009-01-06 16:02:34 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-01-06 18:09:27 +01:00
|
|
|
void generateCode(std::ostream &ostr) const
|
2009-01-06 16:02:34 +01:00
|
|
|
{
|
2009-01-06 17:25:42 +01:00
|
|
|
// Error message..
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << " static std::string " << _funcname << "(";
|
2009-01-06 16:02:34 +01:00
|
|
|
if (! _par1.empty())
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << "const std::string &" << _par1;
|
|
|
|
ostr << ") const\n";
|
2009-01-06 18:22:35 +01:00
|
|
|
ostr << " { return " << msg(true) << "; }" << std::endl;
|
2009-01-06 17:25:42 +01:00
|
|
|
|
|
|
|
// Settings..
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << std::endl;
|
|
|
|
ostr << " static bool " << _funcname << "(const Settings &s) const" << std::endl;
|
|
|
|
ostr << " { return ";
|
2009-01-06 17:25:42 +01:00
|
|
|
if (_settings == 0)
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << "true";
|
2009-01-06 17:25:42 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (_settings & ALL)
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << "s._showAll";
|
2009-01-06 17:25:42 +01:00
|
|
|
if (_settings & (ALL | STYLE))
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << " & ";
|
2009-01-06 17:25:42 +01:00
|
|
|
if (_settings & STYLE)
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << "s._checkCodingStyle";
|
2009-01-06 17:25:42 +01:00
|
|
|
}
|
2009-01-06 18:09:27 +01:00
|
|
|
ostr << "; }" << std::endl;
|
2009-01-06 16:02:34 +01:00
|
|
|
}
|
|
|
|
|
2009-01-07 16:17:02 +01:00
|
|
|
void generateDoc(std::ostream &ostr, unsigned int i) const
|
|
|
|
{
|
|
|
|
if (_settings == i)
|
|
|
|
{
|
|
|
|
ostr << " " << msg(false) << std::endl;
|
|
|
|
}
|
|
|
|
}
|
2009-01-06 18:09:27 +01:00
|
|
|
|
2009-01-06 16:02:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// Error messages..
|
|
|
|
std::list<Message> err;
|
2009-01-06 17:25:42 +01:00
|
|
|
err.push_back(Message("memleak", 0, "Memory leak: %1", "varname"));
|
2009-01-06 16:02:34 +01:00
|
|
|
|
|
|
|
// Generate code..
|
2009-01-07 16:17:02 +01:00
|
|
|
std::cout << "Generate code.." << std::endl;
|
2009-01-06 16:02:34 +01:00
|
|
|
for (std::list<Message>::const_iterator it = err.begin(); it != err.end(); ++it)
|
2009-01-06 18:09:27 +01:00
|
|
|
it->generateCode(std::cout);
|
2009-01-07 16:17:02 +01:00
|
|
|
std::cout << std::endl;
|
|
|
|
|
|
|
|
// Generate documentation..
|
|
|
|
std::cout << "Generate doc.." << std::endl;
|
|
|
|
for (unsigned int i = 0; i < 4; ++i)
|
|
|
|
{
|
|
|
|
const char *suite[4] = { "standard", "all", "style", "all + style" };
|
|
|
|
std::cout << " =" << suite[i] << "=" << std::endl;
|
|
|
|
for (std::list<Message>::const_iterator it = err.begin(); it != err.end(); ++it)
|
|
|
|
it->generateDoc(std::cout, i);
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
2009-01-06 16:02:34 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|