cppcheck/democlient/democlient.cpp

85 lines
2.0 KiB
C++
Raw Normal View History

#include <ctime>
#include <cstdio>
2012-07-02 19:50:14 +02:00
#include <cstdlib>
#include <algorithm>
#include "cppcheck.h"
static void unencode(const char *src, char *dest)
{
2012-09-15 15:32:59 +02:00
for (; *src; src++, dest++) {
if (*src == '+')
*dest = ' ';
else if (*src == '%') {
int code;
if (sscanf(src+1, "%2x", &code) != 1)
code = '?';
*dest = code;
src += 2;
} else
*dest = *src;
2012-07-02 19:50:14 +02:00
}
*dest = '\0';
}
2012-09-15 15:32:59 +02:00
class CppcheckExecutor : public ErrorLogger {
2012-07-02 19:50:14 +02:00
private:
const std::time_t stoptime;
CppCheck cppcheck;
public:
CppcheckExecutor()
2012-09-15 15:32:59 +02:00
: ErrorLogger()
, stoptime(std::time(NULL)+2U)
, cppcheck(*this,false) {
2012-07-02 19:50:14 +02:00
cppcheck.settings().addEnabled("all");
cppcheck.settings().inconclusive = true;
}
2012-09-15 15:32:59 +02:00
void run(const char code[]) {
2012-07-02 19:50:14 +02:00
printf("%s\n", ErrorLogger::ErrorMessage::getXMLHeader(2).c_str());
cppcheck.check("test.c", code);
printf("%s\n", ErrorLogger::ErrorMessage::getXMLFooter(2).c_str());
printf("\n\n");
}
void reportOut(const std::string &outmsg) { }
2012-09-15 15:32:59 +02:00
void reportErr(const ErrorLogger::ErrorMessage &msg) {
2012-07-02 19:50:14 +02:00
const std::string str(msg.toXML(true,2U));
printf("%s\n", str.c_str());
}
2012-09-15 15:32:59 +02:00
void reportProgress(const
std::string &filename,
const char stage[],
const unsigned int value) {
if (std::time(NULL) >= stoptime) {
2012-07-02 19:50:14 +02:00
printf("time to analyse the "
"code is more than 1 "
"second. terminating."
"\n\n");
cppcheck.terminate();
}
}
};
int main()
{
const char *lenstr = getenv("CONTENT_LENGTH");
char data[4096] = {0};
int len = std::min(1 + atoi(lenstr), (int)(sizeof(data) - 2));
fgets(data, len, stdin);
char code[4096] = {0};
unencode(data, code);
printf("Content-type: text/plain\n\n");
CppcheckExecutor cppcheckExecutor;
cppcheckExecutor.run(code);
return EXIT_SUCCESS;
}