cppcheck/src/checksecurity.h

75 lines
2.1 KiB
C
Raw Normal View History

2009-02-19 09:03:14 +01:00
/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
2009-02-19 09:03:14 +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/
*/
//---------------------------------------------------------------------------
2009-02-21 13:12:31 +01:00
#ifndef checksecurityH
#define checksecurityH
2009-02-19 09:03:14 +01:00
//---------------------------------------------------------------------------
2009-03-21 18:31:28 +01:00
#include "check.h"
2009-02-19 09:03:14 +01:00
2009-03-21 18:31:28 +01:00
class CheckSecurity : public Check
2009-02-19 09:03:14 +01:00
{
public:
2009-03-21 18:31:28 +01:00
/** This constructor is used when registering the CheckClass */
CheckSecurity() : Check()
{ }
/** This constructor is used when running checks.. */
CheckSecurity(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
: Check(tokenizer, settings, errorLogger)
{ }
void runSimplifiedChecks(const Tokenizer *tokenizer, const Settings *settings, ErrorLogger *errorLogger)
{
CheckSecurity checkSecurity(tokenizer, settings, errorLogger);
checkSecurity.readnum();
checkSecurity.gui();
}
2009-02-19 09:03:14 +01:00
/** Reading a number from a stream/FILE */
void readnum();
2009-02-19 18:57:27 +01:00
/** Reading Form/GUI data */
void gui();
2009-02-19 09:03:14 +01:00
private:
2009-03-21 18:31:28 +01:00
void unvalidatedInput(const Token *tok);
void getErrorMessages()
{
std::cout << "===security===" << "\n";
unvalidatedInput(0);
}
2009-06-12 15:20:08 +02:00
std::string name() const
{
return "Security";
}
std::string classInfo() const
{
return "This is an unfinnished check that will detect unvalidated input.\n";
}
2009-02-19 09:03:14 +01:00
};
//---------------------------------------------------------------------------
#endif